Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt1
-rw-r--r--premake.lua1
-rw-r--r--premake4.lua1
-rw-r--r--samples/project/CppConsoleApp/CppConsoleApp.cpp7
-rw-r--r--samples/project/CppConsoleApp/premake4.lua9
-rw-r--r--samples/project/CppSharedLib/CppSharedLib.cpp6
-rw-r--r--samples/project/CppSharedLib/CppSharedLib.def2
-rw-r--r--samples/project/CppSharedLib/premake4.lua12
-rw-r--r--samples/project/CppStaticLib/CppStaticLib.cpp6
-rw-r--r--samples/project/CppStaticLib/premake4.lua11
-rw-r--r--samples/project/CppWindowedApp/CppWindowedApp.cpp7
-rw-r--r--samples/project/CppWindowedApp/premake4.lua13
-rw-r--r--samples/project/premake42
-rw-r--r--samples/project/premake4.lua27
-rw-r--r--src/_manifest.lua10
-rw-r--r--src/_premake_main.lua80
-rw-r--r--src/actions/clean/_clean.lua28
-rw-r--r--src/actions/codeblocks/_codeblocks.lua2
-rw-r--r--src/actions/codeblocks/codeblocks_cbp.tmpl17
-rw-r--r--src/actions/codelite/_codelite.lua7
-rw-r--r--src/actions/codelite/codelite_project.tmpl9
-rw-r--r--src/actions/make/_make.lua41
-rw-r--r--src/actions/make/make_cpp.tmpl11
-rw-r--r--src/actions/make/make_csharp.tmpl33
-rw-r--r--src/actions/vstudio/_vstudio.lua47
-rw-r--r--src/actions/vstudio/vs2003_solution.tmpl10
-rw-r--r--src/actions/vstudio/vs2005_solution.tmpl14
-rw-r--r--src/actions/vstudio/vs200x_vcproj.tmpl16
-rw-r--r--src/base/cmdline.lua2
-rw-r--r--src/base/config.lua306
-rw-r--r--src/base/functions.lua21
-rw-r--r--src/base/help.lua64
-rw-r--r--src/base/path.lua61
-rw-r--r--src/base/premake.lua13
-rw-r--r--src/base/project.lua18
-rw-r--r--src/host/bytecode.c80
-rw-r--r--src/tools/csc.lua49
-rw-r--r--src/tools/gcc.lua (renamed from src/base/gcc.lua)35
-rw-r--r--src/tools/ow.lua109
-rw-r--r--tests/premake4.lua1
-rw-r--r--tests/test_config.lua154
-rw-r--r--tests/test_path.lua10
-rw-r--r--tests/test_premake.lua4
-rw-r--r--tests/test_targets.lua287
44 files changed, 1098 insertions, 546 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 732c74b..066ac69 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -3,6 +3,7 @@
This version is a complete rewrite of Premake.
- New, more readable syntax for project information
+- More robust syntax validation
- Better validation of command-line arguments
- Standardized path handling across all project settings
- Template system allows script-based custom generators
diff --git a/premake.lua b/premake.lua
index 9cbd94c..53a8491 100644
--- a/premake.lua
+++ b/premake.lua
@@ -99,6 +99,7 @@ project.name = "Premake4"
local sizes = { }
scripts, templates, actions = dofile("src/_manifest.lua")
+ table.insert(scripts, "_premake_main.lua")
local out = io.open("src/host/bytecode.c", "w+b")
out:write("/* Precompiled bytecodes for built-in Premake scripts */\n")
diff --git a/premake4.lua b/premake4.lua
index 988f138..9abfdbf 100644
--- a/premake4.lua
+++ b/premake4.lua
@@ -99,6 +99,7 @@ project "Premake4"
local sizes = { }
scripts, templates, actions = dofile("src/_manifest.lua")
+ table.insert(scripts, "_premake_main.lua")
local out = io.open("src/host/bytecode.c", "w+b")
out:write("/* Precompiled bytecodes for built-in Premake scripts */\n")
diff --git a/samples/project/CppConsoleApp/CppConsoleApp.cpp b/samples/project/CppConsoleApp/CppConsoleApp.cpp
new file mode 100644
index 0000000..c237aba
--- /dev/null
+++ b/samples/project/CppConsoleApp/CppConsoleApp.cpp
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main()
+{
+ printf("CppConsoleApp\n");
+ return 0;
+}
diff --git a/samples/project/CppConsoleApp/premake4.lua b/samples/project/CppConsoleApp/premake4.lua
new file mode 100644
index 0000000..ced2554
--- /dev/null
+++ b/samples/project/CppConsoleApp/premake4.lua
@@ -0,0 +1,9 @@
+project "CppConsoleApp"
+
+ kind "ConsoleApp"
+ language "C++"
+
+ files "*.cpp"
+
+ libdirs { "../lib" }
+ links { "CppSharedLib" }
diff --git a/samples/project/CppSharedLib/CppSharedLib.cpp b/samples/project/CppSharedLib/CppSharedLib.cpp
new file mode 100644
index 0000000..42ecddc
--- /dev/null
+++ b/samples/project/CppSharedLib/CppSharedLib.cpp
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+void CppSharedLib()
+{
+ printf("CppSharedLib\n");
+}
diff --git a/samples/project/CppSharedLib/CppSharedLib.def b/samples/project/CppSharedLib/CppSharedLib.def
new file mode 100644
index 0000000..16d9889
--- /dev/null
+++ b/samples/project/CppSharedLib/CppSharedLib.def
@@ -0,0 +1,2 @@
+EXPORTS
+ CppSharedLib \ No newline at end of file
diff --git a/samples/project/CppSharedLib/premake4.lua b/samples/project/CppSharedLib/premake4.lua
new file mode 100644
index 0000000..afbd38a
--- /dev/null
+++ b/samples/project/CppSharedLib/premake4.lua
@@ -0,0 +1,12 @@
+project "CppSharedLib"
+
+ kind "SharedLib"
+ language "C++"
+ files { "*.cpp", "CppSharedLib.def" }
+
+ configuration "Debug"
+ targetdir "lib/debug"
+
+ configuration "Release"
+ targetdir "lib/release"
+ flags { "NoImportLib" } \ No newline at end of file
diff --git a/samples/project/CppStaticLib/CppStaticLib.cpp b/samples/project/CppStaticLib/CppStaticLib.cpp
new file mode 100644
index 0000000..995220a
--- /dev/null
+++ b/samples/project/CppStaticLib/CppStaticLib.cpp
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+void CppStaticLib()
+{
+ printf("CppStaticLib\n");
+}
diff --git a/samples/project/CppStaticLib/premake4.lua b/samples/project/CppStaticLib/premake4.lua
new file mode 100644
index 0000000..91edebd
--- /dev/null
+++ b/samples/project/CppStaticLib/premake4.lua
@@ -0,0 +1,11 @@
+project "CppStaticLib"
+
+ kind "StaticLib"
+ language "C++"
+ files { "*.cpp" }
+
+ configuration "Debug"
+ targetdir "lib/debug"
+
+ configuration "Release"
+ targetdir "lib/release"
diff --git a/samples/project/CppWindowedApp/CppWindowedApp.cpp b/samples/project/CppWindowedApp/CppWindowedApp.cpp
new file mode 100644
index 0000000..ab788a2
--- /dev/null
+++ b/samples/project/CppWindowedApp/CppWindowedApp.cpp
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main()
+{
+ printf("CppWindowedApp\n");
+ return 0;
+}
diff --git a/samples/project/CppWindowedApp/premake4.lua b/samples/project/CppWindowedApp/premake4.lua
new file mode 100644
index 0000000..e5f8c5e
--- /dev/null
+++ b/samples/project/CppWindowedApp/premake4.lua
@@ -0,0 +1,13 @@
+project "CppWindowedApp"
+
+ kind "WindowedApp"
+ language "C++"
+
+ files "*.cpp"
+
+ libdirs { "../lib" }
+ links { "CppStaticLib" }
+
+ configuration "windows"
+ links { "user32", "gdi32" }
+
diff --git a/samples/project/premake4 b/samples/project/premake4
new file mode 100644
index 0000000..2c6c4a3
--- /dev/null
+++ b/samples/project/premake4
@@ -0,0 +1,2 @@
+#!/bin/sh
+../../bin/debug/premake4 /scripts=../../src $1 $2 $3 $4 $5 $6
diff --git a/samples/project/premake4.lua b/samples/project/premake4.lua
new file mode 100644
index 0000000..b5a1788
--- /dev/null
+++ b/samples/project/premake4.lua
@@ -0,0 +1,27 @@
+solution "PremakeTestbox"
+ configurations { "Debug", "Release" }
+
+ location "build"
+
+ configuration "Debug"
+ targetdir "bin/debug"
+ flags { "Symbols" }
+ defines { "_DEBUG", "DEBUG" }
+
+ configuration "Release"
+ targetdir "bin/release"
+ flags { "Optimize" }
+ defines { "NDEBUG" }
+
+
+include "CppConsoleApp"
+include "CppWindowedApp"
+include "CppSharedLib"
+include "CppStaticLib"
+
+function onclean()
+ os.rmdir("bin")
+ os.rmdir("CppSharedLib/lib")
+ os.rmdir("CppStaticLib/lib")
+end
+
diff --git a/src/_manifest.lua b/src/_manifest.lua
index 4ecb41a..7026bd6 100644
--- a/src/_manifest.lua
+++ b/src/_manifest.lua
@@ -21,11 +21,10 @@
"base/config.lua",
"base/functions.lua",
"base/cmdline.lua",
- "base/gcc.lua",
- "base/ow.lua",
-
- -- this one must be last
- "_premake_main.lua"
+ "tools/csc.lua",
+ "tools/gcc.lua",
+ "tools/ow.lua",
+ "base/help.lua",
}
@@ -39,6 +38,7 @@
"actions/codelite/codelite_project.tmpl",
"actions/make/make_solution.tmpl",
"actions/make/make_cpp.tmpl",
+ "actions/make/make_csharp.tmpl",
"actions/vstudio/vs2002_solution.tmpl",
"actions/vstudio/vs2003_solution.tmpl",
"actions/vstudio/vs2005_solution.tmpl",
diff --git a/src/_premake_main.lua b/src/_premake_main.lua
index 7ac0500..bfcdd0e 100644
--- a/src/_premake_main.lua
+++ b/src/_premake_main.lua
@@ -5,65 +5,13 @@
--
+ local scriptfile = "premake4.lua"
local shorthelp = "Type 'premake4 --help' for help"
local versionhelp = "premake4 (Premake Build Script Generator) %s"
- local scriptfile = "premake4.lua"
--
--- Display the help text
---
-
- local function showhelp()
- -- sort the lists of actions and options
- actions = { }
- for name,_ in pairs(premake.actions) do table.insert(actions, name) end
- table.sort(actions)
-
- options = { }
- for name,_ in pairs(premake.options) do table.insert(options, name) end
- table.sort(options)
-
- printf("Premake %s, a build script generator", _PREMAKE_VERSION)
- printf(_PREMAKE_COPYRIGHT)
- printf("%s %s", _VERSION, _COPYRIGHT)
- printf("")
- printf("Usage: premake4 [options] action [arguments]")
- printf("")
-
- printf("OPTIONS")
- printf("")
- for _,name in ipairs(options) do
- local opt = premake.options[name]
- local trigger = opt.trigger
- local description = opt.description
-
- if (opt.value) then trigger = trigger .. "=" .. opt.value end
- if (opt.allowed) then description = description .. "; one of:" end
-
- printf(" --%-15s %s", trigger, description)
- if (opt.allowed) then
- table.sort(opt.allowed, function(a,b) return a[1] < b[1] end)
- for _, value in ipairs(opt.allowed) do
- printf(" %-14s %s", value[1], value[2])
- end
- end
- printf("")
- end
-
- printf("ACTIONS")
- printf("")
- for _,name in ipairs(actions) do
- printf(" %-17s %s", name, premake.actions[name].description)
- end
- printf("")
-
- printf("For additional information, see http://industriousone.com/premake")
- end
-
-
---
-- Script-side program entry point.
--
@@ -74,21 +22,22 @@
-- everything gets initialized in the proper order.
if (scriptpath) then
+ local scripts, templates, actions = dofile(scriptpath .. "/_manifest.lua")
+
-- core code first
- local s, t, a = dofile(scriptpath .. "/_manifest.lua")
- for i = 1, #s - 1 do
- dofile(scriptpath.."/"..s[i])
+ for _,v in ipairs(scripts) do
+ dofile(scriptpath .. "/" .. v)
end
-- then the templates
- for _,v in ipairs(t) do
- local n = path.getbasename(v)
- _TEMPLATES[n] = premake.loadtemplatefile(scriptpath.."/"..v)
+ for _,v in ipairs(templates) do
+ local name = path.getbasename(v)
+ _TEMPLATES[name] = premake.loadtemplatefile(scriptpath .. "/" .. v)
end
-- finally the actions
- for _,v in ipairs(a) do
- dofile(scriptpath.."/"..v)
+ for _,v in ipairs(actions) do
+ dofile(scriptpath .. "/" .. v)
end
end
@@ -100,9 +49,9 @@
if (os.isfile(fname)) then
dofile(fname)
end
-
-
- -- Process special options like /version and /help
+
+
+ -- Process special options
if (_OPTIONS["version"]) then
printf(versionhelp, _PREMAKE_VERSION)
@@ -110,7 +59,7 @@
end
if (_OPTIONS["help"]) then
- showhelp()
+ premake.showhelp()
return 1
end
@@ -133,7 +82,6 @@
-- Validate the command-line arguments. This has to happen after the
-- script has run to allow for project-specific options
- local action = premake.actions[name]
if (not premake.actions[_ACTION]) then
error("Error: no such action '".._ACTION.."'", 0)
end
diff --git a/src/actions/clean/_clean.lua b/src/actions/clean/_clean.lua
index 6273751..0b6b327 100644
--- a/src/actions/clean/_clean.lua
+++ b/src/actions/clean/_clean.lua
@@ -26,12 +26,18 @@
newaction {
trigger = "clean",
description = "Remove all binaries and generated files",
+ targetstyle = "windows",
execute = function()
local solutions = { }
local projects = { }
local targets = { }
+ local cwd = os.getcwd()
+ local function rebase(parent, dir)
+ return path.rebase(dir, parent.location, cwd)
+ end
+
-- Walk the tree. Build a list of object names to pass to the cleaners,
-- and delete any toolset agnostic files along the way.
for _,sln in ipairs(_SOLUTIONS) do
@@ -41,23 +47,25 @@
table.insert(projects, path.join(prj.location, prj.name))
if (prj.objdir) then
- os.rmdir(prj.objdir)
+ os.rmdir(rebase(prj, prj.objdir))
end
- for cfg in premake.eachconfig(prj) do
- local target = premake.gettargetfile(cfg, "target")
- table.insert(targets, path.join(path.getdirectory(target), path.getbasename(target)))
+ for cfg in premake.eachconfig(prj) do
+ table.insert(targets, path.join(rebase(cfg, cfg.buildtarget.directory), cfg.buildtarget.basename))
-- remove all possible permutations of the target binary
- os.remove(premake.gettargetfile(cfg, "target", "windows"))
- os.remove(premake.gettargetfile(cfg, "target", "linux"))
- os.remove(premake.gettargetfile(cfg, "target", "macosx"))
+ os.remove(rebase(cfg, premake.gettarget(cfg, "build", "windows").fullpath))
+ os.remove(rebase(cfg, premake.gettarget(cfg, "build", "linux", "linux").fullpath))
+ os.remove(rebase(cfg, premake.gettarget(cfg, "build", "linux", "macosx").fullpath))
+ if (cfg.kind == "WindowedApp") then
+ os.rmdir(rebase(cfg, premake.gettarget(cfg, "build", "linux", "linux").fullpath .. ".app"))
+ end
-- if there is an import library, remove that too
- os.remove(premake.gettargetfile(cfg, "implib", "windows"))
- os.remove(premake.gettargetfile(cfg, "implib", "linux"))
+ os.remove(rebase(cfg, premake.gettarget(cfg, "link", "windows").fullpath))
+ os.remove(rebase(cfg, premake.gettarget(cfg, "link", "linux").fullpath))
- os.rmdir(cfg.objdir)
+ os.rmdir(rebase(cfg, cfg.objdir))
end
end
end
diff --git a/src/actions/codeblocks/_codeblocks.lua b/src/actions/codeblocks/_codeblocks.lua
index 746fd2c..efcd5b1 100644
--- a/src/actions/codeblocks/_codeblocks.lua
+++ b/src/actions/codeblocks/_codeblocks.lua
@@ -9,7 +9,7 @@
trigger = "codeblocks",
shortname = "Code::Blocks",
description = "Code::Blocks Studio",
-
+
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
valid_languages = { "C", "C++" },
diff --git a/src/actions/codeblocks/codeblocks_cbp.tmpl b/src/actions/codeblocks/codeblocks_cbp.tmpl
index e80783d..95ac795 100644
--- a/src/actions/codeblocks/codeblocks_cbp.tmpl
+++ b/src/actions/codeblocks/codeblocks_cbp.tmpl
@@ -9,15 +9,15 @@
<Build>
<% for cfg in premake.eachconfig(this) do %>
<Target title="<%= premake.esc(cfg.name) %>">
- <Option output="<%= premake.esc(premake.gettargetfile(cfg, "target", nil, true)) %>" prefix_auto="0" extension_auto="0" />
- <Option object_output="<%= premake.esc(premake.getobjdir(cfg)) %>" />
+ <Option output="<%= premake.esc(cfg.buildtarget.fullpath) %>" prefix_auto="0" extension_auto="0" />
+ <Option object_output="<%= premake.esc(cfg.objectsdir) %>" />
<% if (cfg.kind == "WindowedApp") then %>
<Option type="0" />
<% elseif (cfg.kind == "ConsoleApp") then %>
<Option type="1" />
<% elseif (cfg.kind == "StaticLib") then %>
<Option type="2" />
- <% elseif (cfg.kind == "SharedApp") then %>
+ <% elseif (cfg.kind == "SharedLib") then %>
<Option type="3" />
<% end %>
<Option compiler="<%= _OPTIONS.cc %>" />
@@ -44,10 +44,10 @@
<% for _,v in ipairs(cfg.linkoptions) do %>
<Add option="<%= premake.esc(v) %>" />
<% end %>
- <% for _,v in ipairs(premake.getlibdirs(cfg)) do %>
+ <% for _,v in ipairs(premake.getlinks(cfg, "all", "directory")) do %>
<Add directory="<%= premake.esc(v) %>" />
<% end %>
- <% for _,v in ipairs(premake.getlibnames(cfg)) do %>
+ <% for _,v in ipairs(premake.getlinks(cfg, "all", "basename")) do %>
<Add library="<%= premake.esc(v) %>" />
<% end %>
</Linker>
@@ -78,16 +78,13 @@
<Unit filename="<%= premake.esc(fname) %>">
<% if path.getextension(fname) == ".rc" then %>
<Option compilerVar="WINDRES" />
- <% else %>
- <Option compilerVar="<%= cc.getcompilervar(this) %>" />
+ <% elseif path.iscppfile(fname) then %>
+ <Option compilerVar="<%= iif(this.language == "C", "CC", "CPP") %>" />
<% if (not this.flags.NoPCH and fname == this.pchheader) then %>
<Option compile="1" />
<Option weight="0" />
<% end %>
<% end %>
- <% for _,v in ipairs(this.configurations) do %>
- <Option target="<%= premake.esc(v) %>" />
- <% end%>
</Unit>
<% end %>
<Extensions />
diff --git a/src/actions/codelite/_codelite.lua b/src/actions/codelite/_codelite.lua
index 01c27bf..a9461e7 100644
--- a/src/actions/codelite/_codelite.lua
+++ b/src/actions/codelite/_codelite.lua
@@ -48,6 +48,7 @@
trigger = "codelite",
shortname = "CodeLite",
description = "CodeLite (experimental)",
+ targetstyle = "linux",
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
@@ -66,10 +67,12 @@
},
onclean = function(solutions, projects, targets)
- for _,name in ipairs(projects) do
+ for _,name in ipairs(solutions) do
+ os.remove(name .. "_wsp.mk")
os.remove(name .. ".tags")
+ end
+ for _,name in ipairs(projects) do
os.remove(name .. ".mk")
- os.remove(name .. "_wsp.mk")
os.remove(name .. ".list")
os.remove(name .. ".out")
end
diff --git a/src/actions/codelite/codelite_project.tmpl b/src/actions/codelite/codelite_project.tmpl
index 4d92241..765c5dd 100644
--- a/src/actions/codelite/codelite_project.tmpl
+++ b/src/actions/codelite/codelite_project.tmpl
@@ -3,9 +3,8 @@
<% premake.walksources(this, this.files, _CODELITE.files) %>
<Settings Type="<%= _CODELITE.kind(this.kind) %>">
<% for cfg in premake.eachconfig(this) do %>
- <% local target = premake.gettargetfile(cfg, "target", nil, true) %>
<Configuration Name="<%= premake.esc(cfg.name) %>" CompilerType="gnu <%= iif(cfg.language == "C", "gcc", "g++") %>" DebuggerType="GNU gdb debugger" Type="<%= _CODELITE.kind(cfg.kind) %>">
- <General OutputFile="<%= premake.esc(target) %>" IntermediateDirectory="<%= premake.esc(premake.getobjdir(cfg)) %>" Command="./<%= path.getname(target) %>" CommandArguments="" WorkingDirectory="<%= path.getdirectory(target) %>" PauseExecWhenProcTerminates="<%= iif(cfg.kind == "WindowedApp", "no", "yes") %>"/>
+ <General OutputFile="<%= premake.esc(cfg.buildtarget.fullpath) %>" IntermediateDirectory="<%= premake.esc(cfg.objectsdir) %>" Command="./<%= cfg.buildtarget.name %>" CommandArguments="" WorkingDirectory="<%= cfg.buildtarget.directory %>" PauseExecWhenProcTerminates="<%= iif(cfg.kind == "WindowedApp", "no", "yes") %>"/>
<Compiler Required="yes" Options="<%= table.concat(table.join(premake.gcc.getcflags(cfg), premake.gcc.getcxxflags(cfg), cfg.buildoptions), ";") %>">
<% for _,v in ipairs(cfg.includedirs) do %>
<IncludePath Value="<%= premake.esc(v) %>"/>
@@ -14,11 +13,11 @@
<Preprocessor Value="<%= premake.esc(v) %>"/>
<% end %>
</Compiler>
- <Linker Required="yes" Options="<%= table.concat(table.join(premake.gcc.getldflags(cfg), cfg.linkoptions), ";") %>">
- <% for _,v in ipairs(premake.getlibdirs(cfg)) do %>
+ <Linker Required="yes" Options="<%= table.concat(premake.esc(table.join(premake.gcc.getldflags(cfg), cfg.linkoptions)), ";") %>">
+ <% for _,v in ipairs(premake.getlinks(cfg, "all", "directory")) do %>
<LibraryPath Value="<%= premake.esc(v) %>" />
<% end %>
- <% for _,v in ipairs(premake.getlibnames(cfg)) do %>
+ <% for _,v in ipairs(premake.getlinks(cfg, "all", "basename")) do %>
<Library Value="<%= premake.esc(v) %>" />
<% end %>
</Linker>
diff --git a/src/actions/make/_make.lua b/src/actions/make/_make.lua
index 649df04..4cb53f1 100644
--- a/src/actions/make/_make.lua
+++ b/src/actions/make/_make.lua
@@ -27,24 +27,6 @@
--
--- Get the target dependencies for a particular project configuration.
---
-
- function _MAKE.gettargetdeps(cfg)
- local result = { }
- local deps = premake.getdependencies(cfg)
- for _, prj in ipairs(deps) do
- local prjcfg = premake.getconfig(prj, cfg.name)
- local target = premake.gettargetfile(prjcfg, "target", nil, true)
- target = path.rebase(target, prjcfg.location, cfg.location)
- table.insert(result, _MAKE.esc(target))
- end
- return result
- end
-
-
-
---
-- Get the makefile file name for a solution or a project. If this object is the
-- only one writing to a location then I can use "Makefile". If more than one object
-- writes to the same location I use name + ".make" to keep it unique.
@@ -91,21 +73,34 @@
trigger = "gmake",
shortname = "GNU Make",
description = "GNU makefiles for POSIX, MinGW, and Cygwin",
+ targetstyle = "linux",
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
- valid_languages = { "C", "C++" },
+ valid_languages = { "C", "C++", "C#" },
valid_tools = {
- cc = { "gcc" },
- csc = { "mcs" },
+ cc = { "gcc" },
+ dotnet = { "mono", "ms", "pnet" },
},
solutiontemplates = {
- { function(this) return _MAKE.getmakefilename(this, false) end, _TEMPLATES.make_solution },
+ {
+ function(this) return _MAKE.getmakefilename(this, false) end,
+ _TEMPLATES.make_solution
+ },
},
projecttemplates = {
- { function(this) return _MAKE.getmakefilename(this, true) end, _TEMPLATES.make_cpp },
+ {
+ function(this) return _MAKE.getmakefilename(this, true) end,
+ _TEMPLATES.make_cpp,
+ function(this) return this.language == "C" or this.language == "C++" end
+ },
+ {
+ function(this) return _MAKE.getmakefilename(this, true) end,
+ _TEMPLATES.make_csharp,
+ function(this) return this.language == "C#" end
+ },
},
}
diff --git a/src/actions/make/make_cpp.tmpl b/src/actions/make/make_cpp.tmpl
index 8d0d1e1..73556c1 100644
--- a/src/actions/make/make_cpp.tmpl
+++ b/src/actions/make/make_cpp.tmpl
@@ -7,10 +7,9 @@ endif
<% for cfg in premake.eachconfig(this) do %>
ifeq ($(CONFIG),<%= _MAKE.esc(cfg.name)%>)
- <% local target = premake.gettargetfile(cfg, "target", nil, true) %>
- TARGETDIR = <%= _MAKE.esc(path.getdirectory(target)) %>
- TARGET = $(TARGETDIR)/<%= _MAKE.esc(path.getname(target)) %>
- OBJDIR = <%= _MAKE.esc(premake.getobjdir(cfg)) %>
+ TARGETDIR = <%= _MAKE.esc(cfg.buildtarget.directory) %>
+ TARGET = $(TARGETDIR)/<%= _MAKE.esc(cfg.buildtarget.name) %>
+ OBJDIR = <%= _MAKE.esc(cfg.objectsdir) %>
DEFINES += <%= table.concat(cc.getdefines(cfg.defines), " ") %>
INCLUDES += <%= table.concat(cc.getincludedirs(cfg.includedirs), " ") %>
CPPFLAGS += <%= cc.getcppflags(cfg) %> $(DEFINES) $(INCLUDES)
@@ -18,9 +17,9 @@ ifeq ($(CONFIG),<%= _MAKE.esc(cfg.name)%>)
CXXFLAGS += $(CFLAGS) <%= table.concat(cc.getcxxflags(cfg), " ") %>
LDFLAGS += <%= table.concat(table.join(cc.getldflags(cfg), cc.getlinkflags(cfg), cfg.linkoptions), " ") %>
RESFLAGS += $(DEFINES) $(INCLUDES) <%= table.concat(table.join(cc.getdefines(cfg.resdefines), cc.getincludedirs(cfg.resincludedirs), cfg.resoptions), " ") %>
- LDDEPS += <%= table.concat(_MAKE.gettargetdeps(cfg), " ") %>
+ LDDEPS += <%= table.concat(_MAKE.esc(premake.getlinks(cfg, "siblings", "fullpath"))) %>
<% if cfg.kind == "StaticLib" then %>
- LINKCMD = ar -rcs $(TARGET) $(OBJECTS) $(ARCH)
+ LINKCMD = ar -rcs $(TARGET) $(OBJECTS)
<% else %>
LINKCMD = $(<%= iif(cfg.language == "C", "CC", "CXX") %>) -o $(TARGET) $(OBJECTS) $(LDFLAGS) $(RESOURCES) $(ARCH)
<% end %>
diff --git a/src/actions/make/make_csharp.tmpl b/src/actions/make/make_csharp.tmpl
new file mode 100644
index 0000000..5fe19b6
--- /dev/null
+++ b/src/actions/make/make_csharp.tmpl
@@ -0,0 +1,33 @@
+<% local csc = premake.csc %>
+# <%= premake.actions[_ACTION].shortname %> project makefile autogenerated by Premake
+
+ifndef CONFIG
+ CONFIG=<%= _MAKE.esc(this.configurations[1]) %>
+endif
+
+ifndef CSC
+ CSC=<%= csc.getcompilervar(this) %>
+endif
+
+ifndef RESGEN
+ RESGEN=resgen
+endif
+
+
+<% for cfg in premake.eachconfig(this) do %>
+ifeq ($(CONFIG),<%= _MAKE.esc(cfg.name)%>)
+ TARGETDIR = <%= _MAKE.esc(cfg.buildtarget.directory) %>
+ OBJDIR = <%= _MAKE.esc(cfg.objectsdir) %>
+ FLAGS += <%= table.concat(csc.getflags(cfg), " ") %> <%= table.implode(cfg.defines, "/d:", "", " ") %>
+ <% local siblings = _MAKE.esc(premake.getlinks(cfg, "siblings", "fullpath")) %>
+ REFERENCES += <%= table.implode(siblings, "/r:", "", " ") %>
+ DEPENDS += <%= table.concat(siblings, " ") %>
+endif
+
+<% end %>
+
+TARGET = $(TARGETDIR)/<%= _MAKE.esc(this.buildtarget.name) %>
+<% if #this.libdirs > 0 then %>
+FLAGS += <%= table.implode(_MAKE.esc(this.libdirs), "/lib:", "", " ") %>
+<% end %>
+REFERENCES += <%= table.implode(_MAKE.esc(premake.getlinks(this, "system", "basename")), '/r:', '', ' ') %>
diff --git a/src/actions/vstudio/_vstudio.lua b/src/actions/vstudio/_vstudio.lua
index 9fa4556..3220742 100644
--- a/src/actions/vstudio/_vstudio.lua
+++ b/src/actions/vstudio/_vstudio.lua
@@ -189,23 +189,6 @@
--
--- Returns the name for the import library generated from a DLL. I
--- can't disable it if the NoImportLib flag is set, but I can hide it.
---
-
- function _VS.importlibfile(cfg)
- local fname = premake.gettargetfile(cfg, "implib", "windows")
- if (cfg.flags.NoImportLib) then
- local objdir = premake.getobjdir(cfg)
- return path.join(objdir, path.getname(fname))
- else
- return fname
- end
- end
-
-
-
---
-- Return the optimization code.
--
@@ -297,10 +280,11 @@
--
newaction {
- trigger = "vs2002",
- shortname = "Visual Studio 2002",
- description = "Microsoft Visual Studio 2002",
-
+ trigger = "vs2002",
+ shortname = "Visual Studio 2002",
+ description = "Microsoft Visual Studio 2002",
+ targetstyle = "windows",
+
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
valid_languages = { "C", "C++" },
@@ -317,9 +301,10 @@
}
newaction {
- trigger = "vs2003",
- shortname = "Visual Studio 2003",
- description = "Microsoft Visual Studio 2003",
+ trigger = "vs2003",
+ shortname = "Visual Studio 2003",
+ description = "Microsoft Visual Studio 2003",
+ targetstyle = "windows",
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
@@ -337,9 +322,10 @@
}
newaction {
- trigger = "vs2005",
- shortname = "Visual Studio 2005",
- description = "Microsoft Visual Studio 2005",
+ trigger = "vs2005",
+ shortname = "Visual Studio 2005",
+ description = "Microsoft Visual Studio 2005",
+ targetstyle = "windows",
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
@@ -357,9 +343,10 @@
}
newaction {
- trigger = "vs2008",
- shortname = "Visual Studio 2008",
- description = "Microsoft Visual Studio 2008",
+ trigger = "vs2008",
+ shortname = "Visual Studio 2008",
+ description = "Microsoft Visual Studio 2008",
+ targetstyle = "windows",
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib" },
diff --git a/src/actions/vstudio/vs2003_solution.tmpl b/src/actions/vstudio/vs2003_solution.tmpl
index fa1bd78..e53c507 100644
--- a/src/actions/vstudio/vs2003_solution.tmpl
+++ b/src/actions/vstudio/vs2003_solution.tmpl
@@ -2,9 +2,13 @@
Microsoft Visual Studio Solution File, Format Version 8.00
<% for prj in premake.eachproject(this) do %>
Project("{<%=_VS.tool(prj)%>}") = "<%=prj.name%>", "<%=path.translate(path.getrelative(this.location, _VS.projectfile(prj)))%>", "{<%=prj.uuid%>}"
- <% for _,dep in ipairs(premake.getdependencies(prj)) do %>
- {<%= dep.uuid %>} = {<%= dep.uuid %>}
- <% end %>
+ <% local deps = premake.getdependencies(prj); if #deps > 0 then %>
+ ProjectSection(ProjectDependencies) = postProject
+ <% for _,dep in ipairs(deps) do %>
+ {<%= dep.uuid %>} = {<%= dep.uuid %>}
+ <% end %>
+ EndProjectSection
+ <% end %>
EndProject
<% end %>
Global
diff --git a/src/actions/vstudio/vs2005_solution.tmpl b/src/actions/vstudio/vs2005_solution.tmpl
index 8b0db7d..6673733 100644
--- a/src/actions/vstudio/vs2005_solution.tmpl
+++ b/src/actions/vstudio/vs2005_solution.tmpl
@@ -9,12 +9,16 @@ Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
<% end %>
<% for prj in premake.eachproject(this) do %>
- <% if (prj.language == "C" or prj.language == "C++") then hascpp = true end %>
- <% if (prj.language == "C#") then hasdotnet = true end %>
+ <% if (prj.language == "C" or prj.language == "C++") then hascpp = true end %>
+ <% if (prj.language == "C#") then hasdotnet = true end %>
Project("{<%=_VS.tool(prj)%>}") = "<%=prj.name%>", "<%=path.translate(path.getrelative(this.location, _VS.projectfile(prj)),"\\")%>", "{<%=prj.uuid%>}"
- <% for _,dep in ipairs(premake.getdependencies(prj)) do %>
- {<%= dep.uuid %>} = {<%= dep.uuid %>}
- <% end %>
+ <% local deps = premake.getdependencies(prj); if #deps > 0 then %>
+ ProjectSection(ProjectDependencies) = postProject
+ <% for _,dep in ipairs(deps) do %>
+ {<%= dep.uuid %>} = {<%= dep.uuid %>}
+ <% end %>
+ EndProjectSection
+ <% end %>
EndProject
<% end %>
Global
diff --git a/src/actions/vstudio/vs200x_vcproj.tmpl b/src/actions/vstudio/vs200x_vcproj.tmpl
index bda2a66..daf99fc 100644
--- a/src/actions/vstudio/vs200x_vcproj.tmpl
+++ b/src/actions/vstudio/vs200x_vcproj.tmpl
@@ -29,11 +29,10 @@
<% end %>
<Configurations>
<% for cfg in premake.eachconfig(this) do %>
- <% local target = premake.gettargetfile(cfg, "target", "windows") %>
<Configuration
Name="<%= premake.esc(cfg.name) %>|Win32"
- OutputDirectory="<%= premake.esc(path.translate(path.getdirectory(target), "\\")) %>"
- IntermediateDirectory="<%= premake.esc(path.translate(premake.getobjdir(cfg), "\\")) %>"
+ OutputDirectory="<%= premake.esc(cfg.buildtarget.directory) %>"
+ IntermediateDirectory="<%= premake.esc(cfg.objectsdir) %>"
ConfigurationType="<%= _VS.cfgtype(cfg) %>"
CharacterSet="<%= iif(cfg.flags.Unicode, 1, 2) %>"
<% if cfg.flags.Managed then %>
@@ -133,11 +132,11 @@
AdditionalOptions="<%= table.concat(premake.esc(cfg.linkoptions), " ") %>"
<% end %>
<% if #cfg.links > 0 then %>
- AdditionalDependencies="<%= table.concat(premake.getlibraries(cfg), " ") %>"
+ AdditionalDependencies="<%= table.concat(premake.getlinks(cfg, "all", "fullpath"), " ") %>"
<% end %>
- OutputFile="$(OutDir)\<%= path.getname(target) %>"
+ OutputFile="$(OutDir)\<%= cfg.buildtarget.name %>"
LinkIncremental="<%= iif(_VS.optimization(cfg) == 0, 2, 1) %>"
- AdditionalLibraryDirectories="<%= table.concat(premake.esc(cfg.libdirs) , ";") %>"
+ AdditionalLibraryDirectories="<%= table.concat(premake.esc(path.translate(cfg.libdirs)) , ";") %>"
<% local deffile = premake.findfile(cfg, ".def"); if deffile then %>
ModuleDefinitionFile="<%= deffile %>"
<% end %>
@@ -157,12 +156,13 @@
EntryPointSymbol="mainCRTStartup"
<% end %>
<% if cfg.kind == "SharedLib" then %>
- ImportLibrary="<%= path.translate(_VS.importlibfile(cfg), "\\") %>"
+ <% local implibname = path.translate(premake.gettarget(cfg, "link", "windows").fullpath, "\\") %>
+ ImportLibrary="<%= iif(cfg.flags.NoImportLib, cfg.objectsdir.."\\"..path.getname(implibname), implibname) %>"
<% end %>
TargetMachine="1"
<% else %>
Name="VCLibrarianTool"
- OutputFile="$(OutDir)\\<%= path.getname(target) %>"
+ OutputFile="$(OutDir)\<%= cfg.buildtarget.name %>"
<% end %>
/>
<% elseif (block == "VCManagedResourceCompilerTool") then %>
diff --git a/src/base/cmdline.lua b/src/base/cmdline.lua
index 05629ea..2908a41 100644
--- a/src/base/cmdline.lua
+++ b/src/base/cmdline.lua
@@ -48,7 +48,7 @@
function newoption(opt)
-- some sanity checking
local missing
- for _, field in ipairs(requiredactionfields) do
+ for _, field in ipairs(requiredoptionfields) do
if (not opt[field]) then
missing = field
end
diff --git a/src/base/config.lua b/src/base/config.lua
index 9c7ddf2..3cc4464 100644
--- a/src/base/config.lua
+++ b/src/base/config.lua
@@ -9,11 +9,11 @@
-- These fields should *not* be copied into configurations.
--
- premake.nocopy =
+ local nocopy =
{
- "blocks",
- "keywords",
- "projects"
+ blocks = true,
+ keywords = true,
+ projects = true,
}
@@ -36,38 +36,42 @@
end
+
--
-- Build a configuration object holding all of the settings that
-- match the specified filters.
--
-
+
+ -- local function merges all fields from a block into the configuration
+ local function copyfields(cfg, this)
+ for field,value in pairs(this) do
+ if (not nocopy[field]) then
+ if (type(value) == "table") then
+ if (not cfg[field]) then cfg[field] = { } end
+ cfg[field] = table.join(cfg[field], value)
+ else
+ cfg[field] = value
+ end
+ end
+ end
+ end
+
function premake.getconfig(prj, cfgname)
- -- see if this configuration has already been built and cached
+ -- make sure I've got the actual project object and not the root configuration
+ if (prj.project) then prj = prj.project end
+
+ -- see if this configuration has already been built and cached
+ local meta = getmetatable(prj)
local cachekey = cfgname or ""
-
- local meta = getmetatable(prj)
- local cfg = meta.__cfgcache[cachekey]
+ local cfg = meta.__cfgcache[cachekey]
if (cfg) then
return cfg
end
- -- prepare the list of active terms
+ -- prepare the list of active terms, which will be used to filter the blocks
local terms = premake.getactiveterms()
terms.config = cfgname
-
- local function copyfields(cfg, this)
- for field,value in pairs(this) do
- if (not table.contains(premake.nocopy, field)) then
- if (type(value) == "table") then
- if (not cfg[field]) then cfg[field] = { } end
- cfg[field] = table.join(cfg[field], value)
- else
- cfg[field] = value
- end
- end
- end
- end
-
+
-- fields are copied first from the solution, then the solution's configs,
-- then from the project, then the project's configs. Each can overwrite
-- or add to the values set previously. The objdir field gets special
@@ -107,8 +111,9 @@
cfg.files = files
for name, field in pairs(premake.fields) do
+
-- fix up paths, making them relative to project where needed
- if (field.kind == "path" or field.kind == "dirlist" or field.kind == "filelist") then
+ if (field.kind == "path" or field.kind == "dirlist" or field.kind == "filelist") and (name ~= "location" and name ~= "basedir") then
if (type(cfg[name]) == "table") then
for i,p in ipairs(cfg[name]) do
cfg[name][i] = path.getrelative(prj.location, p)
@@ -127,16 +132,73 @@
values[flag] = true
end
end
+
end
- cfg.name = cfgname
+ -- finish initialization
+ meta.__cfgcache[cachekey] = cfg
+ cfg.name = cfgname
cfg.project = prj
+
+ -- store the applicable tool for this configuration
+ if cfg.language == "C" or cfg.language == "C++" then
+ if _OPTIONS.cc then cfg.tool = premake[_OPTIONS.cc] end
+ elseif cfg.language == "C#" then
+ if _OPTIONS.dotnet then cfg.tool = premake[_OPTIONS.dotnet] end
+ end
+
+ -- precompute the target names and paths
+ local action = premake.actions[_ACTION]
+ local targetstyle = action.targetstyle or "linux"
+ if (cfg.tool) then
+ targetstyle = cfg.tool.targetstyle or targetstyle
+ end
+
+ cfg.buildtarget = premake.gettarget(cfg, "build", targetstyle)
+ cfg.linktarget = premake.gettarget(cfg, "link", targetstyle)
+ cfg.objectsdir = premake.getobjdir(cfg)
+
+ local pathstyle = action.pathstyle or targetstyle
+ if (pathstyle == "windows") then
+ cfg.buildtarget.directory = path.translate(cfg.buildtarget.directory, "\\")
+ cfg.buildtarget.fullpath = path.translate(cfg.buildtarget.fullpath, "\\")
+ cfg.linktarget.directory = path.translate(cfg.linktarget.directory, "\\")
+ cfg.linktarget.fullpath = path.translate(cfg.linktarget.fullpath, "\\")
+ cfg.objectsdir = path.translate(cfg.objectsdir, "\\")
+ end
- meta.__cfgcache[cachekey] = cfg
return cfg
end
+ function premake.getfileconfig(prj, filename, cfgname)
+ -- make sure I've got the actual project object and not the root configuration
+ if (prj.project) then prj = prj.project end
+
+ -- prepare the list of active terms, which will be used to filter the blocks
+ local terms = premake.getactiveterms()
+ terms.filename = filename
+ terms.config = cfgname
+
+ -- fields are copied first from the solution blocks, then the project blocks
+ local cfg = { }
+ for _,blk in ipairs(prj.solution.blocks) do
+ if (premake.iskeywordsmatch(blk.keywords, terms)) then
+ copyfields(cfg, blk)
+ end
+ end
+ for _,blk in ipairs(prj.blocks) do
+ if (premake.iskeywordsmatch(blk.keywords, terms)) then
+ copyfields(cfg, blk)
+ end
+ end
+
+ cfg.name = cfgname
+ cfg.filename = filename
+ cfg.project = prj
+ return cfg
+ end
+
--
-- Returns a list of sibling projects on which the specified
@@ -158,69 +220,76 @@
--
--- Converts the values in a configuration "links" field into a list
--- library files to be linked. If the posix flag is set, will use
--- POSIX-like behaviors, even on Windows.
+-- Returns a list of link targets. Kind may be one of "siblings" (only
+-- return sibling projects), "system" (only return system libraries, or
+-- non-siblings), or "all". Part is one of "name" (the decorated library
+-- name with no path), "basename" (the undecorated name), "directory"
+-- (just the directory containing the library), and "fullpath" (the
+-- full path and decorated name).
--
- function premake.getlibraries(cfg, posix)
- local libs = { }
+ local function canlink(source, target)
+ if (target.kind ~= "SharedLib" and target.kind ~= "StaticLib") then return false end
+ if (source.language == "C" or source.language == "C++") then
+ if (target.language ~= "C" and target.language ~= "C++") then return false end
+ return true
+ elseif (source.language == "C#") then
+ if (target.language ~= "C#") then return false end
+ return true
+ end
+ end
+
+
+ function premake.getlinks(cfg, kind, part)
+ -- if I'm building a list of link directories, include libdirs
+ local result = iif (part == "directory" and kind == "all", cfg.libdirs, {})
for _, link in ipairs(cfg.links) do
+ local item
+
-- is this a sibling project?
local prj = premake.findproject(link)
- if (prj) then
+ if prj and (kind == "siblings" or kind == "all") then
+
local prjcfg = premake.getconfig(prj, cfg.name)
- if (prjcfg.kind == "SharedLib" or prjcfg.kind == "StaticLib") then
- local target
- if (prjcfg.kind == "SharedLib" and os.is("windows") and not posix) then
- target = premake.gettargetfile(prjcfg, "implib")
+ if canlink(cfg, prjcfg) then
+ if (part == "directory") then
+ item = path.rebase(prjcfg.linktarget.directory, prjcfg.location, cfg.location)
+ elseif (part == "basename") then
+ item = prjcfg.linktarget.basename
else
- target = premake.gettargetfile(prjcfg, "target", nil, posix)
+ item = path.rebase(prjcfg.linktarget.fullpath, prjcfg.location, cfg.location)
end
-
- target = path.rebase(target, prjcfg.location, cfg.location)
- table.insert(libs, target)
end
- else
- if (not posix and os.is("windows")) then
- link = link .. ".lib"
+
+ elseif not prj and (kind == "system" or kind == "all") then
+
+ if (part == "directory") then
+ local dir = path.getdirectory(link)
+ if (dir ~= ".") then
+ item = dir
+ end
+ elseif (part == "fullpath") then
+ item = iif(premake.actions[_ACTION].targetstyle == "windows", link .. ".lib", link)
+ else
+ item = link
end
- table.insert(libs, link)
- end
- end
-
- return libs
- end
-
-
---
--- Split the list of libraries into directories and names.
--- See bug #1729227 for background on why the path must be split.
---
+ end
- function premake.getlibdirs(cfg)
- local result = table.join(cfg.libdirs)
- for _, link in ipairs(premake.getlibraries(cfg)) do
- local dir = path.getdirectory(link)
- if (dir ~= "" and not table.contains(result, dir)) then
- table.insert(result, dir)
+ if item then
+ if premake.actions[_ACTION].targetstyle == "windows" then
+ item = path.translate(item, "\\")
+ end
+ if not table.contains(result, item) then
+ table.insert(result, item)
+ end
end
end
- return result
- end
- function premake.getlibnames(cfg)
- local result = { }
- for _, link in ipairs(premake.getlibraries(cfg)) do
- local name = path.getbasename(link)
- table.insert(result, path.getbasename(link))
- end
return result
end
-
-
+
--
-- Return an object directory for the specified configuration which
@@ -242,57 +311,74 @@
end
-
+
--
--- Builds a platform specific target (executable, library) file name of a
--- specific type, using the information from a project configuration. The
--- posix flag is used to trigger GNU-compatible behavior on Windows. OS
--- can be nil; the current OS setting will be used.
+-- Assembles a target file name for a configuration. Direction is one of
+-- "build" (the build target name) or "link" (the name to use when trying
+-- to link against this target). Style is one of "windows" or "linux".
--
- function premake.gettargetfile(cfg, field, os, posix)
- if (not os) then os = _OPTIONS.os or _OS end
+ function premake.gettarget(cfg, direction, style, os)
+ -- normalize the arguments
+ if not os then os = _OPTIONS.os or _OS end
+ if (os == "bsd") then os = "linux" end
- local name = cfg[field.."name"] or cfg.targetname or cfg.project.name
- local dir = cfg[field.."dir"] or cfg.targetdir or cfg.basedir
- local kind = iif(field == "implib", "StaticLib", cfg.kind)
-
- local prefix = ""
- local extension = ""
+ local kind = cfg.kind
+ if (cfg.language == "C" or cfg.language == "C++") then
+ -- On Windows, shared libraries link against a static import library
+ if (style == "windows" or os == "windows") and kind == "SharedLib" and direction == "link" then
+ kind = "StaticLib"
+ end
+
+ -- Linux name conventions only apply to static libs on windows (by user request)
+ if (style == "linux" and os == "windows" and kind ~= "StaticLib") then
+ style = "windows"
+ end
+ elseif (cfg.language == "C#") then
+ -- .NET always uses Windows naming conventions
+ style = "windows"
+ end
+
+ -- Initialize the target components
+ local field = iif(direction == "build", "target", "implib")
+ local name = cfg[field.."name"] or cfg.targetname or cfg.project.name
+ local dir = cfg[field.."dir"] or cfg.targetdir or path.getrelative(cfg.location, cfg.basedir)
+ local prefix = ""
+ local suffix = ""
- if (os == "windows") then
- if (kind == "ConsoleApp" or kind == "WindowedApp") then
- extension = ".exe"
- elseif (kind == "SharedLib") then
- extension = ".dll"
- elseif (kind == "StaticLib") then
- if (posix) then
- prefix = "lib"
- extension = ".a"
- else
- extension = ".lib"
- end
+ if style == "windows" then
+ if kind == "ConsoleApp" or kind == "WindowedApp" then
+ suffix = ".exe"
+ elseif kind == "SharedLib" then
+ suffix = ".dll"
+ elseif kind == "StaticLib" then
+ suffix = ".lib"
end
- elseif (os == "macosx" and kind == "WindowedApp") then
- name = name .. ".app/Contents/MacOS/" .. name
- else
- if (kind == "SharedLib") then
+ elseif style == "linux" then
+ if (kind == "WindowedApp" and os == "macosx") then
+ dir = path.join(dir, name .. ".app/Contents/MacOS")
+ elseif kind == "SharedLib" then
prefix = "lib"
- extension = ".so"
- elseif (kind == "StaticLib") then
+ suffix = ".so"
+ elseif kind == "StaticLib" then
prefix = "lib"
- extension = ".a"
+ suffix = ".a"
end
end
- prefix = cfg[field.."prefix"] or prefix
- extension = cfg[field.."extension"] or extension
+ prefix = cfg[field.."prefix"] or cfg.targetprefix or prefix
+ suffix = cfg[field.."extension"] or cfg.targetextension or suffix
- return path.join(dir, prefix .. name .. extension)
+ local result = { }
+ result.basename = name
+ result.name = prefix .. name .. suffix
+ result.directory = dir
+ result.fullpath = path.join(result.directory, result.name)
+ return result
end
-
-
-
+
+
+
--
-- Returns true if all of the keywords are included the set of terms. Keywords
-- may use Lua's pattern matching syntax. Comparisons are case-insensitive.
diff --git a/src/base/functions.lua b/src/base/functions.lua
index d8c7b7c..0882b7e 100644
--- a/src/base/functions.lua
+++ b/src/base/functions.lua
@@ -18,6 +18,18 @@
scope = "container",
},
+ buildaction =
+ {
+ kind = "string",
+ scope = "config",
+ allowed = {
+ "Compile",
+ "Copy",
+ "Embed",
+ "None"
+ }
+ },
+
buildoptions =
{
kind = "list",
@@ -54,7 +66,6 @@
scope = "config",
isflags = true,
allowed = {
- "Dylib",
"ExtraWarnings",
"FatalWarnings",
"Managed",
@@ -127,7 +138,8 @@
scope = "container",
allowed = {
"C",
- "C++"
+ "C++",
+ "C#"
}
},
@@ -152,7 +164,7 @@
location =
{
kind = "path",
- scope = "config",
+ scope = "container",
},
objdir =
@@ -313,6 +325,7 @@
cfg.keywords = { keywords }
end
+ -- initialize list-type fields to empty tables
for name, field in pairs(premake.fields) do
if (field.kind ~= "string" and field.kind ~= "path") then
cfg[name] = { }
@@ -336,7 +349,7 @@
error("no active solution", 2)
end
- -- see if this project has already been created
+ -- if this is a new project, create it
premake.CurrentContainer = sln.projects[name]
if (not premake.CurrentContainer) then
local prj = { }
diff --git a/src/base/help.lua b/src/base/help.lua
new file mode 100644
index 0000000..ef13fc8
--- /dev/null
+++ b/src/base/help.lua
@@ -0,0 +1,64 @@
+--
+-- help.lua
+-- User help, displayed on /help option.
+-- Copyright (c) 2002-2008 Jason Perkins and the Premake project
+--
+
+
+ function premake.showhelp()
+
+ -- sort the lists of actions and options into alphabetical order
+ actions = { }
+ for name,_ in pairs(premake.actions) do table.insert(actions, name) end
+ table.sort(actions)
+
+ options = { }
+ for name,_ in pairs(premake.options) do table.insert(options, name) end
+ table.sort(options)
+
+
+ -- display the basic usage
+ printf("Premake %s, a build script generator", _PREMAKE_VERSION)
+ printf(_PREMAKE_COPYRIGHT)
+ printf("%s %s", _VERSION, _COPYRIGHT)
+ printf("")
+ printf("Usage: premake4 [options] action [arguments]")
+ printf("")
+
+
+ -- display all options
+ printf("OPTIONS")
+ printf("")
+ for _,name in ipairs(options) do
+ local opt = premake.options[name]
+ local trigger = opt.trigger
+ local description = opt.description
+
+ if (opt.value) then trigger = trigger .. "=" .. opt.value end
+ if (opt.allowed) then description = description .. "; one of:" end
+
+ printf(" --%-15s %s", trigger, description)
+ if (opt.allowed) then
+ table.sort(opt.allowed, function(a,b) return a[1] < b[1] end)
+ for _, value in ipairs(opt.allowed) do
+ printf(" %-14s %s", value[1], value[2])
+ end
+ end
+ printf("")
+ end
+
+ -- display all actions
+ printf("ACTIONS")
+ printf("")
+ for _,name in ipairs(actions) do
+ printf(" %-17s %s", name, premake.actions[name].description)
+ end
+ printf("")
+
+
+ -- see more
+ printf("For additional information, see http://industriousone.com/premake")
+
+ end
+
+
diff --git a/src/base/path.lua b/src/base/path.lua
index a08bce7..6dd5bd7 100644
--- a/src/base/path.lua
+++ b/src/base/path.lua
@@ -19,17 +19,16 @@
if (p == "") then p = "." end
-- if the directory is already absolute I don't need to do anything
- if (path.isabsolute(p)) then
- return p
- end
+ local result = iif (path.isabsolute(p), nil, os.getcwd())
-- split up the supplied relative path and tackle it bit by bit
- local result = os.getcwd()
for _,part in ipairs(p:explode("/", true)) do
- if (part == "..") then
+ if (part == "") then
+ result = "/"
+ elseif (part == "..") then
result = path.getdirectory(result)
elseif (part ~= ".") then
- result = result .. "/" .. part
+ result = path.join(result, part)
end
end
@@ -88,7 +87,7 @@
--
function path.getname(p)
- local i = p:findlast("/", true)
+ local i = p:findlast("[/\\]")
if (i) then
return p:sub(i + 1)
else
@@ -96,18 +95,6 @@
end
end
-
---
--- Takes a path which is relative to one location and makes it relative
--- to another location instead.
---
-
- function path.rebase(p, oldbase, newbase)
- p = path.getabsolute(path.join(oldbase, p))
- p = path.getrelative(newbase, p)
- return p
- end
-
--
-- Returns the relative path from src to dest.
@@ -223,6 +210,18 @@
return leading .. trailing
end
+
+--
+-- Takes a path which is relative to one location and makes it relative
+-- to another location instead.
+--
+
+ function path.rebase(p, oldbase, newbase)
+ p = path.getabsolute(path.join(oldbase, p))
+ p = path.getrelative(newbase, p)
+ return p
+ end
+
--
-- Convert the separators in a path from one form to another. If `sep`
@@ -230,13 +229,21 @@
--
function path.translate(p, sep)
- if (not sep) then
- if (os.is("windows")) then
- sep = "\\"
- else
- sep = "/"
+ if (type(p) == "table") then
+ local result = { }
+ for _, value in ipairs(p) do
+ table.insert(result, path.translate(value))
end
- end
- local result = p:gsub("[/\\]", sep)
- return result
+ return result
+ else
+ if (not sep) then
+ if (os.is("windows")) then
+ sep = "\\"
+ else
+ sep = "/"
+ end
+ end
+ local result = p:gsub("[/\\]", sep)
+ return result
+ end
end
diff --git a/src/base/premake.lua b/src/base/premake.lua
index be36af8..31ebbcf 100644
--- a/src/base/premake.lua
+++ b/src/base/premake.lua
@@ -6,13 +6,12 @@
--
--- Check the specified tools (/cc, /csc, etc.) against the current action
+-- Check the specified tools (/cc, /dotnet, etc.) against the current action
-- to make sure they are compatible and supported.
--
function premake.checktools()
local action = premake.actions[_ACTION]
-
if (not action.valid_tools) then
return true
end
@@ -97,8 +96,13 @@
-- walk the session objects and generate files from the templates
local function generatefiles(this, templates)
- if (templates) then
- for _,tmpl in ipairs(templates) do
+ if (not templates) then return end
+ for _,tmpl in ipairs(templates) do
+ local output = true
+ if (tmpl[3]) then
+ output = tmpl[3](this)
+ end
+ if (output) then
local fname = premake.getoutputname(this, tmpl[1])
local f, err = io.open(fname, "wb")
if (not f) then
@@ -106,6 +110,7 @@
end
io.output(f)
+ -- call the template function to generate the output
tmpl[2](this)
io.output():close()
diff --git a/src/base/project.lua b/src/base/project.lua
index 97caa4e..47751e1 100644
--- a/src/base/project.lua
+++ b/src/base/project.lua
@@ -232,16 +232,16 @@
local function domatchedarray(ctype, fieldname, value, matchfunc)
local result = { }
- function makeabsolute(arr)
- for i,value in ipairs(arr) do
- if (type(value) == "table") then
- makeabsolute(value)
+ function makeabsolute(value)
+ if (type(value) == "table") then
+ for _,item in ipairs(value) do
+ makeabsolute(item)
+ end
+ else
+ if value:find("*") then
+ makeabsolute(matchfunc(value))
else
- if value:find("*") then
- makeabsolute(matchfunc(value))
- else
- table.insert(result, path.getabsolute(value))
- end
+ table.insert(result, path.getabsolute(value))
end
end
end
diff --git a/src/host/bytecode.c b/src/host/bytecode.c
index 6dec801..7207ba0 100644
--- a/src/host/bytecode.c
+++ b/src/host/bytecode.c
@@ -2,66 +2,72 @@
/* To regenerate this file, run `premake --compile` (Premake 3.x) */
const char* builtin_bytecode[] = {
- "\033\114\165\141\121\000\001\004\004\004\010\000\023\000\000\000\100\163\162\143\057\142\141\163\145\057\160\141\164\150\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\002\052\000\000\000\012\000\000\000\007\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\000\000\000\144\200\000\000\011\100\200\201\005\000\000\000\144\300\000\000\011\100\000\202\005\000\000\000\144\000\001\000\011\100\200\202\005\000\000\000\144\100\001\000\011\100\000\203\005\000\000\000\144\200\001\000\011\100\200\203\005\000\000\000\144\300\001\000\011\100\000\204\005\000\000\000\144\000\002\000\011\100\200\204\005\000\000\000\144\100\002\000\011\100\000\205\005\000\000\000\144\200\002\000\011\100\200\205\005\000\000\000\144\300\002\000\011\100\000\206\005\000\000\000\144\000\003\000\011\100\200\206\036\000\200\000\016\000\000\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\004\014\000\000\000\147\145\164\142\141\163\145\156\141\155\145\000\004\015\000\000\000\147\145\164\144\151\162\145\143\164\157\162\171\000\004\015\000\000\000\147\145\164\145\170\164\145\156\163\151\157\156\000\004\010\000\000\000\147\145\164\156\141\155\145\000\004\007\000\000\000\162\145\142\141\163\145\000\004\014\000\000\000\147\145\164\162\145\154\141\164\151\166\145\000\004\013\000\000\000\151\163\141\142\163\157\154\165\164\145\000\004\010\000\000\000\151\163\143\146\151\154\145\000\004\012\000\000\000\151\163\143\160\160\146\151\154\145\000\004\017\000\000\000\151\163\162\145\163\157\165\162\143\145\146\151\154\145\000\004\005\000\000\000\152\157\151\156\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\015\000\000\000\000\000\000\000\020\000\000\000\045\000\000\000\000\001\000\012\054\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\301\200\000\000\134\200\200\001\000\000\200\000\027\300\100\000\026\000\000\200\001\000\001\000\105\000\000\000\106\100\301\000\200\000\000\000\134\200\000\001\132\000\000\000\026\000\000\200\036\000\000\001\105\200\001\000\106\300\301\000\134\200\200\000\205\000\002\000\313\100\102\000\101\201\000\000\202\001\200\000\334\000\000\002\234\000\001\000\026\100\003\200\027\200\102\003\026\100\001\200\305\001\000\000\306\301\302\003\000\002\200\000\334\201\000\001\100\000\200\003\026\100\001\200\127\000\101\003\026\300\000\200\300\001\200\000\001\202\000\000\100\002\000\003\125\100\202\003\241\200\000\000\026\300\373\177\136\000\000\001\036\000\200\000\014\000\000\000\004\005\000\000\000\160\141\164\150\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\002\000\000\000\057\000\004\001\000\000\000\000\004\002\000\000\000\056\000\004\013\000\000\000\151\163\141\142\163\157\154\165\164\145\000\004\003\000\000\000\157\163\000\004\007\000\000\000\147\145\164\143\167\144\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\145\170\160\154\157\144\145\000\004\003\000\000\000\056\056\000\004\015\000\000\000\147\145\164\144\151\162\145\143\164\157\162\171\000\000\000\000\000\054\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\027\000\000\000\033\000\000\000\033\000\000\000\033\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\035\000\000\000\035\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\037\000\000\000\037\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\034\000\000\000\041\000\000\000\044\000\000\000\045\000\000\000\007\000\000\000\002\000\000\000\160\000\000\000\000\000\053\000\000\000\007\000\000\000\162\145\163\165\154\164\000\023\000\000\000\053\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\031\000\000\000\052\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\031\000\000\000\052\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\031\000\000\000\052\000\000\000\002\000\000\000\137\000\032\000\000\000\050\000\000\000\005\000\000\000\160\141\162\164\000\032\000\000\000\050\000\000\000\000\000\000\000\000\000\000\000\054\000\000\000\064\000\000\000\000\001\000\007\022\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\134\200\000\001\213\200\300\000\001\301\000\000\102\001\200\000\234\200\000\002\232\000\000\000\026\100\001\200\313\000\301\000\101\101\001\000\215\101\101\001\335\000\000\002\336\000\000\000\026\000\000\200\136\000\000\001\036\000\200\000\006\000\000\000\004\005\000\000\000\160\141\164\150\000\004\010\000\000\000\147\145\164\156\141\155\145\000\004\011\000\000\000\146\151\156\144\154\141\163\164\000\004\002\000\000\000\056\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\000\000\000\000\022\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\057\000\000\000\057\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\062\000\000\000\064\000\000\000\003\000\000\000\002\000\000\000\160\000\000\000\000\000\021\000\000\000\005\000\000\000\156\141\155\145\000\004\000\000\000\021\000\000\000\002\000\000\000\151\000\010\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\074\000\000\000\104\000\000\000\000\001\000\006\022\000\000\000\113\000\100\000\301\100\000\000\002\001\200\000\134\200\000\002\132\000\000\000\026\000\002\200\030\100\000\201\026\000\000\200\115\200\300\000\213\300\100\000\001\201\000\000\100\001\200\000\235\000\000\002\236\000\000\000\026\100\000\200\201\000\001\000\236\000\000\001\036\000\200\000\005\000\000\000\004\011\000\000\000\146\151\156\144\154\141\163\164\000\004\002\000\000\000\057\000\003\000\000\000\000\000\000\360\077\004\004\000\000\000\163\165\142\000\004\002\000\000\000\056\000\000\000\000\000\022\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\076\000\000\000\077\000\000\000\077\000\000\000\077\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\102\000\000\000\102\000\000\000\104\000\000\000\002\000\000\000\002\000\000\000\160\000\000\000\000\000\021\000\000\000\002\000\000\000\151\000\004\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\113\000\000\000\122\000\000\000\000\001\000\005\016\000\000\000\113\000\100\000\301\100\000\000\002\001\200\000\134\200\000\002\132\000\000\000\026\000\001\200\213\200\100\000\000\001\200\000\235\000\200\001\236\000\000\000\026\100\000\200\201\300\000\000\236\000\000\001\036\000\200\000\004\000\000\000\004\011\000\000\000\146\151\156\144\154\141\163\164\000\004\002\000\000\000\056\000\004\004\000\000\000\163\165\142\000\004\001\000\000\000\000\000\000\000\000\016\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\115\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\120\000\000\000\120\000\000\000\122\000\000\000\002\000\000\000\002\000\000\000\160\000\000\000\000\000\015\000\000\000\002\000\000\000\151\000\004\000\000\000\015\000\000\000\000\000\000\000\000\000\000\000\132\000\000\000\141\000\000\000\000\001\000\005\015\000\000\000\113\000\100\000\301\100\000\000\002\001\200\000\134\200\000\002\132\000\000\000\026\000\001\200\213\200\100\000\014\301\300\000\235\000\200\001\236\000\000\000\026\000\000\200\036\000\000\001\036\000\200\000\004\000\000\000\004\011\000\000\000\146\151\156\144\154\141\163\164\000\004\002\000\000\000\057\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\000\000\000\000\015\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\134\000\000\000\134\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\137\000\000\000\141\000\000\000\002\000\000\000\002\000\000\000\160\000\000\000\000\000\014\000\000\000\002\000\000\000\151\000\004\000\000\000\014\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\155\000\000\000\000\003\000\007\021\000\000\000\305\000\000\000\306\100\300\001\005\001\000\000\006\201\100\002\100\001\200\000\200\001\000\000\034\001\200\001\334\200\000\000\000\000\200\001\305\000\000\000\306\300\300\001\000\001\000\001\100\001\000\000\334\200\200\001\000\000\200\001\036\000\000\001\036\000\200\000\004\000\000\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\004\005\000\000\000\152\157\151\156\000\004\014\000\000\000\147\145\164\162\145\154\141\164\151\166\145\000\000\000\000\000\021\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\154\000\000\000\155\000\000\000\003\000\000\000\002\000\000\000\160\000\000\000\000\000\020\000\000\000\010\000\000\000\157\154\144\142\141\163\145\000\000\000\000\000\020\000\000\000\010\000\000\000\156\145\167\142\141\163\145\000\000\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\164\000\000\000\230\000\000\000\000\002\000\011\107\000\000\000\201\000\000\000\305\100\000\000\306\200\300\001\000\001\000\000\334\200\000\001\001\301\000\000\025\000\201\001\305\100\000\000\306\200\300\001\000\001\200\000\334\200\000\001\001\301\000\000\125\000\201\001\027\100\000\000\026\100\000\200\301\000\001\000\336\000\000\001\313\100\101\000\101\301\000\000\334\200\200\001\332\000\000\000\026\000\006\200\013\201\101\000\201\301\001\000\300\001\200\001\034\201\000\002\113\201\301\000\301\301\001\000\000\002\200\001\134\201\000\002\027\100\001\002\026\200\003\200\013\201\101\000\214\301\301\001\034\201\200\001\000\000\000\002\013\201\301\000\214\301\301\001\034\201\200\001\100\000\000\002\026\000\000\200\026\000\001\200\013\101\101\000\201\301\000\000\034\201\200\001\300\000\000\002\026\000\371\177\013\101\101\000\201\301\000\000\034\201\200\001\300\000\000\002\332\000\000\000\026\000\002\200\000\001\000\001\101\001\002\000\225\100\001\002\013\101\101\000\201\301\000\000\314\301\301\001\034\201\000\002\300\000\000\002\026\000\375\177\000\001\000\001\100\001\200\000\225\100\001\002\013\201\101\001\201\301\001\000\301\101\002\000\035\001\000\002\036\001\000\000\036\000\200\000\012\000\000\000\004\001\000\000\000\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\004\002\000\000\000\057\000\004\002\000\000\000\056\000\004\005\000\000\000\146\151\156\144\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\004\004\000\000\000\056\056\057\000\003\000\000\000\000\000\000\000\300\000\000\000\000\107\000\000\000\165\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\174\000\000\000\174\000\000\000\175\000\000\000\175\000\000\000\201\000\000\000\201\000\000\000\201\000\000\000\202\000\000\000\202\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\204\000\000\000\204\000\000\000\204\000\000\000\204\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\207\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\215\000\000\000\215\000\000\000\215\000\000\000\215\000\000\000\216\000\000\000\216\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\230\000\000\000\004\000\000\000\004\000\000\000\163\162\143\000\000\000\000\000\106\000\000\000\004\000\000\000\144\163\164\000\000\000\000\000\106\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\106\000\000\000\002\000\000\000\151\000\024\000\000\000\106\000\000\000\000\000\000\000\000\000\000\000\237\000\000\000\243\000\000\000\000\001\000\006\022\000\000\000\113\000\100\000\301\100\000\000\001\101\000\000\134\200\000\002\213\000\100\000\001\201\000\000\101\201\000\000\234\200\000\002\127\300\300\000\026\000\001\200\127\000\301\000\026\200\000\200\127\100\101\001\026\000\000\200\302\100\000\000\302\000\200\000\336\000\000\001\036\000\200\000\006\000\000\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\003\000\000\000\000\000\000\000\100\004\002\000\000\000\057\000\004\002\000\000\000\134\000\004\002\000\000\000\072\000\000\000\000\000\022\000\000\000\240\000\000\000\240\000\000\000\240\000\000\000\240\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\243\000\000\000\003\000\000\000\002\000\000\000\160\000\000\000\000\000\021\000\000\000\004\000\000\000\143\150\061\000\004\000\000\000\021\000\000\000\004\000\000\000\143\150\062\000\010\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\254\000\000\000\260\000\000\000\000\001\000\006\021\000\000\000\112\000\000\001\201\000\000\000\301\100\000\000\142\100\000\001\205\200\000\000\206\300\100\001\300\000\000\000\234\200\000\001\213\000\101\001\234\200\000\001\305\100\001\000\306\200\301\001\000\001\200\000\100\001\000\001\335\000\200\001\336\000\000\000\036\000\200\000\007\000\000\000\004\003\000\000\000\056\143\000\004\003\000\000\000\056\163\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\145\170\164\145\156\163\151\157\156\000\004\006\000\000\000\154\157\167\145\162\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\000\000\000\000\021\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\257\000\000\000\257\000\000\000\257\000\000\000\257\000\000\000\257\000\000\000\257\000\000\000\260\000\000\000\003\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\020\000\000\000\013\000\000\000\145\170\164\145\156\163\151\157\156\163\000\004\000\000\000\020\000\000\000\004\000\000\000\145\170\164\000\012\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\262\000\000\000\266\000\000\000\000\001\000\007\024\000\000\000\112\000\200\002\201\000\000\000\301\100\000\000\001\201\000\000\101\301\000\000\201\001\001\000\142\100\200\002\205\100\001\000\206\200\101\001\300\000\000\000\234\200\000\001\213\300\101\001\234\200\000\001\305\000\002\000\306\100\302\001\000\001\200\000\100\001\000\001\335\000\200\001\336\000\000\000\036\000\200\000\012\000\000\000\004\004\000\000\000\056\143\143\000\004\005\000\000\000\056\143\160\160\000\004\005\000\000\000\056\143\170\170\000\004\003\000\000\000\056\143\000\004\003\000\000\000\056\163\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\145\170\164\145\156\163\151\157\156\000\004\006\000\000\000\154\157\167\145\162\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\000\000\000\000\024\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\265\000\000\000\265\000\000\000\265\000\000\000\265\000\000\000\265\000\000\000\265\000\000\000\266\000\000\000\003\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\023\000\000\000\013\000\000\000\145\170\164\145\156\163\151\157\156\163\000\007\000\000\000\023\000\000\000\004\000\000\000\145\170\164\000\015\000\000\000\023\000\000\000\000\000\000\000\000\000\000\000\276\000\000\000\302\000\000\000\000\001\000\006\020\000\000\000\112\000\200\000\201\000\000\000\142\100\200\000\205\100\000\000\206\200\100\001\300\000\000\000\234\200\000\001\213\300\100\001\234\200\000\001\305\000\001\000\306\100\301\001\000\001\200\000\100\001\000\001\335\000\200\001\336\000\000\000\036\000\200\000\006\000\000\000\004\004\000\000\000\056\162\143\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\145\170\164\145\156\163\151\157\156\000\004\006\000\000\000\154\157\167\145\162\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\000\000\000\000\020\000\000\000\277\000\000\000\277\000\000\000\277\000\000\000\300\000\000\000\300\000\000\000\300\000\000\000\300\000\000\000\300\000\000\000\300\000\000\000\301\000\000\000\301\000\000\000\301\000\000\000\301\000\000\000\301\000\000\000\301\000\000\000\302\000\000\000\003\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\017\000\000\000\013\000\000\000\145\170\164\145\156\163\151\157\156\163\000\003\000\000\000\017\000\000\000\004\000\000\000\145\170\164\000\011\000\000\000\017\000\000\000\000\000\000\000\000\000\000\000\312\000\000\000\340\000\000\000\000\002\000\005\041\000\000\000\032\100\000\000\026\000\000\200\001\000\000\000\132\100\000\000\026\000\000\200\036\000\000\001\205\100\000\000\206\200\100\001\300\000\200\000\234\200\000\001\232\000\000\000\026\000\000\200\136\000\000\001\027\300\100\000\026\000\000\200\001\000\000\000\213\000\101\000\234\200\000\001\030\200\200\202\026\300\001\200\213\200\101\000\001\301\001\000\234\200\200\001\232\100\000\000\026\200\000\200\200\000\000\000\301\300\001\000\025\300\000\001\200\000\000\000\300\000\200\000\225\300\000\001\236\000\000\001\036\000\200\000\010\000\000\000\004\001\000\000\000\000\004\005\000\000\000\160\141\164\150\000\004\013\000\000\000\151\163\141\142\163\157\154\165\164\145\000\004\002\000\000\000\056\000\004\004\000\000\000\154\145\156\000\003\000\000\000\000\000\000\000\000\004\011\000\000\000\145\156\144\163\167\151\164\150\000\004\002\000\000\000\057\000\000\000\000\000\041\000\000\000\313\000\000\000\313\000\000\000\314\000\000\000\317\000\000\000\317\000\000\000\320\000\000\000\323\000\000\000\323\000\000\000\323\000\000\000\323\000\000\000\323\000\000\000\323\000\000\000\324\000\000\000\327\000\000\000\327\000\000\000\330\000\000\000\333\000\000\000\333\000\000\000\333\000\000\000\333\000\000\000\333\000\000\000\333\000\000\000\333\000\000\000\333\000\000\000\333\000\000\000\334\000\000\000\334\000\000\000\334\000\000\000\337\000\000\000\337\000\000\000\337\000\000\000\337\000\000\000\340\000\000\000\002\000\000\000\010\000\000\000\154\145\141\144\151\156\147\000\000\000\000\000\040\000\000\000\011\000\000\000\164\162\141\151\154\151\156\147\000\000\000\000\000\040\000\000\000\000\000\000\000\000\000\000\000\350\000\000\000\362\000\000\000\000\002\000\006\021\000\000\000\132\100\000\000\026\000\002\200\205\000\000\000\206\100\100\001\301\200\000\000\234\200\000\001\232\000\000\000\026\100\000\200\101\300\000\000\026\000\000\200\101\000\001\000\213\100\101\000\001\201\001\000\100\001\200\000\234\200\000\002\236\000\000\001\036\000\200\000\007\000\000\000\004\003\000\000\000\157\163\000\004\003\000\000\000\151\163\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\002\000\000\000\134\000\004\002\000\000\000\057\000\004\005\000\000\000\147\163\165\142\000\004\005\000\000\000\133\057\134\135\000\000\000\000\000\021\000\000\000\351\000\000\000\351\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\353\000\000\000\353\000\000\000\355\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\361\000\000\000\362\000\000\000\003\000\000\000\002\000\000\000\160\000\000\000\000\000\020\000\000\000\004\000\000\000\163\145\160\000\000\000\000\000\020\000\000\000\007\000\000\000\162\145\163\165\154\164\000\017\000\000\000\020\000\000\000\000\000\000\000\052\000\000\000\010\000\000\000\010\000\000\000\020\000\000\000\045\000\000\000\020\000\000\000\054\000\000\000\064\000\000\000\054\000\000\000\074\000\000\000\104\000\000\000\074\000\000\000\113\000\000\000\122\000\000\000\113\000\000\000\132\000\000\000\141\000\000\000\132\000\000\000\151\000\000\000\155\000\000\000\151\000\000\000\164\000\000\000\230\000\000\000\164\000\000\000\237\000\000\000\243\000\000\000\237\000\000\000\254\000\000\000\260\000\000\000\254\000\000\000\262\000\000\000\266\000\000\000\262\000\000\000\276\000\000\000\302\000\000\000\276\000\000\000\312\000\000\000\340\000\000\000\312\000\000\000\350\000\000\000\362\000\000\000\350\000\000\000\362\000\000\000\000\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\023\000\000\000\100\163\162\143\057\142\141\163\145\057\160\141\164\150\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\002\052\000\000\000\012\000\000\000\007\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\000\000\000\144\200\000\000\011\100\200\201\005\000\000\000\144\300\000\000\011\100\000\202\005\000\000\000\144\000\001\000\011\100\200\202\005\000\000\000\144\100\001\000\011\100\000\203\005\000\000\000\144\200\001\000\011\100\200\203\005\000\000\000\144\300\001\000\011\100\000\204\005\000\000\000\144\000\002\000\011\100\200\204\005\000\000\000\144\100\002\000\011\100\000\205\005\000\000\000\144\200\002\000\011\100\200\205\005\000\000\000\144\300\002\000\011\100\000\206\005\000\000\000\144\000\003\000\011\100\200\206\036\000\200\000\016\000\000\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\004\014\000\000\000\147\145\164\142\141\163\145\156\141\155\145\000\004\015\000\000\000\147\145\164\144\151\162\145\143\164\157\162\171\000\004\015\000\000\000\147\145\164\145\170\164\145\156\163\151\157\156\000\004\010\000\000\000\147\145\164\156\141\155\145\000\004\014\000\000\000\147\145\164\162\145\154\141\164\151\166\145\000\004\013\000\000\000\151\163\141\142\163\157\154\165\164\145\000\004\010\000\000\000\151\163\143\146\151\154\145\000\004\012\000\000\000\151\163\143\160\160\146\151\154\145\000\004\017\000\000\000\151\163\162\145\163\157\165\162\143\145\146\151\154\145\000\004\005\000\000\000\152\157\151\156\000\004\007\000\000\000\162\145\142\141\163\145\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\015\000\000\000\000\000\000\000\020\000\000\000\044\000\000\000\000\001\000\012\062\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\301\200\000\000\134\200\200\001\000\000\200\000\027\300\100\000\026\000\000\200\001\000\001\000\105\100\001\000\205\000\000\000\206\200\101\001\300\000\000\000\234\200\000\001\303\000\200\001\005\301\001\000\006\001\102\002\034\001\200\000\134\200\000\000\205\100\002\000\313\200\102\000\101\201\000\000\202\001\200\000\334\000\000\002\234\000\001\000\026\300\004\200\027\300\100\003\026\100\000\200\101\200\000\000\026\300\003\200\027\300\102\003\026\100\001\200\305\001\000\000\306\001\303\003\000\002\200\000\334\201\000\001\100\000\200\003\026\300\001\200\127\000\101\003\026\100\001\200\305\001\000\000\306\101\303\003\000\002\200\000\100\002\000\003\334\201\200\001\100\000\200\003\241\200\000\000\026\100\372\177\136\000\000\001\036\000\200\000\016\000\000\000\004\005\000\000\000\160\141\164\150\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\002\000\000\000\057\000\004\001\000\000\000\000\004\002\000\000\000\056\000\004\004\000\000\000\151\151\146\000\004\013\000\000\000\151\163\141\142\163\157\154\165\164\145\000\004\003\000\000\000\157\163\000\004\007\000\000\000\147\145\164\143\167\144\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\145\170\160\154\157\144\145\000\004\003\000\000\000\056\056\000\004\015\000\000\000\147\145\164\144\151\162\145\143\164\157\162\171\000\004\005\000\000\000\152\157\151\156\000\000\000\000\000\062\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\032\000\000\000\032\000\000\000\033\000\000\000\033\000\000\000\034\000\000\000\034\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\036\000\000\000\036\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\031\000\000\000\040\000\000\000\043\000\000\000\044\000\000\000\007\000\000\000\002\000\000\000\160\000\000\000\000\000\061\000\000\000\007\000\000\000\162\145\163\165\154\164\000\023\000\000\000\061\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\031\000\000\000\060\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\031\000\000\000\060\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\031\000\000\000\060\000\000\000\002\000\000\000\137\000\032\000\000\000\056\000\000\000\005\000\000\000\160\141\162\164\000\032\000\000\000\056\000\000\000\000\000\000\000\000\000\000\000\053\000\000\000\063\000\000\000\000\001\000\007\022\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\134\200\000\001\213\200\300\000\001\301\000\000\102\001\200\000\234\200\000\002\232\000\000\000\026\100\001\200\313\000\301\000\101\101\001\000\215\101\101\001\335\000\000\002\336\000\000\000\026\000\000\200\136\000\000\001\036\000\200\000\006\000\000\000\004\005\000\000\000\160\141\164\150\000\004\010\000\000\000\147\145\164\156\141\155\145\000\004\011\000\000\000\146\151\156\144\154\141\163\164\000\004\002\000\000\000\056\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\000\000\000\000\022\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\056\000\000\000\056\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\061\000\000\000\063\000\000\000\003\000\000\000\002\000\000\000\160\000\000\000\000\000\021\000\000\000\005\000\000\000\156\141\155\145\000\004\000\000\000\021\000\000\000\002\000\000\000\151\000\010\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\073\000\000\000\103\000\000\000\000\001\000\006\022\000\000\000\113\000\100\000\301\100\000\000\002\001\200\000\134\200\000\002\132\000\000\000\026\000\002\200\030\100\000\201\026\000\000\200\115\200\300\000\213\300\100\000\001\201\000\000\100\001\200\000\235\000\000\002\236\000\000\000\026\100\000\200\201\000\001\000\236\000\000\001\036\000\200\000\005\000\000\000\004\011\000\000\000\146\151\156\144\154\141\163\164\000\004\002\000\000\000\057\000\003\000\000\000\000\000\000\360\077\004\004\000\000\000\163\165\142\000\004\002\000\000\000\056\000\000\000\000\000\022\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\077\000\000\000\077\000\000\000\077\000\000\000\077\000\000\000\077\000\000\000\077\000\000\000\101\000\000\000\101\000\000\000\103\000\000\000\002\000\000\000\002\000\000\000\160\000\000\000\000\000\021\000\000\000\002\000\000\000\151\000\004\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\112\000\000\000\121\000\000\000\000\001\000\005\016\000\000\000\113\000\100\000\301\100\000\000\002\001\200\000\134\200\000\002\132\000\000\000\026\000\001\200\213\200\100\000\000\001\200\000\235\000\200\001\236\000\000\000\026\100\000\200\201\300\000\000\236\000\000\001\036\000\200\000\004\000\000\000\004\011\000\000\000\146\151\156\144\154\141\163\164\000\004\002\000\000\000\056\000\004\004\000\000\000\163\165\142\000\004\001\000\000\000\000\000\000\000\000\016\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\117\000\000\000\117\000\000\000\121\000\000\000\002\000\000\000\002\000\000\000\160\000\000\000\000\000\015\000\000\000\002\000\000\000\151\000\004\000\000\000\015\000\000\000\000\000\000\000\000\000\000\000\131\000\000\000\140\000\000\000\000\001\000\005\014\000\000\000\113\000\100\000\301\100\000\000\134\200\200\001\132\000\000\000\026\000\001\200\213\200\100\000\014\301\300\000\235\000\200\001\236\000\000\000\026\000\000\200\036\000\000\001\036\000\200\000\004\000\000\000\004\011\000\000\000\146\151\156\144\154\141\163\164\000\004\005\000\000\000\133\057\134\135\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\000\000\000\000\014\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\133\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\136\000\000\000\140\000\000\000\002\000\000\000\002\000\000\000\160\000\000\000\000\000\013\000\000\000\002\000\000\000\151\000\003\000\000\000\013\000\000\000\000\000\000\000\000\000\000\000\147\000\000\000\213\000\000\000\000\002\000\011\107\000\000\000\201\000\000\000\305\100\000\000\306\200\300\001\000\001\000\000\334\200\000\001\001\301\000\000\025\000\201\001\305\100\000\000\306\200\300\001\000\001\200\000\334\200\000\001\001\301\000\000\125\000\201\001\027\100\000\000\026\100\000\200\301\000\001\000\336\000\000\001\313\100\101\000\101\301\000\000\334\200\200\001\332\000\000\000\026\000\006\200\013\201\101\000\201\301\001\000\300\001\200\001\034\201\000\002\113\201\301\000\301\301\001\000\000\002\200\001\134\201\000\002\027\100\001\002\026\200\003\200\013\201\101\000\214\301\301\001\034\201\200\001\000\000\000\002\013\201\301\000\214\301\301\001\034\201\200\001\100\000\000\002\026\000\000\200\026\000\001\200\013\101\101\000\201\301\000\000\034\201\200\001\300\000\000\002\026\000\371\177\013\101\101\000\201\301\000\000\034\201\200\001\300\000\000\002\332\000\000\000\026\000\002\200\000\001\000\001\101\001\002\000\225\100\001\002\013\101\101\000\201\301\000\000\314\301\301\001\034\201\000\002\300\000\000\002\026\000\375\177\000\001\000\001\100\001\200\000\225\100\001\002\013\201\101\001\201\301\001\000\301\101\002\000\035\001\000\002\036\001\000\000\036\000\200\000\012\000\000\000\004\001\000\000\000\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\004\002\000\000\000\057\000\004\002\000\000\000\056\000\004\005\000\000\000\146\151\156\144\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\004\004\000\000\000\056\056\057\000\003\000\000\000\000\000\000\000\300\000\000\000\000\107\000\000\000\150\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\157\000\000\000\157\000\000\000\160\000\000\000\160\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\165\000\000\000\165\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\172\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\200\000\000\000\200\000\000\000\200\000\000\000\200\000\000\000\201\000\000\000\201\000\000\000\202\000\000\000\202\000\000\000\202\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\207\000\000\000\207\000\000\000\207\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\213\000\000\000\004\000\000\000\004\000\000\000\163\162\143\000\000\000\000\000\106\000\000\000\004\000\000\000\144\163\164\000\000\000\000\000\106\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\106\000\000\000\002\000\000\000\151\000\024\000\000\000\106\000\000\000\000\000\000\000\000\000\000\000\222\000\000\000\226\000\000\000\000\001\000\006\022\000\000\000\113\000\100\000\301\100\000\000\001\101\000\000\134\200\000\002\213\000\100\000\001\201\000\000\101\201\000\000\234\200\000\002\127\300\300\000\026\000\001\200\127\000\301\000\026\200\000\200\127\100\101\001\026\000\000\200\302\100\000\000\302\000\200\000\336\000\000\001\036\000\200\000\006\000\000\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\003\000\000\000\000\000\000\000\100\004\002\000\000\000\057\000\004\002\000\000\000\134\000\004\002\000\000\000\072\000\000\000\000\000\022\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\225\000\000\000\225\000\000\000\225\000\000\000\225\000\000\000\225\000\000\000\225\000\000\000\225\000\000\000\225\000\000\000\225\000\000\000\226\000\000\000\003\000\000\000\002\000\000\000\160\000\000\000\000\000\021\000\000\000\004\000\000\000\143\150\061\000\004\000\000\000\021\000\000\000\004\000\000\000\143\150\062\000\010\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\237\000\000\000\243\000\000\000\000\001\000\006\021\000\000\000\112\000\000\001\201\000\000\000\301\100\000\000\142\100\000\001\205\200\000\000\206\300\100\001\300\000\000\000\234\200\000\001\213\000\101\001\234\200\000\001\305\100\001\000\306\200\301\001\000\001\200\000\100\001\000\001\335\000\200\001\336\000\000\000\036\000\200\000\007\000\000\000\004\003\000\000\000\056\143\000\004\003\000\000\000\056\163\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\145\170\164\145\156\163\151\157\156\000\004\006\000\000\000\154\157\167\145\162\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\000\000\000\000\021\000\000\000\240\000\000\000\240\000\000\000\240\000\000\000\240\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\243\000\000\000\003\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\020\000\000\000\013\000\000\000\145\170\164\145\156\163\151\157\156\163\000\004\000\000\000\020\000\000\000\004\000\000\000\145\170\164\000\012\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\245\000\000\000\251\000\000\000\000\001\000\007\024\000\000\000\112\000\200\002\201\000\000\000\301\100\000\000\001\201\000\000\101\301\000\000\201\001\001\000\142\100\200\002\205\100\001\000\206\200\101\001\300\000\000\000\234\200\000\001\213\300\101\001\234\200\000\001\305\000\002\000\306\100\302\001\000\001\200\000\100\001\000\001\335\000\200\001\336\000\000\000\036\000\200\000\012\000\000\000\004\004\000\000\000\056\143\143\000\004\005\000\000\000\056\143\160\160\000\004\005\000\000\000\056\143\170\170\000\004\003\000\000\000\056\143\000\004\003\000\000\000\056\163\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\145\170\164\145\156\163\151\157\156\000\004\006\000\000\000\154\157\167\145\162\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\000\000\000\000\024\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\250\000\000\000\250\000\000\000\250\000\000\000\250\000\000\000\250\000\000\000\250\000\000\000\251\000\000\000\003\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\023\000\000\000\013\000\000\000\145\170\164\145\156\163\151\157\156\163\000\007\000\000\000\023\000\000\000\004\000\000\000\145\170\164\000\015\000\000\000\023\000\000\000\000\000\000\000\000\000\000\000\261\000\000\000\265\000\000\000\000\001\000\006\020\000\000\000\112\000\200\000\201\000\000\000\142\100\200\000\205\100\000\000\206\200\100\001\300\000\000\000\234\200\000\001\213\300\100\001\234\200\000\001\305\000\001\000\306\100\301\001\000\001\200\000\100\001\000\001\335\000\200\001\336\000\000\000\036\000\200\000\006\000\000\000\004\004\000\000\000\056\162\143\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\145\170\164\145\156\163\151\157\156\000\004\006\000\000\000\154\157\167\145\162\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\000\000\000\000\020\000\000\000\262\000\000\000\262\000\000\000\262\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\265\000\000\000\003\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\017\000\000\000\013\000\000\000\145\170\164\145\156\163\151\157\156\163\000\003\000\000\000\017\000\000\000\004\000\000\000\145\170\164\000\011\000\000\000\017\000\000\000\000\000\000\000\000\000\000\000\275\000\000\000\323\000\000\000\000\002\000\005\041\000\000\000\032\100\000\000\026\000\000\200\001\000\000\000\132\100\000\000\026\000\000\200\036\000\000\001\205\100\000\000\206\200\100\001\300\000\200\000\234\200\000\001\232\000\000\000\026\000\000\200\136\000\000\001\027\300\100\000\026\000\000\200\001\000\000\000\213\000\101\000\234\200\000\001\030\200\200\202\026\300\001\200\213\200\101\000\001\301\001\000\234\200\200\001\232\100\000\000\026\200\000\200\200\000\000\000\301\300\001\000\025\300\000\001\200\000\000\000\300\000\200\000\225\300\000\001\236\000\000\001\036\000\200\000\010\000\000\000\004\001\000\000\000\000\004\005\000\000\000\160\141\164\150\000\004\013\000\000\000\151\163\141\142\163\157\154\165\164\145\000\004\002\000\000\000\056\000\004\004\000\000\000\154\145\156\000\003\000\000\000\000\000\000\000\000\004\011\000\000\000\145\156\144\163\167\151\164\150\000\004\002\000\000\000\057\000\000\000\000\000\041\000\000\000\276\000\000\000\276\000\000\000\277\000\000\000\302\000\000\000\302\000\000\000\303\000\000\000\306\000\000\000\306\000\000\000\306\000\000\000\306\000\000\000\306\000\000\000\306\000\000\000\307\000\000\000\312\000\000\000\312\000\000\000\313\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\317\000\000\000\317\000\000\000\317\000\000\000\322\000\000\000\322\000\000\000\322\000\000\000\322\000\000\000\323\000\000\000\002\000\000\000\010\000\000\000\154\145\141\144\151\156\147\000\000\000\000\000\040\000\000\000\011\000\000\000\164\162\141\151\154\151\156\147\000\000\000\000\000\040\000\000\000\000\000\000\000\000\000\000\000\333\000\000\000\337\000\000\000\000\003\000\007\021\000\000\000\305\000\000\000\306\100\300\001\005\001\000\000\006\201\100\002\100\001\200\000\200\001\000\000\034\001\200\001\334\200\000\000\000\000\200\001\305\000\000\000\306\300\300\001\000\001\000\001\100\001\000\000\334\200\200\001\000\000\200\001\036\000\000\001\036\000\200\000\004\000\000\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\004\005\000\000\000\152\157\151\156\000\004\014\000\000\000\147\145\164\162\145\154\141\164\151\166\145\000\000\000\000\000\021\000\000\000\334\000\000\000\334\000\000\000\334\000\000\000\334\000\000\000\334\000\000\000\334\000\000\000\334\000\000\000\334\000\000\000\334\000\000\000\335\000\000\000\335\000\000\000\335\000\000\000\335\000\000\000\335\000\000\000\335\000\000\000\336\000\000\000\337\000\000\000\003\000\000\000\002\000\000\000\160\000\000\000\000\000\020\000\000\000\010\000\000\000\157\154\144\142\141\163\145\000\000\000\000\000\020\000\000\000\010\000\000\000\156\145\167\142\141\163\145\000\000\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\347\000\000\000\371\000\000\000\000\002\000\014\047\000\000\000\205\000\000\000\300\000\000\000\234\200\000\001\027\100\100\001\026\000\004\200\212\000\000\000\305\200\000\000\000\001\000\000\334\000\001\001\026\300\001\200\005\102\000\000\006\302\100\004\100\002\000\001\205\002\001\000\206\102\101\005\300\002\200\003\234\002\000\001\034\102\000\000\341\200\000\000\026\100\375\177\236\000\000\001\026\300\003\200\132\100\000\000\026\000\002\200\205\200\001\000\206\300\101\001\301\000\002\000\234\200\000\001\232\000\000\000\026\100\000\200\101\100\002\000\026\000\000\200\101\200\002\000\213\300\102\000\001\001\003\000\100\001\200\000\234\200\000\002\236\000\000\001\036\000\200\000\015\000\000\000\004\005\000\000\000\164\171\160\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\160\141\151\162\163\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\160\141\164\150\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\003\000\000\000\157\163\000\004\003\000\000\000\151\163\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\002\000\000\000\134\000\004\002\000\000\000\057\000\004\005\000\000\000\147\163\165\142\000\004\005\000\000\000\133\057\134\135\000\000\000\000\000\047\000\000\000\350\000\000\000\350\000\000\000\350\000\000\000\350\000\000\000\350\000\000\000\351\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\352\000\000\000\353\000\000\000\355\000\000\000\355\000\000\000\357\000\000\000\357\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\361\000\000\000\361\000\000\000\363\000\000\000\366\000\000\000\366\000\000\000\366\000\000\000\366\000\000\000\367\000\000\000\371\000\000\000\011\000\000\000\002\000\000\000\160\000\000\000\000\000\046\000\000\000\004\000\000\000\163\145\160\000\000\000\000\000\046\000\000\000\007\000\000\000\162\145\163\165\154\164\000\006\000\000\000\025\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\011\000\000\000\024\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\011\000\000\000\024\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\011\000\000\000\024\000\000\000\002\000\000\000\137\000\012\000\000\000\022\000\000\000\006\000\000\000\166\141\154\165\145\000\012\000\000\000\022\000\000\000\007\000\000\000\162\145\163\165\154\164\000\045\000\000\000\046\000\000\000\000\000\000\000\052\000\000\000\010\000\000\000\010\000\000\000\020\000\000\000\044\000\000\000\020\000\000\000\053\000\000\000\063\000\000\000\053\000\000\000\073\000\000\000\103\000\000\000\073\000\000\000\112\000\000\000\121\000\000\000\112\000\000\000\131\000\000\000\140\000\000\000\131\000\000\000\147\000\000\000\213\000\000\000\147\000\000\000\222\000\000\000\226\000\000\000\222\000\000\000\237\000\000\000\243\000\000\000\237\000\000\000\245\000\000\000\251\000\000\000\245\000\000\000\261\000\000\000\265\000\000\000\261\000\000\000\275\000\000\000\323\000\000\000\275\000\000\000\333\000\000\000\337\000\000\000\333\000\000\000\347\000\000\000\371\000\000\000\347\000\000\000\371\000\000\000\000\000\000\000\000\000\000\000",
"\033\114\165\141\121\000\001\004\004\004\010\000\025\000\000\000\100\163\162\143\057\142\141\163\145\057\163\164\162\151\156\147\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\002\015\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\000\000\000\144\200\000\000\011\100\200\201\005\000\000\000\144\300\000\000\011\100\000\202\036\000\200\000\005\000\000\000\004\007\000\000\000\163\164\162\151\156\147\000\004\011\000\000\000\145\156\144\163\167\151\164\150\000\004\010\000\000\000\145\170\160\154\157\144\145\000\004\011\000\000\000\146\151\156\144\154\141\163\164\000\004\013\000\000\000\163\164\141\162\164\163\167\151\164\150\000\004\000\000\000\000\000\000\000\014\000\000\000\026\000\000\000\000\002\000\007\025\000\000\000\032\000\000\000\026\300\003\200\132\000\000\000\026\100\003\200\213\000\100\000\234\200\000\001\313\000\300\000\334\200\000\001\031\200\200\001\026\300\001\200\013\101\100\000\222\001\200\001\034\201\200\001\127\100\000\002\026\000\000\200\002\101\000\000\002\001\200\000\036\001\000\001\202\000\000\000\236\000\000\001\036\000\200\000\002\000\000\000\004\004\000\000\000\154\145\156\000\004\004\000\000\000\163\165\142\000\000\000\000\000\025\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\016\000\000\000\016\000\000\000\017\000\000\000\017\000\000\000\020\000\000\000\020\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\025\000\000\000\025\000\000\000\026\000\000\000\004\000\000\000\011\000\000\000\150\141\171\163\164\141\143\153\000\000\000\000\000\024\000\000\000\007\000\000\000\156\145\145\144\154\145\000\000\000\000\000\024\000\000\000\005\000\000\000\150\154\145\156\000\006\000\000\000\022\000\000\000\005\000\000\000\156\154\145\156\000\010\000\000\000\022\000\000\000\000\000\000\000\000\000\000\000\036\000\000\000\050\000\000\000\000\003\000\020\041\000\000\000\027\000\300\000\026\100\000\200\302\000\000\000\336\000\000\001\301\100\000\000\012\001\000\000\144\001\000\000\000\000\000\000\000\000\200\000\000\000\200\001\000\000\000\001\203\001\200\003\026\000\002\200\205\202\000\000\206\302\100\005\300\002\000\002\013\003\101\000\200\003\200\001\315\103\101\004\034\003\000\002\234\102\000\000\314\100\301\004\141\201\000\000\026\000\375\177\105\201\000\000\106\301\300\002\200\001\000\002\313\001\101\000\100\002\200\001\334\001\200\001\134\101\000\000\036\001\000\001\036\000\200\000\006\000\000\000\004\001\000\000\000\000\003\000\000\000\000\000\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\001\000\000\000\000\000\000\000\042\000\000\000\042\000\000\000\004\000\000\005\010\000\000\000\004\000\000\000\013\000\100\000\204\000\200\000\304\000\000\001\004\001\200\001\035\000\200\002\036\000\000\000\036\000\200\000\001\000\000\000\004\005\000\000\000\146\151\156\144\000\000\000\000\000\010\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\000\000\000\000\004\000\000\000\002\000\000\000\163\000\010\000\000\000\160\141\164\164\145\162\156\000\004\000\000\000\160\157\163\000\006\000\000\000\160\154\141\151\156\000\041\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\040\000\000\000\041\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\044\000\000\000\042\000\000\000\044\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\047\000\000\000\050\000\000\000\012\000\000\000\002\000\000\000\163\000\000\000\000\000\040\000\000\000\010\000\000\000\160\141\164\164\145\162\156\000\000\000\000\000\040\000\000\000\006\000\000\000\160\154\141\151\156\000\000\000\000\000\040\000\000\000\004\000\000\000\160\157\163\000\005\000\000\000\040\000\000\000\004\000\000\000\141\162\162\000\006\000\000\000\040\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\014\000\000\000\030\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\014\000\000\000\030\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\014\000\000\000\030\000\000\000\003\000\000\000\163\164\000\015\000\000\000\026\000\000\000\003\000\000\000\163\160\000\015\000\000\000\026\000\000\000\000\000\000\000\000\000\000\000\060\000\000\000\071\000\000\000\000\003\000\011\017\000\000\000\301\000\000\000\013\101\100\000\200\001\200\000\314\201\300\001\000\002\000\001\034\201\200\002\032\001\000\000\026\000\000\200\300\000\000\002\032\101\000\000\026\100\375\177\030\300\000\200\026\000\000\200\336\000\000\001\036\000\200\000\003\000\000\000\003\000\000\000\000\000\000\000\000\004\005\000\000\000\146\151\156\144\000\003\000\000\000\000\000\000\360\077\000\000\000\000\017\000\000\000\061\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\065\000\000\000\066\000\000\000\066\000\000\000\067\000\000\000\071\000\000\000\005\000\000\000\002\000\000\000\163\000\000\000\000\000\016\000\000\000\010\000\000\000\160\141\164\164\145\162\156\000\000\000\000\000\016\000\000\000\006\000\000\000\160\154\141\151\156\000\000\000\000\000\016\000\000\000\005\000\000\000\143\165\162\162\000\001\000\000\000\016\000\000\000\005\000\000\000\156\145\170\164\000\006\000\000\000\013\000\000\000\000\000\000\000\000\000\000\000\101\000\000\000\103\000\000\000\000\002\000\007\013\000\000\000\213\000\100\000\000\001\200\000\101\101\000\000\202\001\200\000\234\200\200\002\127\100\100\001\026\000\000\200\202\100\000\000\202\000\200\000\236\000\000\001\036\000\200\000\002\000\000\000\004\005\000\000\000\146\151\156\144\000\003\000\000\000\000\000\000\360\077\000\000\000\000\013\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\103\000\000\000\002\000\000\000\011\000\000\000\150\141\171\163\164\141\143\153\000\000\000\000\000\012\000\000\000\007\000\000\000\156\145\145\144\154\145\000\000\000\000\000\012\000\000\000\000\000\000\000\015\000\000\000\014\000\000\000\026\000\000\000\014\000\000\000\036\000\000\000\050\000\000\000\036\000\000\000\060\000\000\000\071\000\000\000\060\000\000\000\101\000\000\000\103\000\000\000\101\000\000\000\103\000\000\000\000\000\000\000\000\000\000\000",
"\033\114\165\141\121\000\001\004\004\004\010\000\024\000\000\000\100\163\162\143\057\142\141\163\145\057\164\141\142\154\145\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\002\020\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\000\000\000\144\200\000\000\011\100\200\201\005\000\000\000\144\300\000\000\011\100\000\202\005\000\000\000\144\000\001\000\011\100\200\202\036\000\200\000\006\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\004\010\000\000\000\145\170\164\162\141\143\164\000\004\010\000\000\000\151\155\160\154\157\144\145\000\004\005\000\000\000\152\157\151\156\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\005\000\000\000\000\000\000\000\014\000\000\000\023\000\000\000\000\002\000\010\015\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\300\000\200\027\100\000\003\026\100\000\200\302\001\200\000\336\001\000\001\241\200\000\000\026\100\376\177\202\000\000\000\236\000\000\001\036\000\200\000\001\000\000\000\004\006\000\000\000\160\141\151\162\163\000\000\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\016\000\000\000\016\000\000\000\017\000\000\000\017\000\000\000\015\000\000\000\020\000\000\000\022\000\000\000\022\000\000\000\023\000\000\000\007\000\000\000\002\000\000\000\164\000\000\000\000\000\014\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\014\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\012\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\012\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\012\000\000\000\002\000\000\000\137\000\004\000\000\000\010\000\000\000\002\000\000\000\166\000\004\000\000\000\010\000\000\000\000\000\000\000\000\000\000\000\033\000\000\000\041\000\000\000\000\002\000\013\016\000\000\000\212\000\000\000\305\000\000\000\000\001\000\000\334\000\001\001\026\000\001\200\005\102\000\000\006\202\100\004\100\002\000\001\206\102\200\003\034\102\200\001\341\200\000\000\026\000\376\177\236\000\000\001\036\000\200\000\003\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\000\000\000\000\016\000\000\000\034\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\035\000\000\000\036\000\000\000\040\000\000\000\041\000\000\000\010\000\000\000\004\000\000\000\141\162\162\000\000\000\000\000\015\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\015\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\015\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\014\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\014\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\014\000\000\000\002\000\000\000\137\000\005\000\000\000\012\000\000\000\002\000\000\000\166\000\005\000\000\000\012\000\000\000\000\000\000\000\000\000\000\000\051\000\000\000\062\000\000\000\000\004\000\016\025\000\000\000\001\001\000\000\105\101\000\000\200\001\000\000\134\001\001\001\026\300\002\200\127\000\100\002\026\000\001\200\332\000\000\000\026\200\000\200\200\002\000\002\300\002\200\001\025\301\002\005\200\002\000\002\300\002\200\000\000\003\200\004\100\003\000\001\025\101\003\005\141\201\000\000\026\100\374\177\036\001\000\001\036\000\200\000\002\000\000\000\004\001\000\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\000\000\000\000\025\000\000\000\052\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\053\000\000\000\057\000\000\000\061\000\000\000\062\000\000\000\012\000\000\000\004\000\000\000\141\162\162\000\000\000\000\000\024\000\000\000\007\000\000\000\142\145\146\157\162\145\000\000\000\000\000\024\000\000\000\006\000\000\000\141\146\164\145\162\000\000\000\000\000\024\000\000\000\010\000\000\000\142\145\164\167\145\145\156\000\000\000\000\000\024\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\024\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\023\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\023\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\023\000\000\000\002\000\000\000\137\000\005\000\000\000\021\000\000\000\002\000\000\000\166\000\005\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\072\000\000\000\102\000\000\000\000\000\007\017\024\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\200\002\200\305\001\000\000\000\002\000\003\334\001\001\001\026\000\001\200\005\103\000\000\006\203\100\006\100\003\200\000\200\003\200\005\034\103\200\001\341\201\000\000\026\000\376\177\241\200\000\000\026\200\374\177\136\000\000\001\036\000\200\000\003\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\000\000\000\000\024\000\000\000\073\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\075\000\000\000\076\000\000\000\074\000\000\000\077\000\000\000\101\000\000\000\102\000\000\000\014\000\000\000\004\000\000\000\141\162\147\000\000\000\000\000\023\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\023\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\022\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\022\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\022\000\000\000\002\000\000\000\137\000\005\000\000\000\020\000\000\000\002\000\000\000\164\000\005\000\000\000\020\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\010\000\000\000\020\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\010\000\000\000\020\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\010\000\000\000\020\000\000\000\002\000\000\000\137\000\011\000\000\000\016\000\000\000\002\000\000\000\166\000\011\000\000\000\016\000\000\000\000\000\000\000\000\000\000\000\112\000\000\000\122\000\000\000\000\002\000\013\021\000\000\000\212\000\000\000\305\000\000\000\000\001\000\000\334\000\001\001\026\300\001\200\006\302\201\000\032\002\000\000\026\000\001\200\005\102\000\000\006\202\100\004\100\002\000\001\206\302\201\000\034\102\200\001\341\200\000\000\026\100\375\177\236\000\000\001\036\000\200\000\003\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\000\000\000\000\021\000\000\000\113\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\114\000\000\000\117\000\000\000\121\000\000\000\122\000\000\000\010\000\000\000\004\000\000\000\141\162\162\000\000\000\000\000\020\000\000\000\014\000\000\000\164\162\141\156\163\154\141\164\151\157\156\000\000\000\000\000\020\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\020\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\017\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\017\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\017\000\000\000\002\000\000\000\137\000\005\000\000\000\015\000\000\000\006\000\000\000\166\141\154\165\145\000\005\000\000\000\015\000\000\000\000\000\000\000\020\000\000\000\014\000\000\000\023\000\000\000\014\000\000\000\033\000\000\000\041\000\000\000\033\000\000\000\051\000\000\000\062\000\000\000\051\000\000\000\072\000\000\000\102\000\000\000\072\000\000\000\112\000\000\000\122\000\000\000\112\000\000\000\122\000\000\000\000\000\000\000\000\000\000\000",
"\033\114\165\141\121\000\001\004\004\004\010\000\021\000\000\000\100\163\162\143\057\142\141\163\145\057\157\163\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\005\032\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\044\100\000\000\000\000\000\000\105\000\000\000\244\200\000\000\000\000\000\000\111\200\000\201\105\000\000\000\244\300\000\000\000\000\000\000\111\200\200\201\105\000\000\000\106\000\301\000\205\000\000\000\344\000\001\000\000\000\200\000\211\300\000\202\205\000\000\000\206\100\101\001\305\000\000\000\044\101\001\000\000\000\000\001\311\000\201\202\036\000\200\000\006\000\000\000\004\003\000\000\000\157\163\000\004\003\000\000\000\151\163\000\004\012\000\000\000\155\141\164\143\150\144\151\162\163\000\004\013\000\000\000\155\141\164\143\150\146\151\154\145\163\000\004\006\000\000\000\155\153\144\151\162\000\004\006\000\000\000\162\155\144\151\162\000\006\000\000\000\000\000\000\000\014\000\000\000\017\000\000\000\000\001\000\005\017\000\000\000\105\000\000\000\106\100\300\000\132\100\000\000\026\000\000\200\105\200\000\000\213\300\300\000\234\200\000\001\313\300\100\000\334\200\000\001\127\300\000\001\026\000\000\200\202\100\000\000\202\000\200\000\236\000\000\001\036\000\200\000\004\000\000\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\003\000\000\000\157\163\000\004\004\000\000\000\137\117\123\000\004\006\000\000\000\154\157\167\145\162\000\000\000\000\000\017\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\017\000\000\000\002\000\000\000\003\000\000\000\151\144\000\000\000\000\000\016\000\000\000\010\000\000\000\143\165\162\162\145\156\164\000\005\000\000\000\016\000\000\000\000\000\000\000\000\000\000\000\027\000\000\000\060\000\000\000\001\003\000\014\140\000\000\000\305\000\000\000\306\100\300\001\000\001\200\000\334\200\000\001\027\200\300\001\026\000\000\200\301\300\000\000\005\001\001\000\006\101\101\002\100\001\200\000\034\201\000\001\105\001\001\000\106\201\301\002\200\001\000\002\134\201\000\001\132\001\000\000\026\100\006\200\105\001\001\000\106\301\301\002\200\001\000\002\134\201\000\001\205\001\001\000\206\001\102\003\300\001\000\002\234\201\000\001\232\000\000\000\026\100\000\200\232\101\000\000\026\300\000\200\232\100\000\000\026\300\372\177\232\101\000\000\026\100\372\177\305\101\002\000\306\201\302\003\000\002\000\000\105\002\000\000\106\302\302\004\200\002\200\001\300\002\200\002\134\002\200\001\334\101\000\000\026\300\367\177\105\001\001\000\106\001\303\002\200\001\000\002\134\101\000\001\113\101\303\000\301\201\003\000\134\201\200\001\132\001\000\000\026\200\012\200\105\001\000\000\106\301\303\002\200\001\200\000\134\201\000\001\100\000\200\002\105\001\001\000\106\101\301\002\205\001\000\000\206\301\102\003\300\001\200\001\001\002\004\000\234\001\200\001\134\201\000\000\000\001\200\002\105\001\001\000\106\201\301\002\200\001\000\002\134\201\000\001\132\001\000\000\026\200\004\200\105\001\001\000\106\301\301\002\200\001\000\002\134\201\000\001\205\001\000\000\206\301\102\003\305\001\000\000\306\301\302\003\000\002\200\001\100\002\200\002\334\201\200\001\000\002\200\000\234\201\200\001\304\001\000\000\000\002\000\000\100\002\000\003\200\002\000\001\334\101\000\002\026\200\371\177\105\001\001\000\106\001\303\002\200\001\000\002\134\101\000\001\036\000\200\000\021\000\000\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\144\151\162\145\143\164\157\162\171\000\004\002\000\000\000\056\000\004\001\000\000\000\000\004\003\000\000\000\157\163\000\004\013\000\000\000\155\141\164\143\150\163\164\141\162\164\000\004\012\000\000\000\155\141\164\143\150\156\145\170\164\000\004\012\000\000\000\155\141\164\143\150\156\141\155\145\000\004\014\000\000\000\155\141\164\143\150\151\163\146\151\154\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\152\157\151\156\000\004\012\000\000\000\155\141\164\143\150\144\157\156\145\000\004\005\000\000\000\146\151\156\144\000\004\003\000\000\000\052\052\000\004\010\000\000\000\147\145\164\156\141\155\145\000\004\002\000\000\000\052\000\000\000\000\000\140\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\033\000\000\000\033\000\000\000\033\000\000\000\033\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\041\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\060\000\000\000\011\000\000\000\007\000\000\000\162\145\163\165\154\164\000\000\000\000\000\137\000\000\000\005\000\000\000\155\141\163\153\000\000\000\000\000\137\000\000\000\012\000\000\000\167\141\156\164\146\151\154\145\163\000\000\000\000\000\137\000\000\000\010\000\000\000\142\141\163\145\144\151\162\000\004\000\000\000\137\000\000\000\002\000\000\000\155\000\013\000\000\000\137\000\000\000\006\000\000\000\146\156\141\155\145\000\025\000\000\000\052\000\000\000\007\000\000\000\151\163\146\151\154\145\000\031\000\000\000\052\000\000\000\010\000\000\000\144\151\162\156\141\155\145\000\114\000\000\000\132\000\000\000\010\000\000\000\163\165\142\155\141\163\153\000\125\000\000\000\132\000\000\000\001\000\000\000\010\000\000\000\144\157\155\141\164\143\150\000\000\000\000\000\062\000\000\000\070\000\000\000\001\000\007\013\016\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\000\001\200\304\001\000\000\000\002\200\000\100\002\000\003\202\002\000\000\334\101\000\002\241\200\000\000\026\000\376\177\136\000\000\001\036\000\200\000\001\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\000\000\000\000\016\000\000\000\063\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\064\000\000\000\065\000\000\000\067\000\000\000\070\000\000\000\007\000\000\000\004\000\000\000\141\162\147\000\000\000\000\000\015\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\015\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\014\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\014\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\014\000\000\000\002\000\000\000\137\000\005\000\000\000\012\000\000\000\005\000\000\000\155\141\163\153\000\005\000\000\000\012\000\000\000\001\000\000\000\010\000\000\000\144\157\155\141\164\143\150\000\000\000\000\000\072\000\000\000\100\000\000\000\001\000\007\013\016\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\000\001\200\304\001\000\000\000\002\200\000\100\002\000\003\202\002\200\000\334\101\000\002\241\200\000\000\026\000\376\177\136\000\000\001\036\000\200\000\001\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\000\000\000\000\016\000\000\000\073\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\074\000\000\000\075\000\000\000\077\000\000\000\100\000\000\000\007\000\000\000\004\000\000\000\141\162\147\000\000\000\000\000\015\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\015\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\014\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\014\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\014\000\000\000\002\000\000\000\137\000\005\000\000\000\012\000\000\000\005\000\000\000\155\141\163\153\000\005\000\000\000\012\000\000\000\001\000\000\000\010\000\000\000\144\157\155\141\164\143\150\000\000\000\000\000\112\000\000\000\132\000\000\000\001\001\000\012\054\000\000\000\105\000\000\000\213\100\100\000\001\201\000\000\234\200\200\001\301\200\000\000\001\301\000\000\134\200\000\002\213\000\101\000\001\101\001\000\234\000\201\001\026\300\006\200\200\001\200\000\300\001\200\002\125\300\001\003\127\300\300\002\026\300\004\200\205\201\001\000\206\301\101\003\300\001\200\002\234\201\000\001\232\101\000\000\026\100\003\200\205\001\002\000\206\101\102\003\300\001\200\000\234\201\000\001\232\101\000\000\026\300\001\200\204\001\000\000\300\001\200\000\234\301\000\001\232\101\000\000\026\200\000\200\003\002\000\004\100\002\200\003\036\002\200\001\200\001\200\000\301\201\000\000\125\300\001\003\241\100\000\000\026\100\370\177\202\000\200\000\236\000\000\001\036\000\200\000\012\000\000\000\004\004\000\000\000\151\151\146\000\004\013\000\000\000\163\164\141\162\164\163\167\151\164\150\000\004\002\000\000\000\057\000\004\001\000\000\000\000\004\007\000\000\000\147\155\141\164\143\150\000\004\006\000\000\000\133\136\057\135\053\000\004\005\000\000\000\160\141\164\150\000\004\013\000\000\000\151\163\141\142\163\157\154\165\164\145\000\004\003\000\000\000\157\163\000\004\006\000\000\000\151\163\144\151\162\000\000\000\000\000\054\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\121\000\000\000\121\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\114\000\000\000\126\000\000\000\131\000\000\000\131\000\000\000\132\000\000\000\010\000\000\000\002\000\000\000\160\000\000\000\000\000\053\000\000\000\004\000\000\000\144\151\162\000\007\000\000\000\053\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\012\000\000\000\051\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\012\000\000\000\051\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\012\000\000\000\051\000\000\000\005\000\000\000\160\141\162\164\000\013\000\000\000\047\000\000\000\003\000\000\000\157\153\000\037\000\000\000\044\000\000\000\004\000\000\000\145\162\162\000\037\000\000\000\044\000\000\000\001\000\000\000\016\000\000\000\142\165\151\154\164\151\156\137\155\153\144\151\162\000\000\000\000\000\142\000\000\000\161\000\000\000\001\001\000\012\044\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\301\200\000\000\225\300\000\001\134\200\000\001\205\300\000\000\300\000\200\000\234\000\001\001\026\300\000\200\305\001\000\000\306\001\301\003\000\002\000\003\334\101\000\001\241\200\000\000\026\100\376\177\205\000\000\000\206\100\101\001\300\000\000\000\001\201\000\000\325\000\201\001\234\200\000\001\305\300\000\000\000\001\000\001\334\000\001\001\026\300\000\200\005\002\000\000\006\202\101\004\100\002\200\003\034\102\000\001\341\200\000\000\026\100\376\177\304\000\000\000\000\001\000\000\334\100\000\001\036\000\200\000\007\000\000\000\004\003\000\000\000\157\163\000\004\012\000\000\000\155\141\164\143\150\144\151\162\163\000\004\003\000\000\000\057\052\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\162\155\144\151\162\000\004\013\000\000\000\155\141\164\143\150\146\151\154\145\163\000\004\007\000\000\000\162\145\155\157\166\145\000\000\000\000\000\044\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\145\000\000\000\146\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\153\000\000\000\154\000\000\000\160\000\000\000\160\000\000\000\160\000\000\000\161\000\000\000\015\000\000\000\002\000\000\000\160\000\000\000\000\000\043\000\000\000\005\000\000\000\144\151\162\163\000\006\000\000\000\043\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\011\000\000\000\020\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\011\000\000\000\020\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\011\000\000\000\020\000\000\000\002\000\000\000\137\000\012\000\000\000\016\000\000\000\006\000\000\000\144\156\141\155\145\000\012\000\000\000\016\000\000\000\006\000\000\000\146\151\154\145\163\000\026\000\000\000\043\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\031\000\000\000\040\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\031\000\000\000\040\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\031\000\000\000\040\000\000\000\002\000\000\000\137\000\032\000\000\000\036\000\000\000\006\000\000\000\146\156\141\155\145\000\032\000\000\000\036\000\000\000\001\000\000\000\016\000\000\000\142\165\151\154\164\151\156\137\162\155\144\151\162\000\032\000\000\000\014\000\000\000\017\000\000\000\014\000\000\000\060\000\000\000\060\000\000\000\062\000\000\000\070\000\000\000\070\000\000\000\062\000\000\000\072\000\000\000\100\000\000\000\100\000\000\000\072\000\000\000\111\000\000\000\111\000\000\000\112\000\000\000\132\000\000\000\132\000\000\000\112\000\000\000\141\000\000\000\141\000\000\000\142\000\000\000\161\000\000\000\161\000\000\000\142\000\000\000\161\000\000\000\003\000\000\000\010\000\000\000\144\157\155\141\164\143\150\000\005\000\000\000\031\000\000\000\016\000\000\000\142\165\151\154\164\151\156\137\155\153\144\151\162\000\017\000\000\000\031\000\000\000\016\000\000\000\142\165\151\154\164\151\156\137\162\155\144\151\162\000\025\000\000\000\031\000\000\000\000\000\000\000",
"\033\114\165\141\121\000\001\004\004\004\010\000\026\000\000\000\100\163\162\143\057\142\141\163\145\057\147\154\157\142\141\154\163\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\004\041\000\000\000\012\000\000\000\007\000\000\000\012\000\000\000\007\100\000\000\012\000\000\000\007\200\000\000\005\200\000\000\112\000\000\000\011\100\200\201\005\200\000\000\112\000\000\000\011\100\000\202\005\100\001\000\144\000\000\000\000\000\000\000\107\100\001\000\144\100\000\000\107\200\001\000\144\200\000\000\107\300\001\000\105\000\002\000\106\100\302\000\205\000\002\000\344\300\000\000\000\000\200\000\211\300\200\204\244\000\001\000\207\200\002\000\205\300\002\000\344\100\001\000\000\000\000\001\307\300\002\000\036\000\200\000\014\000\000\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\013\000\000\000\137\124\105\115\120\114\101\124\105\123\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\010\000\000\000\157\160\164\151\157\156\163\000\004\007\000\000\000\144\157\146\151\154\145\000\004\004\000\000\000\151\151\146\000\004\010\000\000\000\151\156\143\154\165\144\145\000\004\003\000\000\000\151\157\000\004\005\000\000\000\157\160\145\156\000\004\007\000\000\000\160\162\151\156\164\146\000\004\005\000\000\000\164\171\160\145\000\006\000\000\000\000\000\000\000\045\000\000\000\077\000\000\000\001\001\000\017\065\000\000\000\105\000\000\000\106\100\300\000\134\200\200\000\205\000\000\000\206\200\100\001\300\000\000\000\234\200\000\001\232\100\000\000\026\300\003\200\205\000\000\000\206\300\100\001\300\000\000\000\005\001\001\000\006\101\101\002\105\001\000\000\106\201\301\002\201\301\001\000\134\001\000\001\234\200\000\000\232\000\000\000\026\300\000\200\300\000\000\001\001\001\002\000\100\001\000\000\025\100\201\001\205\100\002\000\206\200\102\001\300\000\000\000\234\200\000\001\000\000\000\001\205\100\002\000\206\300\102\001\300\000\000\000\234\200\000\001\305\000\000\000\306\000\303\001\000\001\000\001\334\100\000\001\304\000\000\000\000\001\000\000\334\300\001\001\105\002\000\000\106\002\303\004\200\002\200\000\134\102\000\001\100\002\200\001\200\002\000\002\300\002\200\002\000\003\000\003\100\003\200\003\200\003\000\004\136\002\200\003\036\000\200\000\015\000\000\000\004\003\000\000\000\157\163\000\004\007\000\000\000\147\145\164\143\167\144\000\004\007\000\000\000\151\163\146\151\154\145\000\004\013\000\000\000\160\141\164\150\163\145\141\162\143\150\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\010\000\000\000\163\143\162\151\160\164\163\000\004\007\000\000\000\147\145\164\145\156\166\000\004\015\000\000\000\120\122\105\115\101\113\105\137\120\101\124\110\000\004\002\000\000\000\057\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\004\015\000\000\000\147\145\164\144\151\162\145\143\164\157\162\171\000\004\006\000\000\000\143\150\144\151\162\000\000\000\000\000\065\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\054\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\077\000\000\000\012\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\064\000\000\000\007\000\000\000\157\154\144\143\167\144\000\003\000\000\000\064\000\000\000\005\000\000\000\160\141\164\150\000\023\000\000\000\031\000\000\000\007\000\000\000\156\145\167\143\167\144\000\042\000\000\000\064\000\000\000\002\000\000\000\141\000\051\000\000\000\064\000\000\000\002\000\000\000\142\000\051\000\000\000\064\000\000\000\002\000\000\000\143\000\051\000\000\000\064\000\000\000\002\000\000\000\144\000\051\000\000\000\064\000\000\000\002\000\000\000\145\000\051\000\000\000\064\000\000\000\002\000\000\000\146\000\051\000\000\000\064\000\000\000\001\000\000\000\017\000\000\000\142\165\151\154\164\151\156\137\144\157\146\151\154\145\000\000\000\000\000\107\000\000\000\115\000\000\000\000\003\000\003\006\000\000\000\032\000\000\000\026\100\000\200\136\000\000\001\026\000\000\200\236\000\000\001\036\000\200\000\000\000\000\000\000\000\000\000\006\000\000\000\110\000\000\000\110\000\000\000\111\000\000\000\111\000\000\000\113\000\000\000\115\000\000\000\003\000\000\000\005\000\000\000\145\170\160\162\000\000\000\000\000\005\000\000\000\010\000\000\000\164\162\165\145\166\141\154\000\000\000\000\000\005\000\000\000\011\000\000\000\146\141\154\163\145\166\141\154\000\000\000\000\000\005\000\000\000\000\000\000\000\000\000\000\000\125\000\000\000\127\000\000\000\000\001\000\004\007\000\000\000\105\000\000\000\200\000\000\000\301\100\000\000\225\300\000\001\135\000\000\001\136\000\000\000\036\000\200\000\002\000\000\000\004\007\000\000\000\144\157\146\151\154\145\000\004\016\000\000\000\057\160\162\145\155\141\153\145\064\056\154\165\141\000\000\000\000\000\007\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\127\000\000\000\001\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\006\000\000\000\000\000\000\000\000\000\000\000\141\000\000\000\154\000\000\000\001\002\000\006\036\000\000\000\132\000\000\000\026\100\005\200\213\000\300\000\001\101\000\000\234\200\200\001\232\000\000\000\026\000\004\200\205\200\000\000\206\300\100\001\300\000\000\000\234\200\000\001\305\200\001\000\306\300\301\001\000\001\000\001\334\300\000\001\007\101\001\000\307\000\001\000\305\000\001\000\332\100\000\000\026\300\000\200\305\000\002\000\005\101\001\000\101\101\002\000\334\100\200\001\204\000\000\000\300\000\000\000\000\001\200\000\235\000\200\001\236\000\000\000\036\000\200\000\012\000\000\000\004\005\000\000\000\146\151\156\144\000\004\002\000\000\000\167\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\144\151\162\145\143\164\157\162\171\000\004\003\000\000\000\157\153\000\004\004\000\000\000\145\162\162\000\004\003\000\000\000\157\163\000\004\006\000\000\000\155\153\144\151\162\000\004\006\000\000\000\145\162\162\157\162\000\003\000\000\000\000\000\000\000\000\000\000\000\000\036\000\000\000\142\000\000\000\142\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\154\000\000\000\003\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\035\000\000\000\005\000\000\000\155\157\144\145\000\000\000\000\000\035\000\000\000\004\000\000\000\144\151\162\000\013\000\000\000\030\000\000\000\001\000\000\000\015\000\000\000\142\165\151\154\164\151\156\137\157\160\145\156\000\000\000\000\000\164\000\000\000\166\000\000\000\000\001\007\007\012\000\000\000\205\000\000\000\305\100\000\000\306\200\300\001\000\001\000\000\105\301\000\000\200\001\200\000\134\001\000\001\334\000\000\000\234\100\000\000\036\000\200\000\004\000\000\000\004\006\000\000\000\160\162\151\156\164\000\004\007\000\000\000\163\164\162\151\156\147\000\004\007\000\000\000\146\157\162\155\141\164\000\004\007\000\000\000\165\156\160\141\143\153\000\000\000\000\000\012\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\166\000\000\000\002\000\000\000\004\000\000\000\155\163\147\000\000\000\000\000\011\000\000\000\004\000\000\000\141\162\147\000\000\000\000\000\011\000\000\000\000\000\000\000\000\000\000\000\200\000\000\000\210\000\000\000\001\001\000\004\017\000\000\000\105\000\000\000\200\000\000\000\134\200\000\001\132\000\000\000\026\000\001\200\206\100\300\000\232\000\000\000\026\100\000\200\206\100\300\000\236\000\000\001\204\000\000\000\300\000\000\000\235\000\000\001\236\000\000\000\036\000\200\000\002\000\000\000\004\015\000\000\000\147\145\164\155\145\164\141\164\141\142\154\145\000\004\007\000\000\000\137\137\164\171\160\145\000\000\000\000\000\017\000\000\000\201\000\000\000\201\000\000\000\201\000\000\000\202\000\000\000\202\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\204\000\000\000\204\000\000\000\207\000\000\000\207\000\000\000\207\000\000\000\207\000\000\000\210\000\000\000\002\000\000\000\002\000\000\000\164\000\000\000\000\000\016\000\000\000\003\000\000\000\155\164\000\003\000\000\000\016\000\000\000\001\000\000\000\015\000\000\000\142\165\151\154\164\151\156\137\164\171\160\145\000\041\000\000\000\012\000\000\000\012\000\000\000\017\000\000\000\017\000\000\000\024\000\000\000\024\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\032\000\000\000\032\000\000\000\032\000\000\000\044\000\000\000\077\000\000\000\077\000\000\000\045\000\000\000\115\000\000\000\107\000\000\000\127\000\000\000\125\000\000\000\140\000\000\000\140\000\000\000\141\000\000\000\154\000\000\000\154\000\000\000\141\000\000\000\166\000\000\000\164\000\000\000\177\000\000\000\210\000\000\000\210\000\000\000\200\000\000\000\210\000\000\000\003\000\000\000\017\000\000\000\142\165\151\154\164\151\156\137\144\157\146\151\154\145\000\015\000\000\000\040\000\000\000\015\000\000\000\142\165\151\154\164\151\156\137\157\160\145\156\000\026\000\000\000\040\000\000\000\015\000\000\000\142\165\151\154\164\151\156\137\164\171\160\145\000\035\000\000\000\040\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\026\000\000\000\100\163\162\143\057\142\141\163\145\057\160\162\145\155\141\153\145\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\003\030\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\000\000\000\144\200\000\000\011\100\200\201\005\000\000\000\144\300\000\000\011\100\000\202\005\000\000\000\144\000\001\000\011\100\200\202\003\000\000\000\105\000\000\000\244\100\001\000\000\000\000\000\111\200\000\203\105\000\000\000\244\200\001\000\111\200\200\203\036\000\200\000\010\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\013\000\000\000\143\150\145\143\153\164\157\157\154\163\000\004\015\000\000\000\143\150\145\143\153\157\160\164\151\157\156\163\000\004\013\000\000\000\143\150\145\143\153\166\141\154\165\145\000\004\011\000\000\000\144\157\141\143\164\151\157\156\000\004\004\000\000\000\145\163\143\000\004\017\000\000\000\147\145\164\141\143\164\151\166\145\164\145\162\155\163\000\004\016\000\000\000\147\145\164\157\165\164\160\165\164\156\141\155\145\000\007\000\000\000\000\000\000\000\015\000\000\000\037\000\000\000\000\000\000\016\055\000\000\000\005\000\000\000\006\100\100\000\105\200\000\000\006\100\000\000\106\300\100\000\132\100\000\000\026\100\000\200\102\000\200\000\136\000\000\001\105\000\001\000\206\300\100\000\134\000\001\001\026\200\006\200\205\101\001\000\206\001\001\003\232\001\000\000\026\300\004\200\205\201\001\000\206\301\101\003\300\001\200\002\005\102\001\000\006\002\001\004\234\201\200\001\232\101\000\000\026\200\003\200\203\001\000\003\301\001\002\000\006\102\102\000\101\202\002\000\200\002\000\002\301\302\002\000\005\103\001\000\006\003\001\006\101\003\003\000\325\101\203\003\236\001\200\001\026\200\000\200\205\101\001\000\306\101\303\002\211\301\001\002\141\200\000\000\026\200\370\177\102\000\200\000\136\000\000\001\036\000\200\000\016\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\014\000\000\000\166\141\154\151\144\137\164\157\157\154\163\000\004\006\000\000\000\160\141\151\162\163\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\004\005\000\000\000\164\150\145\040\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\033\000\000\000\040\141\143\164\151\157\156\040\144\157\145\163\040\156\157\164\040\163\165\160\160\157\162\164\040\057\000\004\002\000\000\000\075\000\004\007\000\000\000\040\050\171\145\164\051\000\003\000\000\000\000\000\000\360\077\000\000\000\000\055\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\021\000\000\000\021\000\000\000\024\000\000\000\024\000\000\000\024\000\000\000\024\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\030\000\000\000\032\000\000\000\032\000\000\000\032\000\000\000\024\000\000\000\033\000\000\000\036\000\000\000\036\000\000\000\037\000\000\000\006\000\000\000\007\000\000\000\141\143\164\151\157\156\000\004\000\000\000\054\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\014\000\000\000\052\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\014\000\000\000\052\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\014\000\000\000\052\000\000\000\005\000\000\000\164\157\157\154\000\015\000\000\000\050\000\000\000\007\000\000\000\166\141\154\165\145\163\000\015\000\000\000\050\000\000\000\000\000\000\000\000\000\000\000\047\000\000\000\075\000\000\000\000\000\000\014\065\000\000\000\005\000\000\000\105\100\000\000\034\000\001\001\026\300\012\200\105\201\000\000\106\301\300\002\106\301\200\002\132\101\000\000\026\100\001\200\202\001\000\000\301\001\001\000\000\002\200\001\101\102\001\000\325\101\202\003\236\001\200\001\206\201\301\002\232\001\000\000\026\300\001\200\027\300\101\002\026\100\001\200\202\001\000\000\301\001\002\000\000\002\200\001\101\102\001\000\325\101\202\003\236\001\200\001\206\101\302\002\232\001\000\000\026\200\004\200\205\201\002\000\306\101\302\002\234\001\001\001\026\000\001\200\306\302\102\005\027\000\201\005\026\100\000\200\302\002\200\000\336\002\000\001\241\201\000\000\026\000\376\177\202\001\000\000\301\001\003\000\000\002\000\002\101\102\003\000\200\002\200\001\301\102\001\000\325\301\202\003\236\001\200\001\041\200\000\000\026\100\364\177\002\000\200\000\036\000\000\001\036\000\200\000\016\000\000\000\004\006\000\000\000\160\141\151\162\163\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\157\160\164\151\157\156\163\000\004\021\000\000\000\151\156\166\141\154\151\144\040\157\160\164\151\157\156\040\047\000\004\002\000\000\000\047\000\004\006\000\000\000\166\141\154\165\145\000\004\001\000\000\000\000\004\040\000\000\000\156\157\040\166\141\154\165\145\040\163\160\145\143\151\146\151\145\144\040\146\157\162\040\157\160\164\151\157\156\040\047\000\004\010\000\000\000\141\154\154\157\167\145\144\000\004\007\000\000\000\151\160\141\151\162\163\000\003\000\000\000\000\000\000\360\077\004\020\000\000\000\151\156\166\141\154\151\144\040\166\141\154\165\145\040\047\000\004\017\000\000\000\047\040\146\157\162\040\157\160\164\151\157\156\040\047\000\000\000\000\000\065\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\066\000\000\000\067\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\050\000\000\000\072\000\000\000\074\000\000\000\074\000\000\000\075\000\000\000\013\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\062\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\062\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\062\000\000\000\004\000\000\000\153\145\171\000\004\000\000\000\060\000\000\000\006\000\000\000\166\141\154\165\145\000\004\000\000\000\060\000\000\000\004\000\000\000\157\160\164\000\007\000\000\000\060\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\040\000\000\000\050\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\040\000\000\000\050\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\040\000\000\000\050\000\000\000\002\000\000\000\137\000\041\000\000\000\046\000\000\000\006\000\000\000\155\141\164\143\150\000\041\000\000\000\046\000\000\000\000\000\000\000\000\000\000\000\107\000\000\000\126\000\000\000\000\002\000\012\042\000\000\000\132\000\000\000\026\100\007\200\205\000\000\000\300\000\200\000\234\200\000\001\027\100\100\001\026\000\001\200\200\000\200\000\300\000\000\000\235\000\000\001\236\000\000\000\026\000\005\200\205\200\000\000\300\000\200\000\234\000\001\001\026\200\001\200\313\301\100\000\334\201\000\001\013\302\100\003\034\202\000\001\027\000\202\003\026\000\000\200\236\001\000\001\241\200\000\000\026\200\375\177\203\000\000\001\301\000\001\000\000\001\000\000\101\101\001\000\325\100\201\001\236\000\200\001\026\000\000\200\036\000\000\001\036\000\200\000\006\000\000\000\004\005\000\000\000\164\171\160\145\000\004\011\000\000\000\146\165\156\143\164\151\157\156\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\154\157\167\145\162\000\004\020\000\000\000\151\156\166\141\154\151\144\040\166\141\154\165\145\040\047\000\004\002\000\000\000\047\000\000\000\000\000\042\000\000\000\110\000\000\000\110\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\116\000\000\000\114\000\000\000\117\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\122\000\000\000\124\000\000\000\126\000\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\041\000\000\000\010\000\000\000\141\154\154\157\167\145\144\000\000\000\000\000\041\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\017\000\000\000\031\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\017\000\000\000\031\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\017\000\000\000\031\000\000\000\002\000\000\000\137\000\020\000\000\000\027\000\000\000\002\000\000\000\166\000\020\000\000\000\027\000\000\000\000\000\000\000\000\000\000\000\137\000\000\000\176\000\000\000\000\001\000\017\037\000\000\000\105\000\000\000\106\100\300\000\106\000\200\000\244\000\000\000\305\200\000\000\005\301\000\000\334\000\001\001\026\200\003\200\000\002\000\001\100\002\200\003\206\002\301\000\034\102\200\001\005\002\000\000\006\102\101\004\100\002\200\003\034\002\001\001\026\300\000\200\000\003\000\001\100\003\200\005\206\203\301\000\034\103\200\001\041\102\000\000\026\100\376\177\341\200\000\000\026\200\373\177\306\300\301\000\332\000\000\000\026\100\000\200\306\300\301\000\334\100\200\000\036\000\200\000\010\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\014\000\000\000\145\141\143\150\160\162\157\152\145\143\164\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\010\000\000\000\145\170\145\143\165\164\145\000\001\000\000\000\000\000\000\000\143\000\000\000\162\000\000\000\000\002\000\015\045\000\000\000\132\000\000\000\026\100\010\200\205\000\000\000\300\000\200\000\234\000\001\001\026\300\006\200\305\101\000\000\306\201\300\003\000\002\000\000\106\302\100\003\334\201\200\001\005\002\001\000\006\102\101\004\100\002\200\003\201\202\001\000\034\302\200\001\032\102\000\000\026\300\000\200\205\302\001\000\300\002\200\004\001\003\002\000\234\102\200\001\205\002\001\000\206\102\102\005\300\002\000\004\234\102\000\001\206\202\102\003\300\002\000\000\234\102\000\001\205\002\001\000\206\102\102\005\234\202\200\000\213\302\102\005\234\102\000\001\241\200\000\000\026\100\370\177\036\000\200\000\014\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\016\000\000\000\147\145\164\157\165\164\160\165\164\156\141\155\145\000\003\000\000\000\000\000\000\360\077\004\003\000\000\000\151\157\000\004\005\000\000\000\157\160\145\156\000\004\003\000\000\000\167\142\000\004\006\000\000\000\145\162\162\157\162\000\003\000\000\000\000\000\000\000\000\004\007\000\000\000\157\165\164\160\165\164\000\003\000\000\000\000\000\000\000\100\004\006\000\000\000\143\154\157\163\145\000\000\000\000\000\045\000\000\000\144\000\000\000\144\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\150\000\000\000\150\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\145\000\000\000\157\000\000\000\162\000\000\000\012\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\044\000\000\000\012\000\000\000\164\145\155\160\154\141\164\145\163\000\000\000\000\000\044\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\005\000\000\000\044\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\005\000\000\000\044\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\005\000\000\000\044\000\000\000\002\000\000\000\137\000\006\000\000\000\042\000\000\000\005\000\000\000\164\155\160\154\000\006\000\000\000\042\000\000\000\006\000\000\000\146\156\141\155\145\000\013\000\000\000\042\000\000\000\002\000\000\000\146\000\020\000\000\000\042\000\000\000\004\000\000\000\145\162\162\000\020\000\000\000\042\000\000\000\000\000\000\000\037\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\162\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\166\000\000\000\167\000\000\000\164\000\000\000\170\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\174\000\000\000\174\000\000\000\176\000\000\000\014\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\036\000\000\000\007\000\000\000\141\143\164\151\157\156\000\003\000\000\000\036\000\000\000\016\000\000\000\147\145\156\145\162\141\164\145\146\151\154\145\163\000\004\000\000\000\036\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\007\000\000\000\031\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\007\000\000\000\031\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\007\000\000\000\031\000\000\000\002\000\000\000\137\000\010\000\000\000\027\000\000\000\004\000\000\000\163\154\156\000\010\000\000\000\027\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\020\000\000\000\027\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\020\000\000\000\027\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\020\000\000\000\027\000\000\000\004\000\000\000\160\162\152\000\021\000\000\000\025\000\000\000\000\000\000\000\000\000\000\000\206\000\000\000\227\000\000\000\000\001\000\013\073\000\000\000\105\000\000\000\200\000\000\000\134\200\000\001\027\100\300\000\026\000\004\200\112\000\000\000\205\200\000\000\300\000\000\000\234\000\001\001\026\300\001\200\305\101\000\000\306\301\300\003\000\002\200\000\105\002\001\000\106\102\301\004\200\002\000\003\134\002\000\001\334\101\000\000\241\200\000\000\026\100\375\177\136\000\000\001\026\300\010\200\113\200\101\000\301\300\001\000\001\001\002\000\134\200\000\002\000\000\200\000\113\200\101\000\301\100\002\000\001\201\002\000\134\200\000\002\000\000\200\000\113\200\101\000\301\300\002\000\001\001\003\000\134\200\000\002\000\000\200\000\113\200\101\000\301\100\003\000\001\201\003\000\134\200\000\002\000\000\200\000\113\200\101\000\301\300\003\000\001\001\004\000\134\200\000\002\000\000\200\000\113\200\101\000\301\100\004\000\001\201\004\000\134\200\000\002\000\000\200\000\113\200\101\000\301\300\004\000\001\001\005\000\134\200\000\002\000\000\200\000\036\000\000\001\036\000\200\000\025\000\000\000\004\005\000\000\000\164\171\160\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\160\141\151\162\163\000\004\007\000\000\000\151\156\163\145\162\164\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\004\000\000\000\145\163\143\000\004\005\000\000\000\147\163\165\142\000\004\002\000\000\000\046\000\004\006\000\000\000\046\141\155\160\073\000\004\002\000\000\000\042\000\004\007\000\000\000\046\161\165\157\164\073\000\004\002\000\000\000\047\000\004\007\000\000\000\046\141\160\157\163\073\000\004\002\000\000\000\074\000\004\005\000\000\000\046\154\164\073\000\004\002\000\000\000\076\000\004\005\000\000\000\046\147\164\073\000\004\002\000\000\000\015\000\004\007\000\000\000\046\043\170\060\104\073\000\004\002\000\000\000\012\000\004\007\000\000\000\046\043\170\060\101\073\000\000\000\000\000\073\000\000\000\207\000\000\000\207\000\000\000\207\000\000\000\207\000\000\000\207\000\000\000\210\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\211\000\000\000\212\000\000\000\214\000\000\000\214\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\222\000\000\000\222\000\000\000\222\000\000\000\222\000\000\000\222\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\225\000\000\000\227\000\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\072\000\000\000\007\000\000\000\162\145\163\165\154\164\000\006\000\000\000\025\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\011\000\000\000\024\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\011\000\000\000\024\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\011\000\000\000\024\000\000\000\002\000\000\000\137\000\012\000\000\000\022\000\000\000\002\000\000\000\166\000\012\000\000\000\022\000\000\000\000\000\000\000\000\000\000\000\240\000\000\000\252\000\000\000\001\000\000\010\035\000\000\000\004\000\000\000\032\100\000\000\026\200\005\200\012\000\000\000\010\000\000\000\005\000\000\000\006\100\100\000\104\000\000\000\205\200\000\000\034\100\200\001\005\000\000\000\006\100\100\000\104\000\000\000\205\300\000\000\034\100\200\001\005\000\001\000\105\100\001\000\034\000\001\001\026\000\001\200\105\001\000\000\106\101\300\002\204\001\000\000\300\001\200\001\134\101\200\001\041\200\000\000\026\000\376\177\004\000\000\000\036\000\000\001\036\000\200\000\006\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\004\000\000\000\137\117\123\000\004\006\000\000\000\160\141\151\162\163\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\000\000\000\000\035\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\242\000\000\000\242\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\245\000\000\000\246\000\000\000\251\000\000\000\251\000\000\000\252\000\000\000\005\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\022\000\000\000\032\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\022\000\000\000\032\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\022\000\000\000\032\000\000\000\002\000\000\000\153\000\023\000\000\000\030\000\000\000\002\000\000\000\137\000\023\000\000\000\030\000\000\000\001\000\000\000\007\000\000\000\137\164\145\162\155\163\000\000\000\000\000\264\000\000\000\274\000\000\000\000\002\000\006\024\000\000\000\305\000\000\000\000\001\200\000\334\200\000\001\027\100\300\001\026\000\001\200\300\000\200\000\000\001\000\000\334\200\000\001\200\000\200\001\026\200\000\200\306\200\100\000\000\001\200\000\225\000\201\001\305\300\000\000\306\000\301\001\006\101\101\000\100\001\000\001\335\000\200\001\336\000\000\000\036\000\200\000\006\000\000\000\004\005\000\000\000\164\171\160\145\000\004\011\000\000\000\146\165\156\143\164\151\157\156\000\004\005\000\000\000\156\141\155\145\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\000\000\000\000\024\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\267\000\000\000\267\000\000\000\267\000\000\000\267\000\000\000\267\000\000\000\271\000\000\000\271\000\000\000\271\000\000\000\273\000\000\000\273\000\000\000\273\000\000\000\273\000\000\000\273\000\000\000\273\000\000\000\274\000\000\000\003\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\023\000\000\000\011\000\000\000\156\141\155\145\163\160\145\143\000\000\000\000\000\023\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\023\000\000\000\000\000\000\000\030\000\000\000\015\000\000\000\037\000\000\000\015\000\000\000\047\000\000\000\075\000\000\000\047\000\000\000\107\000\000\000\126\000\000\000\107\000\000\000\137\000\000\000\176\000\000\000\137\000\000\000\206\000\000\000\227\000\000\000\206\000\000\000\237\000\000\000\240\000\000\000\252\000\000\000\252\000\000\000\240\000\000\000\264\000\000\000\274\000\000\000\264\000\000\000\274\000\000\000\001\000\000\000\007\000\000\000\137\164\145\162\155\163\000\020\000\000\000\027\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\026\000\000\000\100\163\162\143\057\142\141\163\145\057\160\162\145\155\141\153\145\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\003\030\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\000\000\000\144\200\000\000\011\100\200\201\005\000\000\000\144\300\000\000\011\100\000\202\005\000\000\000\144\000\001\000\011\100\200\202\003\000\000\000\105\000\000\000\244\100\001\000\000\000\000\000\111\200\000\203\105\000\000\000\244\200\001\000\111\200\200\203\036\000\200\000\010\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\013\000\000\000\143\150\145\143\153\164\157\157\154\163\000\004\015\000\000\000\143\150\145\143\153\157\160\164\151\157\156\163\000\004\013\000\000\000\143\150\145\143\153\166\141\154\165\145\000\004\011\000\000\000\144\157\141\143\164\151\157\156\000\004\004\000\000\000\145\163\143\000\004\017\000\000\000\147\145\164\141\143\164\151\166\145\164\145\162\155\163\000\004\016\000\000\000\147\145\164\157\165\164\160\165\164\156\141\155\145\000\007\000\000\000\000\000\000\000\015\000\000\000\036\000\000\000\000\000\000\016\055\000\000\000\005\000\000\000\006\100\100\000\105\200\000\000\006\100\000\000\106\300\100\000\132\100\000\000\026\100\000\200\102\000\200\000\136\000\000\001\105\000\001\000\206\300\100\000\134\000\001\001\026\200\006\200\205\101\001\000\206\001\001\003\232\001\000\000\026\300\004\200\205\201\001\000\206\301\101\003\300\001\200\002\005\102\001\000\006\002\001\004\234\201\200\001\232\101\000\000\026\200\003\200\203\001\000\003\301\001\002\000\006\102\102\000\101\202\002\000\200\002\000\002\301\302\002\000\005\103\001\000\006\003\001\006\101\003\003\000\325\101\203\003\236\001\200\001\026\200\000\200\205\101\001\000\306\101\303\002\211\301\001\002\141\200\000\000\026\200\370\177\102\000\200\000\136\000\000\001\036\000\200\000\016\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\014\000\000\000\166\141\154\151\144\137\164\157\157\154\163\000\004\006\000\000\000\160\141\151\162\163\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\004\005\000\000\000\164\150\145\040\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\033\000\000\000\040\141\143\164\151\157\156\040\144\157\145\163\040\156\157\164\040\163\165\160\160\157\162\164\040\057\000\004\002\000\000\000\075\000\004\007\000\000\000\040\050\171\145\164\051\000\003\000\000\000\000\000\000\360\077\000\000\000\000\055\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\020\000\000\000\020\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\024\000\000\000\024\000\000\000\024\000\000\000\024\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\027\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\023\000\000\000\032\000\000\000\035\000\000\000\035\000\000\000\036\000\000\000\006\000\000\000\007\000\000\000\141\143\164\151\157\156\000\004\000\000\000\054\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\014\000\000\000\052\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\014\000\000\000\052\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\014\000\000\000\052\000\000\000\005\000\000\000\164\157\157\154\000\015\000\000\000\050\000\000\000\007\000\000\000\166\141\154\165\145\163\000\015\000\000\000\050\000\000\000\000\000\000\000\000\000\000\000\046\000\000\000\074\000\000\000\000\000\000\014\065\000\000\000\005\000\000\000\105\100\000\000\034\000\001\001\026\300\012\200\105\201\000\000\106\301\300\002\106\301\200\002\132\101\000\000\026\100\001\200\202\001\000\000\301\001\001\000\000\002\200\001\101\102\001\000\325\101\202\003\236\001\200\001\206\201\301\002\232\001\000\000\026\300\001\200\027\300\101\002\026\100\001\200\202\001\000\000\301\001\002\000\000\002\200\001\101\102\001\000\325\101\202\003\236\001\200\001\206\101\302\002\232\001\000\000\026\200\004\200\205\201\002\000\306\101\302\002\234\001\001\001\026\000\001\200\306\302\102\005\027\000\201\005\026\100\000\200\302\002\200\000\336\002\000\001\241\201\000\000\026\000\376\177\202\001\000\000\301\001\003\000\000\002\000\002\101\102\003\000\200\002\200\001\301\102\001\000\325\301\202\003\236\001\200\001\041\200\000\000\026\100\364\177\002\000\200\000\036\000\000\001\036\000\200\000\016\000\000\000\004\006\000\000\000\160\141\151\162\163\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\157\160\164\151\157\156\163\000\004\021\000\000\000\151\156\166\141\154\151\144\040\157\160\164\151\157\156\040\047\000\004\002\000\000\000\047\000\004\006\000\000\000\166\141\154\165\145\000\004\001\000\000\000\000\004\040\000\000\000\156\157\040\166\141\154\165\145\040\163\160\145\143\151\146\151\145\144\040\146\157\162\040\157\160\164\151\157\156\040\047\000\004\010\000\000\000\141\154\154\157\167\145\144\000\004\007\000\000\000\151\160\141\151\162\163\000\003\000\000\000\000\000\000\360\077\004\020\000\000\000\151\156\166\141\154\151\144\040\166\141\154\165\145\040\047\000\004\017\000\000\000\047\040\146\157\162\040\157\160\164\151\157\156\040\047\000\000\000\000\000\065\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\052\000\000\000\052\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\065\000\000\000\066\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\047\000\000\000\071\000\000\000\073\000\000\000\073\000\000\000\074\000\000\000\013\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\062\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\062\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\062\000\000\000\004\000\000\000\153\145\171\000\004\000\000\000\060\000\000\000\006\000\000\000\166\141\154\165\145\000\004\000\000\000\060\000\000\000\004\000\000\000\157\160\164\000\007\000\000\000\060\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\040\000\000\000\050\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\040\000\000\000\050\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\040\000\000\000\050\000\000\000\002\000\000\000\137\000\041\000\000\000\046\000\000\000\006\000\000\000\155\141\164\143\150\000\041\000\000\000\046\000\000\000\000\000\000\000\000\000\000\000\106\000\000\000\125\000\000\000\000\002\000\012\042\000\000\000\132\000\000\000\026\100\007\200\205\000\000\000\300\000\200\000\234\200\000\001\027\100\100\001\026\000\001\200\200\000\200\000\300\000\000\000\235\000\000\001\236\000\000\000\026\000\005\200\205\200\000\000\300\000\200\000\234\000\001\001\026\200\001\200\313\301\100\000\334\201\000\001\013\302\100\003\034\202\000\001\027\000\202\003\026\000\000\200\236\001\000\001\241\200\000\000\026\200\375\177\203\000\000\001\301\000\001\000\000\001\000\000\101\101\001\000\325\100\201\001\236\000\200\001\026\000\000\200\036\000\000\001\036\000\200\000\006\000\000\000\004\005\000\000\000\164\171\160\145\000\004\011\000\000\000\146\165\156\143\164\151\157\156\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\154\157\167\145\162\000\004\020\000\000\000\151\156\166\141\154\151\144\040\166\141\154\165\145\040\047\000\004\002\000\000\000\047\000\000\000\000\000\042\000\000\000\107\000\000\000\107\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\113\000\000\000\116\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\121\000\000\000\123\000\000\000\125\000\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\041\000\000\000\010\000\000\000\141\154\154\157\167\145\144\000\000\000\000\000\041\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\017\000\000\000\031\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\017\000\000\000\031\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\017\000\000\000\031\000\000\000\002\000\000\000\137\000\020\000\000\000\027\000\000\000\002\000\000\000\166\000\020\000\000\000\027\000\000\000\000\000\000\000\000\000\000\000\136\000\000\000\203\000\000\000\000\001\000\017\037\000\000\000\105\000\000\000\106\100\300\000\106\000\200\000\244\000\000\000\305\200\000\000\005\301\000\000\334\000\001\001\026\200\003\200\000\002\000\001\100\002\200\003\206\002\301\000\034\102\200\001\005\002\000\000\006\102\101\004\100\002\200\003\034\002\001\001\026\300\000\200\000\003\000\001\100\003\200\005\206\203\301\000\034\103\200\001\041\102\000\000\026\100\376\177\341\200\000\000\026\200\373\177\306\300\301\000\332\000\000\000\026\100\000\200\306\300\301\000\334\100\200\000\036\000\200\000\010\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\014\000\000\000\145\141\143\150\160\162\157\152\145\143\164\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\010\000\000\000\145\170\145\143\165\164\145\000\001\000\000\000\000\000\000\000\142\000\000\000\167\000\000\000\000\002\000\016\060\000\000\000\132\100\000\000\026\000\000\200\036\000\200\000\205\000\000\000\300\000\200\000\234\000\001\001\026\100\011\200\302\001\200\000\006\102\100\003\032\002\000\000\026\300\000\200\006\102\100\003\100\002\000\000\034\202\000\001\300\001\000\004\332\001\000\000\026\300\006\200\005\202\000\000\006\302\100\004\100\002\000\000\206\002\101\003\034\202\200\001\105\102\001\000\106\202\301\004\200\002\000\004\301\302\001\000\134\302\200\001\132\102\000\000\026\300\000\200\305\002\002\000\000\003\000\005\101\103\002\000\334\102\200\001\305\102\001\000\306\202\302\005\000\003\200\004\334\102\000\001\306\302\102\003\000\003\000\000\334\102\000\001\305\102\001\000\306\202\302\005\334\202\200\000\313\002\303\005\334\102\000\001\241\200\000\000\026\300\365\177\036\000\200\000\015\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\003\000\000\000\000\000\000\010\100\004\010\000\000\000\160\162\145\155\141\153\145\000\004\016\000\000\000\147\145\164\157\165\164\160\165\164\156\141\155\145\000\003\000\000\000\000\000\000\360\077\004\003\000\000\000\151\157\000\004\005\000\000\000\157\160\145\156\000\004\003\000\000\000\167\142\000\004\006\000\000\000\145\162\162\157\162\000\003\000\000\000\000\000\000\000\000\004\007\000\000\000\157\165\164\160\165\164\000\003\000\000\000\000\000\000\000\100\004\006\000\000\000\143\154\157\163\145\000\000\000\000\000\060\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\145\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\151\000\000\000\151\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\154\000\000\000\154\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\144\000\000\000\165\000\000\000\167\000\000\000\013\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\057\000\000\000\012\000\000\000\164\145\155\160\154\141\164\145\163\000\000\000\000\000\057\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\006\000\000\000\057\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\006\000\000\000\057\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\006\000\000\000\057\000\000\000\002\000\000\000\137\000\007\000\000\000\055\000\000\000\005\000\000\000\164\155\160\154\000\007\000\000\000\055\000\000\000\007\000\000\000\157\165\164\160\165\164\000\010\000\000\000\055\000\000\000\006\000\000\000\146\156\141\155\145\000\026\000\000\000\055\000\000\000\002\000\000\000\146\000\033\000\000\000\055\000\000\000\004\000\000\000\145\162\162\000\033\000\000\000\055\000\000\000\000\000\000\000\037\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\167\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\172\000\000\000\172\000\000\000\172\000\000\000\172\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\173\000\000\000\174\000\000\000\171\000\000\000\175\000\000\000\200\000\000\000\200\000\000\000\200\000\000\000\201\000\000\000\201\000\000\000\203\000\000\000\014\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\036\000\000\000\007\000\000\000\141\143\164\151\157\156\000\003\000\000\000\036\000\000\000\016\000\000\000\147\145\156\145\162\141\164\145\146\151\154\145\163\000\004\000\000\000\036\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\007\000\000\000\031\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\007\000\000\000\031\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\007\000\000\000\031\000\000\000\002\000\000\000\137\000\010\000\000\000\027\000\000\000\004\000\000\000\163\154\156\000\010\000\000\000\027\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\020\000\000\000\027\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\020\000\000\000\027\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\020\000\000\000\027\000\000\000\004\000\000\000\160\162\152\000\021\000\000\000\025\000\000\000\000\000\000\000\000\000\000\000\213\000\000\000\234\000\000\000\000\001\000\013\073\000\000\000\105\000\000\000\200\000\000\000\134\200\000\001\027\100\300\000\026\000\004\200\112\000\000\000\205\200\000\000\300\000\000\000\234\000\001\001\026\300\001\200\305\101\000\000\306\301\300\003\000\002\200\000\105\002\001\000\106\102\301\004\200\002\000\003\134\002\000\001\334\101\000\000\241\200\000\000\026\100\375\177\136\000\000\001\026\300\010\200\113\200\101\000\301\300\001\000\001\001\002\000\134\200\000\002\000\000\200\000\113\200\101\000\301\100\002\000\001\201\002\000\134\200\000\002\000\000\200\000\113\200\101\000\301\300\002\000\001\001\003\000\134\200\000\002\000\000\200\000\113\200\101\000\301\100\003\000\001\201\003\000\134\200\000\002\000\000\200\000\113\200\101\000\301\300\003\000\001\001\004\000\134\200\000\002\000\000\200\000\113\200\101\000\301\100\004\000\001\201\004\000\134\200\000\002\000\000\200\000\113\200\101\000\301\300\004\000\001\001\005\000\134\200\000\002\000\000\200\000\036\000\000\001\036\000\200\000\025\000\000\000\004\005\000\000\000\164\171\160\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\160\141\151\162\163\000\004\007\000\000\000\151\156\163\145\162\164\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\004\000\000\000\145\163\143\000\004\005\000\000\000\147\163\165\142\000\004\002\000\000\000\046\000\004\006\000\000\000\046\141\155\160\073\000\004\002\000\000\000\042\000\004\007\000\000\000\046\161\165\157\164\073\000\004\002\000\000\000\047\000\004\007\000\000\000\046\141\160\157\163\073\000\004\002\000\000\000\074\000\004\005\000\000\000\046\154\164\073\000\004\002\000\000\000\076\000\004\005\000\000\000\046\147\164\073\000\004\002\000\000\000\015\000\004\007\000\000\000\046\043\170\060\104\073\000\004\002\000\000\000\012\000\004\007\000\000\000\046\043\170\060\101\073\000\000\000\000\000\073\000\000\000\214\000\000\000\214\000\000\000\214\000\000\000\214\000\000\000\214\000\000\000\215\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\216\000\000\000\217\000\000\000\221\000\000\000\221\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\225\000\000\000\225\000\000\000\225\000\000\000\225\000\000\000\225\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\231\000\000\000\231\000\000\000\231\000\000\000\231\000\000\000\231\000\000\000\232\000\000\000\234\000\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\072\000\000\000\007\000\000\000\162\145\163\165\154\164\000\006\000\000\000\025\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\011\000\000\000\024\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\011\000\000\000\024\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\011\000\000\000\024\000\000\000\002\000\000\000\137\000\012\000\000\000\022\000\000\000\002\000\000\000\166\000\012\000\000\000\022\000\000\000\000\000\000\000\000\000\000\000\245\000\000\000\257\000\000\000\001\000\000\010\035\000\000\000\004\000\000\000\032\100\000\000\026\200\005\200\012\000\000\000\010\000\000\000\005\000\000\000\006\100\100\000\104\000\000\000\205\200\000\000\034\100\200\001\005\000\000\000\006\100\100\000\104\000\000\000\205\300\000\000\034\100\200\001\005\000\001\000\105\100\001\000\034\000\001\001\026\000\001\200\105\001\000\000\106\101\300\002\204\001\000\000\300\001\200\001\134\101\200\001\041\200\000\000\026\000\376\177\004\000\000\000\036\000\000\001\036\000\200\000\006\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\004\000\000\000\137\117\123\000\004\006\000\000\000\160\141\151\162\163\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\000\000\000\000\035\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\247\000\000\000\247\000\000\000\250\000\000\000\250\000\000\000\250\000\000\000\250\000\000\000\250\000\000\000\251\000\000\000\251\000\000\000\251\000\000\000\251\000\000\000\251\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\252\000\000\000\253\000\000\000\256\000\000\000\256\000\000\000\257\000\000\000\005\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\022\000\000\000\032\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\022\000\000\000\032\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\022\000\000\000\032\000\000\000\002\000\000\000\153\000\023\000\000\000\030\000\000\000\002\000\000\000\137\000\023\000\000\000\030\000\000\000\001\000\000\000\007\000\000\000\137\164\145\162\155\163\000\000\000\000\000\271\000\000\000\301\000\000\000\000\002\000\006\024\000\000\000\305\000\000\000\000\001\200\000\334\200\000\001\027\100\300\001\026\000\001\200\300\000\200\000\000\001\000\000\334\200\000\001\200\000\200\001\026\200\000\200\306\200\100\000\000\001\200\000\225\000\201\001\305\300\000\000\306\000\301\001\006\101\101\000\100\001\000\001\335\000\200\001\336\000\000\000\036\000\200\000\006\000\000\000\004\005\000\000\000\164\171\160\145\000\004\011\000\000\000\146\165\156\143\164\151\157\156\000\004\005\000\000\000\156\141\155\145\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\000\000\000\000\024\000\000\000\273\000\000\000\273\000\000\000\273\000\000\000\273\000\000\000\273\000\000\000\274\000\000\000\274\000\000\000\274\000\000\000\274\000\000\000\274\000\000\000\276\000\000\000\276\000\000\000\276\000\000\000\300\000\000\000\300\000\000\000\300\000\000\000\300\000\000\000\300\000\000\000\300\000\000\000\301\000\000\000\003\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\023\000\000\000\011\000\000\000\156\141\155\145\163\160\145\143\000\000\000\000\000\023\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\023\000\000\000\000\000\000\000\030\000\000\000\015\000\000\000\036\000\000\000\015\000\000\000\046\000\000\000\074\000\000\000\046\000\000\000\106\000\000\000\125\000\000\000\106\000\000\000\136\000\000\000\203\000\000\000\136\000\000\000\213\000\000\000\234\000\000\000\213\000\000\000\244\000\000\000\245\000\000\000\257\000\000\000\257\000\000\000\245\000\000\000\271\000\000\000\301\000\000\000\271\000\000\000\301\000\000\000\001\000\000\000\007\000\000\000\137\164\145\162\155\163\000\020\000\000\000\027\000\000\000\000\000\000\000",
"\033\114\165\141\121\000\001\004\004\004\010\000\027\000\000\000\100\163\162\143\057\142\141\163\145\057\164\145\155\160\154\141\164\145\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\003\014\000\000\000\044\000\000\000\105\000\000\000\244\100\000\000\000\000\000\000\111\200\200\200\105\000\000\000\244\200\000\000\111\200\000\201\105\000\000\000\244\300\000\000\111\200\200\201\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\017\000\000\000\145\156\143\157\144\145\164\145\155\160\154\141\164\145\000\004\023\000\000\000\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\000\004\021\000\000\000\154\157\141\144\164\145\155\160\154\141\164\145\146\151\154\145\000\004\000\000\000\000\000\000\000\017\000\000\000\033\000\000\000\000\001\000\012\032\000\000\000\101\000\000\000\213\100\100\000\001\201\000\000\234\000\201\001\026\000\003\200\213\301\300\002\234\201\000\001\030\200\001\202\026\100\001\200\200\001\200\000\301\101\001\000\000\002\200\002\101\202\001\000\125\100\002\003\026\200\000\200\200\001\200\000\301\301\001\000\125\300\001\003\241\100\000\000\026\000\374\177\213\000\302\000\001\101\002\000\101\201\002\000\235\000\000\002\236\000\000\000\036\000\200\000\013\000\000\000\004\001\000\000\000\000\004\007\000\000\000\147\155\141\164\143\150\000\004\006\000\000\000\133\136\012\135\052\000\004\004\000\000\000\154\145\156\000\003\000\000\000\000\000\000\000\000\004\014\000\000\000\151\157\056\167\162\151\164\145\133\075\133\000\004\004\000\000\000\135\075\135\000\004\017\000\000\000\151\157\056\167\162\151\164\145\050\145\157\154\051\012\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\003\000\000\000\000\000\000\056\300\000\000\000\000\032\000\000\000\020\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\024\000\000\000\024\000\000\000\024\000\000\000\024\000\000\000\024\000\000\000\024\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\022\000\000\000\027\000\000\000\032\000\000\000\032\000\000\000\032\000\000\000\032\000\000\000\032\000\000\000\033\000\000\000\006\000\000\000\004\000\000\000\163\164\162\000\000\000\000\000\031\000\000\000\005\000\000\000\143\157\144\145\000\001\000\000\000\031\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\024\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\024\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\024\000\000\000\005\000\000\000\154\151\156\145\000\005\000\000\000\022\000\000\000\000\000\000\000\000\000\000\000\043\000\000\000\134\000\000\000\001\001\000\012\165\000\000\000\101\100\000\000\107\000\000\000\113\200\100\000\301\300\000\000\001\001\001\000\134\200\000\002\000\000\200\000\113\300\101\000\301\000\002\000\134\300\200\001\207\200\001\000\107\100\001\000\105\100\001\000\132\100\000\000\026\000\000\200\026\300\026\200\113\100\102\000\301\200\002\000\005\101\001\000\015\201\102\002\134\200\000\002\213\100\102\000\005\201\001\000\014\201\102\002\234\200\200\001\303\000\200\001\013\101\102\000\205\101\001\000\214\301\102\003\305\101\001\000\314\301\302\003\034\201\000\002\127\000\103\002\026\000\000\200\002\101\000\000\002\001\200\000\032\001\000\000\026\300\001\200\113\101\102\000\305\101\001\000\314\101\303\003\005\202\001\000\015\302\102\004\134\201\000\002\300\000\200\002\026\200\001\200\113\101\102\000\305\101\001\000\314\301\302\003\005\202\001\000\015\302\102\004\134\201\000\002\300\000\200\002\032\101\000\000\026\000\007\200\113\201\303\000\301\001\001\000\002\002\200\000\134\201\000\002\107\201\001\000\105\201\001\000\132\001\000\000\026\100\001\200\113\101\302\000\301\201\002\000\005\202\001\000\134\201\000\002\100\000\200\002\026\000\000\200\103\000\200\000\113\301\101\001\301\001\001\000\001\202\002\000\102\002\200\000\134\201\200\002\107\101\001\000\105\101\001\000\132\001\000\000\026\000\001\200\113\101\102\001\305\101\001\000\314\201\302\003\134\201\200\001\200\000\200\002\132\000\000\000\026\100\001\200\105\001\000\000\204\001\000\000\300\001\200\000\234\201\000\001\125\201\201\002\107\001\000\000\032\001\000\000\026\200\001\200\105\001\000\000\201\301\003\000\300\001\200\001\001\002\004\000\125\001\202\002\107\001\000\000\026\000\001\200\105\001\000\000\200\001\200\001\301\001\001\000\125\301\201\002\107\001\000\000\000\000\000\001\026\200\346\177\105\000\000\000\204\000\000\000\300\000\000\000\234\200\000\001\125\200\200\000\107\000\000\000\105\000\000\000\136\000\000\001\036\000\200\000\021\000\000\000\004\005\000\000\000\143\157\144\145\000\004\001\000\000\000\000\004\005\000\000\000\147\163\165\142\000\004\003\000\000\000\015\012\000\004\002\000\000\000\012\000\004\006\000\000\000\163\164\141\162\164\000\004\007\000\000\000\146\151\156\151\163\150\000\004\005\000\000\000\146\151\156\144\000\004\011\000\000\000\074\045\045\056\055\045\045\076\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\003\000\000\000\000\000\000\000\100\004\002\000\000\000\075\000\003\000\000\000\000\000\000\010\100\004\011\000\000\000\146\151\156\144\154\141\163\164\000\004\012\000\000\000\151\157\056\167\162\151\164\145\050\000\004\002\000\000\000\051\000\000\000\000\000\165\000\000\000\044\000\000\000\044\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\062\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\073\000\000\000\073\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\100\000\000\000\103\000\000\000\103\000\000\000\103\000\000\000\103\000\000\000\103\000\000\000\103\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\112\000\000\000\112\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\117\000\000\000\117\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\126\000\000\000\126\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\133\000\000\000\134\000\000\000\005\000\000\000\005\000\000\000\164\155\160\154\000\000\000\000\000\164\000\000\000\007\000\000\000\142\145\146\157\162\145\000\025\000\000\000\153\000\000\000\006\000\000\000\141\146\164\145\162\000\031\000\000\000\153\000\000\000\006\000\000\000\142\154\157\143\153\000\032\000\000\000\153\000\000\000\007\000\000\000\151\163\145\170\160\162\000\044\000\000\000\153\000\000\000\001\000\000\000\010\000\000\000\154\151\164\145\162\141\154\000\000\000\000\000\144\000\000\000\153\000\000\000\000\002\000\010\025\000\000\000\205\000\000\000\206\100\100\001\300\000\200\000\234\200\000\001\305\200\000\000\001\301\000\000\100\001\000\001\201\001\001\000\025\201\001\002\100\001\000\000\334\300\200\001\332\100\000\000\026\300\000\200\105\101\001\000\200\001\000\002\301\201\001\000\134\101\200\001\100\001\200\001\135\001\200\000\136\001\000\000\036\000\200\000\007\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\017\000\000\000\145\156\143\157\144\145\164\145\155\160\154\141\164\145\000\004\013\000\000\000\154\157\141\144\163\164\162\151\156\147\000\004\041\000\000\000\162\145\164\165\162\156\040\146\165\156\143\164\151\157\156\040\050\164\150\151\163\051\040\145\157\154\075\047\134\156\047\073\000\004\005\000\000\000\040\145\156\144\000\004\006\000\000\000\145\162\162\157\162\000\003\000\000\000\000\000\000\000\000\000\000\000\000\025\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\147\000\000\000\147\000\000\000\150\000\000\000\150\000\000\000\150\000\000\000\150\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\153\000\000\000\005\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\024\000\000\000\004\000\000\000\163\164\162\000\000\000\000\000\024\000\000\000\005\000\000\000\143\157\144\145\000\004\000\000\000\024\000\000\000\003\000\000\000\146\156\000\013\000\000\000\024\000\000\000\004\000\000\000\155\163\147\000\013\000\000\000\024\000\000\000\000\000\000\000\000\000\000\000\163\000\000\000\170\000\000\000\000\001\000\006\024\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\301\200\000\000\134\200\200\001\213\300\300\000\001\001\001\000\234\200\200\001\313\100\301\000\334\100\000\001\305\200\001\000\306\300\301\001\005\001\002\000\006\101\102\002\100\001\000\000\034\201\000\001\100\001\000\001\335\000\200\001\336\000\000\000\036\000\200\000\012\000\000\000\004\003\000\000\000\151\157\000\004\005\000\000\000\157\160\145\156\000\004\003\000\000\000\162\142\000\004\005\000\000\000\162\145\141\144\000\004\003\000\000\000\052\141\000\004\006\000\000\000\143\154\157\163\145\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\023\000\000\000\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\000\004\005\000\000\000\160\141\164\150\000\004\010\000\000\000\147\145\164\156\141\155\145\000\000\000\000\000\024\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\166\000\000\000\166\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\170\000\000\000\003\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\023\000\000\000\002\000\000\000\146\000\005\000\000\000\023\000\000\000\005\000\000\000\164\155\160\154\000\010\000\000\000\023\000\000\000\000\000\000\000\014\000\000\000\033\000\000\000\043\000\000\000\134\000\000\000\134\000\000\000\043\000\000\000\144\000\000\000\153\000\000\000\144\000\000\000\163\000\000\000\170\000\000\000\163\000\000\000\170\000\000\000\001\000\000\000\010\000\000\000\154\151\164\145\162\141\154\000\001\000\000\000\013\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\026\000\000\000\100\163\162\143\057\142\141\163\145\057\160\162\157\152\145\143\164\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\004\050\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\000\000\000\144\200\000\000\011\100\200\201\005\000\000\000\144\300\000\000\011\100\000\202\005\000\000\000\144\000\001\000\011\100\200\202\005\000\000\000\144\100\001\000\011\100\000\203\005\000\000\000\144\200\001\000\011\100\200\203\044\300\001\000\105\000\000\000\244\000\002\000\000\000\000\000\111\200\000\204\105\000\000\000\244\100\002\000\000\000\000\000\111\200\200\204\105\000\000\000\244\200\002\000\111\200\000\205\144\300\002\000\000\000\200\000\205\000\000\000\344\000\003\000\000\000\200\000\211\300\200\205\036\000\200\000\014\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\016\000\000\000\143\150\145\143\153\160\162\157\152\145\143\164\163\000\004\014\000\000\000\145\141\143\150\160\162\157\152\145\143\164\000\004\014\000\000\000\146\151\156\144\160\162\157\152\145\143\164\000\004\011\000\000\000\146\151\156\144\146\151\154\145\000\004\012\000\000\000\147\145\164\157\142\152\145\143\164\000\004\016\000\000\000\151\163\165\156\151\161\165\145\166\141\154\165\145\000\004\011\000\000\000\163\145\164\141\162\162\141\171\000\004\014\000\000\000\163\145\164\144\151\162\141\162\162\141\171\000\004\015\000\000\000\163\145\164\146\151\154\145\141\162\162\141\171\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\014\000\000\000\167\141\154\153\163\157\165\162\143\145\163\000\015\000\000\000\000\000\000\000\015\000\000\000\076\000\000\000\000\000\000\027\162\000\000\000\005\000\000\000\006\100\100\000\105\200\000\000\006\100\000\000\105\300\000\000\205\000\001\000\134\000\001\001\026\000\031\200\206\101\301\002\224\001\000\003\027\200\101\003\026\100\001\200\203\001\000\003\301\301\001\000\006\002\302\002\101\102\002\000\325\101\202\003\236\001\200\001\206\201\302\002\232\001\000\000\026\300\000\200\206\201\302\002\224\001\000\003\027\200\101\003\026\100\001\200\203\001\000\003\301\301\001\000\006\002\302\002\101\302\002\000\325\101\202\003\236\001\200\001\205\301\000\000\306\101\301\002\234\001\001\001\026\300\021\200\305\002\000\000\306\002\303\005\000\003\000\005\334\202\000\001\006\103\303\005\032\103\000\000\026\100\001\200\003\003\000\006\101\203\003\000\206\003\102\005\301\303\003\000\125\303\203\006\036\003\200\001\006\003\104\000\032\003\000\000\026\200\003\200\005\103\004\000\006\203\104\006\106\003\104\000\206\103\303\005\034\203\200\001\032\103\000\000\026\300\001\200\003\003\000\006\101\303\004\000\206\003\105\000\301\103\005\000\006\104\303\005\101\204\005\000\125\103\204\006\036\003\200\001\005\303\000\000\106\203\302\002\034\003\001\001\026\200\010\200\105\004\000\000\106\004\303\010\200\004\000\005\300\004\000\010\134\204\200\001\300\002\200\010\106\304\305\005\132\104\000\000\026\300\001\200\103\004\200\010\201\204\003\000\306\004\102\005\001\005\006\000\100\005\000\010\201\105\006\000\225\204\005\011\136\004\200\001\106\204\106\000\132\004\000\000\026\200\003\200\105\104\004\000\106\204\304\010\206\204\106\000\306\304\305\005\134\204\200\001\132\104\000\000\026\300\001\200\103\004\200\010\201\304\004\000\306\004\105\000\001\105\005\000\106\305\305\005\201\205\005\000\225\204\005\011\136\004\200\001\041\203\000\000\026\200\366\177\241\201\000\000\026\100\355\177\141\200\000\000\026\000\346\177\102\000\200\000\136\000\000\001\036\000\200\000\033\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\011\000\000\000\160\162\157\152\145\143\164\163\000\003\000\000\000\000\000\000\000\000\004\013\000\000\000\163\157\154\165\164\151\157\156\040\047\000\004\005\000\000\000\156\141\155\145\000\004\035\000\000\000\047\040\156\145\145\144\163\040\141\164\040\154\145\141\163\164\040\157\156\145\040\160\162\157\152\145\143\164\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\027\000\000\000\047\040\156\145\145\144\163\040\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\012\000\000\000\160\162\157\152\145\143\164\040\047\000\004\023\000\000\000\047\040\156\145\145\144\163\040\141\040\154\141\156\147\165\141\147\145\000\004\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\004\005\000\000\000\164\150\145\040\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\032\000\000\000\040\141\143\164\151\157\156\040\144\157\145\163\040\156\157\164\040\163\165\160\160\157\162\164\040\000\004\012\000\000\000\040\160\162\157\152\145\143\164\163\000\004\005\000\000\000\153\151\156\144\000\004\042\000\000\000\047\040\156\145\145\144\163\040\141\040\153\151\156\144\040\151\156\040\143\157\156\146\151\147\165\162\141\164\151\157\156\040\047\000\004\002\000\000\000\047\000\004\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\000\000\000\000\162\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\033\000\000\000\033\000\000\000\033\000\000\000\033\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\052\000\000\000\067\000\000\000\033\000\000\000\070\000\000\000\020\000\000\000\072\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\021\000\000\000\007\000\000\000\141\143\164\151\157\156\000\004\000\000\000\161\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\007\000\000\000\157\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\007\000\000\000\157\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\007\000\000\000\157\000\000\000\002\000\000\000\137\000\010\000\000\000\155\000\000\000\004\000\000\000\163\154\156\000\010\000\000\000\155\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\042\000\000\000\155\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\042\000\000\000\155\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\042\000\000\000\155\000\000\000\002\000\000\000\137\000\043\000\000\000\153\000\000\000\004\000\000\000\160\162\152\000\043\000\000\000\153\000\000\000\004\000\000\000\143\146\147\000\047\000\000\000\153\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\105\000\000\000\153\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\105\000\000\000\153\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\105\000\000\000\153\000\000\000\002\000\000\000\137\000\106\000\000\000\151\000\000\000\010\000\000\000\143\146\147\156\141\155\145\000\106\000\000\000\151\000\000\000\000\000\000\000\000\000\000\000\106\000\000\000\125\000\000\000\000\001\000\003\006\000\000\000\101\000\000\000\244\000\000\000\000\000\200\000\000\000\000\000\236\000\000\001\036\000\200\000\001\000\000\000\003\000\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\110\000\000\000\124\000\000\000\002\000\000\006\035\000\000\000\004\000\000\000\014\000\100\000\010\000\000\000\004\000\000\000\104\000\200\000\106\100\300\000\124\000\200\000\031\100\000\000\026\200\004\200\004\000\200\000\006\100\100\000\104\000\000\000\006\100\000\000\105\200\000\000\106\300\300\000\200\000\000\000\134\200\000\001\205\000\001\000\300\000\200\000\005\101\001\000\100\001\000\000\034\001\000\001\234\100\000\000\206\200\101\000\111\200\000\203\206\300\101\000\111\200\200\203\136\000\000\001\036\000\200\000\010\000\000\000\003\000\000\000\000\000\000\360\077\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\004\015\000\000\000\163\145\164\155\145\164\141\164\141\142\154\145\000\004\015\000\000\000\147\145\164\155\145\164\141\164\141\142\154\145\000\004\005\000\000\000\156\141\155\145\000\004\007\000\000\000\142\154\157\143\153\163\000\000\000\000\000\035\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\120\000\000\000\120\000\000\000\121\000\000\000\121\000\000\000\122\000\000\000\124\000\000\000\002\000\000\000\004\000\000\000\160\162\152\000\015\000\000\000\034\000\000\000\007\000\000\000\155\145\162\147\145\144\000\021\000\000\000\034\000\000\000\002\000\000\000\002\000\000\000\151\000\004\000\000\000\163\154\156\000\006\000\000\000\107\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\125\000\000\000\002\000\000\000\004\000\000\000\163\154\156\000\000\000\000\000\005\000\000\000\002\000\000\000\151\000\001\000\000\000\005\000\000\000\000\000\000\000\000\000\000\000\135\000\000\000\146\000\000\000\000\001\000\015\026\000\000\000\113\000\100\000\134\200\000\001\000\000\200\000\105\100\000\000\205\200\000\000\134\000\001\001\026\300\002\200\205\101\000\000\306\301\300\002\234\001\001\001\026\100\001\200\306\002\101\005\313\002\300\005\334\202\000\001\027\000\200\005\026\000\000\200\236\002\000\001\241\201\000\000\026\300\375\177\141\200\000\000\026\100\374\177\036\000\200\000\005\000\000\000\004\006\000\000\000\154\157\167\145\162\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\005\000\000\000\156\141\155\145\000\000\000\000\000\026\000\000\000\136\000\000\000\136\000\000\000\136\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\142\000\000\000\140\000\000\000\143\000\000\000\137\000\000\000\144\000\000\000\146\000\000\000\013\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\025\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\006\000\000\000\025\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\006\000\000\000\025\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\006\000\000\000\025\000\000\000\002\000\000\000\137\000\007\000\000\000\023\000\000\000\004\000\000\000\163\154\156\000\007\000\000\000\023\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\012\000\000\000\023\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\012\000\000\000\023\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\012\000\000\000\023\000\000\000\002\000\000\000\137\000\013\000\000\000\021\000\000\000\004\000\000\000\160\162\152\000\013\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\157\000\000\000\165\000\000\000\000\002\000\011\016\000\000\000\205\000\000\000\306\100\100\000\234\000\001\001\026\200\001\200\305\201\000\000\306\301\300\003\000\002\000\003\334\201\000\001\027\100\200\003\026\000\000\200\236\001\000\001\241\200\000\000\026\200\375\177\036\000\200\000\004\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\146\151\154\145\163\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\145\170\164\145\156\163\151\157\156\000\000\000\000\000\016\000\000\000\160\000\000\000\160\000\000\000\160\000\000\000\160\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\162\000\000\000\160\000\000\000\163\000\000\000\165\000\000\000\007\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\015\000\000\000\012\000\000\000\145\170\164\145\156\163\151\157\156\000\000\000\000\000\015\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\015\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\015\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\015\000\000\000\002\000\000\000\137\000\004\000\000\000\013\000\000\000\006\000\000\000\146\156\141\155\145\000\004\000\000\000\013\000\000\000\000\000\000\000\000\000\000\000\200\000\000\000\231\000\000\000\000\001\000\005\041\000\000\000\127\000\100\000\026\100\000\200\027\100\100\000\026\200\000\200\205\200\000\000\106\300\100\001\026\100\000\200\205\200\000\000\106\000\101\001\027\100\100\000\026\100\001\200\205\100\001\000\300\000\200\000\234\200\000\001\127\100\100\001\026\000\000\200\103\000\200\000\203\000\000\001\132\100\000\000\026\000\002\200\027\000\100\000\026\100\000\200\201\200\001\000\026\000\001\200\027\100\100\000\026\100\000\200\201\300\001\000\026\000\000\200\201\000\002\000\300\000\200\000\000\001\000\001\336\000\200\001\036\000\200\000\011\000\000\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\021\000\000\000\103\165\162\162\145\156\164\103\157\156\164\141\151\156\145\162\000\004\025\000\000\000\103\165\162\162\145\156\164\103\157\156\146\151\147\165\162\141\164\151\157\156\000\004\005\000\000\000\164\171\160\145\000\004\036\000\000\000\156\157\040\141\143\164\151\166\145\040\163\157\154\165\164\151\157\156\040\157\162\040\160\162\157\152\145\143\164\000\004\023\000\000\000\156\157\040\141\143\164\151\166\145\040\163\157\154\165\164\151\157\156\000\004\056\000\000\000\156\157\040\141\143\164\151\166\145\040\163\157\154\165\164\151\157\156\054\040\160\162\157\152\145\143\164\054\040\157\162\040\143\157\156\146\151\147\165\162\141\164\151\157\156\000\000\000\000\000\041\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\204\000\000\000\204\000\000\000\204\000\000\000\206\000\000\000\206\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\212\000\000\000\215\000\000\000\216\000\000\000\216\000\000\000\217\000\000\000\217\000\000\000\220\000\000\000\220\000\000\000\221\000\000\000\221\000\000\000\222\000\000\000\222\000\000\000\224\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\231\000\000\000\003\000\000\000\002\000\000\000\164\000\000\000\000\000\040\000\000\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\000\000\000\000\040\000\000\000\004\000\000\000\155\163\147\000\022\000\000\000\040\000\000\000\000\000\000\000\000\000\000\000\242\000\000\000\270\000\000\000\000\003\000\027\053\000\000\000\301\000\000\000\005\101\000\000\105\201\000\000\034\001\001\001\026\000\010\200\105\102\000\000\206\302\100\004\134\002\001\001\026\200\006\200\205\103\000\000\306\003\101\004\234\003\001\001\026\000\005\200\305\104\001\000\306\204\301\011\000\005\200\006\100\005\000\011\334\204\200\001\003\005\000\012\232\000\000\000\026\000\001\200\100\005\000\001\200\005\200\011\134\205\000\001\000\005\200\012\026\000\000\200\006\005\200\011\027\100\000\012\026\000\001\200\314\300\301\001\030\300\200\203\026\100\000\200\102\005\000\000\136\005\000\001\241\203\000\000\026\000\372\177\141\202\000\000\026\200\370\177\041\201\000\000\026\000\367\177\002\001\200\000\036\001\000\001\036\000\200\000\010\000\000\000\003\000\000\000\000\000\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\003\000\000\000\000\000\000\360\077\000\000\000\000\053\000\000\000\243\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\251\000\000\000\252\000\000\000\252\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\255\000\000\000\260\000\000\000\260\000\000\000\261\000\000\000\262\000\000\000\262\000\000\000\262\000\000\000\262\000\000\000\246\000\000\000\263\000\000\000\245\000\000\000\264\000\000\000\244\000\000\000\265\000\000\000\267\000\000\000\267\000\000\000\270\000\000\000\025\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\052\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\052\000\000\000\003\000\000\000\146\156\000\000\000\000\000\052\000\000\000\006\000\000\000\143\157\165\156\164\000\001\000\000\000\052\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\050\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\050\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\050\000\000\000\002\000\000\000\137\000\005\000\000\000\046\000\000\000\004\000\000\000\163\154\156\000\005\000\000\000\046\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\010\000\000\000\046\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\010\000\000\000\046\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\010\000\000\000\046\000\000\000\002\000\000\000\137\000\011\000\000\000\044\000\000\000\004\000\000\000\160\162\152\000\011\000\000\000\044\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\014\000\000\000\044\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\014\000\000\000\044\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\014\000\000\000\044\000\000\000\002\000\000\000\137\000\015\000\000\000\042\000\000\000\010\000\000\000\143\146\147\156\141\155\145\000\015\000\000\000\042\000\000\000\004\000\000\000\143\146\147\000\022\000\000\000\042\000\000\000\004\000\000\000\164\163\164\000\023\000\000\000\042\000\000\000\000\000\000\000\000\000\000\000\301\000\000\000\336\000\000\000\000\004\000\012\036\000\000\000\005\001\000\000\006\101\100\002\100\001\000\000\034\301\000\001\032\101\000\000\026\300\000\200\205\201\000\000\300\001\200\002\001\302\000\000\234\101\200\001\206\101\000\002\232\101\000\000\026\100\000\200\212\001\000\000\011\201\201\000\244\001\000\000\000\000\000\003\000\000\200\002\000\000\200\001\000\000\000\002\000\000\200\000\232\000\000\000\026\300\000\200\300\001\000\003\000\002\000\001\101\002\001\000\334\101\200\001\306\101\000\002\336\001\000\001\036\000\200\000\005\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\157\142\152\145\143\164\000\004\006\000\000\000\145\162\162\157\162\000\003\000\000\000\000\000\000\010\100\003\000\000\000\000\000\000\024\100\001\000\000\000\000\000\000\000\313\000\000\000\327\000\000\000\005\002\000\012\045\000\000\000\205\000\000\000\300\000\000\000\234\200\000\001\027\100\100\001\026\200\002\200\205\200\000\000\300\000\000\000\234\000\001\001\026\300\000\200\304\001\000\000\000\002\000\003\114\302\300\000\334\101\200\001\241\200\000\000\026\100\376\177\026\300\004\200\205\000\001\000\206\100\101\001\300\000\000\000\004\001\000\001\234\300\200\001\310\000\200\000\000\000\000\001\032\100\000\000\026\300\000\200\205\200\001\000\304\000\200\000\000\001\200\000\234\100\200\001\205\100\000\000\206\300\101\001\304\000\200\001\004\001\000\002\306\000\201\001\000\001\000\000\234\100\200\001\036\000\200\000\010\000\000\000\004\005\000\000\000\164\171\160\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\160\141\151\162\163\000\003\000\000\000\000\000\000\360\077\004\010\000\000\000\160\162\145\155\141\153\145\000\004\013\000\000\000\143\150\145\143\153\166\141\154\165\145\000\004\006\000\000\000\145\162\162\157\162\000\004\007\000\000\000\151\156\163\145\162\164\000\000\000\000\000\045\000\000\000\314\000\000\000\314\000\000\000\314\000\000\000\314\000\000\000\314\000\000\000\315\000\000\000\315\000\000\000\315\000\000\000\315\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\315\000\000\000\316\000\000\000\317\000\000\000\321\000\000\000\321\000\000\000\321\000\000\000\321\000\000\000\321\000\000\000\321\000\000\000\321\000\000\000\322\000\000\000\322\000\000\000\323\000\000\000\323\000\000\000\323\000\000\000\323\000\000\000\325\000\000\000\325\000\000\000\325\000\000\000\325\000\000\000\325\000\000\000\325\000\000\000\325\000\000\000\327\000\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\044\000\000\000\006\000\000\000\144\145\160\164\150\000\000\000\000\000\044\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\010\000\000\000\017\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\010\000\000\000\017\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\010\000\000\000\017\000\000\000\002\000\000\000\137\000\011\000\000\000\015\000\000\000\002\000\000\000\166\000\011\000\000\000\015\000\000\000\005\000\000\000\011\000\000\000\144\157\151\156\163\145\162\164\000\004\000\000\000\145\162\162\000\010\000\000\000\141\154\154\157\167\145\144\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\036\000\000\000\302\000\000\000\302\000\000\000\302\000\000\000\302\000\000\000\303\000\000\000\303\000\000\000\304\000\000\000\304\000\000\000\304\000\000\000\304\000\000\000\307\000\000\000\307\000\000\000\307\000\000\000\310\000\000\000\310\000\000\000\327\000\000\000\327\000\000\000\327\000\000\000\327\000\000\000\327\000\000\000\327\000\000\000\331\000\000\000\331\000\000\000\332\000\000\000\332\000\000\000\332\000\000\000\332\000\000\000\335\000\000\000\335\000\000\000\336\000\000\000\007\000\000\000\006\000\000\000\143\164\171\160\145\000\000\000\000\000\035\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\035\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\035\000\000\000\010\000\000\000\141\154\154\157\167\145\144\000\000\000\000\000\035\000\000\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\000\000\000\035\000\000\000\004\000\000\000\145\162\162\000\004\000\000\000\035\000\000\000\011\000\000\000\144\157\151\156\163\145\162\164\000\025\000\000\000\035\000\000\000\000\000\000\000\000\000\000\000\350\000\000\000\373\000\000\000\000\004\000\011\020\000\000\000\012\001\000\000\144\001\000\000\000\000\200\001\000\000\000\002\107\001\000\000\105\001\000\000\200\001\000\001\134\101\000\001\105\101\000\000\106\201\300\002\200\001\000\000\300\001\200\000\000\002\000\002\135\001\000\002\136\001\000\000\036\000\200\000\003\000\000\000\004\015\000\000\000\155\141\153\145\141\142\163\157\154\165\164\145\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\011\000\000\000\163\145\164\141\162\162\141\171\000\001\000\000\000\000\000\000\000\353\000\000\000\367\000\000\000\002\001\000\012\043\000\000\000\105\000\000\000\200\000\000\000\134\000\001\001\026\300\006\200\205\101\000\000\300\001\200\002\234\201\000\001\027\200\100\003\026\300\000\200\205\301\000\000\300\001\200\002\234\101\000\001\026\200\004\200\213\001\301\002\001\102\001\000\234\201\200\001\232\001\000\000\026\100\001\200\205\301\000\000\304\001\000\000\000\002\200\002\334\001\000\001\234\101\000\000\026\300\001\200\205\201\000\000\206\201\101\003\304\001\200\000\005\302\001\000\006\002\102\004\100\002\200\002\034\002\000\001\234\101\000\000\141\200\000\000\026\100\370\177\036\000\200\000\011\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\005\000\000\000\164\171\160\145\000\004\006\000\000\000\164\141\142\154\145\000\004\015\000\000\000\155\141\153\145\141\142\163\157\154\165\164\145\000\004\005\000\000\000\146\151\156\144\000\004\002\000\000\000\052\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\000\000\000\000\043\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\356\000\000\000\356\000\000\000\356\000\000\000\356\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\363\000\000\000\363\000\000\000\363\000\000\000\363\000\000\000\363\000\000\000\363\000\000\000\363\000\000\000\363\000\000\000\354\000\000\000\365\000\000\000\367\000\000\000\006\000\000\000\004\000\000\000\141\162\162\000\000\000\000\000\042\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\042\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\042\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\042\000\000\000\002\000\000\000\151\000\004\000\000\000\040\000\000\000\006\000\000\000\166\141\154\165\145\000\004\000\000\000\040\000\000\000\002\000\000\000\012\000\000\000\155\141\164\143\150\146\165\156\143\000\007\000\000\000\162\145\163\165\154\164\000\020\000\000\000\351\000\000\000\367\000\000\000\367\000\000\000\367\000\000\000\353\000\000\000\371\000\000\000\371\000\000\000\371\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\373\000\000\000\005\000\000\000\006\000\000\000\143\164\171\160\145\000\000\000\000\000\017\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\017\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\017\000\000\000\012\000\000\000\155\141\164\143\150\146\165\156\143\000\000\000\000\000\017\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\017\000\000\000\000\000\000\000\000\000\000\000\375\000\000\000\377\000\000\000\001\003\000\010\011\000\000\000\304\000\000\000\000\001\000\000\100\001\200\000\200\001\000\001\305\001\000\000\306\101\300\003\335\000\200\002\336\000\000\000\036\000\200\000\002\000\000\000\004\003\000\000\000\157\163\000\004\012\000\000\000\155\141\164\143\150\144\151\162\163\000\000\000\000\000\011\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\377\000\000\000\003\000\000\000\006\000\000\000\143\164\171\160\145\000\000\000\000\000\010\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\010\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\010\000\000\000\001\000\000\000\017\000\000\000\144\157\155\141\164\143\150\145\144\141\162\162\141\171\000\000\000\000\000\001\001\000\000\003\001\000\000\001\003\000\010\011\000\000\000\304\000\000\000\000\001\000\000\100\001\200\000\200\001\000\001\305\001\000\000\306\101\300\003\335\000\200\002\336\000\000\000\036\000\200\000\002\000\000\000\004\003\000\000\000\157\163\000\004\013\000\000\000\155\141\164\143\150\146\151\154\145\163\000\000\000\000\000\011\000\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\003\001\000\000\003\000\000\000\006\000\000\000\143\164\171\160\145\000\000\000\000\000\010\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\010\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\010\000\000\000\001\000\000\000\017\000\000\000\144\157\155\141\164\143\150\145\144\141\162\162\141\171\000\000\000\000\000\014\001\000\000\036\001\000\000\000\004\000\011\035\000\000\000\005\001\000\000\006\101\100\002\100\001\000\000\034\301\000\001\032\101\000\000\026\300\000\200\205\201\000\000\300\001\200\002\001\302\000\000\234\101\200\001\232\000\000\000\026\100\003\200\205\001\000\000\206\001\101\003\300\001\000\001\000\002\200\001\234\301\200\001\100\001\200\003\200\000\000\003\232\100\000\000\026\300\000\200\205\201\000\000\300\001\200\002\001\302\000\000\234\101\200\001\011\201\200\000\206\101\000\002\236\001\000\001\036\000\200\000\005\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\157\142\152\145\143\164\000\004\006\000\000\000\145\162\162\157\162\000\003\000\000\000\000\000\000\020\100\004\013\000\000\000\143\150\145\143\153\166\141\154\165\145\000\000\000\000\000\035\000\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\017\001\000\000\017\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\024\001\000\000\024\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\026\001\000\000\026\001\000\000\027\001\000\000\027\001\000\000\027\001\000\000\027\001\000\000\032\001\000\000\035\001\000\000\035\001\000\000\036\001\000\000\006\000\000\000\006\000\000\000\143\164\171\160\145\000\000\000\000\000\034\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\034\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\034\000\000\000\010\000\000\000\141\154\154\157\167\145\144\000\000\000\000\000\034\000\000\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\000\000\000\034\000\000\000\004\000\000\000\145\162\162\000\004\000\000\000\034\000\000\000\000\000\000\000\000\000\000\000\047\001\000\000\114\001\000\000\001\006\000\027\126\000\000\000\213\001\300\001\234\201\000\001\305\101\000\000\013\202\300\001\201\302\000\000\034\202\200\001\113\002\301\001\301\102\001\000\001\203\001\000\134\202\000\002\200\002\200\001\334\201\000\002\031\000\201\203\026\100\001\200\000\002\000\001\100\002\000\000\200\002\200\003\301\002\002\000\000\003\000\002\034\102\200\002\005\102\002\000\100\002\200\000\034\002\001\001\026\200\006\200\113\203\102\006\300\003\200\001\134\203\200\001\132\003\000\000\026\100\005\200\113\303\102\006\301\003\003\000\014\104\101\003\134\303\000\002\232\003\000\000\026\300\003\200\313\003\101\006\101\104\001\000\200\004\000\007\334\203\000\002\006\304\203\002\032\104\000\000\026\000\002\200\111\101\303\007\004\004\000\000\100\004\000\000\200\004\200\000\300\004\000\001\000\005\200\007\114\105\101\002\200\005\200\002\034\104\200\003\041\202\000\000\026\200\370\177\005\102\002\000\100\002\200\000\034\002\001\001\026\100\004\200\113\203\102\006\300\003\200\001\134\203\200\001\132\003\000\000\026\000\003\200\113\303\102\006\301\303\000\000\014\104\101\003\102\004\200\000\134\203\200\002\132\103\000\000\026\100\001\200\100\003\000\001\200\003\000\000\300\003\000\006\001\204\003\000\114\104\101\002\134\103\200\002\041\202\000\000\026\300\372\177\031\000\201\203\026\100\001\200\000\002\000\001\100\002\000\000\200\002\200\003\301\302\003\000\000\003\000\002\034\102\200\002\036\000\200\000\020\000\000\000\004\004\000\000\000\154\145\156\000\004\004\000\000\000\151\151\146\000\004\011\000\000\000\145\156\144\163\167\151\164\150\000\004\002\000\000\000\057\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\003\000\000\000\000\000\000\000\300\003\000\000\000\000\000\000\000\000\004\013\000\000\000\107\162\157\165\160\123\164\141\162\164\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\163\164\141\162\164\163\167\151\164\150\000\004\005\000\000\000\146\151\156\144\000\004\006\000\000\000\133\136\056\135\057\000\001\001\004\012\000\000\000\107\162\157\165\160\111\164\145\155\000\004\011\000\000\000\107\162\157\165\160\105\156\144\000\000\000\000\000\126\000\000\000\050\001\000\000\050\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\054\001\000\000\054\001\000\000\055\001\000\000\055\001\000\000\055\001\000\000\055\001\000\000\055\001\000\000\055\001\000\000\061\001\000\000\061\001\000\000\061\001\000\000\061\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\066\001\000\000\066\001\000\000\067\001\000\000\067\001\000\000\067\001\000\000\067\001\000\000\070\001\000\000\070\001\000\000\070\001\000\000\071\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\061\001\000\000\076\001\000\000\102\001\000\000\102\001\000\000\102\001\000\000\102\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\102\001\000\000\105\001\000\000\111\001\000\000\111\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\114\001\000\000\025\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\125\000\000\000\006\000\000\000\146\151\154\145\163\000\000\000\000\000\125\000\000\000\003\000\000\000\146\156\000\000\000\000\000\125\000\000\000\006\000\000\000\147\162\157\165\160\000\000\000\000\000\125\000\000\000\012\000\000\000\156\145\163\164\154\145\166\145\154\000\000\000\000\000\125\000\000\000\011\000\000\000\146\151\156\151\163\150\145\144\000\000\000\000\000\125\000\000\000\011\000\000\000\147\162\157\165\160\154\145\156\000\002\000\000\000\125\000\000\000\006\000\000\000\147\156\141\155\145\000\014\000\000\000\125\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\027\000\000\000\065\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\027\000\000\000\065\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\027\000\000\000\065\000\000\000\002\000\000\000\137\000\030\000\000\000\063\000\000\000\006\000\000\000\146\156\141\155\145\000\030\000\000\000\063\000\000\000\002\000\000\000\137\000\041\000\000\000\063\000\000\000\006\000\000\000\163\160\154\151\164\000\041\000\000\000\063\000\000\000\011\000\000\000\163\165\142\147\162\157\165\160\000\047\000\000\000\063\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\070\000\000\000\115\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\070\000\000\000\115\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\070\000\000\000\115\000\000\000\002\000\000\000\137\000\071\000\000\000\113\000\000\000\006\000\000\000\146\156\141\155\145\000\071\000\000\000\113\000\000\000\001\000\000\000\014\000\000\000\167\141\154\153\163\157\165\162\143\145\163\000\000\000\000\000\117\001\000\000\121\001\000\000\001\003\000\012\011\000\000\000\304\000\000\000\000\001\000\000\100\001\200\000\200\001\000\001\301\001\000\000\001\102\000\000\112\002\000\000\334\100\200\003\036\000\200\000\002\000\000\000\004\001\000\000\000\000\003\000\000\000\000\000\000\360\277\000\000\000\000\011\000\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\121\001\000\000\003\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\010\000\000\000\006\000\000\000\146\151\154\145\163\000\000\000\000\000\010\000\000\000\003\000\000\000\146\156\000\000\000\000\000\010\000\000\000\001\000\000\000\014\000\000\000\167\141\154\153\163\157\165\162\143\145\163\000\050\000\000\000\015\000\000\000\076\000\000\000\015\000\000\000\106\000\000\000\125\000\000\000\106\000\000\000\135\000\000\000\146\000\000\000\135\000\000\000\157\000\000\000\165\000\000\000\157\000\000\000\200\000\000\000\231\000\000\000\200\000\000\000\242\000\000\000\270\000\000\000\242\000\000\000\301\000\000\000\336\000\000\000\301\000\000\000\373\000\000\000\375\000\000\000\377\000\000\000\377\000\000\000\375\000\000\000\001\001\000\000\003\001\000\000\003\001\000\000\001\001\000\000\014\001\000\000\036\001\000\000\014\001\000\000\114\001\000\000\114\001\000\000\117\001\000\000\121\001\000\000\121\001\000\000\117\001\000\000\121\001\000\000\002\000\000\000\017\000\000\000\144\157\155\141\164\143\150\145\144\141\162\162\141\171\000\026\000\000\000\047\000\000\000\014\000\000\000\167\141\154\153\163\157\165\162\143\145\163\000\043\000\000\000\047\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\025\000\000\000\100\163\162\143\057\142\141\163\145\057\143\157\156\146\151\147\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\005\043\000\000\000\005\000\000\000\112\000\200\001\201\200\000\000\301\300\000\000\001\001\001\000\142\100\200\001\011\100\200\200\005\000\000\000\144\000\000\000\011\100\200\202\005\000\000\000\144\100\000\000\011\100\000\203\005\000\000\000\144\200\000\000\011\100\200\203\005\000\000\000\144\300\000\000\011\100\000\204\005\000\000\000\144\000\001\000\011\100\200\204\005\000\000\000\144\100\001\000\011\100\000\205\005\000\000\000\144\200\001\000\011\100\200\205\005\000\000\000\144\300\001\000\011\100\000\206\005\000\000\000\144\000\002\000\011\100\200\206\036\000\200\000\016\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\007\000\000\000\156\157\143\157\160\171\000\004\007\000\000\000\142\154\157\143\153\163\000\004\011\000\000\000\153\145\171\167\157\162\144\163\000\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\013\000\000\000\145\141\143\150\143\157\156\146\151\147\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\004\020\000\000\000\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\000\004\015\000\000\000\147\145\164\154\151\142\162\141\162\151\145\163\000\004\013\000\000\000\147\145\164\154\151\142\144\151\162\163\000\004\014\000\000\000\147\145\164\154\151\142\156\141\155\145\163\000\004\012\000\000\000\147\145\164\157\142\152\144\151\162\000\004\016\000\000\000\147\145\164\164\141\162\147\145\164\146\151\154\145\000\004\020\000\000\000\151\163\153\145\171\167\157\162\144\163\155\141\164\143\150\000\011\000\000\000\000\000\000\000\030\000\000\000\044\000\000\000\000\001\000\004\011\000\000\000\101\000\000\000\206\100\100\000\206\200\100\001\344\000\000\000\000\000\200\000\000\000\000\001\000\000\000\000\336\000\000\001\036\000\200\000\003\000\000\000\003\000\000\000\000\000\000\000\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\001\000\000\000\000\000\000\000\033\000\000\000\043\000\000\000\003\000\000\004\033\000\000\000\004\000\000\000\014\000\100\000\010\000\000\000\004\000\000\000\104\000\200\000\124\000\200\000\031\100\000\000\026\200\003\200\004\000\000\001\006\100\100\000\104\000\200\000\204\000\000\000\106\200\200\000\011\100\000\201\005\300\000\000\006\000\101\000\104\000\000\001\204\000\200\000\304\000\000\000\206\300\000\001\035\000\200\001\036\000\000\000\026\200\000\200\004\000\000\001\006\100\100\000\011\100\101\201\036\000\200\000\006\000\000\000\003\000\000\000\000\000\000\360\077\004\007\000\000\000\146\151\154\164\145\162\000\004\007\000\000\000\143\157\156\146\151\147\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\000\000\000\000\000\033\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\043\000\000\000\000\000\000\000\003\000\000\000\002\000\000\000\151\000\002\000\000\000\164\000\004\000\000\000\160\162\152\000\011\000\000\000\031\000\000\000\032\000\000\000\032\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\044\000\000\000\003\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\010\000\000\000\002\000\000\000\151\000\001\000\000\000\010\000\000\000\002\000\000\000\164\000\003\000\000\000\010\000\000\000\000\000\000\000\000\000\000\000\054\000\000\000\211\000\000\000\000\002\000\027\237\000\000\000\233\100\200\000\026\000\000\200\201\000\000\000\305\100\000\000\000\001\000\000\334\200\000\001\006\201\300\001\006\201\000\002\032\001\000\000\026\000\000\200\036\001\000\001\105\301\000\000\106\001\301\002\134\201\200\000\111\101\200\202\244\001\000\000\312\001\000\000\000\002\000\003\100\002\200\003\206\202\101\000\034\102\200\001\005\302\001\000\106\202\101\000\106\002\302\004\034\002\001\001\026\200\002\200\105\303\000\000\106\103\302\006\206\203\102\006\300\003\200\002\134\203\200\001\132\003\000\000\026\300\000\200\100\003\000\003\200\003\200\003\300\003\000\006\134\103\200\001\041\202\000\000\026\200\374\177\000\002\000\003\100\002\200\003\200\002\000\000\034\102\200\001\006\302\302\003\032\102\000\000\026\100\001\200\005\002\003\000\006\102\103\004\106\202\103\000\201\302\003\000\034\202\200\001\311\001\202\205\005\302\001\000\106\002\102\000\034\002\001\001\026\200\002\200\105\303\000\000\106\103\302\006\206\203\102\006\300\003\200\002\134\203\200\001\132\003\000\000\026\300\000\200\100\003\000\003\200\003\200\003\300\003\000\006\134\103\200\001\041\202\000\000\026\200\374\177\012\002\000\000\105\302\001\000\206\002\304\003\134\002\001\001\026\000\005\200\202\003\000\000\305\303\001\000\006\104\304\003\334\003\001\001\026\200\001\200\127\300\204\006\026\000\000\200\202\103\000\000\202\003\200\000\232\003\000\000\026\000\000\200\026\100\000\200\341\203\000\000\026\200\375\177\232\103\000\000\026\000\001\200\305\203\004\000\306\303\304\007\000\004\000\004\100\004\200\006\334\103\200\001\141\202\000\000\026\000\372\177\311\001\002\210\105\002\005\000\205\302\000\000\206\102\105\005\134\002\001\001\026\300\013\200\206\203\305\006\127\000\103\007\026\100\001\200\206\203\305\006\127\300\105\007\026\200\000\200\206\203\305\006\027\000\106\007\026\300\006\200\205\103\006\000\306\003\203\003\234\203\000\001\027\200\104\007\026\100\003\200\205\303\001\000\306\003\203\003\234\003\001\001\026\200\001\200\306\004\203\003\005\005\003\000\006\205\106\012\106\305\106\000\200\005\000\011\034\205\200\001\311\004\205\010\241\203\000\000\026\200\375\177\026\000\002\200\206\003\203\003\232\003\000\000\026\100\001\200\205\003\003\000\206\203\106\007\306\303\106\000\006\004\203\003\234\203\200\001\311\201\003\006\206\003\307\006\232\003\000\000\026\300\001\200\206\003\203\003\305\303\001\000\000\004\000\007\334\003\001\001\026\000\000\200\211\103\307\011\341\203\000\000\026\000\377\177\141\202\000\000\026\100\363\177\311\101\000\217\311\001\200\217\106\202\300\001\111\302\001\001\336\001\000\001\036\000\200\000\040\000\000\000\004\001\000\000\000\000\004\015\000\000\000\147\145\164\155\145\164\141\164\141\142\154\145\000\004\013\000\000\000\137\137\143\146\147\143\141\143\150\145\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\017\000\000\000\147\145\164\141\143\164\151\166\145\164\145\162\155\163\000\004\007\000\000\000\143\157\156\146\151\147\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\007\000\000\000\151\160\141\151\162\163\000\004\007\000\000\000\142\154\157\143\153\163\000\004\020\000\000\000\151\163\153\145\171\167\157\162\144\163\155\141\164\143\150\000\004\011\000\000\000\153\145\171\167\157\162\144\163\000\004\007\000\000\000\157\142\152\144\151\162\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\010\000\000\000\142\141\163\145\144\151\162\000\004\004\000\000\000\157\142\152\000\004\006\000\000\000\146\151\154\145\163\000\004\011\000\000\000\145\170\143\154\165\144\145\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\006\000\000\000\160\141\151\162\163\000\004\007\000\000\000\146\151\145\154\144\163\000\004\005\000\000\000\153\151\156\144\000\004\010\000\000\000\144\151\162\154\151\163\164\000\004\011\000\000\000\146\151\154\145\154\151\163\164\000\004\005\000\000\000\164\171\160\145\000\004\014\000\000\000\147\145\164\162\145\154\141\164\151\166\145\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\010\000\000\000\151\163\146\154\141\147\163\000\001\001\004\005\000\000\000\156\141\155\145\000\004\010\000\000\000\160\162\157\152\145\143\164\000\001\000\000\000\000\000\000\000\072\000\000\000\105\000\000\000\000\002\000\012\041\000\000\000\205\000\000\000\300\000\200\000\234\000\001\001\026\100\006\200\305\101\000\000\306\201\300\003\005\302\000\000\006\002\101\004\100\002\200\002\334\201\200\001\332\101\000\000\026\100\004\200\305\101\001\000\000\002\000\003\334\201\000\001\027\100\300\003\026\300\002\200\306\101\001\000\332\101\000\000\026\100\000\200\312\001\000\000\011\300\201\002\305\101\000\000\306\201\301\003\006\102\001\000\100\002\000\003\334\201\200\001\011\300\201\002\026\000\000\200\011\200\201\002\241\200\000\000\026\300\370\177\036\000\200\000\007\000\000\000\004\006\000\000\000\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\007\000\000\000\156\157\143\157\160\171\000\004\005\000\000\000\164\171\160\145\000\004\005\000\000\000\152\157\151\156\000\000\000\000\000\041\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\077\000\000\000\077\000\000\000\077\000\000\000\077\000\000\000\077\000\000\000\077\000\000\000\077\000\000\000\101\000\000\000\073\000\000\000\103\000\000\000\105\000\000\000\007\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\040\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\040\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\040\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\040\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\040\000\000\000\006\000\000\000\146\151\145\154\144\000\004\000\000\000\036\000\000\000\006\000\000\000\166\141\154\165\145\000\004\000\000\000\036\000\000\000\000\000\000\000\237\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\061\000\000\000\061\000\000\000\062\000\000\000\062\000\000\000\063\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\070\000\000\000\105\000\000\000\115\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\120\000\000\000\123\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\130\000\000\000\133\000\000\000\137\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\141\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\142\000\000\000\144\000\000\000\147\000\000\000\147\000\000\000\150\000\000\000\150\000\000\000\150\000\000\000\150\000\000\000\150\000\000\000\140\000\000\000\151\000\000\000\153\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\157\000\000\000\160\000\000\000\160\000\000\000\160\000\000\000\160\000\000\000\160\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\161\000\000\000\162\000\000\000\163\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\175\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\177\000\000\000\176\000\000\000\177\000\000\000\155\000\000\000\201\000\000\000\204\000\000\000\205\000\000\000\207\000\000\000\207\000\000\000\210\000\000\000\211\000\000\000\056\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\236\000\000\000\010\000\000\000\143\146\147\156\141\155\145\000\000\000\000\000\236\000\000\000\011\000\000\000\143\141\143\150\145\153\145\171\000\003\000\000\000\236\000\000\000\005\000\000\000\155\145\164\141\000\006\000\000\000\236\000\000\000\004\000\000\000\143\146\147\000\010\000\000\000\236\000\000\000\006\000\000\000\164\145\162\155\163\000\016\000\000\000\236\000\000\000\013\000\000\000\143\157\160\171\146\151\145\154\144\163\000\020\000\000\000\236\000\000\000\004\000\000\000\143\146\147\000\021\000\000\000\236\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\031\000\000\000\047\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\031\000\000\000\047\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\031\000\000\000\047\000\000\000\002\000\000\000\137\000\032\000\000\000\045\000\000\000\004\000\000\000\142\154\153\000\032\000\000\000\045\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\067\000\000\000\105\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\067\000\000\000\105\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\067\000\000\000\105\000\000\000\002\000\000\000\137\000\070\000\000\000\103\000\000\000\004\000\000\000\142\154\153\000\070\000\000\000\103\000\000\000\006\000\000\000\146\151\154\145\163\000\106\000\000\000\236\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\111\000\000\000\141\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\111\000\000\000\141\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\111\000\000\000\141\000\000\000\002\000\000\000\137\000\112\000\000\000\137\000\000\000\006\000\000\000\146\156\141\155\145\000\112\000\000\000\137\000\000\000\011\000\000\000\145\170\143\154\165\144\145\144\000\113\000\000\000\137\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\116\000\000\000\130\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\116\000\000\000\130\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\116\000\000\000\130\000\000\000\002\000\000\000\137\000\117\000\000\000\126\000\000\000\010\000\000\000\145\170\143\154\165\144\145\000\117\000\000\000\126\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\146\000\000\000\231\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\146\000\000\000\231\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\146\000\000\000\231\000\000\000\005\000\000\000\156\141\155\145\000\147\000\000\000\227\000\000\000\006\000\000\000\146\151\145\154\144\000\147\000\000\000\227\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\170\000\000\000\202\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\170\000\000\000\202\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\170\000\000\000\202\000\000\000\002\000\000\000\151\000\171\000\000\000\200\000\000\000\002\000\000\000\160\000\171\000\000\000\200\000\000\000\007\000\000\000\166\141\154\165\145\163\000\220\000\000\000\227\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\223\000\000\000\227\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\223\000\000\000\227\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\223\000\000\000\227\000\000\000\002\000\000\000\137\000\224\000\000\000\225\000\000\000\005\000\000\000\146\154\141\147\000\224\000\000\000\225\000\000\000\000\000\000\000\000\000\000\000\222\000\000\000\234\000\000\000\000\001\000\013\024\000\000\000\112\000\000\000\205\000\000\000\306\100\100\000\234\000\001\001\026\200\002\200\305\201\000\000\306\301\300\003\000\002\000\003\334\201\000\001\332\001\000\000\026\000\001\200\005\002\001\000\006\102\101\004\100\002\200\000\200\002\200\003\034\102\200\001\241\200\000\000\026\200\374\177\136\000\000\001\036\000\200\000\006\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\154\151\156\153\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\014\000\000\000\146\151\156\144\160\162\157\152\145\143\164\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\000\000\000\000\024\000\000\000\223\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\227\000\000\000\227\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\224\000\000\000\231\000\000\000\233\000\000\000\234\000\000\000\010\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\023\000\000\000\010\000\000\000\162\145\163\165\154\164\163\000\001\000\000\000\023\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\022\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\022\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\022\000\000\000\002\000\000\000\137\000\005\000\000\000\020\000\000\000\005\000\000\000\154\151\156\153\000\005\000\000\000\020\000\000\000\004\000\000\000\160\162\152\000\011\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\246\000\000\000\302\000\000\000\000\002\000\020\122\000\000\000\212\000\000\000\305\000\000\000\006\101\100\000\334\000\001\001\026\000\022\200\005\202\000\000\006\302\100\004\100\002\200\003\034\202\000\001\032\002\000\000\026\200\014\200\105\202\000\000\106\002\301\004\200\002\000\004\306\102\101\000\134\202\200\001\206\202\301\004\127\300\101\005\026\200\000\200\206\202\301\004\027\000\102\005\026\300\015\200\203\002\000\005\306\202\301\004\027\300\301\005\026\200\003\200\305\102\002\000\306\202\302\005\001\303\002\000\334\202\000\001\332\002\000\000\026\000\002\200\132\100\000\000\026\200\001\200\305\202\000\000\306\002\303\005\000\003\200\004\101\103\003\000\334\202\200\001\200\002\200\005\026\300\001\200\305\202\000\000\306\002\303\005\000\003\200\004\101\203\003\000\203\003\000\007\300\003\200\000\334\202\200\002\200\002\200\005\305\302\003\000\306\002\304\005\000\003\000\005\106\103\304\004\206\103\104\000\334\202\000\002\200\002\200\005\305\202\004\000\306\302\304\005\000\003\000\001\100\003\000\005\334\102\200\001\026\300\003\200\132\100\000\000\026\000\002\200\105\102\002\000\106\202\302\004\201\302\002\000\134\202\000\001\132\002\000\000\026\200\000\200\100\002\200\003\201\002\005\000\325\201\202\004\105\202\004\000\106\302\304\004\200\002\000\001\300\002\200\003\134\102\200\001\341\200\000\000\026\000\355\177\236\000\000\001\036\000\200\000\025\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\154\151\156\153\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\014\000\000\000\146\151\156\144\160\162\157\152\145\143\164\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\004\005\000\000\000\156\141\155\145\000\004\005\000\000\000\153\151\156\144\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\003\000\000\000\157\163\000\004\003\000\000\000\151\163\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\016\000\000\000\147\145\164\164\141\162\147\145\164\146\151\154\145\000\004\007\000\000\000\151\155\160\154\151\142\000\004\007\000\000\000\164\141\162\147\145\164\000\004\005\000\000\000\160\141\164\150\000\004\007\000\000\000\162\145\142\141\163\145\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\056\154\151\142\000\000\000\000\000\122\000\000\000\247\000\000\000\251\000\000\000\251\000\000\000\251\000\000\000\251\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\254\000\000\000\254\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\257\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\261\000\000\000\261\000\000\000\261\000\000\000\261\000\000\000\261\000\000\000\261\000\000\000\261\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\267\000\000\000\267\000\000\000\267\000\000\000\267\000\000\000\267\000\000\000\270\000\000\000\272\000\000\000\272\000\000\000\272\000\000\000\272\000\000\000\272\000\000\000\272\000\000\000\272\000\000\000\272\000\000\000\273\000\000\000\273\000\000\000\273\000\000\000\275\000\000\000\275\000\000\000\275\000\000\000\275\000\000\000\275\000\000\000\251\000\000\000\276\000\000\000\301\000\000\000\302\000\000\000\013\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\121\000\000\000\006\000\000\000\160\157\163\151\170\000\000\000\000\000\121\000\000\000\005\000\000\000\154\151\142\163\000\001\000\000\000\121\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\120\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\120\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\120\000\000\000\002\000\000\000\137\000\005\000\000\000\116\000\000\000\005\000\000\000\154\151\156\153\000\005\000\000\000\116\000\000\000\004\000\000\000\160\162\152\000\011\000\000\000\116\000\000\000\007\000\000\000\160\162\152\143\146\147\000\020\000\000\000\075\000\000\000\007\000\000\000\164\141\162\147\145\164\000\027\000\000\000\075\000\000\000\000\000\000\000\000\000\000\000\313\000\000\000\324\000\000\000\000\001\000\013\041\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\134\200\000\001\205\300\000\000\305\000\001\000\306\100\301\001\000\001\000\000\334\000\000\001\234\000\001\000\026\100\004\200\305\201\001\000\306\301\301\003\000\002\000\003\334\201\000\001\127\000\302\003\026\300\002\200\005\002\000\000\006\102\102\004\100\002\200\000\200\002\200\003\034\202\200\001\032\102\000\000\026\000\001\200\005\002\000\000\006\202\102\004\100\002\200\000\200\002\200\003\034\102\200\001\241\200\000\000\026\300\372\177\136\000\000\001\036\000\200\000\013\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\005\000\000\000\152\157\151\156\000\004\010\000\000\000\154\151\142\144\151\162\163\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\015\000\000\000\147\145\164\154\151\142\162\141\162\151\145\163\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\144\151\162\145\143\164\157\162\171\000\004\001\000\000\000\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\004\007\000\000\000\151\156\163\145\162\164\000\000\000\000\000\041\000\000\000\314\000\000\000\314\000\000\000\314\000\000\000\314\000\000\000\315\000\000\000\315\000\000\000\315\000\000\000\315\000\000\000\315\000\000\000\315\000\000\000\315\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\317\000\000\000\317\000\000\000\317\000\000\000\317\000\000\000\317\000\000\000\317\000\000\000\317\000\000\000\317\000\000\000\317\000\000\000\320\000\000\000\320\000\000\000\320\000\000\000\320\000\000\000\320\000\000\000\315\000\000\000\321\000\000\000\323\000\000\000\324\000\000\000\010\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\040\000\000\000\007\000\000\000\162\145\163\165\154\164\000\004\000\000\000\040\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\012\000\000\000\037\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\012\000\000\000\037\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\012\000\000\000\037\000\000\000\002\000\000\000\137\000\013\000\000\000\035\000\000\000\005\000\000\000\154\151\156\153\000\013\000\000\000\035\000\000\000\004\000\000\000\144\151\162\000\017\000\000\000\035\000\000\000\000\000\000\000\000\000\000\000\326\000\000\000\335\000\000\000\000\001\000\014\030\000\000\000\112\000\000\000\205\000\000\000\305\100\000\000\306\200\300\001\000\001\000\000\334\000\000\001\234\000\001\000\026\300\002\200\305\301\000\000\306\001\301\003\000\002\000\003\334\201\000\001\005\102\001\000\006\202\101\004\100\002\200\000\205\302\000\000\206\002\101\005\300\002\000\003\234\002\000\001\034\102\000\000\241\200\000\000\026\100\374\177\136\000\000\001\036\000\200\000\007\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\015\000\000\000\147\145\164\154\151\142\162\141\162\151\145\163\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\142\141\163\145\156\141\155\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\000\000\000\000\030\000\000\000\327\000\000\000\330\000\000\000\330\000\000\000\330\000\000\000\330\000\000\000\330\000\000\000\330\000\000\000\330\000\000\000\331\000\000\000\331\000\000\000\331\000\000\000\331\000\000\000\332\000\000\000\332\000\000\000\332\000\000\000\332\000\000\000\332\000\000\000\332\000\000\000\332\000\000\000\332\000\000\000\330\000\000\000\332\000\000\000\334\000\000\000\335\000\000\000\010\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\027\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\027\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\007\000\000\000\026\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\007\000\000\000\026\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\007\000\000\000\026\000\000\000\002\000\000\000\137\000\010\000\000\000\024\000\000\000\005\000\000\000\154\151\156\153\000\010\000\000\000\024\000\000\000\005\000\000\000\156\141\155\145\000\014\000\000\000\024\000\000\000\000\000\000\000\000\000\000\000\346\000\000\000\362\000\000\000\000\001\000\010\041\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\306\200\100\000\134\200\200\001\132\000\000\000\026\100\000\200\106\200\100\000\136\000\000\001\144\000\000\000\200\000\200\000\300\000\000\000\234\200\000\001\305\000\000\000\306\100\300\001\001\201\000\000\100\001\000\001\200\001\200\000\334\200\000\002\332\000\000\000\026\000\000\200\236\000\000\001\305\300\000\000\306\000\301\001\006\201\100\000\106\101\101\000\106\201\301\002\201\301\001\000\306\201\101\000\125\301\201\002\335\000\200\001\336\000\000\000\036\000\200\000\010\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\016\000\000\000\151\163\165\156\151\161\165\145\166\141\154\165\145\000\004\007\000\000\000\157\142\152\144\151\162\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\005\000\000\000\156\141\155\145\000\004\002\000\000\000\057\000\001\000\000\000\000\000\000\000\353\000\000\000\353\000\000\000\000\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\306\300\100\000\135\000\200\001\136\000\000\000\036\000\200\000\004\000\000\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\007\000\000\000\157\142\152\144\151\162\000\004\005\000\000\000\156\141\155\145\000\000\000\000\000\007\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\006\000\000\000\000\000\000\000\041\000\000\000\347\000\000\000\347\000\000\000\347\000\000\000\347\000\000\000\347\000\000\000\347\000\000\000\347\000\000\000\350\000\000\000\350\000\000\000\353\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\356\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\362\000\000\000\003\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\040\000\000\000\003\000\000\000\146\156\000\012\000\000\000\040\000\000\000\007\000\000\000\157\142\152\144\151\162\000\015\000\000\000\040\000\000\000\000\000\000\000\000\000\000\000\375\000\000\000\044\001\000\000\000\004\000\016\143\000\000\000\232\100\000\000\026\000\001\200\005\001\000\000\006\101\100\002\233\100\000\002\026\000\000\200\205\200\000\000\000\001\200\000\101\301\000\000\025\101\001\002\006\001\001\000\032\101\000\000\026\000\001\200\006\001\101\000\032\101\000\000\026\100\000\200\006\101\101\000\006\301\100\002\100\001\200\000\201\201\001\000\125\201\201\002\106\101\001\000\132\101\000\000\026\300\000\200\106\301\101\000\132\101\000\000\026\000\000\200\106\001\102\000\205\101\002\000\127\200\302\000\026\000\000\200\302\101\000\000\302\001\200\000\001\302\002\000\106\002\103\000\234\201\000\002\301\101\003\000\001\102\003\000\027\200\103\001\026\200\004\200\127\300\103\003\026\100\000\200\027\000\104\003\026\100\000\200\001\102\004\000\026\200\007\200\027\200\104\003\026\100\000\200\001\302\004\000\026\200\006\200\027\300\102\003\026\000\006\200\332\000\000\000\026\200\000\200\301\001\005\000\001\102\005\000\026\300\004\200\001\202\005\000\026\100\004\200\027\300\105\001\026\200\001\200\027\000\104\003\026\000\001\200\100\002\000\002\201\002\006\000\300\002\000\002\025\301\202\004\026\000\002\200\027\200\104\003\026\200\000\200\301\001\005\000\001\102\006\000\026\300\000\200\027\300\102\003\026\100\000\200\301\001\005\000\001\102\005\000\100\002\200\000\201\202\006\000\125\202\202\004\106\102\002\000\333\101\200\004\026\300\377\177\100\002\200\000\201\302\006\000\125\202\202\004\106\102\002\000\033\102\200\004\026\300\377\177\105\002\007\000\106\102\307\004\200\002\200\002\300\002\200\003\000\003\000\002\100\003\000\004\325\102\203\005\135\002\200\001\136\002\000\000\036\000\200\000\036\000\000\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\003\000\000\000\157\163\000\004\004\000\000\000\137\117\123\000\004\005\000\000\000\156\141\155\145\000\004\013\000\000\000\164\141\162\147\145\164\156\141\155\145\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\004\000\000\000\144\151\162\000\004\012\000\000\000\164\141\162\147\145\164\144\151\162\000\004\010\000\000\000\142\141\163\145\144\151\162\000\004\004\000\000\000\151\151\146\000\004\007\000\000\000\151\155\160\154\151\142\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\005\000\000\000\153\151\156\144\000\004\001\000\000\000\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\005\000\000\000\056\145\170\145\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\005\000\000\000\056\144\154\154\000\004\004\000\000\000\154\151\142\000\004\003\000\000\000\056\141\000\004\005\000\000\000\056\154\151\142\000\004\007\000\000\000\155\141\143\157\163\170\000\004\025\000\000\000\056\141\160\160\057\103\157\156\164\145\156\164\163\057\115\141\143\117\123\057\000\004\004\000\000\000\056\163\157\000\004\007\000\000\000\160\162\145\146\151\170\000\004\012\000\000\000\145\170\164\145\156\163\151\157\156\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\000\000\000\000\143\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\000\001\000\000\000\001\000\000\000\001\000\000\000\001\000\000\000\001\000\000\000\001\000\000\000\001\000\000\000\001\000\000\000\001\000\000\000\001\000\000\000\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\004\001\000\000\005\001\000\000\007\001\000\000\007\001\000\000\010\001\000\000\010\001\000\000\010\001\000\000\010\001\000\000\011\001\000\000\011\001\000\000\012\001\000\000\012\001\000\000\013\001\000\000\013\001\000\000\014\001\000\000\014\001\000\000\015\001\000\000\015\001\000\000\016\001\000\000\017\001\000\000\017\001\000\000\021\001\000\000\023\001\000\000\024\001\000\000\024\001\000\000\024\001\000\000\024\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\027\001\000\000\027\001\000\000\030\001\000\000\031\001\000\000\031\001\000\000\032\001\000\000\032\001\000\000\033\001\000\000\034\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\041\001\000\000\041\001\000\000\041\001\000\000\041\001\000\000\041\001\000\000\041\001\000\000\043\001\000\000\043\001\000\000\043\001\000\000\043\001\000\000\043\001\000\000\043\001\000\000\043\001\000\000\043\001\000\000\043\001\000\000\044\001\000\000\011\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\142\000\000\000\006\000\000\000\146\151\145\154\144\000\000\000\000\000\142\000\000\000\003\000\000\000\157\163\000\000\000\000\000\142\000\000\000\006\000\000\000\160\157\163\151\170\000\000\000\000\000\142\000\000\000\005\000\000\000\156\141\155\145\000\022\000\000\000\142\000\000\000\004\000\000\000\144\151\162\000\034\000\000\000\142\000\000\000\005\000\000\000\153\151\156\144\000\044\000\000\000\142\000\000\000\007\000\000\000\160\162\145\146\151\170\000\045\000\000\000\142\000\000\000\012\000\000\000\145\170\164\145\156\163\151\157\156\000\046\000\000\000\142\000\000\000\000\000\000\000\000\000\000\000\055\001\000\000\106\001\000\000\000\002\000\014\027\000\000\000\244\000\000\000\000\000\200\000\305\000\000\000\000\001\000\000\334\000\001\001\026\300\002\200\013\102\300\003\201\202\000\000\344\102\000\000\034\202\000\002\300\001\000\004\000\002\000\001\100\002\200\003\034\202\000\001\032\102\000\000\026\100\000\200\002\002\000\000\036\002\000\001\341\200\000\000\026\100\374\177\302\000\200\000\336\000\000\001\036\000\200\000\003\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\005\000\000\000\147\163\165\142\000\004\012\000\000\000\050\045\045\052\051\050\045\141\051\000\002\000\000\000\000\000\000\000\056\001\000\000\062\001\000\000\001\001\000\011\016\000\000\000\105\000\000\000\204\000\000\000\134\000\001\001\026\200\001\200\213\101\300\002\000\002\000\000\234\201\200\001\232\001\000\000\026\100\000\200\202\001\200\000\236\001\000\001\141\200\000\000\026\200\375\177\036\000\200\000\002\000\000\000\004\006\000\000\000\160\141\151\162\163\000\004\006\000\000\000\155\141\164\143\150\000\000\000\000\000\016\000\000\000\057\001\000\000\057\001\000\000\057\001\000\000\057\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\057\001\000\000\060\001\000\000\062\001\000\000\006\000\000\000\003\000\000\000\153\167\000\000\000\000\000\015\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\015\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\015\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\015\000\000\000\002\000\000\000\137\000\004\000\000\000\013\000\000\000\005\000\000\000\164\145\162\155\000\004\000\000\000\013\000\000\000\001\000\000\000\006\000\000\000\164\145\162\155\163\000\000\000\000\000\067\001\000\000\075\001\000\000\000\002\000\007\024\000\000\000\213\000\100\000\234\200\000\001\220\100\100\001\027\200\100\001\026\000\001\200\200\000\000\000\300\000\200\000\225\300\000\001\236\000\000\001\026\000\002\200\200\000\000\000\301\300\000\000\013\001\301\000\034\201\000\001\113\101\301\000\134\201\000\001\201\201\001\000\225\200\001\001\236\000\000\001\036\000\200\000\007\000\000\000\004\004\000\000\000\154\145\156\000\003\000\000\000\000\000\000\000\100\003\000\000\000\000\000\000\360\077\004\002\000\000\000\133\000\004\006\000\000\000\165\160\160\145\162\000\004\006\000\000\000\154\157\167\145\162\000\004\002\000\000\000\135\000\000\000\000\000\024\000\000\000\070\001\000\000\070\001\000\000\070\001\000\000\070\001\000\000\070\001\000\000\071\001\000\000\071\001\000\000\071\001\000\000\071\001\000\000\071\001\000\000\073\001\000\000\073\001\000\000\073\001\000\000\073\001\000\000\073\001\000\000\073\001\000\000\073\001\000\000\073\001\000\000\073\001\000\000\075\001\000\000\002\000\000\000\002\000\000\000\160\000\000\000\000\000\023\000\000\000\002\000\000\000\141\000\000\000\000\000\023\000\000\000\000\000\000\000\027\000\000\000\062\001\000\000\062\001\000\000\064\001\000\000\064\001\000\000\064\001\000\000\064\001\000\000\066\001\000\000\066\001\000\000\075\001\000\000\066\001\000\000\075\001\000\000\100\001\000\000\100\001\000\000\100\001\000\000\100\001\000\000\100\001\000\000\101\001\000\000\101\001\000\000\064\001\000\000\102\001\000\000\105\001\000\000\105\001\000\000\106\001\000\000\010\000\000\000\011\000\000\000\153\145\171\167\157\162\144\163\000\000\000\000\000\026\000\000\000\006\000\000\000\164\145\162\155\163\000\000\000\000\000\026\000\000\000\005\000\000\000\164\145\163\164\000\002\000\000\000\026\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\005\000\000\000\024\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\005\000\000\000\024\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\005\000\000\000\024\000\000\000\002\000\000\000\137\000\006\000\000\000\022\000\000\000\003\000\000\000\153\167\000\006\000\000\000\022\000\000\000\000\000\000\000\043\000\000\000\014\000\000\000\014\000\000\000\016\000\000\000\017\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\030\000\000\000\044\000\000\000\030\000\000\000\054\000\000\000\211\000\000\000\054\000\000\000\222\000\000\000\234\000\000\000\222\000\000\000\246\000\000\000\302\000\000\000\246\000\000\000\313\000\000\000\324\000\000\000\313\000\000\000\326\000\000\000\335\000\000\000\326\000\000\000\346\000\000\000\362\000\000\000\346\000\000\000\375\000\000\000\044\001\000\000\375\000\000\000\055\001\000\000\106\001\000\000\055\001\000\000\106\001\000\000\000\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\030\000\000\000\100\163\162\143\057\142\141\163\145\057\146\165\156\143\164\151\157\156\163\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\032\300\000\000\000\005\000\000\000\112\000\006\000\212\200\000\000\211\000\301\201\211\200\301\202\111\200\000\201\212\200\000\000\211\000\302\201\211\100\302\202\111\200\200\203\212\200\000\000\211\000\302\201\211\300\302\202\111\200\000\205\212\200\000\000\211\000\302\201\211\100\302\202\111\200\000\206\212\200\000\000\211\200\303\201\211\200\301\202\111\200\200\206\212\200\000\000\211\200\303\201\211\200\301\202\111\200\200\207\212\000\001\000\211\000\302\201\211\100\302\202\211\200\304\210\312\000\200\011\001\001\005\000\101\101\005\000\201\201\005\000\301\301\005\000\001\002\006\000\101\102\006\000\201\202\006\000\301\302\006\000\001\003\007\000\101\103\007\000\201\203\007\000\301\303\007\000\001\004\010\000\101\104\010\000\201\204\010\000\301\304\010\000\001\005\011\000\101\105\011\000\201\205\011\000\301\305\011\000\001\006\012\000\101\106\012\000\342\100\000\013\211\300\200\211\111\200\000\210\212\200\000\000\211\000\301\201\211\100\302\202\111\200\000\225\212\200\000\000\211\000\313\201\211\100\302\202\111\200\200\225\212\200\000\000\211\000\313\201\211\100\302\202\111\200\200\226\212\200\000\000\211\000\313\201\211\100\302\202\111\200\000\227\212\200\000\000\211\000\314\201\211\100\302\202\111\200\200\227\212\300\000\000\211\000\313\201\211\100\302\202\312\000\000\002\001\101\014\000\101\201\014\000\201\301\014\000\301\001\015\000\342\100\000\002\211\300\200\211\111\200\200\201\212\300\000\000\211\000\313\201\211\200\301\202\312\000\000\001\001\201\015\000\101\301\015\000\342\100\000\001\211\300\200\211\111\200\200\232\212\200\000\000\211\000\314\201\211\100\302\202\111\200\000\234\212\200\000\000\211\000\302\201\211\100\302\202\111\200\200\234\212\200\000\000\211\000\302\201\211\100\302\202\111\200\000\235\212\200\000\000\211\000\301\201\211\100\302\202\111\200\200\235\212\200\000\000\211\000\301\201\211\100\302\202\111\200\000\236\212\200\000\000\211\000\301\201\211\100\302\202\111\200\200\236\212\200\000\000\211\000\301\201\211\100\302\202\111\200\000\237\212\200\000\000\211\000\302\201\211\100\302\202\111\200\200\237\212\200\000\000\211\000\302\201\211\100\302\202\111\200\000\240\212\200\000\000\211\000\302\201\211\100\302\202\111\200\200\240\212\200\000\000\211\000\302\201\211\100\302\202\111\200\000\241\212\200\000\000\211\000\314\201\211\100\302\202\111\200\200\241\212\200\000\000\211\000\302\201\211\100\302\202\111\200\000\242\212\200\000\000\211\000\301\201\211\100\302\202\111\200\200\242\212\200\000\000\211\000\313\201\211\100\302\202\111\200\000\243\212\200\000\000\211\000\313\201\211\100\302\202\111\200\200\243\212\200\000\000\211\000\313\201\211\100\302\202\111\200\000\244\212\300\000\000\211\000\313\201\211\200\301\202\344\000\000\000\211\300\200\211\111\200\200\244\011\100\200\200\044\100\000\000\105\200\022\000\205\000\000\000\206\100\100\001\134\000\001\001\026\100\001\200\205\301\022\000\344\201\000\000\000\000\000\000\000\000\000\002\211\301\001\002\043\001\000\000\141\200\000\000\026\300\375\177\144\300\000\000\107\000\023\000\144\000\001\000\107\100\023\000\144\100\001\000\107\300\002\000\036\000\200\000\116\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\007\000\000\000\146\151\145\154\144\163\000\004\010\000\000\000\142\141\163\145\144\151\162\000\004\005\000\000\000\153\151\156\144\000\004\005\000\000\000\160\141\164\150\000\004\006\000\000\000\163\143\157\160\145\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\015\000\000\000\142\165\151\154\144\157\160\164\151\157\156\163\000\004\005\000\000\000\154\151\163\164\000\004\007\000\000\000\143\157\156\146\151\147\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\010\000\000\000\144\145\146\151\156\145\163\000\004\011\000\000\000\145\170\143\154\165\144\145\163\000\004\011\000\000\000\146\151\154\145\154\151\163\164\000\004\006\000\000\000\146\151\154\145\163\000\004\006\000\000\000\146\154\141\147\163\000\004\010\000\000\000\151\163\146\154\141\147\163\000\001\001\004\010\000\000\000\141\154\154\157\167\145\144\000\004\006\000\000\000\104\171\154\151\142\000\004\016\000\000\000\105\170\164\162\141\127\141\162\156\151\156\147\163\000\004\016\000\000\000\106\141\164\141\154\127\141\162\156\151\156\147\163\000\004\010\000\000\000\115\141\156\141\147\145\144\000\004\014\000\000\000\116\141\164\151\166\145\127\103\150\141\162\000\004\016\000\000\000\116\157\066\064\102\151\164\103\150\145\143\153\163\000\004\022\000\000\000\116\157\105\144\151\164\101\156\144\103\157\156\164\151\156\165\145\000\004\015\000\000\000\116\157\105\170\143\145\160\164\151\157\156\163\000\004\017\000\000\000\116\157\106\162\141\155\145\120\157\151\156\164\145\162\000\004\014\000\000\000\116\157\111\155\160\157\162\164\114\151\142\000\004\013\000\000\000\116\157\115\141\156\151\146\145\163\164\000\004\016\000\000\000\116\157\116\141\164\151\166\145\127\103\150\141\162\000\004\006\000\000\000\116\157\120\103\110\000\004\007\000\000\000\116\157\122\124\124\111\000\004\011\000\000\000\117\160\164\151\155\151\172\145\000\004\015\000\000\000\117\160\164\151\155\151\172\145\123\151\172\145\000\004\016\000\000\000\117\160\164\151\155\151\172\145\123\160\145\145\144\000\004\004\000\000\000\123\105\110\000\004\016\000\000\000\123\164\141\164\151\143\122\165\156\164\151\155\145\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\010\000\000\000\125\156\151\143\157\144\145\000\004\010\000\000\000\127\151\156\115\141\151\156\000\004\012\000\000\000\151\155\160\154\151\142\144\151\162\000\004\020\000\000\000\151\155\160\154\151\142\145\170\164\145\156\163\151\157\156\000\004\007\000\000\000\163\164\162\151\156\147\000\004\013\000\000\000\151\155\160\154\151\142\156\141\155\145\000\004\015\000\000\000\151\155\160\154\151\142\160\162\145\146\151\170\000\004\014\000\000\000\151\156\143\154\165\144\145\144\151\162\163\000\004\010\000\000\000\144\151\162\154\151\163\164\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\010\000\000\000\154\151\142\144\151\162\163\000\004\014\000\000\000\154\151\156\153\157\160\164\151\157\156\163\000\004\006\000\000\000\154\151\156\153\163\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\007\000\000\000\157\142\152\144\151\162\000\004\012\000\000\000\160\143\150\150\145\141\144\145\162\000\004\012\000\000\000\160\143\150\163\157\165\162\143\145\000\004\021\000\000\000\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\000\004\020\000\000\000\160\162\145\154\151\156\153\143\157\155\155\141\156\144\163\000\004\022\000\000\000\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\000\004\013\000\000\000\162\145\163\144\145\146\151\156\145\163\000\004\017\000\000\000\162\145\163\151\156\143\154\165\144\145\144\151\162\163\000\004\013\000\000\000\162\145\163\157\160\164\151\157\156\163\000\004\012\000\000\000\164\141\162\147\145\164\144\151\162\000\004\020\000\000\000\164\141\162\147\145\164\145\170\164\145\156\163\151\157\156\000\004\013\000\000\000\164\141\162\147\145\164\156\141\155\145\000\004\015\000\000\000\164\141\162\147\145\164\160\162\145\146\151\170\000\004\005\000\000\000\165\165\151\144\000\004\006\000\000\000\160\141\151\162\163\000\004\003\000\000\000\137\107\000\004\016\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\000\004\010\000\000\000\160\162\157\152\145\143\164\000\006\000\000\000\000\000\000\000\360\000\000\000\377\000\000\000\000\001\000\012\067\000\000\000\102\000\200\000\224\000\000\000\127\000\100\001\026\000\000\200\102\000\000\000\201\100\000\000\301\000\000\000\001\101\000\000\240\100\002\200\213\201\100\000\000\002\200\002\100\002\200\002\234\201\000\002\313\301\100\003\101\002\001\000\334\201\200\001\332\101\000\000\026\000\000\200\102\000\000\000\237\000\375\177\213\200\100\000\001\101\001\000\101\101\001\000\234\200\000\002\127\200\101\001\026\000\000\200\102\000\000\000\213\200\100\000\001\301\001\000\101\301\001\000\234\200\000\002\127\200\101\001\026\000\000\200\102\000\000\000\213\200\100\000\001\001\002\000\101\001\002\000\234\200\000\002\127\200\101\001\026\000\000\200\102\000\000\000\213\200\100\000\001\101\002\000\101\101\002\000\234\200\000\002\127\200\101\001\026\000\000\200\102\000\000\000\132\100\000\000\026\200\000\200\203\000\000\001\301\200\002\000\236\000\200\001\036\000\000\001\036\000\200\000\013\000\000\000\003\000\000\000\000\000\000\102\100\003\000\000\000\000\000\000\360\077\004\004\000\000\000\163\165\142\000\004\005\000\000\000\146\151\156\144\000\004\032\000\000\000\133\101\102\103\104\105\106\141\142\143\144\145\146\060\061\062\063\064\065\066\067\070\071\055\135\000\003\000\000\000\000\000\000\042\100\004\002\000\000\000\055\000\003\000\000\000\000\000\000\054\100\003\000\000\000\000\000\000\063\100\003\000\000\000\000\000\000\070\100\004\015\000\000\000\151\156\166\141\154\151\144\040\125\125\111\104\000\000\000\000\000\067\000\000\000\361\000\000\000\362\000\000\000\362\000\000\000\362\000\000\000\362\000\000\000\363\000\000\000\363\000\000\000\363\000\000\000\363\000\000\000\364\000\000\000\364\000\000\000\364\000\000\000\364\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\363\000\000\000\367\000\000\000\367\000\000\000\367\000\000\000\367\000\000\000\367\000\000\000\367\000\000\000\367\000\000\000\370\000\000\000\370\000\000\000\370\000\000\000\370\000\000\000\370\000\000\000\370\000\000\000\370\000\000\000\371\000\000\000\371\000\000\000\371\000\000\000\371\000\000\000\371\000\000\000\371\000\000\000\371\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\373\000\000\000\373\000\000\000\374\000\000\000\374\000\000\000\374\000\000\000\376\000\000\000\377\000\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\066\000\000\000\003\000\000\000\157\153\000\001\000\000\000\066\000\000\000\014\000\000\000\050\146\157\162\040\151\156\144\145\170\051\000\010\000\000\000\024\000\000\000\014\000\000\000\050\146\157\162\040\154\151\155\151\164\051\000\010\000\000\000\024\000\000\000\013\000\000\000\050\146\157\162\040\163\164\145\160\051\000\010\000\000\000\024\000\000\000\002\000\000\000\151\000\011\000\000\000\023\000\000\000\003\000\000\000\143\150\000\015\000\000\000\023\000\000\000\000\000\000\000\000\000\000\000\010\001\000\000\030\001\000\000\000\002\000\012\103\000\000\000\205\000\000\000\206\100\100\001\206\000\000\001\206\200\100\001\305\000\000\000\306\100\300\001\306\000\200\001\306\300\300\001\005\001\000\000\006\101\100\002\006\001\000\002\006\001\101\002\027\100\101\001\026\000\002\200\105\001\000\000\106\201\301\002\200\001\200\001\300\001\000\000\000\002\200\000\100\002\000\002\135\001\200\002\136\001\000\000\026\200\012\200\027\300\101\001\026\200\002\200\105\001\000\000\106\201\301\002\200\001\200\001\300\001\000\000\005\302\001\000\006\002\102\004\100\002\200\000\034\002\000\001\135\001\000\000\136\001\000\000\026\100\007\200\027\100\102\001\026\000\002\200\105\001\000\000\106\201\302\002\200\001\200\001\300\001\000\000\000\002\200\000\100\002\000\002\135\001\200\002\136\001\000\000\026\200\004\200\027\300\102\001\026\300\001\200\105\001\000\000\106\001\303\002\200\001\200\001\300\001\000\000\000\002\200\000\135\001\000\002\136\001\000\000\026\000\002\200\027\100\103\001\026\200\001\200\105\001\000\000\106\201\303\002\200\001\200\001\300\001\000\000\000\002\200\000\135\001\000\002\136\001\000\000\036\000\200\000\017\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\007\000\000\000\146\151\145\154\144\163\000\004\005\000\000\000\153\151\156\144\000\004\006\000\000\000\163\143\157\160\145\000\004\010\000\000\000\141\154\154\157\167\145\144\000\004\007\000\000\000\163\164\162\151\156\147\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\004\005\000\000\000\154\151\163\164\000\004\011\000\000\000\163\145\164\141\162\162\141\171\000\004\010\000\000\000\144\151\162\154\151\163\164\000\004\014\000\000\000\163\145\164\144\151\162\141\162\162\141\171\000\004\011\000\000\000\146\151\154\145\154\151\163\164\000\004\015\000\000\000\163\145\164\146\151\154\145\141\162\162\141\171\000\000\000\000\000\103\000\000\000\011\001\000\000\011\001\000\000\011\001\000\000\011\001\000\000\012\001\000\000\012\001\000\000\012\001\000\000\012\001\000\000\013\001\000\000\013\001\000\000\013\001\000\000\013\001\000\000\015\001\000\000\015\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\017\001\000\000\017\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\021\001\000\000\021\001\000\000\022\001\000\000\022\001\000\000\022\001\000\000\022\001\000\000\022\001\000\000\022\001\000\000\022\001\000\000\022\001\000\000\022\001\000\000\023\001\000\000\023\001\000\000\024\001\000\000\024\001\000\000\024\001\000\000\024\001\000\000\024\001\000\000\024\001\000\000\024\001\000\000\024\001\000\000\025\001\000\000\025\001\000\000\026\001\000\000\026\001\000\000\026\001\000\000\026\001\000\000\026\001\000\000\026\001\000\000\026\001\000\000\030\001\000\000\005\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\102\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\102\000\000\000\005\000\000\000\153\151\156\144\000\004\000\000\000\102\000\000\000\006\000\000\000\163\143\157\160\145\000\010\000\000\000\102\000\000\000\010\000\000\000\141\154\154\157\167\145\144\000\014\000\000\000\102\000\000\000\000\000\000\000\000\000\000\000\041\001\000\000\043\001\000\000\002\001\000\004\006\000\000\000\104\000\000\000\204\000\200\000\300\000\000\000\135\000\200\001\136\000\000\000\036\000\200\000\000\000\000\000\000\000\000\000\006\000\000\000\042\001\000\000\042\001\000\000\042\001\000\000\042\001\000\000\042\001\000\000\043\001\000\000\001\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\005\000\000\000\002\000\000\000\011\000\000\000\141\143\143\145\163\163\157\162\000\005\000\000\000\156\141\155\145\000\000\000\000\000\054\001\000\000\103\001\000\000\000\001\000\012\056\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\134\300\000\001\132\100\000\000\026\300\000\200\305\300\000\000\000\001\000\001\101\001\001\000\334\100\200\001\312\000\000\000\005\101\001\000\006\201\101\002\106\301\301\000\200\001\200\001\034\101\200\001\005\001\000\000\011\301\000\204\005\101\002\000\100\001\000\000\034\201\000\001\027\100\101\002\026\100\000\200\311\000\000\205\026\300\000\200\012\001\200\000\100\001\000\000\042\101\200\000\311\000\001\205\005\301\002\000\105\001\000\000\106\001\303\002\034\001\001\001\026\300\001\200\106\102\103\004\127\200\303\004\026\000\001\200\106\102\103\004\127\300\303\004\026\100\000\200\112\002\000\000\311\100\202\003\041\201\000\000\026\100\375\177\336\000\000\001\036\000\200\000\020\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\157\142\152\145\143\164\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\006\000\000\000\145\162\162\157\162\000\003\000\000\000\000\000\000\000\100\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\007\000\000\000\142\154\157\143\153\163\000\004\025\000\000\000\103\165\162\162\145\156\164\103\157\156\146\151\147\165\162\141\164\151\157\156\000\004\005\000\000\000\164\171\160\145\000\004\011\000\000\000\153\145\171\167\157\162\144\163\000\004\006\000\000\000\160\141\151\162\163\000\004\007\000\000\000\146\151\145\154\144\163\000\004\005\000\000\000\153\151\156\144\000\004\007\000\000\000\163\164\162\151\156\147\000\004\005\000\000\000\160\141\164\150\000\000\000\000\000\056\000\000\000\055\001\000\000\055\001\000\000\055\001\000\000\055\001\000\000\056\001\000\000\056\001\000\000\057\001\000\000\057\001\000\000\057\001\000\000\057\001\000\000\062\001\000\000\063\001\000\000\063\001\000\000\063\001\000\000\063\001\000\000\063\001\000\000\064\001\000\000\064\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\067\001\000\000\067\001\000\000\071\001\000\000\071\001\000\000\071\001\000\000\071\001\000\000\074\001\000\000\074\001\000\000\074\001\000\000\074\001\000\000\074\001\000\000\075\001\000\000\075\001\000\000\075\001\000\000\075\001\000\000\075\001\000\000\075\001\000\000\076\001\000\000\076\001\000\000\074\001\000\000\077\001\000\000\102\001\000\000\103\001\000\000\011\000\000\000\011\000\000\000\153\145\171\167\157\162\144\163\000\000\000\000\000\055\000\000\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\000\000\000\055\000\000\000\004\000\000\000\145\162\162\000\004\000\000\000\055\000\000\000\004\000\000\000\143\146\147\000\013\000\000\000\055\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\041\000\000\000\054\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\041\000\000\000\054\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\041\000\000\000\054\000\000\000\005\000\000\000\156\141\155\145\000\042\000\000\000\052\000\000\000\006\000\000\000\146\151\145\154\144\000\042\000\000\000\052\000\000\000\000\000\000\000\000\000\000\000\106\001\000\000\164\001\000\000\000\001\000\007\121\000\000\000\032\000\000\000\026\200\017\200\103\000\200\000\205\000\000\000\305\100\000\000\306\200\300\001\234\200\000\001\027\300\100\001\026\300\000\200\205\100\000\000\206\200\100\001\106\000\101\001\026\100\000\200\205\100\000\000\106\200\100\001\205\000\000\000\300\000\200\000\234\200\000\001\127\000\101\001\026\300\000\200\205\100\001\000\301\200\001\000\001\301\001\000\234\100\200\001\205\100\000\000\306\000\302\000\306\000\200\001\211\300\000\201\205\100\000\000\206\200\100\001\232\100\000\000\026\000\010\200\212\000\000\000\305\100\000\000\311\200\000\201\305\100\002\000\306\200\302\001\006\001\302\000\100\001\000\001\334\100\200\001\306\000\302\000\311\200\000\000\305\300\002\000\000\001\000\001\112\201\000\000\111\301\100\206\212\001\000\000\111\201\201\206\334\100\200\001\211\100\000\202\211\000\000\207\305\000\004\000\306\100\304\001\334\200\200\000\211\300\200\207\306\300\103\001\211\300\000\211\305\000\004\000\306\300\304\001\334\200\200\000\211\300\200\211\312\000\000\000\211\300\000\212\312\000\000\000\211\300\200\212\105\000\000\000\205\100\000\000\206\200\100\001\134\200\000\001\027\300\300\000\026\200\001\200\105\200\005\000\212\000\000\000\134\100\000\001\105\100\000\000\106\200\300\000\136\000\000\001\026\100\000\200\103\000\200\000\136\000\000\001\036\000\200\000\027\000\000\000\004\005\000\000\000\164\171\160\145\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\021\000\000\000\103\165\162\162\145\156\164\103\157\156\164\141\151\156\145\162\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\006\000\000\000\145\162\162\157\162\000\004\023\000\000\000\156\157\040\141\143\164\151\166\145\040\163\157\154\165\164\151\157\156\000\003\000\000\000\000\000\000\000\100\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\015\000\000\000\163\145\164\155\145\164\141\164\141\142\154\145\000\004\007\000\000\000\137\137\164\171\160\145\000\004\013\000\000\000\137\137\143\146\147\143\141\143\150\145\000\004\005\000\000\000\156\141\155\145\000\004\010\000\000\000\142\141\163\145\144\151\162\000\004\003\000\000\000\157\163\000\004\007\000\000\000\147\145\164\143\167\144\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\005\000\000\000\165\165\151\144\000\004\007\000\000\000\146\151\154\164\145\162\000\004\007\000\000\000\142\154\157\143\153\163\000\004\016\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\000\000\000\000\000\121\000\000\000\107\001\000\000\107\001\000\000\111\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\113\001\000\000\113\001\000\000\113\001\000\000\113\001\000\000\115\001\000\000\115\001\000\000\117\001\000\000\117\001\000\000\117\001\000\000\117\001\000\000\117\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\124\001\000\000\124\001\000\000\124\001\000\000\124\001\000\000\125\001\000\000\125\001\000\000\125\001\000\000\125\001\000\000\126\001\000\000\127\001\000\000\127\001\000\000\132\001\000\000\132\001\000\000\132\001\000\000\132\001\000\000\132\001\000\000\133\001\000\000\133\001\000\000\136\001\000\000\136\001\000\000\136\001\000\000\137\001\000\000\140\001\000\000\140\001\000\000\136\001\000\000\143\001\000\000\144\001\000\000\145\001\000\000\145\001\000\000\145\001\000\000\145\001\000\000\146\001\000\000\146\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\150\001\000\000\150\001\000\000\151\001\000\000\151\001\000\000\155\001\000\000\155\001\000\000\155\001\000\000\155\001\000\000\155\001\000\000\155\001\000\000\157\001\000\000\157\001\000\000\157\001\000\000\160\001\000\000\160\001\000\000\160\001\000\000\160\001\000\000\162\001\000\000\162\001\000\000\164\001\000\000\003\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\120\000\000\000\004\000\000\000\163\154\156\000\003\000\000\000\101\000\000\000\004\000\000\000\160\162\152\000\041\000\000\000\101\000\000\000\000\000\000\000\000\000\000\000\167\001\000\000\232\001\000\000\000\001\000\005\072\000\000\000\032\000\000\000\026\100\010\200\105\000\000\000\205\200\000\000\206\000\000\001\111\200\200\200\105\000\000\000\106\100\300\000\132\100\000\000\026\100\006\200\112\000\000\000\205\000\000\000\211\100\200\200\205\300\000\000\206\000\101\001\305\200\000\000\000\001\200\000\234\100\200\001\205\200\000\000\211\100\000\000\205\100\001\000\300\000\200\000\012\101\000\000\011\301\101\203\234\100\200\001\111\000\000\204\205\200\002\000\206\300\102\001\234\200\200\000\111\200\200\204\212\000\000\000\111\200\000\206\212\000\000\000\111\200\200\206\212\000\000\000\111\200\000\207\105\300\003\000\205\000\000\000\206\100\100\001\134\200\000\001\027\000\304\000\026\000\001\200\105\000\000\000\205\000\000\000\206\100\100\001\206\300\101\001\111\200\200\200\105\000\000\000\106\100\300\000\132\000\000\000\026\200\000\200\105\100\004\000\212\000\000\000\134\100\000\001\105\000\000\000\106\100\300\000\136\000\000\001\036\000\200\000\022\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\021\000\000\000\103\165\162\162\145\156\164\103\157\156\164\141\151\156\145\162\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\015\000\000\000\163\145\164\155\145\164\141\164\141\142\154\145\000\004\007\000\000\000\137\137\164\171\160\145\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\005\000\000\000\156\141\155\145\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\003\000\000\000\157\163\000\004\007\000\000\000\147\145\164\143\167\144\000\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\007\000\000\000\142\154\157\143\153\163\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\005\000\000\000\164\171\160\145\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\016\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\000\000\000\000\000\072\000\000\000\170\001\000\000\170\001\000\000\171\001\000\000\171\001\000\000\171\001\000\000\171\001\000\000\172\001\000\000\172\001\000\000\172\001\000\000\172\001\000\000\173\001\000\000\174\001\000\000\174\001\000\000\177\001\000\000\177\001\000\000\177\001\000\000\177\001\000\000\177\001\000\000\200\001\000\000\200\001\000\000\203\001\000\000\203\001\000\000\203\001\000\000\204\001\000\000\203\001\000\000\207\001\000\000\210\001\000\000\210\001\000\000\210\001\000\000\210\001\000\000\211\001\000\000\211\001\000\000\212\001\000\000\212\001\000\000\213\001\000\000\213\001\000\000\220\001\000\000\220\001\000\000\220\001\000\000\220\001\000\000\220\001\000\000\220\001\000\000\221\001\000\000\221\001\000\000\221\001\000\000\221\001\000\000\221\001\000\000\224\001\000\000\224\001\000\000\224\001\000\000\224\001\000\000\226\001\000\000\226\001\000\000\226\001\000\000\231\001\000\000\231\001\000\000\231\001\000\000\232\001\000\000\002\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\071\000\000\000\004\000\000\000\163\154\156\000\013\000\000\000\044\000\000\000\000\000\000\000\300\000\000\000\015\000\000\000\015\000\000\000\017\000\000\000\021\000\000\000\022\000\000\000\023\000\000\000\025\000\000\000\027\000\000\000\030\000\000\000\031\000\000\000\033\000\000\000\035\000\000\000\036\000\000\000\037\000\000\000\041\000\000\000\043\000\000\000\044\000\000\000\045\000\000\000\047\000\000\000\051\000\000\000\052\000\000\000\053\000\000\000\055\000\000\000\057\000\000\000\060\000\000\000\061\000\000\000\063\000\000\000\065\000\000\000\066\000\000\000\067\000\000\000\070\000\000\000\071\000\000\000\072\000\000\000\073\000\000\000\074\000\000\000\075\000\000\000\076\000\000\000\077\000\000\000\100\000\000\000\101\000\000\000\102\000\000\000\103\000\000\000\104\000\000\000\105\000\000\000\106\000\000\000\107\000\000\000\110\000\000\000\111\000\000\000\112\000\000\000\113\000\000\000\114\000\000\000\115\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\120\000\000\000\122\000\000\000\124\000\000\000\125\000\000\000\126\000\000\000\130\000\000\000\132\000\000\000\133\000\000\000\134\000\000\000\136\000\000\000\140\000\000\000\141\000\000\000\142\000\000\000\144\000\000\000\146\000\000\000\147\000\000\000\150\000\000\000\152\000\000\000\154\000\000\000\155\000\000\000\156\000\000\000\160\000\000\000\162\000\000\000\163\000\000\000\164\000\000\000\165\000\000\000\166\000\000\000\167\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\172\000\000\000\174\000\000\000\176\000\000\000\177\000\000\000\200\000\000\000\201\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\204\000\000\000\206\000\000\000\210\000\000\000\211\000\000\000\212\000\000\000\214\000\000\000\216\000\000\000\217\000\000\000\220\000\000\000\222\000\000\000\224\000\000\000\225\000\000\000\226\000\000\000\230\000\000\000\232\000\000\000\233\000\000\000\234\000\000\000\236\000\000\000\240\000\000\000\241\000\000\000\242\000\000\000\244\000\000\000\246\000\000\000\247\000\000\000\250\000\000\000\252\000\000\000\254\000\000\000\255\000\000\000\256\000\000\000\260\000\000\000\262\000\000\000\263\000\000\000\264\000\000\000\266\000\000\000\270\000\000\000\271\000\000\000\272\000\000\000\274\000\000\000\276\000\000\000\277\000\000\000\300\000\000\000\302\000\000\000\304\000\000\000\305\000\000\000\306\000\000\000\310\000\000\000\312\000\000\000\313\000\000\000\314\000\000\000\316\000\000\000\320\000\000\000\321\000\000\000\322\000\000\000\324\000\000\000\326\000\000\000\327\000\000\000\330\000\000\000\332\000\000\000\334\000\000\000\335\000\000\000\336\000\000\000\340\000\000\000\342\000\000\000\343\000\000\000\344\000\000\000\346\000\000\000\350\000\000\000\351\000\000\000\352\000\000\000\354\000\000\000\356\000\000\000\357\000\000\000\377\000\000\000\377\000\000\000\000\001\000\000\001\001\000\000\030\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\041\001\000\000\043\001\000\000\043\001\000\000\043\001\000\000\043\001\000\000\043\001\000\000\040\001\000\000\043\001\000\000\103\001\000\000\054\001\000\000\164\001\000\000\106\001\000\000\232\001\000\000\167\001\000\000\232\001\000\000\006\000\000\000\011\000\000\000\141\143\143\145\163\163\157\162\000\254\000\000\000\277\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\260\000\000\000\271\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\260\000\000\000\271\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\260\000\000\000\271\000\000\000\005\000\000\000\156\141\155\145\000\261\000\000\000\266\000\000\000\002\000\000\000\137\000\261\000\000\000\266\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\026\000\000\000\100\163\162\143\057\142\141\163\145\057\143\155\144\154\151\156\145\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\013\144\000\000\000\012\000\000\001\101\000\000\000\201\100\000\000\042\100\000\001\112\000\000\001\201\000\000\000\301\100\000\000\142\100\000\001\244\000\000\000\000\000\000\000\207\200\000\000\244\100\000\000\000\000\000\000\207\300\000\000\205\300\000\000\312\000\001\000\311\000\301\200\311\200\301\202\311\300\101\200\012\001\000\001\112\001\000\001\201\101\002\000\301\201\002\000\142\101\000\001\212\001\000\001\301\301\002\000\001\002\003\000\242\101\000\001\042\101\000\001\311\000\001\204\234\100\000\001\205\300\000\000\312\000\001\000\311\100\303\200\311\100\301\202\311\200\103\200\012\001\200\001\112\001\000\001\201\301\003\000\301\001\004\000\142\101\000\001\212\001\000\001\301\101\004\000\001\202\004\000\242\101\000\001\312\001\000\001\001\302\004\000\101\002\005\000\342\101\000\001\042\101\200\001\311\000\001\204\234\100\000\001\205\300\000\000\312\300\000\000\311\100\305\200\311\200\305\202\311\300\105\200\234\100\000\001\205\300\000\000\312\200\000\000\311\000\306\200\311\100\106\200\234\100\000\001\205\300\000\000\312\000\001\000\311\200\306\200\311\100\301\202\311\300\106\200\012\001\000\002\112\001\000\001\201\001\007\000\301\101\007\000\142\101\000\001\212\001\000\001\301\201\007\000\001\302\007\000\242\101\000\001\312\001\000\001\001\002\010\000\101\102\010\000\342\101\000\001\012\002\000\001\101\202\010\000\201\302\010\000\042\102\000\001\042\101\000\002\311\000\001\204\234\100\000\001\205\300\000\000\312\300\000\000\311\000\311\200\311\100\311\202\311\200\111\200\234\100\000\001\205\300\000\000\312\200\000\000\311\300\311\200\311\000\112\200\234\100\000\001\036\000\200\000\051\000\000\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\012\000\000\000\156\145\167\157\160\164\151\157\156\000\004\003\000\000\000\143\143\000\004\006\000\000\000\166\141\154\165\145\000\004\011\000\000\000\143\157\155\160\151\154\145\162\000\004\034\000\000\000\103\150\157\157\163\145\040\141\040\103\057\103\053\053\040\143\157\155\160\151\154\145\162\040\163\145\164\000\004\010\000\000\000\141\154\154\157\167\145\144\000\004\004\000\000\000\147\143\143\000\004\033\000\000\000\107\116\125\040\107\103\103\040\143\157\155\160\151\154\145\162\040\050\147\143\143\057\147\053\053\051\000\004\003\000\000\000\157\167\000\004\024\000\000\000\117\160\145\156\127\141\164\143\157\155\040\143\157\155\160\151\154\145\162\000\004\007\000\000\000\144\157\164\156\145\164\000\004\033\000\000\000\103\150\157\157\163\145\040\141\040\056\116\105\124\040\143\157\155\160\151\154\145\162\040\163\145\164\000\004\003\000\000\000\155\163\000\004\025\000\000\000\115\151\143\162\157\163\157\146\164\040\056\116\105\124\040\050\143\163\143\051\000\004\005\000\000\000\155\157\156\157\000\004\022\000\000\000\116\157\166\145\154\154\040\115\157\156\157\040\050\155\143\163\051\000\004\005\000\000\000\160\156\145\164\000\004\024\000\000\000\120\157\162\164\141\142\154\145\056\116\105\124\040\050\143\163\143\143\051\000\004\005\000\000\000\146\151\154\145\000\004\011\000\000\000\146\151\154\145\156\141\155\145\000\004\052\000\000\000\120\162\157\143\145\163\163\040\164\150\145\040\163\160\145\143\151\146\151\145\144\040\120\162\145\155\141\153\145\040\163\143\162\151\160\164\040\146\151\154\145\000\004\005\000\000\000\150\145\154\160\000\004\031\000\000\000\104\151\163\160\154\141\171\040\164\150\151\163\040\151\156\146\157\162\155\141\164\151\157\156\000\004\003\000\000\000\157\163\000\004\060\000\000\000\107\145\156\145\162\141\164\145\040\146\151\154\145\163\040\146\157\162\040\141\040\144\151\146\146\145\162\145\156\164\040\157\160\145\162\141\164\151\156\147\040\163\171\163\164\145\155\000\004\004\000\000\000\142\163\144\000\004\034\000\000\000\117\160\145\156\102\123\104\054\040\116\145\164\102\123\104\054\040\157\162\040\106\162\145\145\102\123\104\000\004\006\000\000\000\154\151\156\165\170\000\004\006\000\000\000\114\151\156\165\170\000\004\007\000\000\000\155\141\143\157\163\170\000\004\017\000\000\000\101\160\160\154\145\040\115\141\143\040\117\123\040\130\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\022\000\000\000\115\151\143\162\157\163\157\146\164\040\127\151\156\144\157\167\163\000\004\010\000\000\000\163\143\162\151\160\164\163\000\004\005\000\000\000\160\141\164\150\000\004\060\000\000\000\123\145\141\162\143\150\040\146\157\162\040\141\144\144\151\164\151\157\156\141\154\040\163\143\162\151\160\164\163\040\157\156\040\164\150\145\040\147\151\166\145\156\040\160\141\164\150\000\004\010\000\000\000\166\145\162\163\151\157\156\000\004\034\000\000\000\104\151\163\160\154\141\171\040\166\145\162\163\151\157\156\040\151\156\146\157\162\155\141\164\151\157\156\000\002\000\000\000\000\000\000\000\031\000\000\000\050\000\000\000\001\001\000\010\027\000\000\000\205\000\000\000\304\000\000\000\234\000\001\001\026\300\000\200\306\201\001\000\332\101\000\000\026\000\000\200\100\000\000\003\241\200\000\000\026\100\376\177\132\000\000\000\026\100\001\200\205\100\000\000\301\200\000\000\000\001\200\000\325\000\201\001\001\301\000\000\234\100\200\001\205\000\001\000\206\100\101\001\306\200\101\000\211\000\200\001\036\000\200\000\007\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\145\162\162\157\162\000\004\020\000\000\000\141\143\164\151\157\156\040\156\145\145\144\163\040\141\040\000\003\000\000\000\000\000\000\000\100\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\010\000\000\000\164\162\151\147\147\145\162\000\000\000\000\000\027\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\036\000\000\000\034\000\000\000\037\000\000\000\042\000\000\000\042\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\050\000\000\000\007\000\000\000\002\000\000\000\141\000\000\000\000\000\026\000\000\000\010\000\000\000\155\151\163\163\151\156\147\000\000\000\000\000\026\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\012\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\012\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\012\000\000\000\002\000\000\000\137\000\004\000\000\000\010\000\000\000\006\000\000\000\146\151\145\154\144\000\004\000\000\000\010\000\000\000\001\000\000\000\025\000\000\000\162\145\161\165\151\162\145\144\141\143\164\151\157\156\146\151\145\154\144\163\000\000\000\000\000\060\000\000\000\077\000\000\000\001\001\000\010\027\000\000\000\205\000\000\000\304\000\000\000\234\000\001\001\026\300\000\200\306\201\001\000\332\101\000\000\026\000\000\200\100\000\000\003\241\200\000\000\026\100\376\177\132\000\000\000\026\100\001\200\205\100\000\000\301\200\000\000\000\001\200\000\325\000\201\001\001\301\000\000\234\100\200\001\205\000\001\000\206\100\101\001\306\200\101\000\211\000\200\001\036\000\200\000\007\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\145\162\162\157\162\000\004\020\000\000\000\141\143\164\151\157\156\040\156\145\145\144\163\040\141\040\000\003\000\000\000\000\000\000\000\100\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\157\160\164\151\157\156\163\000\004\010\000\000\000\164\162\151\147\147\145\162\000\000\000\000\000\027\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\063\000\000\000\066\000\000\000\071\000\000\000\071\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\077\000\000\000\007\000\000\000\004\000\000\000\157\160\164\000\000\000\000\000\026\000\000\000\010\000\000\000\155\151\163\163\151\156\147\000\000\000\000\000\026\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\012\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\012\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\012\000\000\000\002\000\000\000\137\000\004\000\000\000\010\000\000\000\006\000\000\000\146\151\145\154\144\000\004\000\000\000\010\000\000\000\001\000\000\000\025\000\000\000\162\145\161\165\151\162\145\144\141\143\164\151\157\156\146\151\145\154\144\163\000\144\000\000\000\010\000\000\000\012\000\000\000\014\000\000\000\014\000\000\000\016\000\000\000\020\000\000\000\022\000\000\000\022\000\000\000\050\000\000\000\050\000\000\000\031\000\000\000\077\000\000\000\077\000\000\000\060\000\000\000\107\000\000\000\107\000\000\000\111\000\000\000\112\000\000\000\113\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\117\000\000\000\117\000\000\000\110\000\000\000\122\000\000\000\122\000\000\000\124\000\000\000\125\000\000\000\126\000\000\000\127\000\000\000\127\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\133\000\000\000\123\000\000\000\136\000\000\000\136\000\000\000\140\000\000\000\141\000\000\000\142\000\000\000\137\000\000\000\145\000\000\000\145\000\000\000\147\000\000\000\150\000\000\000\146\000\000\000\153\000\000\000\153\000\000\000\155\000\000\000\156\000\000\000\157\000\000\000\160\000\000\000\160\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\163\000\000\000\163\000\000\000\163\000\000\000\163\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\165\000\000\000\165\000\000\000\154\000\000\000\170\000\000\000\170\000\000\000\172\000\000\000\173\000\000\000\174\000\000\000\171\000\000\000\177\000\000\000\177\000\000\000\201\000\000\000\202\000\000\000\200\000\000\000\203\000\000\000\002\000\000\000\025\000\000\000\162\145\161\165\151\162\145\144\141\143\164\151\157\156\146\151\145\154\144\163\000\004\000\000\000\143\000\000\000\025\000\000\000\162\145\161\165\151\162\145\144\157\160\164\151\157\156\146\151\145\154\144\163\000\010\000\000\000\143\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\022\000\000\000\100\163\162\143\057\142\141\163\145\057\147\143\143\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\004\061\000\000\000\005\000\000\000\112\000\000\000\011\100\200\200\012\300\001\000\011\300\100\201\011\100\101\202\011\300\101\203\011\100\102\204\011\300\102\205\011\100\103\206\011\300\103\207\112\200\000\000\111\100\104\210\111\300\104\211\205\000\000\000\206\100\100\001\344\000\000\000\211\300\000\212\205\000\000\000\206\100\100\001\344\100\000\000\211\300\200\212\205\000\000\000\206\100\100\001\344\200\000\000\000\000\000\000\211\300\000\213\205\000\000\000\206\100\100\001\344\300\000\000\000\000\200\000\211\300\200\213\205\000\000\000\206\100\100\001\344\000\001\000\211\300\000\214\205\000\000\000\206\100\100\001\344\100\001\000\211\300\200\214\205\000\000\000\206\100\100\001\344\200\001\000\211\300\000\215\205\000\000\000\206\100\100\001\344\300\001\000\211\300\200\215\036\000\200\000\034\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\004\000\000\000\147\143\143\000\004\016\000\000\000\105\170\164\162\141\127\141\162\156\151\156\147\163\000\004\006\000\000\000\055\127\141\154\154\000\004\015\000\000\000\106\141\164\141\154\127\141\162\156\151\156\147\000\004\010\000\000\000\055\127\145\162\162\157\162\000\004\017\000\000\000\116\157\106\162\141\155\145\120\157\151\156\164\145\162\000\004\025\000\000\000\055\146\157\155\151\164\055\146\162\141\155\145\055\160\157\151\156\164\145\162\000\004\011\000\000\000\117\160\164\151\155\151\172\145\000\004\004\000\000\000\055\117\062\000\004\015\000\000\000\117\160\164\151\155\151\172\145\123\151\172\145\000\004\004\000\000\000\055\117\163\000\004\016\000\000\000\117\160\164\151\155\151\172\145\123\160\145\145\144\000\004\004\000\000\000\055\117\063\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\003\000\000\000\055\147\000\004\015\000\000\000\116\157\105\170\143\145\160\164\151\157\156\163\000\004\020\000\000\000\055\055\156\157\055\145\170\143\145\160\164\151\157\156\163\000\004\007\000\000\000\116\157\122\124\124\111\000\004\012\000\000\000\055\055\156\157\055\162\164\164\151\000\004\017\000\000\000\147\145\164\143\157\155\160\151\154\145\162\166\141\162\000\004\014\000\000\000\147\145\164\143\160\160\146\154\141\147\163\000\004\012\000\000\000\147\145\164\143\146\154\141\147\163\000\004\014\000\000\000\147\145\164\143\170\170\146\154\141\147\163\000\004\013\000\000\000\147\145\164\154\144\146\154\141\147\163\000\004\015\000\000\000\147\145\164\154\151\156\153\146\154\141\147\163\000\004\013\000\000\000\147\145\164\144\145\146\151\156\145\163\000\004\017\000\000\000\147\145\164\151\156\143\154\165\144\145\144\151\162\163\000\010\000\000\000\000\000\000\000\047\000\000\000\051\000\000\000\000\001\000\005\013\000\000\000\105\000\000\000\206\100\100\000\127\200\100\001\026\000\000\200\202\100\000\000\202\000\200\000\301\300\000\000\001\001\001\000\135\000\000\002\136\000\000\000\036\000\200\000\005\000\000\000\004\004\000\000\000\151\151\146\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\002\000\000\000\103\000\004\003\000\000\000\103\103\000\004\004\000\000\000\103\120\120\000\000\000\000\000\013\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\051\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\012\000\000\000\000\000\000\000\000\000\000\000\061\000\000\000\065\000\000\000\000\001\000\002\003\000\000\000\101\000\000\000\136\000\000\001\036\000\200\000\001\000\000\000\004\041\000\000\000\044\050\151\146\040\044\050\167\157\162\144\040\062\054\040\044\050\101\122\103\110\051\051\054\040\054\040\055\115\115\104\051\000\000\000\000\000\003\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\002\000\000\000\000\000\000\000\000\000\000\000\067\000\000\000\075\000\000\000\001\001\000\005\025\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\304\000\000\000\134\200\200\001\206\300\100\000\027\000\101\001\026\200\002\200\205\100\001\000\206\200\101\001\301\300\001\000\234\200\000\001\232\100\000\000\026\000\001\200\205\000\000\000\206\000\102\001\305\200\000\000\001\101\002\000\234\100\200\001\136\000\000\001\036\000\200\000\012\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\006\000\000\000\146\154\141\147\163\000\004\005\000\000\000\153\151\156\144\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\003\000\000\000\157\163\000\004\003\000\000\000\151\163\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\007\000\000\000\151\156\163\145\162\164\000\004\006\000\000\000\055\146\120\111\103\000\000\000\000\000\025\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\074\000\000\000\075\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\024\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\024\000\000\000\001\000\000\000\007\000\000\000\143\146\154\141\147\163\000\000\000\000\000\077\000\000\000\102\000\000\000\001\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\304\000\000\000\134\200\200\001\136\000\000\001\036\000\200\000\003\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\006\000\000\000\146\154\141\147\163\000\000\000\000\000\007\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\101\000\000\000\102\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\006\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\006\000\000\000\001\000\000\000\011\000\000\000\143\170\170\146\154\141\147\163\000\000\000\000\000\112\000\000\000\152\000\000\000\000\001\000\011\132\000\000\000\112\000\000\000\206\000\100\000\027\100\100\001\026\100\010\200\205\200\000\000\206\300\100\001\301\000\001\000\234\200\000\001\232\100\000\000\026\000\001\200\205\100\001\000\206\200\101\001\300\000\200\000\001\301\001\000\234\100\200\001\205\200\000\000\206\300\100\001\301\000\002\000\234\200\000\001\232\000\000\000\026\000\004\200\206\100\102\000\206\200\102\001\232\100\000\000\026\000\003\200\205\100\001\000\206\200\101\001\300\000\200\000\001\301\002\000\105\001\003\000\106\101\303\002\200\001\000\000\301\201\003\000\001\302\003\000\134\201\000\002\201\001\004\000\025\201\001\002\234\100\200\001\205\200\000\000\206\300\100\001\301\000\002\000\234\200\000\001\232\000\000\000\026\300\001\200\206\000\100\000\027\100\104\001\026\000\001\200\205\100\001\000\206\200\101\001\300\000\200\000\001\201\004\000\234\100\200\001\206\100\102\000\206\300\104\001\232\100\000\000\026\000\004\200\205\200\000\000\206\300\100\001\301\000\001\000\234\200\000\001\232\000\000\000\026\100\001\200\205\100\001\000\206\200\101\001\300\000\200\000\001\001\005\000\234\100\200\001\026\000\001\200\205\100\001\000\206\200\101\001\300\000\200\000\001\101\005\000\234\100\200\001\205\200\000\000\206\300\100\001\301\000\001\000\234\200\000\001\232\000\000\000\026\000\002\200\206\100\102\000\206\200\105\001\232\000\000\000\026\000\001\200\205\100\001\000\206\200\101\001\300\000\200\000\001\301\005\000\234\100\200\001\136\000\000\001\036\000\200\000\030\000\000\000\004\005\000\000\000\153\151\156\144\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\003\000\000\000\157\163\000\004\003\000\000\000\151\163\000\004\007\000\000\000\155\141\143\157\163\170\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\010\000\000\000\055\163\150\141\162\145\144\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\006\000\000\000\146\154\141\147\163\000\004\014\000\000\000\116\157\111\155\160\157\162\164\114\151\142\000\004\023\000\000\000\055\127\154\054\055\055\157\165\164\055\151\155\160\154\151\142\075\042\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\016\000\000\000\147\145\164\164\141\162\147\145\164\146\151\154\145\000\004\007\000\000\000\151\155\160\154\151\142\000\004\006\000\000\000\154\151\156\165\170\000\004\002\000\000\000\042\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\055\155\167\151\156\144\157\167\163\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\007\000\000\000\055\127\154\054\055\170\000\004\003\000\000\000\055\163\000\004\006\000\000\000\104\171\154\151\142\000\004\034\000\000\000\055\144\171\156\141\155\151\143\154\151\142\040\055\146\154\141\164\137\156\141\155\145\163\160\141\143\145\000\000\000\000\000\132\000\000\000\113\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\136\000\000\000\136\000\000\000\136\000\000\000\136\000\000\000\136\000\000\000\136\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\151\000\000\000\152\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\131\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\131\000\000\000\000\000\000\000\000\000\000\000\162\000\000\000\173\000\000\000\000\001\000\014\045\000\000\000\112\000\000\000\205\000\000\000\305\100\000\000\306\200\300\001\000\001\000\000\334\000\000\001\234\000\001\000\026\300\001\200\305\301\000\000\306\001\301\003\000\002\200\000\101\102\001\000\200\002\000\003\301\202\001\000\125\302\202\004\334\101\200\001\241\200\000\000\026\100\375\177\205\000\000\000\305\100\000\000\306\300\301\001\000\001\000\000\334\000\000\001\234\000\001\000\026\300\001\200\305\301\000\000\306\001\301\003\000\002\200\000\101\002\002\000\200\002\000\003\301\202\001\000\125\302\202\004\334\101\200\001\241\200\000\000\026\100\375\177\136\000\000\001\036\000\200\000\011\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\013\000\000\000\147\145\164\154\151\142\144\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\055\114\040\042\000\004\002\000\000\000\042\000\004\014\000\000\000\147\145\164\154\151\142\156\141\155\145\163\000\004\005\000\000\000\055\154\040\042\000\000\000\000\000\045\000\000\000\163\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\164\000\000\000\165\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\167\000\000\000\170\000\000\000\172\000\000\000\173\000\000\000\014\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\044\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\044\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\007\000\000\000\022\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\007\000\000\000\022\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\007\000\000\000\022\000\000\000\002\000\000\000\137\000\010\000\000\000\020\000\000\000\006\000\000\000\166\141\154\165\145\000\010\000\000\000\020\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\030\000\000\000\043\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\030\000\000\000\043\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\030\000\000\000\043\000\000\000\002\000\000\000\137\000\031\000\000\000\041\000\000\000\006\000\000\000\166\141\154\165\145\000\031\000\000\000\041\000\000\000\000\000\000\000\000\000\000\000\203\000\000\000\211\000\000\000\000\001\000\013\020\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\200\001\200\305\101\000\000\306\201\300\003\000\002\200\000\101\302\000\000\200\002\000\003\125\202\202\004\334\101\200\001\241\200\000\000\026\200\375\177\136\000\000\001\036\000\200\000\004\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\003\000\000\000\055\104\000\000\000\000\000\020\000\000\000\204\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\206\000\000\000\206\000\000\000\206\000\000\000\206\000\000\000\206\000\000\000\206\000\000\000\206\000\000\000\205\000\000\000\206\000\000\000\210\000\000\000\211\000\000\000\007\000\000\000\010\000\000\000\144\145\146\151\156\145\163\000\000\000\000\000\017\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\017\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\016\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\016\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\016\000\000\000\002\000\000\000\137\000\005\000\000\000\014\000\000\000\004\000\000\000\144\145\146\000\005\000\000\000\014\000\000\000\000\000\000\000\000\000\000\000\221\000\000\000\227\000\000\000\000\001\000\014\021\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\300\001\200\305\101\000\000\306\201\300\003\000\002\200\000\101\302\000\000\200\002\000\003\301\002\001\000\125\302\202\004\334\101\200\001\241\200\000\000\026\100\375\177\136\000\000\001\036\000\200\000\005\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\055\111\040\042\000\004\002\000\000\000\042\000\000\000\000\000\021\000\000\000\222\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\223\000\000\000\224\000\000\000\226\000\000\000\227\000\000\000\007\000\000\000\014\000\000\000\151\156\143\154\165\144\145\144\151\162\163\000\000\000\000\000\020\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\020\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\017\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\017\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\017\000\000\000\002\000\000\000\137\000\005\000\000\000\015\000\000\000\004\000\000\000\144\151\162\000\005\000\000\000\015\000\000\000\000\000\000\000\061\000\000\000\010\000\000\000\010\000\000\000\010\000\000\000\017\000\000\000\021\000\000\000\022\000\000\000\023\000\000\000\024\000\000\000\025\000\000\000\026\000\000\000\027\000\000\000\032\000\000\000\034\000\000\000\035\000\000\000\047\000\000\000\047\000\000\000\051\000\000\000\047\000\000\000\061\000\000\000\061\000\000\000\065\000\000\000\061\000\000\000\067\000\000\000\067\000\000\000\075\000\000\000\075\000\000\000\067\000\000\000\077\000\000\000\077\000\000\000\102\000\000\000\102\000\000\000\077\000\000\000\112\000\000\000\112\000\000\000\152\000\000\000\112\000\000\000\162\000\000\000\162\000\000\000\173\000\000\000\162\000\000\000\203\000\000\000\203\000\000\000\211\000\000\000\203\000\000\000\221\000\000\000\221\000\000\000\227\000\000\000\221\000\000\000\227\000\000\000\002\000\000\000\007\000\000\000\143\146\154\141\147\163\000\013\000\000\000\060\000\000\000\011\000\000\000\143\170\170\146\154\141\147\163\000\016\000\000\000\060\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\021\000\000\000\100\163\162\143\057\142\141\163\145\057\157\167\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\004\060\000\000\000\005\000\000\000\112\000\000\000\011\100\200\200\012\200\001\000\011\300\100\201\011\100\101\202\011\300\101\203\011\100\102\204\011\300\102\205\011\100\103\206\112\200\000\000\111\300\103\207\111\100\104\210\205\000\000\000\206\100\100\001\344\000\000\000\211\300\000\211\205\000\000\000\206\100\100\001\344\100\000\000\211\300\200\211\205\000\000\000\206\100\100\001\344\200\000\000\000\000\000\000\211\300\000\212\205\000\000\000\206\100\100\001\344\300\000\000\000\000\200\000\211\300\200\212\205\000\000\000\206\100\100\001\344\000\001\000\211\300\000\213\205\000\000\000\206\100\100\001\344\100\001\000\211\300\200\213\205\000\000\000\206\100\100\001\344\200\001\000\211\300\000\214\205\000\000\000\206\100\100\001\344\300\001\000\211\300\200\214\036\000\200\000\032\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\003\000\000\000\157\167\000\004\016\000\000\000\105\170\164\162\141\127\141\162\156\151\156\147\163\000\004\004\000\000\000\055\167\170\000\004\015\000\000\000\106\141\164\141\154\127\141\162\156\151\156\147\000\004\004\000\000\000\055\167\145\000\004\011\000\000\000\117\160\164\151\155\151\172\145\000\004\004\000\000\000\055\157\170\000\004\015\000\000\000\117\160\164\151\155\151\172\145\123\151\172\145\000\004\004\000\000\000\055\157\163\000\004\016\000\000\000\117\160\164\151\155\151\172\145\123\160\145\145\144\000\004\004\000\000\000\055\157\164\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\004\000\000\000\055\144\062\000\004\015\000\000\000\116\157\105\170\143\145\160\164\151\157\156\163\000\004\004\000\000\000\055\170\144\000\004\007\000\000\000\116\157\122\124\124\111\000\004\004\000\000\000\055\170\162\000\004\017\000\000\000\147\145\164\143\157\155\160\151\154\145\162\166\141\162\000\004\014\000\000\000\147\145\164\143\160\160\146\154\141\147\163\000\004\012\000\000\000\147\145\164\143\146\154\141\147\163\000\004\014\000\000\000\147\145\164\143\170\170\146\154\141\147\163\000\004\013\000\000\000\147\145\164\154\144\146\154\141\147\163\000\004\015\000\000\000\147\145\164\154\151\156\153\146\154\141\147\163\000\004\013\000\000\000\147\145\164\144\145\146\151\156\145\163\000\004\017\000\000\000\147\145\164\151\156\143\154\165\144\145\144\151\162\163\000\010\000\000\000\000\000\000\000\045\000\000\000\047\000\000\000\000\001\000\005\013\000\000\000\105\000\000\000\206\100\100\000\127\200\100\001\026\000\000\200\202\100\000\000\202\000\200\000\301\300\000\000\001\001\001\000\135\000\000\002\136\000\000\000\036\000\200\000\005\000\000\000\004\004\000\000\000\151\151\146\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\002\000\000\000\103\000\004\003\000\000\000\103\103\000\004\005\000\000\000\103\103\053\053\000\000\000\000\000\013\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\047\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\012\000\000\000\000\000\000\000\000\000\000\000\057\000\000\000\061\000\000\000\000\001\000\002\003\000\000\000\101\000\000\000\136\000\000\001\036\000\200\000\001\000\000\000\004\001\000\000\000\000\000\000\000\000\003\000\000\000\060\000\000\000\060\000\000\000\061\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\002\000\000\000\000\000\000\000\000\000\000\000\063\000\000\000\071\000\000\000\001\001\000\005\020\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\304\000\000\000\134\200\200\001\206\200\100\000\206\300\100\001\232\000\000\000\026\000\001\200\205\000\000\000\206\000\101\001\300\000\200\000\001\101\001\000\234\100\200\001\136\000\000\001\036\000\200\000\006\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\006\000\000\000\146\154\141\147\163\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\007\000\000\000\151\156\163\145\162\164\000\004\004\000\000\000\055\150\167\000\000\000\000\000\020\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\070\000\000\000\071\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\017\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\017\000\000\000\001\000\000\000\007\000\000\000\143\146\154\141\147\163\000\000\000\000\000\073\000\000\000\076\000\000\000\001\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\304\000\000\000\134\200\200\001\136\000\000\001\036\000\200\000\003\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\006\000\000\000\146\154\141\147\163\000\000\000\000\000\007\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\075\000\000\000\076\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\006\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\006\000\000\000\001\000\000\000\011\000\000\000\143\170\170\146\154\141\147\163\000\000\000\000\000\106\000\000\000\116\000\000\000\000\001\000\005\014\000\000\000\112\000\000\000\206\000\100\000\206\100\100\001\232\000\000\000\026\000\001\200\205\200\000\000\206\300\100\001\300\000\200\000\001\001\001\000\234\100\200\001\136\000\000\001\036\000\200\000\005\000\000\000\004\006\000\000\000\146\154\141\147\163\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\010\000\000\000\157\160\040\163\171\155\146\000\000\000\000\000\014\000\000\000\107\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\115\000\000\000\116\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\013\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\013\000\000\000\000\000\000\000\000\000\000\000\126\000\000\000\131\000\000\000\000\001\000\002\003\000\000\000\112\000\000\000\136\000\000\001\036\000\200\000\000\000\000\000\000\000\000\000\003\000\000\000\127\000\000\000\130\000\000\000\131\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\002\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\002\000\000\000\000\000\000\000\000\000\000\000\141\000\000\000\147\000\000\000\000\001\000\013\020\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\200\001\200\305\101\000\000\306\201\300\003\000\002\200\000\101\302\000\000\200\002\000\003\125\202\202\004\334\101\200\001\241\200\000\000\026\200\375\177\136\000\000\001\036\000\200\000\004\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\003\000\000\000\055\104\000\000\000\000\000\020\000\000\000\142\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\143\000\000\000\144\000\000\000\146\000\000\000\147\000\000\000\007\000\000\000\010\000\000\000\144\145\146\151\156\145\163\000\000\000\000\000\017\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\017\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\016\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\016\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\016\000\000\000\002\000\000\000\137\000\005\000\000\000\014\000\000\000\004\000\000\000\144\145\146\000\005\000\000\000\014\000\000\000\000\000\000\000\000\000\000\000\157\000\000\000\165\000\000\000\000\001\000\014\021\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\300\001\200\305\101\000\000\306\201\300\003\000\002\200\000\101\302\000\000\200\002\000\003\301\002\001\000\125\302\202\004\334\101\200\001\241\200\000\000\026\100\375\177\136\000\000\001\036\000\200\000\005\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\055\111\040\042\000\004\002\000\000\000\042\000\000\000\000\000\021\000\000\000\160\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\161\000\000\000\162\000\000\000\164\000\000\000\165\000\000\000\007\000\000\000\014\000\000\000\151\156\143\154\165\144\145\144\151\162\163\000\000\000\000\000\020\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\020\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\017\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\017\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\017\000\000\000\002\000\000\000\137\000\005\000\000\000\015\000\000\000\004\000\000\000\144\151\162\000\005\000\000\000\015\000\000\000\000\000\000\000\060\000\000\000\007\000\000\000\007\000\000\000\007\000\000\000\016\000\000\000\020\000\000\000\021\000\000\000\022\000\000\000\023\000\000\000\024\000\000\000\025\000\000\000\030\000\000\000\032\000\000\000\033\000\000\000\045\000\000\000\045\000\000\000\047\000\000\000\045\000\000\000\057\000\000\000\057\000\000\000\061\000\000\000\057\000\000\000\063\000\000\000\063\000\000\000\071\000\000\000\071\000\000\000\063\000\000\000\073\000\000\000\073\000\000\000\076\000\000\000\076\000\000\000\073\000\000\000\106\000\000\000\106\000\000\000\116\000\000\000\106\000\000\000\126\000\000\000\126\000\000\000\131\000\000\000\126\000\000\000\141\000\000\000\141\000\000\000\147\000\000\000\141\000\000\000\157\000\000\000\157\000\000\000\165\000\000\000\157\000\000\000\165\000\000\000\002\000\000\000\007\000\000\000\143\146\154\141\147\163\000\012\000\000\000\057\000\000\000\011\000\000\000\143\170\170\146\154\141\147\163\000\015\000\000\000\057\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\027\000\000\000\100\163\162\143\057\137\160\162\145\155\141\153\145\137\155\141\151\156\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\005\013\000\000\000\001\000\000\000\101\100\000\000\201\200\000\000\344\000\000\000\044\101\000\000\000\000\000\001\000\000\200\000\000\000\200\001\000\000\000\000\007\301\000\000\036\000\200\000\004\000\000\000\004\040\000\000\000\124\171\160\145\040\047\160\162\145\155\141\153\145\064\040\055\055\150\145\154\160\047\040\146\157\162\040\150\145\154\160\000\004\055\000\000\000\160\162\145\155\141\153\145\064\040\050\120\162\145\155\141\153\145\040\102\165\151\154\144\040\123\143\162\151\160\164\040\107\145\156\145\162\141\164\157\162\051\040\045\163\000\004\015\000\000\000\160\162\145\155\141\153\145\064\056\154\165\141\000\004\016\000\000\000\137\160\162\145\155\141\153\145\137\155\141\151\156\000\002\000\000\000\000\000\000\000\022\000\000\000\077\000\000\000\000\000\000\021\215\000\000\000\012\000\000\000\007\000\000\000\005\100\000\000\105\200\000\000\106\000\300\000\034\000\001\001\026\000\001\200\105\301\000\000\106\001\301\002\205\001\000\000\300\001\200\001\134\101\200\001\041\200\000\000\026\000\376\177\005\300\000\000\006\100\101\000\105\000\000\000\034\100\000\001\012\000\000\000\007\200\001\000\005\100\000\000\105\200\000\000\106\200\301\000\034\000\001\001\026\000\001\200\105\301\000\000\106\001\301\002\205\201\001\000\300\001\200\001\134\101\200\001\041\200\000\000\026\000\376\177\005\300\000\000\006\100\101\000\105\200\001\000\034\100\000\001\005\300\001\000\101\000\002\000\205\100\002\000\034\100\200\001\005\300\001\000\105\200\002\000\034\100\000\001\005\300\001\000\101\300\002\000\205\000\003\000\305\100\003\000\034\100\000\002\005\300\001\000\101\200\003\000\034\100\000\001\005\300\001\000\101\300\003\000\034\100\000\001\005\300\001\000\101\200\003\000\034\100\000\001\005\300\001\000\101\000\004\000\034\100\000\001\005\300\001\000\101\200\003\000\034\100\000\001\005\100\004\000\105\200\001\000\034\000\001\001\026\000\013\200\105\201\000\000\106\201\301\002\106\001\201\002\206\201\304\002\306\301\304\002\006\002\305\002\032\002\000\000\026\300\000\200\000\002\000\003\101\102\005\000\206\002\305\002\225\201\002\004\006\202\305\002\032\002\000\000\026\200\000\200\000\002\200\003\101\302\005\000\325\101\002\004\005\302\001\000\101\002\006\000\200\002\000\003\300\002\200\003\034\102\000\002\006\202\305\002\032\002\000\000\026\300\003\200\005\302\000\000\006\102\101\004\106\202\305\002\244\002\000\000\034\102\200\001\005\102\004\000\106\202\305\002\034\002\001\001\026\000\001\200\105\303\001\000\201\103\006\000\306\203\106\006\006\304\106\006\134\103\000\002\041\202\000\000\026\000\376\177\005\302\001\000\101\202\003\000\034\102\000\001\041\200\000\000\026\000\364\177\005\300\001\000\101\000\007\000\034\100\000\001\005\300\001\000\101\200\003\000\034\100\000\001\005\100\004\000\105\000\000\000\034\000\001\001\026\300\001\200\105\301\001\000\201\101\007\000\300\001\000\002\005\202\000\000\006\002\100\004\006\002\001\004\006\302\104\004\134\101\000\002\041\200\000\000\026\100\375\177\005\300\001\000\101\200\003\000\034\100\000\001\005\300\001\000\101\200\007\000\034\100\000\001\036\000\200\000\037\000\000\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\006\000\000\000\160\141\151\162\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\163\157\162\164\000\004\010\000\000\000\157\160\164\151\157\156\163\000\004\007\000\000\000\160\162\151\156\164\146\000\004\045\000\000\000\120\162\145\155\141\153\145\040\045\163\054\040\141\040\142\165\151\154\144\040\163\143\162\151\160\164\040\147\145\156\145\162\141\164\157\162\000\004\021\000\000\000\137\120\122\105\115\101\113\105\137\126\105\122\123\111\117\116\000\004\023\000\000\000\137\120\122\105\115\101\113\105\137\103\117\120\131\122\111\107\110\124\000\004\006\000\000\000\045\163\040\045\163\000\004\011\000\000\000\137\126\105\122\123\111\117\116\000\004\013\000\000\000\137\103\117\120\131\122\111\107\110\124\000\004\001\000\000\000\000\004\055\000\000\000\125\163\141\147\145\072\040\160\162\145\155\141\153\145\064\040\133\157\160\164\151\157\156\163\135\040\141\143\164\151\157\156\040\133\141\162\147\165\155\145\156\164\163\135\000\004\010\000\000\000\117\120\124\111\117\116\123\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\006\000\000\000\166\141\154\165\145\000\004\002\000\000\000\075\000\004\010\000\000\000\141\154\154\157\167\145\144\000\004\012\000\000\000\073\040\157\156\145\040\157\146\072\000\004\014\000\000\000\040\055\055\045\055\061\065\163\040\045\163\000\004\016\000\000\000\040\040\040\040\040\045\055\061\064\163\040\045\163\000\003\000\000\000\000\000\000\360\077\003\000\000\000\000\000\000\000\100\004\010\000\000\000\101\103\124\111\117\116\123\000\004\012\000\000\000\040\045\055\061\067\163\040\045\163\000\004\102\000\000\000\106\157\162\040\141\144\144\151\164\151\157\156\141\154\040\151\156\146\157\162\155\141\164\151\157\156\054\040\163\145\145\040\150\164\164\160\072\057\057\151\156\144\165\163\164\162\151\157\165\163\157\156\145\056\143\157\155\057\160\162\145\155\141\153\145\000\001\000\000\000\000\000\000\000\057\000\000\000\057\000\000\000\000\002\000\004\010\000\000\000\206\000\100\000\306\000\300\000\130\300\000\001\026\000\000\200\202\100\000\000\202\000\200\000\236\000\000\001\036\000\200\000\001\000\000\000\003\000\000\000\000\000\000\360\077\000\000\000\000\010\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\002\000\000\000\002\000\000\000\141\000\000\000\000\000\007\000\000\000\002\000\000\000\142\000\000\000\000\000\007\000\000\000\000\000\000\000\215\000\000\000\024\000\000\000\024\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\030\000\000\000\030\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\032\000\000\000\032\000\000\000\032\000\000\000\032\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\047\000\000\000\050\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\060\000\000\000\061\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\045\000\000\000\064\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\071\000\000\000\072\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\077\000\000\000\034\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\006\000\000\000\016\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\006\000\000\000\016\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\006\000\000\000\016\000\000\000\005\000\000\000\156\141\155\145\000\007\000\000\000\014\000\000\000\002\000\000\000\137\000\007\000\000\000\014\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\030\000\000\000\040\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\030\000\000\000\040\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\030\000\000\000\040\000\000\000\005\000\000\000\156\141\155\145\000\031\000\000\000\036\000\000\000\002\000\000\000\137\000\031\000\000\000\036\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\102\000\000\000\162\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\102\000\000\000\162\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\102\000\000\000\162\000\000\000\002\000\000\000\137\000\103\000\000\000\160\000\000\000\005\000\000\000\156\141\155\145\000\103\000\000\000\160\000\000\000\004\000\000\000\157\160\164\000\106\000\000\000\160\000\000\000\010\000\000\000\164\162\151\147\147\145\162\000\107\000\000\000\160\000\000\000\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\110\000\000\000\160\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\145\000\000\000\155\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\145\000\000\000\155\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\145\000\000\000\155\000\000\000\002\000\000\000\137\000\146\000\000\000\153\000\000\000\006\000\000\000\166\141\154\165\145\000\146\000\000\000\153\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\173\000\000\000\206\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\173\000\000\000\206\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\173\000\000\000\206\000\000\000\002\000\000\000\137\000\174\000\000\000\204\000\000\000\005\000\000\000\156\141\155\145\000\174\000\000\000\204\000\000\000\000\000\000\000\000\000\000\000\106\000\000\000\236\000\000\000\004\001\000\017\251\000\000\000\032\000\000\000\026\300\013\200\105\000\000\000\200\000\000\000\301\100\000\000\225\300\000\001\134\000\001\001\001\201\000\000\124\001\200\000\115\201\300\002\201\201\000\000\040\101\001\200\005\002\000\000\100\002\000\000\201\302\000\000\306\302\201\000\125\302\202\004\034\102\000\001\037\001\376\177\005\001\001\000\100\001\000\001\034\001\001\001\026\000\003\200\105\102\001\000\106\202\301\004\200\002\000\004\134\202\000\001\205\302\001\000\305\002\002\000\306\102\302\005\000\003\000\000\101\303\000\000\200\003\000\004\025\203\003\006\334\202\000\001\211\302\202\004\041\201\000\000\026\000\374\177\005\001\001\000\100\001\200\001\034\001\001\001\026\100\001\200\105\002\000\000\200\002\000\000\301\302\000\000\000\003\000\004\225\002\003\005\134\102\000\001\041\201\000\000\026\300\375\177\105\200\002\000\106\300\302\000\132\100\000\000\026\000\000\200\104\000\000\000\205\000\003\000\206\100\103\001\300\000\200\000\234\200\000\001\232\000\000\000\026\200\000\200\205\000\000\000\300\000\200\000\234\100\000\001\205\200\002\000\206\200\103\001\232\000\000\000\026\100\001\200\205\300\003\000\304\000\200\000\005\001\004\000\234\100\200\001\201\200\000\000\236\000\000\001\205\200\002\000\206\100\104\001\232\000\000\000\026\300\000\200\204\000\000\001\234\100\200\000\201\200\000\000\236\000\000\001\205\200\004\000\232\100\000\000\026\000\001\200\205\300\004\000\304\000\200\001\234\100\000\001\201\200\000\000\236\000\000\001\205\000\003\000\206\100\103\001\300\000\200\000\234\200\000\001\232\100\000\000\026\200\001\200\205\000\005\000\301\100\005\000\004\001\000\000\101\201\005\000\325\100\201\001\001\301\005\000\234\100\200\001\205\000\002\000\206\000\106\001\305\100\006\000\206\300\000\001\305\000\002\000\306\000\306\001\005\201\004\000\306\000\201\001\332\100\000\000\026\200\001\200\305\000\005\000\001\201\006\000\105\201\004\000\201\301\006\000\025\201\001\002\101\001\007\000\334\100\200\001\305\000\002\000\306\300\307\001\334\300\200\000\007\201\007\000\307\100\007\000\305\100\007\000\332\100\000\000\026\100\001\200\305\000\005\000\001\001\010\000\105\201\007\000\025\101\001\002\101\001\007\000\334\100\200\001\305\000\002\000\306\100\310\001\334\300\200\000\007\201\007\000\307\100\007\000\305\100\007\000\332\100\000\000\026\100\001\200\305\000\005\000\001\001\010\000\105\201\007\000\025\101\001\002\101\001\007\000\334\100\200\001\305\000\002\000\306\200\310\001\334\300\200\000\007\201\007\000\307\100\007\000\305\100\007\000\332\100\000\000\026\100\001\200\305\000\005\000\001\001\010\000\105\201\007\000\025\101\001\002\101\001\007\000\334\100\200\001\305\000\002\000\306\300\310\001\005\201\004\000\334\100\000\001\301\000\007\000\336\000\000\001\036\000\200\000\044\000\000\000\004\007\000\000\000\144\157\146\151\154\145\000\004\017\000\000\000\057\137\155\141\156\151\146\145\163\164\056\154\165\141\000\003\000\000\000\000\000\000\360\077\004\002\000\000\000\057\000\004\007\000\000\000\151\160\141\151\162\163\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\142\141\163\145\156\141\155\145\000\004\013\000\000\000\137\124\105\115\120\114\101\124\105\123\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\021\000\000\000\154\157\141\144\164\145\155\160\154\141\164\145\146\151\154\145\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\005\000\000\000\146\151\154\145\000\004\003\000\000\000\157\163\000\004\007\000\000\000\151\163\146\151\154\145\000\004\010\000\000\000\166\145\162\163\151\157\156\000\004\007\000\000\000\160\162\151\156\164\146\000\004\021\000\000\000\137\120\122\105\115\101\113\105\137\126\105\122\123\111\117\116\000\004\005\000\000\000\150\145\154\160\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\006\000\000\000\160\162\151\156\164\000\004\006\000\000\000\145\162\162\157\162\000\004\024\000\000\000\116\157\040\120\162\145\155\141\153\145\040\163\143\162\151\160\164\040\050\000\004\011\000\000\000\051\040\146\157\165\156\144\041\000\003\000\000\000\000\000\000\000\100\004\010\000\000\000\141\143\164\151\157\156\163\000\004\005\000\000\000\156\141\155\145\000\004\030\000\000\000\105\162\162\157\162\072\040\156\157\040\163\165\143\150\040\141\143\164\151\157\156\040\047\000\004\002\000\000\000\047\000\003\000\000\000\000\000\000\000\000\004\003\000\000\000\157\153\000\004\004\000\000\000\145\162\162\000\004\015\000\000\000\143\150\145\143\153\157\160\164\151\157\156\163\000\004\010\000\000\000\105\162\162\157\162\072\040\000\004\013\000\000\000\143\150\145\143\153\164\157\157\154\163\000\004\016\000\000\000\143\150\145\143\153\160\162\157\152\145\143\164\163\000\004\011\000\000\000\144\157\141\143\164\151\157\156\000\000\000\000\000\251\000\000\000\114\000\000\000\114\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\117\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\124\000\000\000\126\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\132\000\000\000\133\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\153\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\155\000\000\000\155\000\000\000\160\000\000\000\160\000\000\000\160\000\000\000\160\000\000\000\161\000\000\000\161\000\000\000\162\000\000\000\162\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\172\000\000\000\172\000\000\000\200\000\000\000\200\000\000\000\200\000\000\000\200\000\000\000\200\000\000\000\200\000\000\000\201\000\000\000\201\000\000\000\201\000\000\000\201\000\000\000\201\000\000\000\201\000\000\000\201\000\000\000\210\000\000\000\210\000\000\000\210\000\000\000\210\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\212\000\000\000\215\000\000\000\215\000\000\000\215\000\000\000\215\000\000\000\215\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\216\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\224\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\233\000\000\000\233\000\000\000\233\000\000\000\233\000\000\000\234\000\000\000\234\000\000\000\236\000\000\000\025\000\000\000\013\000\000\000\163\143\162\151\160\164\160\141\164\150\000\000\000\000\000\250\000\000\000\002\000\000\000\163\000\007\000\000\000\062\000\000\000\002\000\000\000\164\000\007\000\000\000\062\000\000\000\002\000\000\000\141\000\007\000\000\000\062\000\000\000\014\000\000\000\050\146\157\162\040\151\156\144\145\170\051\000\013\000\000\000\023\000\000\000\014\000\000\000\050\146\157\162\040\154\151\155\151\164\051\000\013\000\000\000\023\000\000\000\013\000\000\000\050\146\157\162\040\163\164\145\160\051\000\013\000\000\000\023\000\000\000\002\000\000\000\151\000\014\000\000\000\022\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\026\000\000\000\046\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\026\000\000\000\046\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\026\000\000\000\046\000\000\000\002\000\000\000\137\000\027\000\000\000\044\000\000\000\002\000\000\000\166\000\027\000\000\000\044\000\000\000\002\000\000\000\156\000\033\000\000\000\044\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\051\000\000\000\062\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\051\000\000\000\062\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\051\000\000\000\062\000\000\000\002\000\000\000\137\000\052\000\000\000\060\000\000\000\002\000\000\000\166\000\052\000\000\000\060\000\000\000\006\000\000\000\146\156\141\155\145\000\067\000\000\000\250\000\000\000\007\000\000\000\141\143\164\151\157\156\000\153\000\000\000\250\000\000\000\004\000\000\000\013\000\000\000\163\143\162\151\160\164\146\151\154\145\000\014\000\000\000\166\145\162\163\151\157\156\150\145\154\160\000\011\000\000\000\163\150\157\167\150\145\154\160\000\012\000\000\000\163\150\157\162\164\150\145\154\160\000\013\000\000\000\010\000\000\000\011\000\000\000\012\000\000\000\077\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\106\000\000\000\236\000\000\000\004\000\000\000\012\000\000\000\163\150\157\162\164\150\145\154\160\000\001\000\000\000\012\000\000\000\014\000\000\000\166\145\162\163\151\157\156\150\145\154\160\000\002\000\000\000\012\000\000\000\013\000\000\000\163\143\162\151\160\164\146\151\154\145\000\003\000\000\000\012\000\000\000\011\000\000\000\163\150\157\167\150\145\154\160\000\004\000\000\000\012\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\026\000\000\000\100\163\162\143\057\142\141\163\145\057\160\162\157\152\145\143\164\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\004\050\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\000\000\000\144\200\000\000\011\100\200\201\005\000\000\000\144\300\000\000\011\100\000\202\005\000\000\000\144\000\001\000\011\100\200\202\005\000\000\000\144\100\001\000\011\100\000\203\005\000\000\000\144\200\001\000\011\100\200\203\044\300\001\000\105\000\000\000\244\000\002\000\000\000\000\000\111\200\000\204\105\000\000\000\244\100\002\000\000\000\000\000\111\200\200\204\105\000\000\000\244\200\002\000\111\200\000\205\144\300\002\000\000\000\200\000\205\000\000\000\344\000\003\000\000\000\200\000\211\300\200\205\036\000\200\000\014\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\016\000\000\000\143\150\145\143\153\160\162\157\152\145\143\164\163\000\004\014\000\000\000\145\141\143\150\160\162\157\152\145\143\164\000\004\014\000\000\000\146\151\156\144\160\162\157\152\145\143\164\000\004\011\000\000\000\146\151\156\144\146\151\154\145\000\004\012\000\000\000\147\145\164\157\142\152\145\143\164\000\004\016\000\000\000\151\163\165\156\151\161\165\145\166\141\154\165\145\000\004\011\000\000\000\163\145\164\141\162\162\141\171\000\004\014\000\000\000\163\145\164\144\151\162\141\162\162\141\171\000\004\015\000\000\000\163\145\164\146\151\154\145\141\162\162\141\171\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\014\000\000\000\167\141\154\153\163\157\165\162\143\145\163\000\015\000\000\000\000\000\000\000\015\000\000\000\076\000\000\000\000\000\000\027\162\000\000\000\005\000\000\000\006\100\100\000\105\200\000\000\006\100\000\000\105\300\000\000\205\000\001\000\134\000\001\001\026\000\031\200\206\101\301\002\224\001\000\003\027\200\101\003\026\100\001\200\203\001\000\003\301\301\001\000\006\002\302\002\101\102\002\000\325\101\202\003\236\001\200\001\206\201\302\002\232\001\000\000\026\300\000\200\206\201\302\002\224\001\000\003\027\200\101\003\026\100\001\200\203\001\000\003\301\301\001\000\006\002\302\002\101\302\002\000\325\101\202\003\236\001\200\001\205\301\000\000\306\101\301\002\234\001\001\001\026\300\021\200\305\002\000\000\306\002\303\005\000\003\000\005\334\202\000\001\006\103\303\005\032\103\000\000\026\100\001\200\003\003\000\006\101\203\003\000\206\003\102\005\301\303\003\000\125\303\203\006\036\003\200\001\006\003\104\000\032\003\000\000\026\200\003\200\005\103\004\000\006\203\104\006\106\003\104\000\206\103\303\005\034\203\200\001\032\103\000\000\026\300\001\200\003\003\000\006\101\303\004\000\206\003\105\000\301\103\005\000\006\104\303\005\101\204\005\000\125\103\204\006\036\003\200\001\005\303\000\000\106\203\302\002\034\003\001\001\026\200\010\200\105\004\000\000\106\004\303\010\200\004\000\005\300\004\000\010\134\204\200\001\300\002\200\010\106\304\305\005\132\104\000\000\026\300\001\200\103\004\200\010\201\204\003\000\306\004\102\005\001\005\006\000\100\005\000\010\201\105\006\000\225\204\005\011\136\004\200\001\106\204\106\000\132\004\000\000\026\200\003\200\105\104\004\000\106\204\304\010\206\204\106\000\306\304\305\005\134\204\200\001\132\104\000\000\026\300\001\200\103\004\200\010\201\304\004\000\306\004\105\000\001\105\005\000\106\305\305\005\201\205\005\000\225\204\005\011\136\004\200\001\041\203\000\000\026\200\366\177\241\201\000\000\026\100\355\177\141\200\000\000\026\000\346\177\102\000\200\000\136\000\000\001\036\000\200\000\033\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\011\000\000\000\160\162\157\152\145\143\164\163\000\003\000\000\000\000\000\000\000\000\004\013\000\000\000\163\157\154\165\164\151\157\156\040\047\000\004\005\000\000\000\156\141\155\145\000\004\035\000\000\000\047\040\156\145\145\144\163\040\141\164\040\154\145\141\163\164\040\157\156\145\040\160\162\157\152\145\143\164\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\027\000\000\000\047\040\156\145\145\144\163\040\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\012\000\000\000\160\162\157\152\145\143\164\040\047\000\004\023\000\000\000\047\040\156\145\145\144\163\040\141\040\154\141\156\147\165\141\147\145\000\004\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\004\005\000\000\000\164\150\145\040\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\032\000\000\000\040\141\143\164\151\157\156\040\144\157\145\163\040\156\157\164\040\163\165\160\160\157\162\164\040\000\004\012\000\000\000\040\160\162\157\152\145\143\164\163\000\004\005\000\000\000\153\151\156\144\000\004\042\000\000\000\047\040\156\145\145\144\163\040\141\040\153\151\156\144\040\151\156\040\143\157\156\146\151\147\165\162\141\164\151\157\156\040\047\000\004\002\000\000\000\047\000\004\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\000\000\000\000\162\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\023\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\033\000\000\000\033\000\000\000\033\000\000\000\033\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\052\000\000\000\067\000\000\000\033\000\000\000\070\000\000\000\020\000\000\000\072\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\021\000\000\000\007\000\000\000\141\143\164\151\157\156\000\004\000\000\000\161\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\007\000\000\000\157\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\007\000\000\000\157\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\007\000\000\000\157\000\000\000\002\000\000\000\137\000\010\000\000\000\155\000\000\000\004\000\000\000\163\154\156\000\010\000\000\000\155\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\042\000\000\000\155\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\042\000\000\000\155\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\042\000\000\000\155\000\000\000\002\000\000\000\137\000\043\000\000\000\153\000\000\000\004\000\000\000\160\162\152\000\043\000\000\000\153\000\000\000\004\000\000\000\143\146\147\000\047\000\000\000\153\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\105\000\000\000\153\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\105\000\000\000\153\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\105\000\000\000\153\000\000\000\002\000\000\000\137\000\106\000\000\000\151\000\000\000\010\000\000\000\143\146\147\156\141\155\145\000\106\000\000\000\151\000\000\000\000\000\000\000\000\000\000\000\106\000\000\000\125\000\000\000\000\001\000\003\006\000\000\000\101\000\000\000\244\000\000\000\000\000\200\000\000\000\000\000\236\000\000\001\036\000\200\000\001\000\000\000\003\000\000\000\000\000\000\000\000\001\000\000\000\000\000\000\000\110\000\000\000\124\000\000\000\002\000\000\006\035\000\000\000\004\000\000\000\014\000\100\000\010\000\000\000\004\000\000\000\104\000\200\000\106\100\300\000\124\000\200\000\031\100\000\000\026\200\004\200\004\000\200\000\006\100\100\000\104\000\000\000\006\100\000\000\105\200\000\000\106\300\300\000\200\000\000\000\134\200\000\001\205\000\001\000\300\000\200\000\005\101\001\000\100\001\000\000\034\001\000\001\234\100\000\000\206\200\101\000\111\200\000\203\206\300\101\000\111\200\200\203\136\000\000\001\036\000\200\000\010\000\000\000\003\000\000\000\000\000\000\360\077\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\004\015\000\000\000\163\145\164\155\145\164\141\164\141\142\154\145\000\004\015\000\000\000\147\145\164\155\145\164\141\164\141\142\154\145\000\004\005\000\000\000\156\141\155\145\000\004\007\000\000\000\142\154\157\143\153\163\000\000\000\000\000\035\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\120\000\000\000\120\000\000\000\121\000\000\000\121\000\000\000\122\000\000\000\124\000\000\000\002\000\000\000\004\000\000\000\160\162\152\000\015\000\000\000\034\000\000\000\007\000\000\000\155\145\162\147\145\144\000\021\000\000\000\034\000\000\000\002\000\000\000\002\000\000\000\151\000\004\000\000\000\163\154\156\000\006\000\000\000\107\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\125\000\000\000\002\000\000\000\004\000\000\000\163\154\156\000\000\000\000\000\005\000\000\000\002\000\000\000\151\000\001\000\000\000\005\000\000\000\000\000\000\000\000\000\000\000\135\000\000\000\146\000\000\000\000\001\000\015\026\000\000\000\113\000\100\000\134\200\000\001\000\000\200\000\105\100\000\000\205\200\000\000\134\000\001\001\026\300\002\200\205\101\000\000\306\301\300\002\234\001\001\001\026\100\001\200\306\002\101\005\313\002\300\005\334\202\000\001\027\000\200\005\026\000\000\200\236\002\000\001\241\201\000\000\026\300\375\177\141\200\000\000\026\100\374\177\036\000\200\000\005\000\000\000\004\006\000\000\000\154\157\167\145\162\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\005\000\000\000\156\141\155\145\000\000\000\000\000\026\000\000\000\136\000\000\000\136\000\000\000\136\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\142\000\000\000\140\000\000\000\143\000\000\000\137\000\000\000\144\000\000\000\146\000\000\000\013\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\025\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\006\000\000\000\025\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\006\000\000\000\025\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\006\000\000\000\025\000\000\000\002\000\000\000\137\000\007\000\000\000\023\000\000\000\004\000\000\000\163\154\156\000\007\000\000\000\023\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\012\000\000\000\023\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\012\000\000\000\023\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\012\000\000\000\023\000\000\000\002\000\000\000\137\000\013\000\000\000\021\000\000\000\004\000\000\000\160\162\152\000\013\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\157\000\000\000\165\000\000\000\000\002\000\011\016\000\000\000\205\000\000\000\306\100\100\000\234\000\001\001\026\200\001\200\305\201\000\000\306\301\300\003\000\002\000\003\334\201\000\001\027\100\200\003\026\000\000\200\236\001\000\001\241\200\000\000\026\200\375\177\036\000\200\000\004\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\146\151\154\145\163\000\004\005\000\000\000\160\141\164\150\000\004\015\000\000\000\147\145\164\145\170\164\145\156\163\151\157\156\000\000\000\000\000\016\000\000\000\160\000\000\000\160\000\000\000\160\000\000\000\160\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\162\000\000\000\160\000\000\000\163\000\000\000\165\000\000\000\007\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\015\000\000\000\012\000\000\000\145\170\164\145\156\163\151\157\156\000\000\000\000\000\015\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\015\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\015\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\015\000\000\000\002\000\000\000\137\000\004\000\000\000\013\000\000\000\006\000\000\000\146\156\141\155\145\000\004\000\000\000\013\000\000\000\000\000\000\000\000\000\000\000\200\000\000\000\231\000\000\000\000\001\000\005\041\000\000\000\127\000\100\000\026\100\000\200\027\100\100\000\026\200\000\200\205\200\000\000\106\300\100\001\026\100\000\200\205\200\000\000\106\000\101\001\027\100\100\000\026\100\001\200\205\100\001\000\300\000\200\000\234\200\000\001\127\100\100\001\026\000\000\200\103\000\200\000\203\000\000\001\132\100\000\000\026\000\002\200\027\000\100\000\026\100\000\200\201\200\001\000\026\000\001\200\027\100\100\000\026\100\000\200\201\300\001\000\026\000\000\200\201\000\002\000\300\000\200\000\000\001\000\001\336\000\200\001\036\000\200\000\011\000\000\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\021\000\000\000\103\165\162\162\145\156\164\103\157\156\164\141\151\156\145\162\000\004\025\000\000\000\103\165\162\162\145\156\164\103\157\156\146\151\147\165\162\141\164\151\157\156\000\004\005\000\000\000\164\171\160\145\000\004\036\000\000\000\156\157\040\141\143\164\151\166\145\040\163\157\154\165\164\151\157\156\040\157\162\040\160\162\157\152\145\143\164\000\004\023\000\000\000\156\157\040\141\143\164\151\166\145\040\163\157\154\165\164\151\157\156\000\004\056\000\000\000\156\157\040\141\143\164\151\166\145\040\163\157\154\165\164\151\157\156\054\040\160\162\157\152\145\143\164\054\040\157\162\040\143\157\156\146\151\147\165\162\141\164\151\157\156\000\000\000\000\000\041\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\204\000\000\000\204\000\000\000\204\000\000\000\206\000\000\000\206\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\212\000\000\000\215\000\000\000\216\000\000\000\216\000\000\000\217\000\000\000\217\000\000\000\220\000\000\000\220\000\000\000\221\000\000\000\221\000\000\000\222\000\000\000\222\000\000\000\224\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\231\000\000\000\003\000\000\000\002\000\000\000\164\000\000\000\000\000\040\000\000\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\000\000\000\000\040\000\000\000\004\000\000\000\155\163\147\000\022\000\000\000\040\000\000\000\000\000\000\000\000\000\000\000\242\000\000\000\270\000\000\000\000\003\000\027\053\000\000\000\301\000\000\000\005\101\000\000\105\201\000\000\034\001\001\001\026\000\010\200\105\102\000\000\206\302\100\004\134\002\001\001\026\200\006\200\205\103\000\000\306\003\101\004\234\003\001\001\026\000\005\200\305\104\001\000\306\204\301\011\000\005\200\006\100\005\000\011\334\204\200\001\003\005\000\012\232\000\000\000\026\000\001\200\100\005\000\001\200\005\200\011\134\205\000\001\000\005\200\012\026\000\000\200\006\005\200\011\027\100\000\012\026\000\001\200\314\300\301\001\030\300\200\203\026\100\000\200\102\005\000\000\136\005\000\001\241\203\000\000\026\000\372\177\141\202\000\000\026\200\370\177\041\201\000\000\026\000\367\177\002\001\200\000\036\001\000\001\036\000\200\000\010\000\000\000\003\000\000\000\000\000\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\003\000\000\000\000\000\000\360\077\000\000\000\000\053\000\000\000\243\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\251\000\000\000\252\000\000\000\252\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\255\000\000\000\260\000\000\000\260\000\000\000\261\000\000\000\262\000\000\000\262\000\000\000\262\000\000\000\262\000\000\000\246\000\000\000\263\000\000\000\245\000\000\000\264\000\000\000\244\000\000\000\265\000\000\000\267\000\000\000\267\000\000\000\270\000\000\000\025\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\052\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\052\000\000\000\003\000\000\000\146\156\000\000\000\000\000\052\000\000\000\006\000\000\000\143\157\165\156\164\000\001\000\000\000\052\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\050\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\050\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\050\000\000\000\002\000\000\000\137\000\005\000\000\000\046\000\000\000\004\000\000\000\163\154\156\000\005\000\000\000\046\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\010\000\000\000\046\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\010\000\000\000\046\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\010\000\000\000\046\000\000\000\002\000\000\000\137\000\011\000\000\000\044\000\000\000\004\000\000\000\160\162\152\000\011\000\000\000\044\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\014\000\000\000\044\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\014\000\000\000\044\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\014\000\000\000\044\000\000\000\002\000\000\000\137\000\015\000\000\000\042\000\000\000\010\000\000\000\143\146\147\156\141\155\145\000\015\000\000\000\042\000\000\000\004\000\000\000\143\146\147\000\022\000\000\000\042\000\000\000\004\000\000\000\164\163\164\000\023\000\000\000\042\000\000\000\000\000\000\000\000\000\000\000\301\000\000\000\336\000\000\000\000\004\000\012\036\000\000\000\005\001\000\000\006\101\100\002\100\001\000\000\034\301\000\001\032\101\000\000\026\300\000\200\205\201\000\000\300\001\200\002\001\302\000\000\234\101\200\001\206\101\000\002\232\101\000\000\026\100\000\200\212\001\000\000\011\201\201\000\244\001\000\000\000\000\000\003\000\000\200\002\000\000\200\001\000\000\000\002\000\000\200\000\232\000\000\000\026\300\000\200\300\001\000\003\000\002\000\001\101\002\001\000\334\101\200\001\306\101\000\002\336\001\000\001\036\000\200\000\005\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\157\142\152\145\143\164\000\004\006\000\000\000\145\162\162\157\162\000\003\000\000\000\000\000\000\010\100\003\000\000\000\000\000\000\024\100\001\000\000\000\000\000\000\000\313\000\000\000\327\000\000\000\005\002\000\012\045\000\000\000\205\000\000\000\300\000\000\000\234\200\000\001\027\100\100\001\026\200\002\200\205\200\000\000\300\000\000\000\234\000\001\001\026\300\000\200\304\001\000\000\000\002\000\003\114\302\300\000\334\101\200\001\241\200\000\000\026\100\376\177\026\300\004\200\205\000\001\000\206\100\101\001\300\000\000\000\004\001\000\001\234\300\200\001\310\000\200\000\000\000\000\001\032\100\000\000\026\300\000\200\205\200\001\000\304\000\200\000\000\001\200\000\234\100\200\001\205\100\000\000\206\300\101\001\304\000\200\001\004\001\000\002\306\000\201\001\000\001\000\000\234\100\200\001\036\000\200\000\010\000\000\000\004\005\000\000\000\164\171\160\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\160\141\151\162\163\000\003\000\000\000\000\000\000\360\077\004\010\000\000\000\160\162\145\155\141\153\145\000\004\013\000\000\000\143\150\145\143\153\166\141\154\165\145\000\004\006\000\000\000\145\162\162\157\162\000\004\007\000\000\000\151\156\163\145\162\164\000\000\000\000\000\045\000\000\000\314\000\000\000\314\000\000\000\314\000\000\000\314\000\000\000\314\000\000\000\315\000\000\000\315\000\000\000\315\000\000\000\315\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\316\000\000\000\315\000\000\000\316\000\000\000\317\000\000\000\321\000\000\000\321\000\000\000\321\000\000\000\321\000\000\000\321\000\000\000\321\000\000\000\321\000\000\000\322\000\000\000\322\000\000\000\323\000\000\000\323\000\000\000\323\000\000\000\323\000\000\000\325\000\000\000\325\000\000\000\325\000\000\000\325\000\000\000\325\000\000\000\325\000\000\000\325\000\000\000\327\000\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\044\000\000\000\006\000\000\000\144\145\160\164\150\000\000\000\000\000\044\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\010\000\000\000\017\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\010\000\000\000\017\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\010\000\000\000\017\000\000\000\002\000\000\000\137\000\011\000\000\000\015\000\000\000\002\000\000\000\166\000\011\000\000\000\015\000\000\000\005\000\000\000\011\000\000\000\144\157\151\156\163\145\162\164\000\004\000\000\000\145\162\162\000\010\000\000\000\141\154\154\157\167\145\144\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\036\000\000\000\302\000\000\000\302\000\000\000\302\000\000\000\302\000\000\000\303\000\000\000\303\000\000\000\304\000\000\000\304\000\000\000\304\000\000\000\304\000\000\000\307\000\000\000\307\000\000\000\307\000\000\000\310\000\000\000\310\000\000\000\327\000\000\000\327\000\000\000\327\000\000\000\327\000\000\000\327\000\000\000\327\000\000\000\331\000\000\000\331\000\000\000\332\000\000\000\332\000\000\000\332\000\000\000\332\000\000\000\335\000\000\000\335\000\000\000\336\000\000\000\007\000\000\000\006\000\000\000\143\164\171\160\145\000\000\000\000\000\035\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\035\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\035\000\000\000\010\000\000\000\141\154\154\157\167\145\144\000\000\000\000\000\035\000\000\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\000\000\000\035\000\000\000\004\000\000\000\145\162\162\000\004\000\000\000\035\000\000\000\011\000\000\000\144\157\151\156\163\145\162\164\000\025\000\000\000\035\000\000\000\000\000\000\000\000\000\000\000\350\000\000\000\373\000\000\000\000\004\000\011\020\000\000\000\012\001\000\000\144\001\000\000\000\000\200\001\000\000\000\002\107\001\000\000\105\001\000\000\200\001\000\001\134\101\000\001\105\101\000\000\106\201\300\002\200\001\000\000\300\001\200\000\000\002\000\002\135\001\000\002\136\001\000\000\036\000\200\000\003\000\000\000\004\015\000\000\000\155\141\153\145\141\142\163\157\154\165\164\145\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\011\000\000\000\163\145\164\141\162\162\141\171\000\001\000\000\000\000\000\000\000\353\000\000\000\367\000\000\000\002\001\000\010\043\000\000\000\105\000\000\000\200\000\000\000\134\200\000\001\027\100\300\000\026\100\002\200\105\200\000\000\200\000\000\000\134\000\001\001\026\200\000\200\205\301\000\000\300\001\200\002\234\101\000\001\141\200\000\000\026\200\376\177\026\200\004\200\113\000\101\000\301\100\001\000\134\200\200\001\132\000\000\000\026\100\001\200\105\300\000\000\204\000\000\000\300\000\000\000\234\000\000\001\134\100\000\000\026\300\001\200\105\100\000\000\106\200\301\000\204\000\200\000\305\300\001\000\306\000\302\001\000\001\000\000\334\000\000\001\134\100\000\000\036\000\200\000\011\000\000\000\004\005\000\000\000\164\171\160\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\160\141\151\162\163\000\004\015\000\000\000\155\141\153\145\141\142\163\157\154\165\164\145\000\004\005\000\000\000\146\151\156\144\000\004\002\000\000\000\052\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\000\000\000\000\043\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\356\000\000\000\356\000\000\000\356\000\000\000\355\000\000\000\356\000\000\000\357\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\362\000\000\000\362\000\000\000\362\000\000\000\362\000\000\000\362\000\000\000\362\000\000\000\364\000\000\000\364\000\000\000\364\000\000\000\364\000\000\000\364\000\000\000\364\000\000\000\364\000\000\000\364\000\000\000\367\000\000\000\006\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\042\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\010\000\000\000\016\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\010\000\000\000\016\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\010\000\000\000\016\000\000\000\002\000\000\000\137\000\011\000\000\000\014\000\000\000\005\000\000\000\151\164\145\155\000\011\000\000\000\014\000\000\000\002\000\000\000\012\000\000\000\155\141\164\143\150\146\165\156\143\000\007\000\000\000\162\145\163\165\154\164\000\020\000\000\000\351\000\000\000\367\000\000\000\367\000\000\000\367\000\000\000\353\000\000\000\371\000\000\000\371\000\000\000\371\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\373\000\000\000\005\000\000\000\006\000\000\000\143\164\171\160\145\000\000\000\000\000\017\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\017\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\017\000\000\000\012\000\000\000\155\141\164\143\150\146\165\156\143\000\000\000\000\000\017\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\017\000\000\000\000\000\000\000\000\000\000\000\375\000\000\000\377\000\000\000\001\003\000\010\011\000\000\000\304\000\000\000\000\001\000\000\100\001\200\000\200\001\000\001\305\001\000\000\306\101\300\003\335\000\200\002\336\000\000\000\036\000\200\000\002\000\000\000\004\003\000\000\000\157\163\000\004\012\000\000\000\155\141\164\143\150\144\151\162\163\000\000\000\000\000\011\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\377\000\000\000\003\000\000\000\006\000\000\000\143\164\171\160\145\000\000\000\000\000\010\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\010\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\010\000\000\000\001\000\000\000\017\000\000\000\144\157\155\141\164\143\150\145\144\141\162\162\141\171\000\000\000\000\000\001\001\000\000\003\001\000\000\001\003\000\010\011\000\000\000\304\000\000\000\000\001\000\000\100\001\200\000\200\001\000\001\305\001\000\000\306\101\300\003\335\000\200\002\336\000\000\000\036\000\200\000\002\000\000\000\004\003\000\000\000\157\163\000\004\013\000\000\000\155\141\164\143\150\146\151\154\145\163\000\000\000\000\000\011\000\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\002\001\000\000\003\001\000\000\003\000\000\000\006\000\000\000\143\164\171\160\145\000\000\000\000\000\010\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\010\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\010\000\000\000\001\000\000\000\017\000\000\000\144\157\155\141\164\143\150\145\144\141\162\162\141\171\000\000\000\000\000\014\001\000\000\036\001\000\000\000\004\000\011\035\000\000\000\005\001\000\000\006\101\100\002\100\001\000\000\034\301\000\001\032\101\000\000\026\300\000\200\205\201\000\000\300\001\200\002\001\302\000\000\234\101\200\001\232\000\000\000\026\100\003\200\205\001\000\000\206\001\101\003\300\001\000\001\000\002\200\001\234\301\200\001\100\001\200\003\200\000\000\003\232\100\000\000\026\300\000\200\205\201\000\000\300\001\200\002\001\302\000\000\234\101\200\001\011\201\200\000\206\101\000\002\236\001\000\001\036\000\200\000\005\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\157\142\152\145\143\164\000\004\006\000\000\000\145\162\162\157\162\000\003\000\000\000\000\000\000\020\100\004\013\000\000\000\143\150\145\143\153\166\141\154\165\145\000\000\000\000\000\035\000\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\017\001\000\000\017\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\020\001\000\000\024\001\000\000\024\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\026\001\000\000\026\001\000\000\027\001\000\000\027\001\000\000\027\001\000\000\027\001\000\000\032\001\000\000\035\001\000\000\035\001\000\000\036\001\000\000\006\000\000\000\006\000\000\000\143\164\171\160\145\000\000\000\000\000\034\000\000\000\012\000\000\000\146\151\145\154\144\156\141\155\145\000\000\000\000\000\034\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\034\000\000\000\010\000\000\000\141\154\154\157\167\145\144\000\000\000\000\000\034\000\000\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\000\000\000\034\000\000\000\004\000\000\000\145\162\162\000\004\000\000\000\034\000\000\000\000\000\000\000\000\000\000\000\047\001\000\000\114\001\000\000\001\006\000\027\126\000\000\000\213\001\300\001\234\201\000\001\305\101\000\000\013\202\300\001\201\302\000\000\034\202\200\001\113\002\301\001\301\102\001\000\001\203\001\000\134\202\000\002\200\002\200\001\334\201\000\002\031\000\201\203\026\100\001\200\000\002\000\001\100\002\000\000\200\002\200\003\301\002\002\000\000\003\000\002\034\102\200\002\005\102\002\000\100\002\200\000\034\002\001\001\026\200\006\200\113\203\102\006\300\003\200\001\134\203\200\001\132\003\000\000\026\100\005\200\113\303\102\006\301\003\003\000\014\104\101\003\134\303\000\002\232\003\000\000\026\300\003\200\313\003\101\006\101\104\001\000\200\004\000\007\334\203\000\002\006\304\203\002\032\104\000\000\026\000\002\200\111\101\303\007\004\004\000\000\100\004\000\000\200\004\200\000\300\004\000\001\000\005\200\007\114\105\101\002\200\005\200\002\034\104\200\003\041\202\000\000\026\200\370\177\005\102\002\000\100\002\200\000\034\002\001\001\026\100\004\200\113\203\102\006\300\003\200\001\134\203\200\001\132\003\000\000\026\000\003\200\113\303\102\006\301\303\000\000\014\104\101\003\102\004\200\000\134\203\200\002\132\103\000\000\026\100\001\200\100\003\000\001\200\003\000\000\300\003\000\006\001\204\003\000\114\104\101\002\134\103\200\002\041\202\000\000\026\300\372\177\031\000\201\203\026\100\001\200\000\002\000\001\100\002\000\000\200\002\200\003\301\302\003\000\000\003\000\002\034\102\200\002\036\000\200\000\020\000\000\000\004\004\000\000\000\154\145\156\000\004\004\000\000\000\151\151\146\000\004\011\000\000\000\145\156\144\163\167\151\164\150\000\004\002\000\000\000\057\000\004\004\000\000\000\163\165\142\000\003\000\000\000\000\000\000\360\077\003\000\000\000\000\000\000\000\300\003\000\000\000\000\000\000\000\000\004\013\000\000\000\107\162\157\165\160\123\164\141\162\164\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\163\164\141\162\164\163\167\151\164\150\000\004\005\000\000\000\146\151\156\144\000\004\006\000\000\000\133\136\056\135\057\000\001\001\004\012\000\000\000\107\162\157\165\160\111\164\145\155\000\004\011\000\000\000\107\162\157\165\160\105\156\144\000\000\000\000\000\126\000\000\000\050\001\000\000\050\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\054\001\000\000\054\001\000\000\055\001\000\000\055\001\000\000\055\001\000\000\055\001\000\000\055\001\000\000\055\001\000\000\061\001\000\000\061\001\000\000\061\001\000\000\061\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\066\001\000\000\066\001\000\000\067\001\000\000\067\001\000\000\067\001\000\000\067\001\000\000\070\001\000\000\070\001\000\000\070\001\000\000\071\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\061\001\000\000\076\001\000\000\102\001\000\000\102\001\000\000\102\001\000\000\102\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\102\001\000\000\105\001\000\000\111\001\000\000\111\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\114\001\000\000\025\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\125\000\000\000\006\000\000\000\146\151\154\145\163\000\000\000\000\000\125\000\000\000\003\000\000\000\146\156\000\000\000\000\000\125\000\000\000\006\000\000\000\147\162\157\165\160\000\000\000\000\000\125\000\000\000\012\000\000\000\156\145\163\164\154\145\166\145\154\000\000\000\000\000\125\000\000\000\011\000\000\000\146\151\156\151\163\150\145\144\000\000\000\000\000\125\000\000\000\011\000\000\000\147\162\157\165\160\154\145\156\000\002\000\000\000\125\000\000\000\006\000\000\000\147\156\141\155\145\000\014\000\000\000\125\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\027\000\000\000\065\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\027\000\000\000\065\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\027\000\000\000\065\000\000\000\002\000\000\000\137\000\030\000\000\000\063\000\000\000\006\000\000\000\146\156\141\155\145\000\030\000\000\000\063\000\000\000\002\000\000\000\137\000\041\000\000\000\063\000\000\000\006\000\000\000\163\160\154\151\164\000\041\000\000\000\063\000\000\000\011\000\000\000\163\165\142\147\162\157\165\160\000\047\000\000\000\063\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\070\000\000\000\115\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\070\000\000\000\115\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\070\000\000\000\115\000\000\000\002\000\000\000\137\000\071\000\000\000\113\000\000\000\006\000\000\000\146\156\141\155\145\000\071\000\000\000\113\000\000\000\001\000\000\000\014\000\000\000\167\141\154\153\163\157\165\162\143\145\163\000\000\000\000\000\117\001\000\000\121\001\000\000\001\003\000\012\011\000\000\000\304\000\000\000\000\001\000\000\100\001\200\000\200\001\000\001\301\001\000\000\001\102\000\000\112\002\000\000\334\100\200\003\036\000\200\000\002\000\000\000\004\001\000\000\000\000\003\000\000\000\000\000\000\360\277\000\000\000\000\011\000\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\121\001\000\000\003\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\010\000\000\000\006\000\000\000\146\151\154\145\163\000\000\000\000\000\010\000\000\000\003\000\000\000\146\156\000\000\000\000\000\010\000\000\000\001\000\000\000\014\000\000\000\167\141\154\153\163\157\165\162\143\145\163\000\050\000\000\000\015\000\000\000\076\000\000\000\015\000\000\000\106\000\000\000\125\000\000\000\106\000\000\000\135\000\000\000\146\000\000\000\135\000\000\000\157\000\000\000\165\000\000\000\157\000\000\000\200\000\000\000\231\000\000\000\200\000\000\000\242\000\000\000\270\000\000\000\242\000\000\000\301\000\000\000\336\000\000\000\301\000\000\000\373\000\000\000\375\000\000\000\377\000\000\000\377\000\000\000\375\000\000\000\001\001\000\000\003\001\000\000\003\001\000\000\001\001\000\000\014\001\000\000\036\001\000\000\014\001\000\000\114\001\000\000\114\001\000\000\117\001\000\000\121\001\000\000\121\001\000\000\117\001\000\000\121\001\000\000\002\000\000\000\017\000\000\000\144\157\155\141\164\143\150\145\144\141\162\162\141\171\000\026\000\000\000\047\000\000\000\014\000\000\000\167\141\154\153\163\157\165\162\143\145\163\000\043\000\000\000\047\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\025\000\000\000\100\163\162\143\057\142\141\163\145\057\143\157\156\146\151\147\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\005\043\000\000\000\012\300\000\000\011\100\100\200\011\100\100\201\011\100\300\201\105\000\001\000\244\000\000\000\111\200\200\202\144\100\000\000\000\000\000\000\205\000\001\000\344\200\000\000\000\000\200\000\211\300\000\203\205\000\001\000\344\300\000\000\000\000\200\000\211\300\200\203\205\000\001\000\344\000\001\000\211\300\000\204\244\100\001\000\305\000\001\000\044\201\001\000\000\000\000\001\311\000\201\204\305\000\001\000\044\301\001\000\311\000\001\205\305\000\001\000\044\001\002\000\311\000\201\205\305\000\001\000\044\101\002\000\311\000\001\206\036\000\200\000\015\000\000\000\004\007\000\000\000\142\154\157\143\153\163\000\001\001\004\011\000\000\000\153\145\171\167\157\162\144\163\000\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\013\000\000\000\145\141\143\150\143\157\156\146\151\147\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\004\016\000\000\000\147\145\164\146\151\154\145\143\157\156\146\151\147\000\004\020\000\000\000\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\000\004\011\000\000\000\147\145\164\154\151\156\153\163\000\004\012\000\000\000\147\145\164\157\142\152\144\151\162\000\004\012\000\000\000\147\145\164\164\141\162\147\145\164\000\004\020\000\000\000\151\163\153\145\171\167\157\162\144\163\155\141\164\143\150\000\012\000\000\000\000\000\000\000\030\000\000\000\044\000\000\000\000\001\000\004\011\000\000\000\101\000\000\000\206\100\100\000\206\200\100\001\344\000\000\000\000\000\200\000\000\000\000\001\000\000\000\000\336\000\000\001\036\000\200\000\003\000\000\000\003\000\000\000\000\000\000\000\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\001\000\000\000\000\000\000\000\033\000\000\000\043\000\000\000\003\000\000\004\033\000\000\000\004\000\000\000\014\000\100\000\010\000\000\000\004\000\000\000\104\000\200\000\124\000\200\000\031\100\000\000\026\200\003\200\004\000\000\001\006\100\100\000\104\000\200\000\204\000\000\000\106\200\200\000\011\100\000\201\005\300\000\000\006\000\101\000\104\000\000\001\204\000\200\000\304\000\000\000\206\300\000\001\035\000\200\001\036\000\000\000\026\200\000\200\004\000\000\001\006\100\100\000\011\100\101\201\036\000\200\000\006\000\000\000\003\000\000\000\000\000\000\360\077\004\007\000\000\000\146\151\154\164\145\162\000\004\007\000\000\000\143\157\156\146\151\147\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\000\000\000\000\000\033\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\043\000\000\000\000\000\000\000\003\000\000\000\002\000\000\000\151\000\002\000\000\000\164\000\004\000\000\000\160\162\152\000\011\000\000\000\031\000\000\000\032\000\000\000\032\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\044\000\000\000\003\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\010\000\000\000\002\000\000\000\151\000\001\000\000\000\010\000\000\000\002\000\000\000\164\000\003\000\000\000\010\000\000\000\000\000\000\000\000\000\000\000\056\000\000\000\071\000\000\000\001\002\000\012\035\000\000\000\205\000\000\000\300\000\200\000\234\000\001\001\026\100\005\200\304\001\000\000\306\101\201\003\332\101\000\000\026\100\004\200\305\101\000\000\000\002\000\003\334\201\000\001\027\200\300\003\026\300\002\200\306\101\001\000\332\101\000\000\026\100\000\200\312\001\000\000\011\300\201\002\305\201\000\000\306\301\300\003\006\102\001\000\100\002\000\003\334\201\200\001\011\300\201\002\026\000\000\200\011\200\201\002\241\200\000\000\026\300\371\177\036\000\200\000\004\000\000\000\004\006\000\000\000\160\141\151\162\163\000\004\005\000\000\000\164\171\160\145\000\004\006\000\000\000\164\141\142\154\145\000\004\005\000\000\000\152\157\151\156\000\000\000\000\000\035\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\065\000\000\000\057\000\000\000\067\000\000\000\071\000\000\000\007\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\034\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\034\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\034\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\034\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\034\000\000\000\006\000\000\000\146\151\145\154\144\000\004\000\000\000\032\000\000\000\006\000\000\000\166\141\154\165\145\000\004\000\000\000\032\000\000\000\001\000\000\000\007\000\000\000\156\157\143\157\160\171\000\000\000\000\000\073\000\000\000\253\000\000\000\001\002\000\026\020\001\000\000\206\000\100\000\232\000\000\000\026\000\000\200\006\000\100\000\205\100\000\000\300\000\000\000\234\200\000\001\333\100\200\000\026\000\000\200\301\200\000\000\006\301\100\001\006\301\000\002\032\001\000\000\026\000\000\200\036\001\000\001\105\001\001\000\106\101\301\002\134\201\200\000\111\101\000\203\212\001\000\000\304\001\000\000\000\002\000\003\106\302\101\000\334\101\200\001\305\001\002\000\006\302\101\000\006\102\102\004\334\001\001\001\026\200\002\200\005\003\001\000\006\203\102\006\106\303\302\005\200\003\200\002\034\203\200\001\032\003\000\000\026\300\000\200\004\003\000\000\100\003\000\003\200\003\200\005\034\103\200\001\341\201\000\000\026\200\374\177\304\001\000\000\000\002\000\003\100\002\000\000\334\101\200\001\306\001\103\003\332\101\000\000\026\100\001\200\305\101\003\000\306\201\303\003\006\302\103\000\101\002\004\000\334\201\200\001\211\301\001\206\305\001\002\000\006\102\102\000\334\001\001\001\026\200\002\200\005\003\001\000\006\203\102\006\106\303\302\005\200\003\200\002\034\203\200\001\032\003\000\000\026\300\000\200\004\003\000\000\100\003\000\003\200\003\200\005\034\103\200\001\341\201\000\000\026\200\374\177\312\001\000\000\005\002\002\000\106\102\104\003\034\002\001\001\026\000\005\200\102\003\000\000\205\003\002\000\306\203\104\003\234\003\001\001\026\200\001\200\127\200\004\006\026\000\000\200\102\103\000\000\102\003\200\000\132\003\000\000\026\000\000\200\026\100\000\200\241\203\000\000\026\200\375\177\132\103\000\000\026\000\001\200\205\303\004\000\206\003\105\007\300\003\200\003\000\004\000\006\234\103\200\001\041\202\000\000\026\000\372\177\211\301\201\210\005\102\005\000\105\002\001\000\106\202\305\004\034\002\001\001\026\300\014\200\106\303\105\006\127\100\303\006\026\100\001\200\106\303\105\006\127\000\306\006\026\200\000\200\106\303\105\006\027\100\306\006\026\300\007\200\127\200\306\005\026\100\007\200\127\300\303\005\026\300\006\200\105\303\006\000\206\303\002\003\134\203\000\001\027\300\304\006\026\100\003\200\105\003\002\000\206\303\002\003\134\003\001\001\026\200\001\200\206\304\002\003\305\104\003\000\306\004\307\011\006\205\106\000\100\005\200\010\334\204\200\001\211\304\004\010\141\203\000\000\026\200\375\177\026\000\002\200\106\303\002\003\132\003\000\000\026\100\001\200\105\103\003\000\106\003\307\006\206\203\106\000\306\303\002\003\134\203\200\001\211\101\203\005\106\103\107\006\132\003\000\000\026\300\001\200\106\303\002\003\205\003\002\000\300\003\200\006\234\003\001\001\026\000\000\200\111\203\107\011\241\203\000\000\026\000\377\177\041\202\000\000\026\100\362\177\006\302\100\001\011\202\201\001\211\101\200\217\211\001\000\200\006\002\110\003\127\100\110\004\026\200\000\200\006\002\110\003\027\200\110\004\026\100\002\200\005\302\010\000\006\002\111\004\032\002\000\000\026\100\004\200\005\002\001\000\105\302\010\000\106\002\311\004\006\102\002\004\211\001\202\222\026\300\002\200\006\002\110\003\027\200\111\004\026\000\002\200\005\302\010\000\006\302\111\004\032\002\000\000\026\000\001\200\005\002\001\000\105\302\010\000\106\302\311\004\006\102\002\004\211\001\202\222\005\002\001\000\006\002\112\004\105\102\012\000\006\102\002\004\106\202\112\004\132\102\000\000\026\000\000\200\101\302\012\000\206\102\111\003\232\002\000\000\026\300\000\200\206\102\111\003\206\202\112\005\133\102\000\005\026\300\377\177\205\002\001\000\206\102\113\005\300\002\000\003\001\203\013\000\100\003\200\004\234\202\000\002\211\201\002\226\205\002\001\000\206\102\113\005\300\002\000\003\001\003\014\000\100\003\200\004\234\202\000\002\211\201\202\227\205\002\001\000\206\202\114\005\300\002\000\003\234\202\000\001\211\201\202\230\206\302\114\004\232\102\000\000\026\000\000\200\200\002\200\004\027\000\115\005\026\100\011\200\306\002\113\003\005\103\003\000\006\203\115\006\106\003\113\003\106\103\315\006\201\303\015\000\034\203\200\001\311\002\203\232\306\002\113\003\005\103\003\000\006\203\115\006\106\003\113\003\106\003\316\006\201\303\015\000\034\203\200\001\311\002\003\234\306\302\113\003\005\103\003\000\006\203\115\006\106\303\113\003\106\103\315\006\201\303\015\000\034\203\200\001\311\002\203\232\306\302\113\003\005\103\003\000\006\203\115\006\106\303\113\003\106\003\316\006\201\303\015\000\034\203\200\001\311\002\003\234\305\102\003\000\306\202\315\005\006\103\114\003\101\303\015\000\334\202\200\001\211\301\202\230\236\001\000\001\036\000\200\000\071\000\000\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\015\000\000\000\147\145\164\155\145\164\141\164\141\142\154\145\000\004\001\000\000\000\000\004\013\000\000\000\137\137\143\146\147\143\141\143\150\145\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\017\000\000\000\147\145\164\141\143\164\151\166\145\164\145\162\155\163\000\004\007\000\000\000\143\157\156\146\151\147\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\007\000\000\000\151\160\141\151\162\163\000\004\007\000\000\000\142\154\157\143\153\163\000\004\020\000\000\000\151\163\153\145\171\167\157\162\144\163\155\141\164\143\150\000\004\011\000\000\000\153\145\171\167\157\162\144\163\000\004\007\000\000\000\157\142\152\144\151\162\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\010\000\000\000\142\141\163\145\144\151\162\000\004\004\000\000\000\157\142\152\000\004\006\000\000\000\146\151\154\145\163\000\004\011\000\000\000\145\170\143\154\165\144\145\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\006\000\000\000\160\141\151\162\163\000\004\007\000\000\000\146\151\145\154\144\163\000\004\005\000\000\000\153\151\156\144\000\004\010\000\000\000\144\151\162\154\151\163\164\000\004\011\000\000\000\146\151\154\145\154\151\163\164\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\005\000\000\000\164\171\160\145\000\004\014\000\000\000\147\145\164\162\145\154\141\164\151\166\145\000\004\010\000\000\000\151\163\146\154\141\147\163\000\001\001\004\005\000\000\000\156\141\155\145\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\003\000\000\000\143\143\000\004\005\000\000\000\164\157\157\154\000\004\003\000\000\000\103\043\000\004\007\000\000\000\144\157\164\156\145\164\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\014\000\000\000\164\141\162\147\145\164\163\164\171\154\145\000\004\006\000\000\000\154\151\156\165\170\000\004\014\000\000\000\142\165\151\154\144\164\141\162\147\145\164\000\004\012\000\000\000\147\145\164\164\141\162\147\145\164\000\004\006\000\000\000\142\165\151\154\144\000\004\013\000\000\000\154\151\156\153\164\141\162\147\145\164\000\004\005\000\000\000\154\151\156\153\000\004\013\000\000\000\157\142\152\145\143\164\163\144\151\162\000\004\012\000\000\000\147\145\164\157\142\152\144\151\162\000\004\012\000\000\000\160\141\164\150\163\164\171\154\145\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\012\000\000\000\144\151\162\145\143\164\157\162\171\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\002\000\000\000\134\000\004\011\000\000\000\146\165\154\154\160\141\164\150\000\000\000\000\000\020\001\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\102\000\000\000\102\000\000\000\103\000\000\000\103\000\000\000\104\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\111\000\000\000\121\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\124\000\000\000\127\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\136\000\000\000\136\000\000\000\136\000\000\000\136\000\000\000\134\000\000\000\137\000\000\000\143\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\145\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\150\000\000\000\150\000\000\000\150\000\000\000\146\000\000\000\150\000\000\000\153\000\000\000\153\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\144\000\000\000\155\000\000\000\157\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\165\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\166\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\167\000\000\000\166\000\000\000\167\000\000\000\170\000\000\000\172\000\000\000\172\000\000\000\172\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\201\000\000\000\201\000\000\000\201\000\000\000\202\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\204\000\000\000\203\000\000\000\204\000\000\000\161\000\000\000\206\000\000\000\213\000\000\000\213\000\000\000\214\000\000\000\215\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\220\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\221\000\000\000\222\000\000\000\222\000\000\000\222\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\223\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\227\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\231\000\000\000\231\000\000\000\231\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\235\000\000\000\235\000\000\000\235\000\000\000\235\000\000\000\235\000\000\000\235\000\000\000\235\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\237\000\000\000\237\000\000\000\237\000\000\000\237\000\000\000\237\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\242\000\000\000\242\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\245\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\246\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\252\000\000\000\253\000\000\000\060\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\017\001\000\000\010\000\000\000\143\146\147\156\141\155\145\000\000\000\000\000\017\001\000\000\005\000\000\000\155\145\164\141\000\007\000\000\000\017\001\000\000\011\000\000\000\143\141\143\150\145\153\145\171\000\012\000\000\000\017\001\000\000\004\000\000\000\143\146\147\000\014\000\000\000\017\001\000\000\006\000\000\000\164\145\162\155\163\000\022\000\000\000\017\001\000\000\004\000\000\000\143\146\147\000\024\000\000\000\017\001\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\034\000\000\000\052\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\034\000\000\000\052\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\034\000\000\000\052\000\000\000\002\000\000\000\137\000\035\000\000\000\050\000\000\000\004\000\000\000\142\154\153\000\035\000\000\000\050\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\072\000\000\000\110\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\072\000\000\000\110\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\072\000\000\000\110\000\000\000\002\000\000\000\137\000\073\000\000\000\106\000\000\000\004\000\000\000\142\154\153\000\073\000\000\000\106\000\000\000\006\000\000\000\146\151\154\145\163\000\111\000\000\000\017\001\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\114\000\000\000\144\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\114\000\000\000\144\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\114\000\000\000\144\000\000\000\002\000\000\000\137\000\115\000\000\000\142\000\000\000\006\000\000\000\146\156\141\155\145\000\115\000\000\000\142\000\000\000\011\000\000\000\145\170\143\154\165\144\145\144\000\116\000\000\000\142\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\121\000\000\000\133\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\121\000\000\000\133\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\121\000\000\000\133\000\000\000\002\000\000\000\137\000\122\000\000\000\131\000\000\000\010\000\000\000\145\170\143\154\165\144\145\000\122\000\000\000\131\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\151\000\000\000\240\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\151\000\000\000\240\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\151\000\000\000\240\000\000\000\005\000\000\000\156\141\155\145\000\152\000\000\000\236\000\000\000\006\000\000\000\146\151\145\154\144\000\152\000\000\000\236\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\177\000\000\000\211\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\177\000\000\000\211\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\177\000\000\000\211\000\000\000\002\000\000\000\151\000\200\000\000\000\207\000\000\000\002\000\000\000\160\000\200\000\000\000\207\000\000\000\007\000\000\000\166\141\154\165\145\163\000\227\000\000\000\236\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\232\000\000\000\236\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\232\000\000\000\236\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\232\000\000\000\236\000\000\000\002\000\000\000\137\000\233\000\000\000\234\000\000\000\005\000\000\000\146\154\141\147\000\233\000\000\000\234\000\000\000\007\000\000\000\141\143\164\151\157\156\000\304\000\000\000\017\001\000\000\014\000\000\000\164\141\162\147\145\164\163\164\171\154\145\000\310\000\000\000\017\001\000\000\012\000\000\000\160\141\164\150\163\164\171\154\145\000\346\000\000\000\017\001\000\000\001\000\000\000\013\000\000\000\143\157\160\171\146\151\145\154\144\163\000\000\000\000\000\255\000\000\000\307\000\000\000\001\003\000\015\062\000\000\000\306\000\100\000\332\000\000\000\026\000\000\200\006\000\100\000\305\100\000\000\306\200\300\001\334\200\200\000\311\100\200\201\311\200\000\202\012\001\000\000\105\101\001\000\206\201\101\000\206\301\101\003\134\001\001\001\026\200\002\200\205\102\000\000\206\002\102\005\306\102\302\004\000\003\200\001\234\202\200\001\232\002\000\000\026\300\000\200\204\002\000\000\300\002\000\002\000\003\200\004\234\102\200\001\141\201\000\000\026\200\374\177\105\101\001\000\206\301\101\000\134\001\001\001\026\200\002\200\205\102\000\000\206\002\102\005\306\102\302\004\000\003\200\001\234\202\200\001\232\002\000\000\026\300\000\200\204\002\000\000\300\002\000\002\000\003\200\004\234\102\200\001\141\201\000\000\026\200\374\177\011\201\000\205\011\101\200\201\011\001\000\200\036\001\000\001\036\000\200\000\013\000\000\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\017\000\000\000\147\145\164\141\143\164\151\166\145\164\145\162\155\163\000\004\011\000\000\000\146\151\154\145\156\141\155\145\000\004\007\000\000\000\143\157\156\146\151\147\000\004\007\000\000\000\151\160\141\151\162\163\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\007\000\000\000\142\154\157\143\153\163\000\004\020\000\000\000\151\163\153\145\171\167\157\162\144\163\155\141\164\143\150\000\004\011\000\000\000\153\145\171\167\157\162\144\163\000\004\005\000\000\000\156\141\155\145\000\000\000\000\000\062\000\000\000\257\000\000\000\257\000\000\000\257\000\000\000\257\000\000\000\262\000\000\000\262\000\000\000\262\000\000\000\263\000\000\000\264\000\000\000\267\000\000\000\270\000\000\000\270\000\000\000\270\000\000\000\270\000\000\000\270\000\000\000\271\000\000\000\271\000\000\000\271\000\000\000\271\000\000\000\271\000\000\000\271\000\000\000\271\000\000\000\272\000\000\000\272\000\000\000\272\000\000\000\272\000\000\000\270\000\000\000\273\000\000\000\275\000\000\000\275\000\000\000\275\000\000\000\275\000\000\000\276\000\000\000\276\000\000\000\276\000\000\000\276\000\000\000\276\000\000\000\276\000\000\000\276\000\000\000\277\000\000\000\277\000\000\000\277\000\000\000\277\000\000\000\275\000\000\000\300\000\000\000\303\000\000\000\304\000\000\000\305\000\000\000\306\000\000\000\307\000\000\000\017\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\061\000\000\000\011\000\000\000\146\151\154\145\156\141\155\145\000\000\000\000\000\061\000\000\000\010\000\000\000\143\146\147\156\141\155\145\000\000\000\000\000\061\000\000\000\006\000\000\000\164\145\162\155\163\000\007\000\000\000\061\000\000\000\004\000\000\000\143\146\147\000\012\000\000\000\061\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\016\000\000\000\034\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\016\000\000\000\034\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\016\000\000\000\034\000\000\000\002\000\000\000\137\000\017\000\000\000\032\000\000\000\004\000\000\000\142\154\153\000\017\000\000\000\032\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\037\000\000\000\055\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\037\000\000\000\055\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\037\000\000\000\055\000\000\000\002\000\000\000\137\000\040\000\000\000\053\000\000\000\004\000\000\000\142\154\153\000\040\000\000\000\053\000\000\000\001\000\000\000\013\000\000\000\143\157\160\171\146\151\145\154\144\163\000\000\000\000\000\320\000\000\000\332\000\000\000\000\001\000\013\024\000\000\000\112\000\000\000\205\000\000\000\306\100\100\000\234\000\001\001\026\200\002\200\305\201\000\000\306\301\300\003\000\002\000\003\334\201\000\001\332\001\000\000\026\000\001\200\005\002\001\000\006\102\101\004\100\002\200\000\200\002\200\003\034\102\200\001\241\200\000\000\026\200\374\177\136\000\000\001\036\000\200\000\006\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\154\151\156\153\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\014\000\000\000\146\151\156\144\160\162\157\152\145\143\164\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\000\000\000\000\024\000\000\000\321\000\000\000\322\000\000\000\322\000\000\000\322\000\000\000\322\000\000\000\324\000\000\000\324\000\000\000\324\000\000\000\324\000\000\000\325\000\000\000\325\000\000\000\326\000\000\000\326\000\000\000\326\000\000\000\326\000\000\000\326\000\000\000\322\000\000\000\327\000\000\000\331\000\000\000\332\000\000\000\010\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\023\000\000\000\010\000\000\000\162\145\163\165\154\164\163\000\001\000\000\000\023\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\022\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\022\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\022\000\000\000\002\000\000\000\137\000\005\000\000\000\020\000\000\000\005\000\000\000\154\151\156\153\000\005\000\000\000\020\000\000\000\004\000\000\000\160\162\152\000\011\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\347\000\000\000\360\000\000\000\000\002\000\003\044\000\000\000\206\000\300\000\127\100\100\001\026\000\001\200\206\000\300\000\127\200\100\001\026\100\000\200\202\000\000\000\236\000\000\001\206\300\100\000\127\000\101\001\026\200\000\200\206\300\100\000\027\100\101\001\026\200\002\200\206\300\300\000\127\000\101\001\026\000\001\200\206\300\300\000\127\100\101\001\026\100\000\200\202\000\000\000\236\000\000\001\202\000\200\000\236\000\000\001\026\100\002\200\206\300\100\000\027\200\101\001\026\200\001\200\206\300\300\000\127\200\101\001\026\100\000\200\202\000\000\000\236\000\000\001\202\000\200\000\236\000\000\001\036\000\200\000\007\000\000\000\004\005\000\000\000\153\151\156\144\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\003\000\000\000\103\043\000\000\000\000\000\044\000\000\000\350\000\000\000\350\000\000\000\350\000\000\000\350\000\000\000\350\000\000\000\350\000\000\000\350\000\000\000\350\000\000\000\351\000\000\000\351\000\000\000\351\000\000\000\351\000\000\000\351\000\000\000\351\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\355\000\000\000\356\000\000\000\356\000\000\000\360\000\000\000\002\000\000\000\007\000\000\000\163\157\165\162\143\145\000\000\000\000\000\043\000\000\000\007\000\000\000\164\141\162\147\145\164\000\000\000\000\000\043\000\000\000\000\000\000\000\000\000\000\000\363\000\000\000\043\001\000\000\001\003\000\020\200\000\000\000\305\000\000\000\027\100\100\001\026\100\000\200\127\200\300\000\026\000\000\200\002\101\000\000\002\001\200\000\106\301\100\000\212\001\000\000\334\200\000\002\005\001\001\000\106\101\101\000\034\001\001\001\026\100\033\200\103\002\200\004\205\202\001\000\206\302\101\005\300\002\000\004\234\202\000\001\232\002\000\000\026\300\011\200\127\000\302\000\026\100\000\200\027\200\300\000\026\300\010\200\305\202\001\000\306\102\302\005\000\003\000\005\106\203\102\000\334\202\200\001\004\003\000\000\100\003\000\000\200\003\200\005\034\203\200\001\032\003\000\000\026\000\017\200\027\100\100\001\026\000\002\200\005\303\002\000\006\003\103\006\106\103\303\005\106\103\300\006\206\203\303\005\306\203\103\000\034\203\000\002\100\002\000\006\026\100\014\200\027\300\103\001\026\200\000\200\006\103\303\005\106\302\103\006\026\000\013\200\005\303\002\000\006\003\103\006\106\103\303\005\106\003\304\006\206\203\303\005\306\203\103\000\034\203\000\002\100\002\000\006\026\300\010\200\232\102\000\000\026\100\010\200\127\100\304\000\026\100\000\200\027\200\300\000\026\100\007\200\027\100\100\001\026\300\001\200\305\302\002\000\306\202\304\005\000\003\000\004\334\202\000\001\127\300\304\005\026\100\005\200\100\002\200\005\026\300\004\200\027\000\104\001\026\000\004\200\305\002\000\000\005\203\001\000\006\003\105\006\105\103\005\000\006\103\003\006\006\203\105\006\127\300\105\006\026\000\000\200\002\103\000\000\002\003\200\000\100\003\000\004\201\003\006\000\125\203\203\006\200\003\000\004\334\202\000\002\100\002\200\005\026\000\000\200\100\002\000\004\132\002\000\000\026\000\006\200\305\202\001\000\306\002\305\005\005\103\005\000\306\002\203\005\306\202\305\005\027\300\305\005\026\100\001\200\305\302\002\000\306\102\306\005\000\003\200\004\101\203\006\000\334\202\200\001\100\002\200\005\305\302\006\000\306\002\307\005\000\003\200\001\100\003\200\004\334\202\200\001\332\102\000\000\026\000\001\200\305\302\006\000\306\102\307\005\000\003\200\001\100\003\200\004\334\102\200\001\041\201\000\000\026\300\343\177\336\000\000\001\036\000\200\000\036\000\000\000\004\004\000\000\000\151\151\146\000\004\012\000\000\000\144\151\162\145\143\164\157\162\171\000\004\004\000\000\000\141\154\154\000\004\010\000\000\000\154\151\142\144\151\162\163\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\154\151\156\153\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\014\000\000\000\146\151\156\144\160\162\157\152\145\143\164\000\004\011\000\000\000\163\151\142\154\151\156\147\163\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\004\005\000\000\000\156\141\155\145\000\004\005\000\000\000\160\141\164\150\000\004\007\000\000\000\162\145\142\141\163\145\000\004\013\000\000\000\154\151\156\153\164\141\162\147\145\164\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\011\000\000\000\142\141\163\145\156\141\155\145\000\004\011\000\000\000\146\165\154\154\160\141\164\150\000\004\007\000\000\000\163\171\163\164\145\155\000\004\015\000\000\000\147\145\164\144\151\162\145\143\164\157\162\171\000\004\002\000\000\000\056\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\014\000\000\000\164\141\162\147\145\164\163\164\171\154\145\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\005\000\000\000\056\154\151\142\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\002\000\000\000\134\000\004\006\000\000\000\164\141\142\154\145\000\004\011\000\000\000\143\157\156\164\141\151\156\163\000\004\007\000\000\000\151\156\163\145\162\164\000\000\000\000\000\200\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\365\000\000\000\367\000\000\000\367\000\000\000\367\000\000\000\367\000\000\000\370\000\000\000\373\000\000\000\373\000\000\000\373\000\000\000\373\000\000\000\374\000\000\000\374\000\000\000\374\000\000\000\374\000\000\000\374\000\000\000\374\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\377\000\000\000\377\000\000\000\377\000\000\000\377\000\000\000\377\000\000\000\377\000\000\000\000\001\000\000\000\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\002\001\000\000\002\001\000\000\003\001\000\000\003\001\000\000\003\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\007\001\000\000\011\001\000\000\011\001\000\000\011\001\000\000\011\001\000\000\011\001\000\000\011\001\000\000\013\001\000\000\013\001\000\000\014\001\000\000\014\001\000\000\014\001\000\000\014\001\000\000\015\001\000\000\015\001\000\000\016\001\000\000\017\001\000\000\020\001\000\000\020\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\021\001\000\000\023\001\000\000\030\001\000\000\030\001\000\000\031\001\000\000\031\001\000\000\031\001\000\000\031\001\000\000\031\001\000\000\031\001\000\000\031\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\035\001\000\000\035\001\000\000\035\001\000\000\035\001\000\000\035\001\000\000\367\000\000\000\037\001\000\000\042\001\000\000\043\001\000\000\015\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\177\000\000\000\005\000\000\000\153\151\156\144\000\000\000\000\000\177\000\000\000\005\000\000\000\160\141\162\164\000\000\000\000\000\177\000\000\000\007\000\000\000\162\145\163\165\154\164\000\012\000\000\000\177\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\015\000\000\000\176\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\015\000\000\000\176\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\015\000\000\000\176\000\000\000\002\000\000\000\137\000\016\000\000\000\174\000\000\000\005\000\000\000\154\151\156\153\000\016\000\000\000\174\000\000\000\005\000\000\000\151\164\145\155\000\017\000\000\000\174\000\000\000\004\000\000\000\160\162\152\000\023\000\000\000\174\000\000\000\007\000\000\000\160\162\152\143\146\147\000\036\000\000\000\074\000\000\000\004\000\000\000\144\151\162\000\111\000\000\000\114\000\000\000\001\000\000\000\010\000\000\000\143\141\156\154\151\156\153\000\000\000\000\000\053\001\000\000\067\001\000\000\000\001\000\010\041\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\306\200\100\000\134\200\200\001\132\000\000\000\026\100\000\200\106\200\100\000\136\000\000\001\144\000\000\000\200\000\200\000\300\000\000\000\234\200\000\001\305\000\000\000\306\100\300\001\001\201\000\000\100\001\000\001\200\001\200\000\334\200\000\002\332\000\000\000\026\000\000\200\236\000\000\001\305\300\000\000\306\000\301\001\006\201\100\000\106\101\101\000\106\201\301\002\201\301\001\000\306\201\101\000\125\301\201\002\335\000\200\001\336\000\000\000\036\000\200\000\010\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\016\000\000\000\151\163\165\156\151\161\165\145\166\141\154\165\145\000\004\007\000\000\000\157\142\152\144\151\162\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\005\000\000\000\156\141\155\145\000\004\002\000\000\000\057\000\001\000\000\000\000\000\000\000\060\001\000\000\060\001\000\000\000\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\306\300\100\000\135\000\200\001\136\000\000\000\036\000\200\000\004\000\000\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\007\000\000\000\157\142\152\144\151\162\000\004\005\000\000\000\156\141\155\145\000\000\000\000\000\007\000\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\006\000\000\000\000\000\000\000\041\000\000\000\054\001\000\000\054\001\000\000\054\001\000\000\054\001\000\000\054\001\000\000\054\001\000\000\054\001\000\000\055\001\000\000\055\001\000\000\060\001\000\000\061\001\000\000\061\001\000\000\061\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\063\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\066\001\000\000\067\001\000\000\003\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\040\000\000\000\003\000\000\000\146\156\000\012\000\000\000\040\000\000\000\007\000\000\000\157\142\152\144\151\162\000\015\000\000\000\040\000\000\000\000\000\000\000\000\000\000\000\101\001\000\000\172\001\000\000\000\004\000\016\223\000\000\000\332\100\000\000\026\000\001\200\005\001\000\000\006\101\100\002\333\100\000\002\026\000\000\200\305\200\000\000\027\300\300\001\026\000\000\200\301\000\001\000\006\101\101\000\106\201\101\000\127\300\301\002\026\200\000\200\106\201\101\000\027\000\302\002\026\000\004\200\127\100\102\001\026\100\000\200\027\100\302\001\026\000\001\200\027\200\102\002\026\200\000\200\027\300\302\000\026\000\000\200\001\001\003\000\027\000\101\001\026\100\002\200\027\100\302\001\026\300\001\200\127\000\103\002\026\100\001\200\201\100\002\000\026\300\000\200\106\201\101\000\027\100\303\002\026\000\000\200\201\100\002\000\105\201\003\000\127\300\303\000\026\000\000\200\202\101\000\000\202\001\200\000\301\001\004\000\001\102\004\000\134\201\000\002\200\001\200\002\301\201\004\000\225\301\001\003\206\201\001\000\232\101\000\000\026\000\001\200\206\301\104\000\232\101\000\000\026\100\000\200\206\001\105\000\206\201\104\003\300\001\200\002\001\102\005\000\325\001\202\003\306\301\001\000\332\101\000\000\026\300\001\200\306\201\105\000\332\101\000\000\026\000\001\200\305\301\005\000\306\001\306\003\006\102\106\000\106\202\106\000\334\201\200\001\001\302\006\000\101\302\006\000\027\100\102\001\026\100\003\200\127\000\107\002\026\100\000\200\027\100\107\002\026\100\000\200\101\202\007\000\026\300\007\200\027\200\102\002\026\100\000\200\101\302\007\000\026\300\006\200\027\000\103\002\026\100\006\200\101\002\010\000\026\300\005\200\027\000\101\001\026\100\005\200\027\100\107\002\026\200\002\200\027\100\310\001\026\000\002\200\205\302\005\000\206\202\110\005\300\002\200\003\000\003\000\003\101\303\010\000\025\103\003\006\234\202\200\001\300\001\000\005\026\000\002\200\027\200\102\002\026\200\000\200\001\002\011\000\101\102\011\000\026\300\000\200\027\000\103\002\026\100\000\200\001\002\011\000\101\202\011\000\200\002\200\002\301\302\011\000\225\302\002\005\206\202\002\000\033\102\000\005\026\200\000\200\206\002\112\000\033\102\000\005\026\300\377\177\200\002\200\002\301\102\012\000\225\302\002\005\206\202\002\000\133\102\000\005\026\200\000\200\206\202\112\000\133\102\000\005\026\300\377\177\212\002\000\000\211\202\201\225\300\002\000\004\000\003\000\003\100\003\200\004\325\102\203\005\211\302\002\211\211\302\001\226\305\302\005\000\306\202\310\005\006\003\113\005\106\203\104\005\334\202\200\001\211\302\202\226\236\002\000\001\036\000\200\000\056\000\000\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\003\000\000\000\157\163\000\004\004\000\000\000\137\117\123\000\004\004\000\000\000\142\163\144\000\004\006\000\000\000\154\151\156\165\170\000\004\005\000\000\000\153\151\156\144\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\005\000\000\000\154\151\156\153\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\003\000\000\000\103\043\000\004\004\000\000\000\151\151\146\000\004\006\000\000\000\142\165\151\154\144\000\004\007\000\000\000\164\141\162\147\145\164\000\004\007\000\000\000\151\155\160\154\151\142\000\004\005\000\000\000\156\141\155\145\000\004\013\000\000\000\164\141\162\147\145\164\156\141\155\145\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\004\000\000\000\144\151\162\000\004\012\000\000\000\164\141\162\147\145\164\144\151\162\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\162\145\154\141\164\151\166\145\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\010\000\000\000\142\141\163\145\144\151\162\000\004\001\000\000\000\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\005\000\000\000\056\145\170\145\000\004\005\000\000\000\056\144\154\154\000\004\005\000\000\000\056\154\151\142\000\004\007\000\000\000\155\141\143\157\163\170\000\004\005\000\000\000\152\157\151\156\000\004\024\000\000\000\056\141\160\160\057\103\157\156\164\145\156\164\163\057\115\141\143\117\123\000\004\004\000\000\000\154\151\142\000\004\004\000\000\000\056\163\157\000\004\003\000\000\000\056\141\000\004\007\000\000\000\160\162\145\146\151\170\000\004\015\000\000\000\164\141\162\147\145\164\160\162\145\146\151\170\000\004\012\000\000\000\145\170\164\145\156\163\151\157\156\000\004\020\000\000\000\164\141\162\147\145\164\145\170\164\145\156\163\151\157\156\000\004\011\000\000\000\142\141\163\145\156\141\155\145\000\004\012\000\000\000\144\151\162\145\143\164\157\162\171\000\004\011\000\000\000\146\165\154\154\160\141\164\150\000\000\000\000\000\223\000\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\106\001\000\000\107\001\000\000\107\001\000\000\107\001\000\000\107\001\000\000\107\001\000\000\107\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\112\001\000\000\116\001\000\000\116\001\000\000\116\001\000\000\116\001\000\000\116\001\000\000\116\001\000\000\117\001\000\000\120\001\000\000\121\001\000\000\121\001\000\000\121\001\000\000\123\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\131\001\000\000\132\001\000\000\133\001\000\000\135\001\000\000\135\001\000\000\136\001\000\000\136\001\000\000\136\001\000\000\136\001\000\000\137\001\000\000\137\001\000\000\140\001\000\000\140\001\000\000\141\001\000\000\141\001\000\000\142\001\000\000\142\001\000\000\143\001\000\000\144\001\000\000\145\001\000\000\145\001\000\000\146\001\000\000\146\001\000\000\146\001\000\000\146\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\150\001\000\000\150\001\000\000\151\001\000\000\152\001\000\000\152\001\000\000\153\001\000\000\153\001\000\000\154\001\000\000\155\001\000\000\161\001\000\000\161\001\000\000\161\001\000\000\161\001\000\000\161\001\000\000\161\001\000\000\161\001\000\000\161\001\000\000\161\001\000\000\162\001\000\000\162\001\000\000\162\001\000\000\162\001\000\000\162\001\000\000\162\001\000\000\162\001\000\000\162\001\000\000\162\001\000\000\164\001\000\000\165\001\000\000\166\001\000\000\166\001\000\000\166\001\000\000\166\001\000\000\166\001\000\000\167\001\000\000\170\001\000\000\170\001\000\000\170\001\000\000\170\001\000\000\170\001\000\000\170\001\000\000\171\001\000\000\172\001\000\000\013\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\222\000\000\000\012\000\000\000\144\151\162\145\143\164\151\157\156\000\000\000\000\000\222\000\000\000\006\000\000\000\163\164\171\154\145\000\000\000\000\000\222\000\000\000\003\000\000\000\157\163\000\000\000\000\000\222\000\000\000\005\000\000\000\153\151\156\144\000\013\000\000\000\222\000\000\000\006\000\000\000\146\151\145\154\144\000\056\000\000\000\222\000\000\000\005\000\000\000\156\141\155\145\000\071\000\000\000\222\000\000\000\004\000\000\000\144\151\162\000\107\000\000\000\222\000\000\000\007\000\000\000\160\162\145\146\151\170\000\110\000\000\000\222\000\000\000\007\000\000\000\163\165\146\146\151\170\000\111\000\000\000\222\000\000\000\007\000\000\000\162\145\163\165\154\164\000\204\000\000\000\222\000\000\000\000\000\000\000\000\000\000\000\203\001\000\000\234\001\000\000\000\002\000\014\027\000\000\000\244\000\000\000\000\000\200\000\305\000\000\000\000\001\000\000\334\000\001\001\026\300\002\200\013\102\300\003\201\202\000\000\344\102\000\000\034\202\000\002\300\001\000\004\000\002\000\001\100\002\200\003\034\202\000\001\032\102\000\000\026\100\000\200\002\002\000\000\036\002\000\001\341\200\000\000\026\100\374\177\302\000\200\000\336\000\000\001\036\000\200\000\003\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\005\000\000\000\147\163\165\142\000\004\012\000\000\000\050\045\045\052\051\050\045\141\051\000\002\000\000\000\000\000\000\000\204\001\000\000\210\001\000\000\001\001\000\011\016\000\000\000\105\000\000\000\204\000\000\000\134\000\001\001\026\200\001\200\213\101\300\002\000\002\000\000\234\201\200\001\232\001\000\000\026\100\000\200\202\001\200\000\236\001\000\001\141\200\000\000\026\200\375\177\036\000\200\000\002\000\000\000\004\006\000\000\000\160\141\151\162\163\000\004\006\000\000\000\155\141\164\143\150\000\000\000\000\000\016\000\000\000\205\001\000\000\205\001\000\000\205\001\000\000\205\001\000\000\206\001\000\000\206\001\000\000\206\001\000\000\206\001\000\000\206\001\000\000\206\001\000\000\206\001\000\000\205\001\000\000\206\001\000\000\210\001\000\000\006\000\000\000\003\000\000\000\153\167\000\000\000\000\000\015\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\015\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\015\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\015\000\000\000\002\000\000\000\137\000\004\000\000\000\013\000\000\000\005\000\000\000\164\145\162\155\000\004\000\000\000\013\000\000\000\001\000\000\000\006\000\000\000\164\145\162\155\163\000\000\000\000\000\215\001\000\000\223\001\000\000\000\002\000\007\024\000\000\000\213\000\100\000\234\200\000\001\220\100\100\001\027\200\100\001\026\000\001\200\200\000\000\000\300\000\200\000\225\300\000\001\236\000\000\001\026\000\002\200\200\000\000\000\301\300\000\000\013\001\301\000\034\201\000\001\113\101\301\000\134\201\000\001\201\201\001\000\225\200\001\001\236\000\000\001\036\000\200\000\007\000\000\000\004\004\000\000\000\154\145\156\000\003\000\000\000\000\000\000\000\100\003\000\000\000\000\000\000\360\077\004\002\000\000\000\133\000\004\006\000\000\000\165\160\160\145\162\000\004\006\000\000\000\154\157\167\145\162\000\004\002\000\000\000\135\000\000\000\000\000\024\000\000\000\216\001\000\000\216\001\000\000\216\001\000\000\216\001\000\000\216\001\000\000\217\001\000\000\217\001\000\000\217\001\000\000\217\001\000\000\217\001\000\000\221\001\000\000\221\001\000\000\221\001\000\000\221\001\000\000\221\001\000\000\221\001\000\000\221\001\000\000\221\001\000\000\221\001\000\000\223\001\000\000\002\000\000\000\002\000\000\000\160\000\000\000\000\000\023\000\000\000\002\000\000\000\141\000\000\000\000\000\023\000\000\000\000\000\000\000\027\000\000\000\210\001\000\000\210\001\000\000\212\001\000\000\212\001\000\000\212\001\000\000\212\001\000\000\214\001\000\000\214\001\000\000\223\001\000\000\214\001\000\000\223\001\000\000\226\001\000\000\226\001\000\000\226\001\000\000\226\001\000\000\226\001\000\000\227\001\000\000\227\001\000\000\212\001\000\000\230\001\000\000\233\001\000\000\233\001\000\000\234\001\000\000\010\000\000\000\011\000\000\000\153\145\171\167\157\162\144\163\000\000\000\000\000\026\000\000\000\006\000\000\000\164\145\162\155\163\000\000\000\000\000\026\000\000\000\005\000\000\000\164\145\163\164\000\002\000\000\000\026\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\005\000\000\000\024\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\005\000\000\000\024\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\005\000\000\000\024\000\000\000\002\000\000\000\137\000\006\000\000\000\022\000\000\000\003\000\000\000\153\167\000\006\000\000\000\022\000\000\000\000\000\000\000\043\000\000\000\014\000\000\000\016\000\000\000\017\000\000\000\020\000\000\000\030\000\000\000\044\000\000\000\030\000\000\000\071\000\000\000\071\000\000\000\073\000\000\000\253\000\000\000\253\000\000\000\073\000\000\000\255\000\000\000\307\000\000\000\307\000\000\000\255\000\000\000\320\000\000\000\332\000\000\000\320\000\000\000\360\000\000\000\363\000\000\000\043\001\000\000\043\001\000\000\363\000\000\000\053\001\000\000\067\001\000\000\053\001\000\000\101\001\000\000\172\001\000\000\101\001\000\000\203\001\000\000\234\001\000\000\203\001\000\000\234\001\000\000\003\000\000\000\007\000\000\000\156\157\143\157\160\171\000\004\000\000\000\042\000\000\000\013\000\000\000\143\157\160\171\146\151\145\154\144\163\000\011\000\000\000\042\000\000\000\010\000\000\000\143\141\156\154\151\156\153\000\025\000\000\000\042\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\030\000\000\000\100\163\162\143\057\142\141\163\145\057\146\165\156\143\164\151\157\156\163\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\031\313\000\000\000\005\000\000\000\112\100\006\000\212\200\000\000\211\000\301\201\211\200\301\202\111\200\000\201\212\300\000\000\211\000\302\201\211\100\302\202\312\000\000\002\001\301\002\000\101\001\003\000\201\101\003\000\301\201\003\000\342\100\000\002\211\300\000\205\111\200\200\203\212\200\000\000\211\000\304\201\211\100\302\202\111\200\200\207\212\200\000\000\211\000\304\201\211\200\304\202\111\200\200\210\212\200\000\000\211\000\304\201\211\100\302\202\111\200\200\211\212\200\000\000\211\100\305\201\211\200\301\202\111\200\000\212\212\200\000\000\211\100\305\201\211\200\301\202\111\200\000\213\212\000\001\000\211\000\304\201\211\100\302\202\211\100\106\214\312\000\200\011\001\201\006\000\101\301\006\000\201\001\007\000\301\101\007\000\001\202\007\000\101\302\007\000\201\002\010\000\301\102\010\000\001\203\010\000\101\303\010\000\201\003\011\000\301\103\011\000\001\204\011\000\101\304\011\000\201\004\012\000\301\104\012\000\001\205\012\000\101\305\012\000\201\005\013\000\301\105\013\000\001\206\013\000\342\100\200\012\211\300\000\205\111\200\200\213\212\200\000\000\211\000\301\201\211\100\302\202\111\200\200\227\212\200\000\000\211\000\302\201\211\100\302\202\111\200\000\230\212\200\000\000\211\000\302\201\211\100\302\202\111\200\200\230\212\200\000\000\211\000\302\201\211\100\302\202\111\200\000\231\212\200\000\000\211\000\315\201\211\100\302\202\111\200\200\231\212\300\000\000\211\000\302\201\211\100\302\202\312\000\000\002\001\101\015\000\101\201\015\000\201\301\015\000\301\001\016\000\342\100\000\002\211\300\000\205\111\200\200\201\212\300\000\000\211\000\302\201\211\200\301\202\312\000\200\001\001\201\016\000\101\301\016\000\201\001\017\000\342\100\200\001\211\300\000\205\111\200\200\234\212\200\000\000\211\000\315\201\211\100\302\202\111\200\200\236\212\200\000\000\211\000\304\201\211\100\302\202\111\200\000\237\212\200\000\000\211\000\304\201\211\100\302\202\111\200\200\237\212\200\000\000\211\000\301\201\211\200\301\202\111\200\000\240\212\200\000\000\211\000\301\201\211\100\302\202\111\200\200\240\212\200\000\000\211\000\301\201\211\100\302\202\111\200\000\241\212\200\000\000\211\000\301\201\211\100\302\202\111\200\200\241\212\200\000\000\211\000\304\201\211\100\302\202\111\200\000\242\212\200\000\000\211\000\304\201\211\100\302\202\111\200\200\242\212\200\000\000\211\000\304\201\211\100\302\202\111\200\000\243\212\200\000\000\211\000\304\201\211\100\302\202\111\200\200\243\212\200\000\000\211\000\315\201\211\100\302\202\111\200\000\244\212\200\000\000\211\000\304\201\211\100\302\202\111\200\200\244\212\200\000\000\211\000\301\201\211\100\302\202\111\200\000\245\212\200\000\000\211\000\302\201\211\100\302\202\111\200\200\245\212\200\000\000\211\000\302\201\211\100\302\202\111\200\000\246\212\200\000\000\211\000\302\201\211\100\302\202\111\200\200\246\212\300\000\000\211\000\302\201\211\200\301\202\344\000\000\000\211\300\000\205\111\200\000\247\011\100\200\200\044\100\000\000\105\300\023\000\205\000\000\000\206\100\100\001\134\000\001\001\026\100\001\200\205\001\024\000\344\201\000\000\000\000\000\000\000\000\000\002\211\301\001\002\043\001\000\000\141\200\000\000\026\300\375\177\144\300\000\000\107\100\024\000\144\000\001\000\107\200\024\000\144\100\001\000\107\200\004\000\036\000\200\000\123\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\007\000\000\000\146\151\145\154\144\163\000\004\010\000\000\000\142\141\163\145\144\151\162\000\004\005\000\000\000\153\151\156\144\000\004\005\000\000\000\160\141\164\150\000\004\006\000\000\000\163\143\157\160\145\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\014\000\000\000\142\165\151\154\144\141\143\164\151\157\156\000\004\007\000\000\000\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\010\000\000\000\141\154\154\157\167\145\144\000\004\010\000\000\000\103\157\155\160\151\154\145\000\004\005\000\000\000\103\157\160\171\000\004\006\000\000\000\105\155\142\145\144\000\004\005\000\000\000\116\157\156\145\000\004\015\000\000\000\142\165\151\154\144\157\160\164\151\157\156\163\000\004\005\000\000\000\154\151\163\164\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\010\000\000\000\144\145\146\151\156\145\163\000\004\011\000\000\000\145\170\143\154\165\144\145\163\000\004\011\000\000\000\146\151\154\145\154\151\163\164\000\004\006\000\000\000\146\151\154\145\163\000\004\006\000\000\000\146\154\141\147\163\000\004\010\000\000\000\151\163\146\154\141\147\163\000\001\001\004\016\000\000\000\105\170\164\162\141\127\141\162\156\151\156\147\163\000\004\016\000\000\000\106\141\164\141\154\127\141\162\156\151\156\147\163\000\004\010\000\000\000\115\141\156\141\147\145\144\000\004\014\000\000\000\116\141\164\151\166\145\127\103\150\141\162\000\004\016\000\000\000\116\157\066\064\102\151\164\103\150\145\143\153\163\000\004\022\000\000\000\116\157\105\144\151\164\101\156\144\103\157\156\164\151\156\165\145\000\004\015\000\000\000\116\157\105\170\143\145\160\164\151\157\156\163\000\004\017\000\000\000\116\157\106\162\141\155\145\120\157\151\156\164\145\162\000\004\014\000\000\000\116\157\111\155\160\157\162\164\114\151\142\000\004\013\000\000\000\116\157\115\141\156\151\146\145\163\164\000\004\016\000\000\000\116\157\116\141\164\151\166\145\127\103\150\141\162\000\004\006\000\000\000\116\157\120\103\110\000\004\007\000\000\000\116\157\122\124\124\111\000\004\011\000\000\000\117\160\164\151\155\151\172\145\000\004\015\000\000\000\117\160\164\151\155\151\172\145\123\151\172\145\000\004\016\000\000\000\117\160\164\151\155\151\172\145\123\160\145\145\144\000\004\004\000\000\000\123\105\110\000\004\016\000\000\000\123\164\141\164\151\143\122\165\156\164\151\155\145\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\010\000\000\000\125\156\151\143\157\144\145\000\004\010\000\000\000\127\151\156\115\141\151\156\000\004\012\000\000\000\151\155\160\154\151\142\144\151\162\000\004\020\000\000\000\151\155\160\154\151\142\145\170\164\145\156\163\151\157\156\000\004\013\000\000\000\151\155\160\154\151\142\156\141\155\145\000\004\015\000\000\000\151\155\160\154\151\142\160\162\145\146\151\170\000\004\014\000\000\000\151\156\143\154\165\144\145\144\151\162\163\000\004\010\000\000\000\144\151\162\154\151\163\164\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\003\000\000\000\103\043\000\004\010\000\000\000\154\151\142\144\151\162\163\000\004\014\000\000\000\154\151\156\153\157\160\164\151\157\156\163\000\004\006\000\000\000\154\151\156\153\163\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\007\000\000\000\157\142\152\144\151\162\000\004\012\000\000\000\160\143\150\150\145\141\144\145\162\000\004\012\000\000\000\160\143\150\163\157\165\162\143\145\000\004\021\000\000\000\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\000\004\020\000\000\000\160\162\145\154\151\156\153\143\157\155\155\141\156\144\163\000\004\022\000\000\000\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\000\004\013\000\000\000\162\145\163\144\145\146\151\156\145\163\000\004\017\000\000\000\162\145\163\151\156\143\154\165\144\145\144\151\162\163\000\004\013\000\000\000\162\145\163\157\160\164\151\157\156\163\000\004\012\000\000\000\164\141\162\147\145\164\144\151\162\000\004\020\000\000\000\164\141\162\147\145\164\145\170\164\145\156\163\151\157\156\000\004\013\000\000\000\164\141\162\147\145\164\156\141\155\145\000\004\015\000\000\000\164\141\162\147\145\164\160\162\145\146\151\170\000\004\005\000\000\000\165\165\151\144\000\004\006\000\000\000\160\141\151\162\163\000\004\003\000\000\000\137\107\000\004\016\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\000\004\010\000\000\000\160\162\157\152\145\143\164\000\006\000\000\000\000\000\000\000\374\000\000\000\013\001\000\000\000\001\000\012\067\000\000\000\102\000\200\000\224\000\000\000\127\000\100\001\026\000\000\200\102\000\000\000\201\100\000\000\301\000\000\000\001\101\000\000\240\100\002\200\213\201\100\000\000\002\200\002\100\002\200\002\234\201\000\002\313\301\100\003\101\002\001\000\334\201\200\001\332\101\000\000\026\000\000\200\102\000\000\000\237\000\375\177\213\200\100\000\001\101\001\000\101\101\001\000\234\200\000\002\127\200\101\001\026\000\000\200\102\000\000\000\213\200\100\000\001\301\001\000\101\301\001\000\234\200\000\002\127\200\101\001\026\000\000\200\102\000\000\000\213\200\100\000\001\001\002\000\101\001\002\000\234\200\000\002\127\200\101\001\026\000\000\200\102\000\000\000\213\200\100\000\001\101\002\000\101\101\002\000\234\200\000\002\127\200\101\001\026\000\000\200\102\000\000\000\132\100\000\000\026\200\000\200\203\000\000\001\301\200\002\000\236\000\200\001\036\000\000\001\036\000\200\000\013\000\000\000\003\000\000\000\000\000\000\102\100\003\000\000\000\000\000\000\360\077\004\004\000\000\000\163\165\142\000\004\005\000\000\000\146\151\156\144\000\004\032\000\000\000\133\101\102\103\104\105\106\141\142\143\144\145\146\060\061\062\063\064\065\066\067\070\071\055\135\000\003\000\000\000\000\000\000\042\100\004\002\000\000\000\055\000\003\000\000\000\000\000\000\054\100\003\000\000\000\000\000\000\063\100\003\000\000\000\000\000\000\070\100\004\015\000\000\000\151\156\166\141\154\151\144\040\125\125\111\104\000\000\000\000\000\067\000\000\000\375\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\377\000\000\000\377\000\000\000\377\000\000\000\377\000\000\000\000\001\000\000\000\001\000\000\000\001\000\000\000\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\001\001\000\000\377\000\000\000\003\001\000\000\003\001\000\000\003\001\000\000\003\001\000\000\003\001\000\000\003\001\000\000\003\001\000\000\004\001\000\000\004\001\000\000\004\001\000\000\004\001\000\000\004\001\000\000\004\001\000\000\004\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\005\001\000\000\006\001\000\000\006\001\000\000\006\001\000\000\006\001\000\000\006\001\000\000\006\001\000\000\006\001\000\000\007\001\000\000\007\001\000\000\010\001\000\000\010\001\000\000\010\001\000\000\012\001\000\000\013\001\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\066\000\000\000\003\000\000\000\157\153\000\001\000\000\000\066\000\000\000\014\000\000\000\050\146\157\162\040\151\156\144\145\170\051\000\010\000\000\000\024\000\000\000\014\000\000\000\050\146\157\162\040\154\151\155\151\164\051\000\010\000\000\000\024\000\000\000\013\000\000\000\050\146\157\162\040\163\164\145\160\051\000\010\000\000\000\024\000\000\000\002\000\000\000\151\000\011\000\000\000\023\000\000\000\003\000\000\000\143\150\000\015\000\000\000\023\000\000\000\000\000\000\000\000\000\000\000\024\001\000\000\044\001\000\000\000\002\000\012\103\000\000\000\205\000\000\000\206\100\100\001\206\000\000\001\206\200\100\001\305\000\000\000\306\100\300\001\306\000\200\001\306\300\300\001\005\001\000\000\006\101\100\002\006\001\000\002\006\001\101\002\027\100\101\001\026\000\002\200\105\001\000\000\106\201\301\002\200\001\200\001\300\001\000\000\000\002\200\000\100\002\000\002\135\001\200\002\136\001\000\000\026\200\012\200\027\300\101\001\026\200\002\200\105\001\000\000\106\201\301\002\200\001\200\001\300\001\000\000\005\302\001\000\006\002\102\004\100\002\200\000\034\002\000\001\135\001\000\000\136\001\000\000\026\100\007\200\027\100\102\001\026\000\002\200\105\001\000\000\106\201\302\002\200\001\200\001\300\001\000\000\000\002\200\000\100\002\000\002\135\001\200\002\136\001\000\000\026\200\004\200\027\300\102\001\026\300\001\200\105\001\000\000\106\001\303\002\200\001\200\001\300\001\000\000\000\002\200\000\135\001\000\002\136\001\000\000\026\000\002\200\027\100\103\001\026\200\001\200\105\001\000\000\106\201\303\002\200\001\200\001\300\001\000\000\000\002\200\000\135\001\000\002\136\001\000\000\036\000\200\000\017\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\007\000\000\000\146\151\145\154\144\163\000\004\005\000\000\000\153\151\156\144\000\004\006\000\000\000\163\143\157\160\145\000\004\010\000\000\000\141\154\154\157\167\145\144\000\004\007\000\000\000\163\164\162\151\156\147\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\141\142\163\157\154\165\164\145\000\004\005\000\000\000\154\151\163\164\000\004\011\000\000\000\163\145\164\141\162\162\141\171\000\004\010\000\000\000\144\151\162\154\151\163\164\000\004\014\000\000\000\163\145\164\144\151\162\141\162\162\141\171\000\004\011\000\000\000\146\151\154\145\154\151\163\164\000\004\015\000\000\000\163\145\164\146\151\154\145\141\162\162\141\171\000\000\000\000\000\103\000\000\000\025\001\000\000\025\001\000\000\025\001\000\000\025\001\000\000\026\001\000\000\026\001\000\000\026\001\000\000\026\001\000\000\027\001\000\000\027\001\000\000\027\001\000\000\027\001\000\000\031\001\000\000\031\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\032\001\000\000\033\001\000\000\033\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\034\001\000\000\035\001\000\000\035\001\000\000\036\001\000\000\036\001\000\000\036\001\000\000\036\001\000\000\036\001\000\000\036\001\000\000\036\001\000\000\036\001\000\000\036\001\000\000\037\001\000\000\037\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\041\001\000\000\041\001\000\000\042\001\000\000\042\001\000\000\042\001\000\000\042\001\000\000\042\001\000\000\042\001\000\000\042\001\000\000\044\001\000\000\005\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\102\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\102\000\000\000\005\000\000\000\153\151\156\144\000\004\000\000\000\102\000\000\000\006\000\000\000\163\143\157\160\145\000\010\000\000\000\102\000\000\000\010\000\000\000\141\154\154\157\167\145\144\000\014\000\000\000\102\000\000\000\000\000\000\000\000\000\000\000\055\001\000\000\057\001\000\000\002\001\000\004\006\000\000\000\104\000\000\000\204\000\200\000\300\000\000\000\135\000\200\001\136\000\000\000\036\000\200\000\000\000\000\000\000\000\000\000\006\000\000\000\056\001\000\000\056\001\000\000\056\001\000\000\056\001\000\000\056\001\000\000\057\001\000\000\001\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\005\000\000\000\002\000\000\000\011\000\000\000\141\143\143\145\163\163\157\162\000\005\000\000\000\156\141\155\145\000\000\000\000\000\070\001\000\000\120\001\000\000\000\001\000\012\056\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\134\300\000\001\132\100\000\000\026\300\000\200\305\300\000\000\000\001\000\001\101\001\001\000\334\100\200\001\312\000\000\000\005\101\001\000\006\201\101\002\106\301\301\000\200\001\200\001\034\101\200\001\005\001\000\000\011\301\000\204\005\101\002\000\100\001\000\000\034\201\000\001\027\100\101\002\026\100\000\200\311\000\000\205\026\300\000\200\012\001\200\000\100\001\000\000\042\101\200\000\311\000\001\205\005\301\002\000\105\001\000\000\106\001\303\002\034\001\001\001\026\300\001\200\106\102\103\004\127\200\303\004\026\000\001\200\106\102\103\004\127\300\303\004\026\100\000\200\112\002\000\000\311\100\202\003\041\201\000\000\026\100\375\177\336\000\000\001\036\000\200\000\020\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\157\142\152\145\143\164\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\006\000\000\000\145\162\162\157\162\000\003\000\000\000\000\000\000\000\100\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\007\000\000\000\142\154\157\143\153\163\000\004\025\000\000\000\103\165\162\162\145\156\164\103\157\156\146\151\147\165\162\141\164\151\157\156\000\004\005\000\000\000\164\171\160\145\000\004\011\000\000\000\153\145\171\167\157\162\144\163\000\004\006\000\000\000\160\141\151\162\163\000\004\007\000\000\000\146\151\145\154\144\163\000\004\005\000\000\000\153\151\156\144\000\004\007\000\000\000\163\164\162\151\156\147\000\004\005\000\000\000\160\141\164\150\000\000\000\000\000\056\000\000\000\071\001\000\000\071\001\000\000\071\001\000\000\071\001\000\000\072\001\000\000\072\001\000\000\073\001\000\000\073\001\000\000\073\001\000\000\073\001\000\000\076\001\000\000\077\001\000\000\077\001\000\000\077\001\000\000\077\001\000\000\077\001\000\000\100\001\000\000\100\001\000\000\102\001\000\000\102\001\000\000\102\001\000\000\102\001\000\000\102\001\000\000\103\001\000\000\103\001\000\000\105\001\000\000\105\001\000\000\105\001\000\000\105\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\113\001\000\000\113\001\000\000\111\001\000\000\114\001\000\000\117\001\000\000\120\001\000\000\011\000\000\000\011\000\000\000\153\145\171\167\157\162\144\163\000\000\000\000\000\055\000\000\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\000\000\000\055\000\000\000\004\000\000\000\145\162\162\000\004\000\000\000\055\000\000\000\004\000\000\000\143\146\147\000\013\000\000\000\055\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\041\000\000\000\054\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\041\000\000\000\054\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\041\000\000\000\054\000\000\000\005\000\000\000\156\141\155\145\000\042\000\000\000\052\000\000\000\006\000\000\000\146\151\145\154\144\000\042\000\000\000\052\000\000\000\000\000\000\000\000\000\000\000\123\001\000\000\201\001\000\000\000\001\000\007\121\000\000\000\032\000\000\000\026\200\017\200\103\000\200\000\205\000\000\000\305\100\000\000\306\200\300\001\234\200\000\001\027\300\100\001\026\300\000\200\205\100\000\000\206\200\100\001\106\000\101\001\026\100\000\200\205\100\000\000\106\200\100\001\205\000\000\000\300\000\200\000\234\200\000\001\127\000\101\001\026\300\000\200\205\100\001\000\301\200\001\000\001\301\001\000\234\100\200\001\205\100\000\000\306\000\302\000\306\000\200\001\211\300\000\201\205\100\000\000\206\200\100\001\232\100\000\000\026\000\010\200\212\000\000\000\305\100\000\000\311\200\000\201\305\100\002\000\306\200\302\001\006\001\302\000\100\001\000\001\334\100\200\001\306\000\302\000\311\200\000\000\305\300\002\000\000\001\000\001\112\201\000\000\111\301\100\206\212\001\000\000\111\201\201\206\334\100\200\001\211\100\000\202\211\000\000\207\305\000\004\000\306\100\304\001\334\200\200\000\211\300\200\207\306\300\103\001\211\300\000\211\305\000\004\000\306\300\304\001\334\200\200\000\211\300\200\211\312\000\000\000\211\300\000\212\312\000\000\000\211\300\200\212\105\000\000\000\205\100\000\000\206\200\100\001\134\200\000\001\027\300\300\000\026\200\001\200\105\200\005\000\212\000\000\000\134\100\000\001\105\100\000\000\106\200\300\000\136\000\000\001\026\100\000\200\103\000\200\000\136\000\000\001\036\000\200\000\027\000\000\000\004\005\000\000\000\164\171\160\145\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\021\000\000\000\103\165\162\162\145\156\164\103\157\156\164\141\151\156\145\162\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\006\000\000\000\145\162\162\157\162\000\004\023\000\000\000\156\157\040\141\143\164\151\166\145\040\163\157\154\165\164\151\157\156\000\003\000\000\000\000\000\000\000\100\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\015\000\000\000\163\145\164\155\145\164\141\164\141\142\154\145\000\004\007\000\000\000\137\137\164\171\160\145\000\004\013\000\000\000\137\137\143\146\147\143\141\143\150\145\000\004\005\000\000\000\156\141\155\145\000\004\010\000\000\000\142\141\163\145\144\151\162\000\004\003\000\000\000\157\163\000\004\007\000\000\000\147\145\164\143\167\144\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\005\000\000\000\165\165\151\144\000\004\007\000\000\000\146\151\154\164\145\162\000\004\007\000\000\000\142\154\157\143\153\163\000\004\016\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\000\000\000\000\000\121\000\000\000\124\001\000\000\124\001\000\000\126\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\132\001\000\000\132\001\000\000\134\001\000\000\134\001\000\000\134\001\000\000\134\001\000\000\134\001\000\000\135\001\000\000\135\001\000\000\135\001\000\000\135\001\000\000\141\001\000\000\141\001\000\000\141\001\000\000\141\001\000\000\142\001\000\000\142\001\000\000\142\001\000\000\142\001\000\000\143\001\000\000\144\001\000\000\144\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\147\001\000\000\150\001\000\000\150\001\000\000\153\001\000\000\153\001\000\000\153\001\000\000\154\001\000\000\155\001\000\000\155\001\000\000\153\001\000\000\160\001\000\000\161\001\000\000\162\001\000\000\162\001\000\000\162\001\000\000\162\001\000\000\163\001\000\000\163\001\000\000\164\001\000\000\164\001\000\000\164\001\000\000\164\001\000\000\165\001\000\000\165\001\000\000\166\001\000\000\166\001\000\000\172\001\000\000\172\001\000\000\172\001\000\000\172\001\000\000\172\001\000\000\172\001\000\000\174\001\000\000\174\001\000\000\174\001\000\000\175\001\000\000\175\001\000\000\175\001\000\000\175\001\000\000\177\001\000\000\177\001\000\000\201\001\000\000\003\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\120\000\000\000\004\000\000\000\163\154\156\000\003\000\000\000\101\000\000\000\004\000\000\000\160\162\152\000\041\000\000\000\101\000\000\000\000\000\000\000\000\000\000\000\204\001\000\000\247\001\000\000\000\001\000\005\072\000\000\000\032\000\000\000\026\100\010\200\105\000\000\000\205\200\000\000\206\000\000\001\111\200\200\200\105\000\000\000\106\100\300\000\132\100\000\000\026\100\006\200\112\000\000\000\205\000\000\000\211\100\200\200\205\300\000\000\206\000\101\001\305\200\000\000\000\001\200\000\234\100\200\001\205\200\000\000\211\100\000\000\205\100\001\000\300\000\200\000\012\101\000\000\011\301\101\203\234\100\200\001\111\000\000\204\205\200\002\000\206\300\102\001\234\200\200\000\111\200\200\204\212\000\000\000\111\200\000\206\212\000\000\000\111\200\200\206\212\000\000\000\111\200\000\207\105\300\003\000\205\000\000\000\206\100\100\001\134\200\000\001\027\000\304\000\026\000\001\200\105\000\000\000\205\000\000\000\206\100\100\001\206\300\101\001\111\200\200\200\105\000\000\000\106\100\300\000\132\000\000\000\026\200\000\200\105\100\004\000\212\000\000\000\134\100\000\001\105\000\000\000\106\100\300\000\136\000\000\001\036\000\200\000\022\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\021\000\000\000\103\165\162\162\145\156\164\103\157\156\164\141\151\156\145\162\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\015\000\000\000\163\145\164\155\145\164\141\164\141\142\154\145\000\004\007\000\000\000\137\137\164\171\160\145\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\005\000\000\000\156\141\155\145\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\003\000\000\000\157\163\000\004\007\000\000\000\147\145\164\143\167\144\000\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\007\000\000\000\142\154\157\143\153\163\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\005\000\000\000\164\171\160\145\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\016\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\000\000\000\000\000\072\000\000\000\205\001\000\000\205\001\000\000\206\001\000\000\206\001\000\000\206\001\000\000\206\001\000\000\207\001\000\000\207\001\000\000\207\001\000\000\207\001\000\000\210\001\000\000\211\001\000\000\211\001\000\000\214\001\000\000\214\001\000\000\214\001\000\000\214\001\000\000\214\001\000\000\215\001\000\000\215\001\000\000\220\001\000\000\220\001\000\000\220\001\000\000\221\001\000\000\220\001\000\000\224\001\000\000\225\001\000\000\225\001\000\000\225\001\000\000\225\001\000\000\226\001\000\000\226\001\000\000\227\001\000\000\227\001\000\000\230\001\000\000\230\001\000\000\235\001\000\000\235\001\000\000\235\001\000\000\235\001\000\000\235\001\000\000\235\001\000\000\236\001\000\000\236\001\000\000\236\001\000\000\236\001\000\000\236\001\000\000\241\001\000\000\241\001\000\000\241\001\000\000\241\001\000\000\243\001\000\000\243\001\000\000\243\001\000\000\246\001\000\000\246\001\000\000\246\001\000\000\247\001\000\000\002\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\071\000\000\000\004\000\000\000\163\154\156\000\013\000\000\000\044\000\000\000\000\000\000\000\313\000\000\000\015\000\000\000\015\000\000\000\017\000\000\000\021\000\000\000\022\000\000\000\023\000\000\000\025\000\000\000\027\000\000\000\030\000\000\000\031\000\000\000\032\000\000\000\033\000\000\000\034\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\037\000\000\000\041\000\000\000\043\000\000\000\044\000\000\000\045\000\000\000\047\000\000\000\051\000\000\000\052\000\000\000\053\000\000\000\055\000\000\000\057\000\000\000\060\000\000\000\061\000\000\000\063\000\000\000\065\000\000\000\066\000\000\000\067\000\000\000\071\000\000\000\073\000\000\000\074\000\000\000\075\000\000\000\077\000\000\000\101\000\000\000\102\000\000\000\103\000\000\000\104\000\000\000\105\000\000\000\106\000\000\000\107\000\000\000\110\000\000\000\111\000\000\000\112\000\000\000\113\000\000\000\114\000\000\000\115\000\000\000\116\000\000\000\117\000\000\000\120\000\000\000\121\000\000\000\122\000\000\000\123\000\000\000\124\000\000\000\125\000\000\000\126\000\000\000\127\000\000\000\130\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\135\000\000\000\137\000\000\000\140\000\000\000\141\000\000\000\143\000\000\000\145\000\000\000\146\000\000\000\147\000\000\000\151\000\000\000\153\000\000\000\154\000\000\000\155\000\000\000\157\000\000\000\161\000\000\000\162\000\000\000\163\000\000\000\165\000\000\000\167\000\000\000\170\000\000\000\171\000\000\000\173\000\000\000\175\000\000\000\176\000\000\000\177\000\000\000\200\000\000\000\201\000\000\000\202\000\000\000\204\000\000\000\204\000\000\000\204\000\000\000\205\000\000\000\207\000\000\000\211\000\000\000\212\000\000\000\213\000\000\000\214\000\000\000\215\000\000\000\217\000\000\000\217\000\000\000\217\000\000\000\220\000\000\000\222\000\000\000\224\000\000\000\225\000\000\000\226\000\000\000\230\000\000\000\232\000\000\000\233\000\000\000\234\000\000\000\236\000\000\000\240\000\000\000\241\000\000\000\242\000\000\000\244\000\000\000\246\000\000\000\247\000\000\000\250\000\000\000\252\000\000\000\254\000\000\000\255\000\000\000\256\000\000\000\260\000\000\000\262\000\000\000\263\000\000\000\264\000\000\000\266\000\000\000\270\000\000\000\271\000\000\000\272\000\000\000\274\000\000\000\276\000\000\000\277\000\000\000\300\000\000\000\302\000\000\000\304\000\000\000\305\000\000\000\306\000\000\000\310\000\000\000\312\000\000\000\313\000\000\000\314\000\000\000\316\000\000\000\320\000\000\000\321\000\000\000\322\000\000\000\324\000\000\000\326\000\000\000\327\000\000\000\330\000\000\000\332\000\000\000\334\000\000\000\335\000\000\000\336\000\000\000\340\000\000\000\342\000\000\000\343\000\000\000\344\000\000\000\346\000\000\000\350\000\000\000\351\000\000\000\352\000\000\000\354\000\000\000\356\000\000\000\357\000\000\000\360\000\000\000\362\000\000\000\364\000\000\000\365\000\000\000\366\000\000\000\370\000\000\000\372\000\000\000\373\000\000\000\013\001\000\000\013\001\000\000\014\001\000\000\015\001\000\000\044\001\000\000\054\001\000\000\054\001\000\000\054\001\000\000\054\001\000\000\054\001\000\000\055\001\000\000\057\001\000\000\057\001\000\000\057\001\000\000\057\001\000\000\057\001\000\000\054\001\000\000\057\001\000\000\120\001\000\000\070\001\000\000\201\001\000\000\123\001\000\000\247\001\000\000\204\001\000\000\247\001\000\000\006\000\000\000\011\000\000\000\141\143\143\145\163\163\157\162\000\267\000\000\000\312\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\273\000\000\000\304\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\273\000\000\000\304\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\273\000\000\000\304\000\000\000\005\000\000\000\156\141\155\145\000\274\000\000\000\301\000\000\000\002\000\000\000\137\000\274\000\000\000\301\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\026\000\000\000\100\163\162\143\057\142\141\163\145\057\143\155\144\154\151\156\145\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\013\144\000\000\000\012\000\000\001\101\000\000\000\201\100\000\000\042\100\000\001\112\000\000\001\201\000\000\000\301\100\000\000\142\100\000\001\244\000\000\000\000\000\000\000\207\200\000\000\244\100\000\000\000\000\200\000\207\300\000\000\205\300\000\000\312\000\001\000\311\000\301\200\311\200\301\202\311\300\101\200\012\001\000\001\112\001\000\001\201\101\002\000\301\201\002\000\142\101\000\001\212\001\000\001\301\301\002\000\001\002\003\000\242\101\000\001\042\101\000\001\311\000\001\204\234\100\000\001\205\300\000\000\312\000\001\000\311\100\303\200\311\100\301\202\311\200\103\200\012\001\200\001\112\001\000\001\201\301\003\000\301\001\004\000\142\101\000\001\212\001\000\001\301\101\004\000\001\202\004\000\242\101\000\001\312\001\000\001\001\302\004\000\101\002\005\000\342\101\000\001\042\101\200\001\311\000\001\204\234\100\000\001\205\300\000\000\312\300\000\000\311\100\305\200\311\200\305\202\311\300\105\200\234\100\000\001\205\300\000\000\312\200\000\000\311\000\306\200\311\100\106\200\234\100\000\001\205\300\000\000\312\000\001\000\311\200\306\200\311\100\301\202\311\300\106\200\012\001\000\002\112\001\000\001\201\001\007\000\301\101\007\000\142\101\000\001\212\001\000\001\301\201\007\000\001\302\007\000\242\101\000\001\312\001\000\001\001\002\010\000\101\102\010\000\342\101\000\001\012\002\000\001\101\202\010\000\201\302\010\000\042\102\000\001\042\101\000\002\311\000\001\204\234\100\000\001\205\300\000\000\312\300\000\000\311\000\311\200\311\100\311\202\311\200\111\200\234\100\000\001\205\300\000\000\312\200\000\000\311\300\311\200\311\000\112\200\234\100\000\001\036\000\200\000\051\000\000\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\012\000\000\000\156\145\167\157\160\164\151\157\156\000\004\003\000\000\000\143\143\000\004\006\000\000\000\166\141\154\165\145\000\004\011\000\000\000\143\157\155\160\151\154\145\162\000\004\034\000\000\000\103\150\157\157\163\145\040\141\040\103\057\103\053\053\040\143\157\155\160\151\154\145\162\040\163\145\164\000\004\010\000\000\000\141\154\154\157\167\145\144\000\004\004\000\000\000\147\143\143\000\004\033\000\000\000\107\116\125\040\107\103\103\040\143\157\155\160\151\154\145\162\040\050\147\143\143\057\147\053\053\051\000\004\003\000\000\000\157\167\000\004\024\000\000\000\117\160\145\156\127\141\164\143\157\155\040\143\157\155\160\151\154\145\162\000\004\007\000\000\000\144\157\164\156\145\164\000\004\033\000\000\000\103\150\157\157\163\145\040\141\040\056\116\105\124\040\143\157\155\160\151\154\145\162\040\163\145\164\000\004\003\000\000\000\155\163\000\004\025\000\000\000\115\151\143\162\157\163\157\146\164\040\056\116\105\124\040\050\143\163\143\051\000\004\005\000\000\000\155\157\156\157\000\004\022\000\000\000\116\157\166\145\154\154\040\115\157\156\157\040\050\155\143\163\051\000\004\005\000\000\000\160\156\145\164\000\004\024\000\000\000\120\157\162\164\141\142\154\145\056\116\105\124\040\050\143\163\143\143\051\000\004\005\000\000\000\146\151\154\145\000\004\011\000\000\000\146\151\154\145\156\141\155\145\000\004\052\000\000\000\120\162\157\143\145\163\163\040\164\150\145\040\163\160\145\143\151\146\151\145\144\040\120\162\145\155\141\153\145\040\163\143\162\151\160\164\040\146\151\154\145\000\004\005\000\000\000\150\145\154\160\000\004\031\000\000\000\104\151\163\160\154\141\171\040\164\150\151\163\040\151\156\146\157\162\155\141\164\151\157\156\000\004\003\000\000\000\157\163\000\004\060\000\000\000\107\145\156\145\162\141\164\145\040\146\151\154\145\163\040\146\157\162\040\141\040\144\151\146\146\145\162\145\156\164\040\157\160\145\162\141\164\151\156\147\040\163\171\163\164\145\155\000\004\004\000\000\000\142\163\144\000\004\034\000\000\000\117\160\145\156\102\123\104\054\040\116\145\164\102\123\104\054\040\157\162\040\106\162\145\145\102\123\104\000\004\006\000\000\000\154\151\156\165\170\000\004\006\000\000\000\114\151\156\165\170\000\004\007\000\000\000\155\141\143\157\163\170\000\004\017\000\000\000\101\160\160\154\145\040\115\141\143\040\117\123\040\130\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\022\000\000\000\115\151\143\162\157\163\157\146\164\040\127\151\156\144\157\167\163\000\004\010\000\000\000\163\143\162\151\160\164\163\000\004\005\000\000\000\160\141\164\150\000\004\060\000\000\000\123\145\141\162\143\150\040\146\157\162\040\141\144\144\151\164\151\157\156\141\154\040\163\143\162\151\160\164\163\040\157\156\040\164\150\145\040\147\151\166\145\156\040\160\141\164\150\000\004\010\000\000\000\166\145\162\163\151\157\156\000\004\034\000\000\000\104\151\163\160\154\141\171\040\166\145\162\163\151\157\156\040\151\156\146\157\162\155\141\164\151\157\156\000\002\000\000\000\000\000\000\000\031\000\000\000\050\000\000\000\001\001\000\010\027\000\000\000\205\000\000\000\304\000\000\000\234\000\001\001\026\300\000\200\306\201\001\000\332\101\000\000\026\000\000\200\100\000\000\003\241\200\000\000\026\100\376\177\132\000\000\000\026\100\001\200\205\100\000\000\301\200\000\000\000\001\200\000\325\000\201\001\001\301\000\000\234\100\200\001\205\000\001\000\206\100\101\001\306\200\101\000\211\000\200\001\036\000\200\000\007\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\145\162\162\157\162\000\004\020\000\000\000\141\143\164\151\157\156\040\156\145\145\144\163\040\141\040\000\003\000\000\000\000\000\000\000\100\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\010\000\000\000\164\162\151\147\147\145\162\000\000\000\000\000\027\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\036\000\000\000\034\000\000\000\037\000\000\000\042\000\000\000\042\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\050\000\000\000\007\000\000\000\002\000\000\000\141\000\000\000\000\000\026\000\000\000\010\000\000\000\155\151\163\163\151\156\147\000\000\000\000\000\026\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\012\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\012\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\012\000\000\000\002\000\000\000\137\000\004\000\000\000\010\000\000\000\006\000\000\000\146\151\145\154\144\000\004\000\000\000\010\000\000\000\001\000\000\000\025\000\000\000\162\145\161\165\151\162\145\144\141\143\164\151\157\156\146\151\145\154\144\163\000\000\000\000\000\060\000\000\000\077\000\000\000\001\001\000\010\027\000\000\000\205\000\000\000\304\000\000\000\234\000\001\001\026\300\000\200\306\201\001\000\332\101\000\000\026\000\000\200\100\000\000\003\241\200\000\000\026\100\376\177\132\000\000\000\026\100\001\200\205\100\000\000\301\200\000\000\000\001\200\000\325\000\201\001\001\301\000\000\234\100\200\001\205\000\001\000\206\100\101\001\306\200\101\000\211\000\200\001\036\000\200\000\007\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\145\162\162\157\162\000\004\020\000\000\000\141\143\164\151\157\156\040\156\145\145\144\163\040\141\040\000\003\000\000\000\000\000\000\000\100\004\010\000\000\000\160\162\145\155\141\153\145\000\004\010\000\000\000\157\160\164\151\157\156\163\000\004\010\000\000\000\164\162\151\147\147\145\162\000\000\000\000\000\027\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\063\000\000\000\066\000\000\000\071\000\000\000\071\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\077\000\000\000\007\000\000\000\004\000\000\000\157\160\164\000\000\000\000\000\026\000\000\000\010\000\000\000\155\151\163\163\151\156\147\000\000\000\000\000\026\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\012\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\012\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\012\000\000\000\002\000\000\000\137\000\004\000\000\000\010\000\000\000\006\000\000\000\146\151\145\154\144\000\004\000\000\000\010\000\000\000\001\000\000\000\025\000\000\000\162\145\161\165\151\162\145\144\157\160\164\151\157\156\146\151\145\154\144\163\000\144\000\000\000\010\000\000\000\012\000\000\000\014\000\000\000\014\000\000\000\016\000\000\000\020\000\000\000\022\000\000\000\022\000\000\000\050\000\000\000\050\000\000\000\031\000\000\000\077\000\000\000\077\000\000\000\060\000\000\000\107\000\000\000\107\000\000\000\111\000\000\000\112\000\000\000\113\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\117\000\000\000\117\000\000\000\110\000\000\000\122\000\000\000\122\000\000\000\124\000\000\000\125\000\000\000\126\000\000\000\127\000\000\000\127\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\133\000\000\000\123\000\000\000\136\000\000\000\136\000\000\000\140\000\000\000\141\000\000\000\142\000\000\000\137\000\000\000\145\000\000\000\145\000\000\000\147\000\000\000\150\000\000\000\146\000\000\000\153\000\000\000\153\000\000\000\155\000\000\000\156\000\000\000\157\000\000\000\160\000\000\000\160\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\161\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\162\000\000\000\163\000\000\000\163\000\000\000\163\000\000\000\163\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\165\000\000\000\165\000\000\000\154\000\000\000\170\000\000\000\170\000\000\000\172\000\000\000\173\000\000\000\174\000\000\000\171\000\000\000\177\000\000\000\177\000\000\000\201\000\000\000\202\000\000\000\200\000\000\000\203\000\000\000\002\000\000\000\025\000\000\000\162\145\161\165\151\162\145\144\141\143\164\151\157\156\146\151\145\154\144\163\000\004\000\000\000\143\000\000\000\025\000\000\000\162\145\161\165\151\162\145\144\157\160\164\151\157\156\146\151\145\154\144\163\000\010\000\000\000\143\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\023\000\000\000\100\163\162\143\057\164\157\157\154\163\057\143\163\143\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\003\024\000\000\000\005\000\000\000\112\000\000\000\011\100\200\200\012\200\001\000\011\300\100\201\011\100\101\202\011\100\101\203\011\100\301\203\011\100\102\204\011\300\102\205\105\000\000\000\106\100\300\000\244\000\000\000\111\200\000\206\105\000\000\000\106\100\300\000\244\100\000\000\000\000\000\000\111\200\200\206\036\000\200\000\016\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\004\000\000\000\143\163\143\000\004\015\000\000\000\106\141\164\141\154\127\141\162\156\151\156\147\000\004\015\000\000\000\057\167\141\162\156\141\163\145\162\162\157\162\000\004\011\000\000\000\117\160\164\151\155\151\172\145\000\004\012\000\000\000\057\157\160\164\151\155\151\172\145\000\004\015\000\000\000\117\160\164\151\155\151\172\145\123\151\172\145\000\004\016\000\000\000\117\160\164\151\155\151\172\145\123\160\145\145\144\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\007\000\000\000\057\144\145\142\165\147\000\004\007\000\000\000\125\156\163\141\146\145\000\004\010\000\000\000\057\165\156\163\141\146\145\000\004\017\000\000\000\147\145\164\143\157\155\160\151\154\145\162\166\141\162\000\004\011\000\000\000\147\145\164\146\154\141\147\163\000\002\000\000\000\000\000\000\000\037\000\000\000\047\000\000\000\000\001\000\002\021\000\000\000\105\000\000\000\106\100\300\000\027\200\300\000\026\200\000\200\101\300\000\000\136\000\000\001\026\000\002\200\105\000\000\000\106\100\300\000\027\000\301\000\026\200\000\200\101\100\001\000\136\000\000\001\026\100\000\200\101\200\001\000\136\000\000\001\036\000\200\000\007\000\000\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\007\000\000\000\144\157\164\156\145\164\000\004\003\000\000\000\155\163\000\004\004\000\000\000\143\163\143\000\004\005\000\000\000\155\157\156\157\000\004\004\000\000\000\155\143\163\000\004\005\000\000\000\143\163\143\143\000\000\000\000\000\021\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\045\000\000\000\045\000\000\000\047\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\056\000\000\000\061\000\000\000\001\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\304\000\000\000\134\200\200\001\136\000\000\001\036\000\200\000\003\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\006\000\000\000\146\154\141\147\163\000\000\000\000\000\007\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\060\000\000\000\061\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\006\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\006\000\000\000\001\000\000\000\006\000\000\000\146\154\141\147\163\000\024\000\000\000\010\000\000\000\010\000\000\000\010\000\000\000\017\000\000\000\021\000\000\000\022\000\000\000\023\000\000\000\024\000\000\000\025\000\000\000\026\000\000\000\037\000\000\000\037\000\000\000\047\000\000\000\037\000\000\000\056\000\000\000\056\000\000\000\061\000\000\000\061\000\000\000\056\000\000\000\061\000\000\000\001\000\000\000\006\000\000\000\146\154\141\147\163\000\012\000\000\000\023\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\023\000\000\000\100\163\162\143\057\164\157\157\154\163\057\147\143\143\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\004\057\000\000\000\005\000\000\000\112\000\000\000\011\100\200\200\005\000\000\000\011\300\100\201\012\300\001\000\011\100\101\202\011\300\101\203\011\100\102\204\011\300\102\205\011\100\103\206\011\300\103\207\011\100\104\210\112\200\000\000\111\300\104\211\111\100\105\212\205\000\000\000\206\100\100\001\344\000\000\000\211\300\000\213\205\000\000\000\206\100\100\001\344\100\000\000\000\000\000\000\211\300\200\213\205\000\000\000\206\100\100\001\344\200\000\000\000\000\200\000\211\300\000\214\205\000\000\000\206\100\100\001\344\300\000\000\211\300\200\214\205\000\000\000\206\100\100\001\344\000\001\000\211\300\000\215\205\000\000\000\206\100\100\001\344\100\001\000\211\300\200\215\205\000\000\000\206\100\100\001\344\200\001\000\211\300\000\216\036\000\200\000\035\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\004\000\000\000\147\143\143\000\004\014\000\000\000\164\141\162\147\145\164\163\164\171\154\145\000\004\006\000\000\000\154\151\156\165\170\000\004\016\000\000\000\105\170\164\162\141\127\141\162\156\151\156\147\163\000\004\006\000\000\000\055\127\141\154\154\000\004\015\000\000\000\106\141\164\141\154\127\141\162\156\151\156\147\000\004\010\000\000\000\055\127\145\162\162\157\162\000\004\017\000\000\000\116\157\106\162\141\155\145\120\157\151\156\164\145\162\000\004\025\000\000\000\055\146\157\155\151\164\055\146\162\141\155\145\055\160\157\151\156\164\145\162\000\004\011\000\000\000\117\160\164\151\155\151\172\145\000\004\004\000\000\000\055\117\062\000\004\015\000\000\000\117\160\164\151\155\151\172\145\123\151\172\145\000\004\004\000\000\000\055\117\163\000\004\016\000\000\000\117\160\164\151\155\151\172\145\123\160\145\145\144\000\004\004\000\000\000\055\117\063\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\003\000\000\000\055\147\000\004\015\000\000\000\116\157\105\170\143\145\160\164\151\157\156\163\000\004\020\000\000\000\055\055\156\157\055\145\170\143\145\160\164\151\157\156\163\000\004\007\000\000\000\116\157\122\124\124\111\000\004\012\000\000\000\055\055\156\157\055\162\164\164\151\000\004\014\000\000\000\147\145\164\143\160\160\146\154\141\147\163\000\004\012\000\000\000\147\145\164\143\146\154\141\147\163\000\004\014\000\000\000\147\145\164\143\170\170\146\154\141\147\163\000\004\013\000\000\000\147\145\164\154\144\146\154\141\147\163\000\004\015\000\000\000\147\145\164\154\151\156\153\146\154\141\147\163\000\004\013\000\000\000\147\145\164\144\145\146\151\156\145\163\000\004\017\000\000\000\147\145\164\151\156\143\154\165\144\145\144\151\162\163\000\007\000\000\000\000\000\000\000\050\000\000\000\054\000\000\000\000\001\000\002\003\000\000\000\101\000\000\000\136\000\000\001\036\000\200\000\001\000\000\000\004\041\000\000\000\044\050\151\146\040\044\050\167\157\162\144\040\062\054\040\044\050\101\122\103\110\051\051\054\040\054\040\055\115\115\104\051\000\000\000\000\000\003\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\002\000\000\000\000\000\000\000\000\000\000\000\056\000\000\000\064\000\000\000\001\001\000\005\025\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\304\000\000\000\134\200\200\001\206\300\100\000\027\000\101\001\026\200\002\200\205\100\001\000\206\200\101\001\301\300\001\000\234\200\000\001\232\100\000\000\026\000\001\200\205\000\000\000\206\000\102\001\300\000\200\000\001\101\002\000\234\100\200\001\136\000\000\001\036\000\200\000\012\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\006\000\000\000\146\154\141\147\163\000\004\005\000\000\000\153\151\156\144\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\003\000\000\000\157\163\000\004\003\000\000\000\151\163\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\007\000\000\000\151\156\163\145\162\164\000\004\006\000\000\000\055\146\120\111\103\000\000\000\000\000\025\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\063\000\000\000\064\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\024\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\024\000\000\000\001\000\000\000\007\000\000\000\143\146\154\141\147\163\000\000\000\000\000\066\000\000\000\071\000\000\000\001\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\304\000\000\000\134\200\200\001\136\000\000\001\036\000\200\000\003\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\006\000\000\000\146\154\141\147\163\000\000\000\000\000\007\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\070\000\000\000\071\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\006\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\006\000\000\000\001\000\000\000\011\000\000\000\143\170\170\146\154\141\147\163\000\000\000\000\000\101\000\000\000\137\000\000\000\000\001\000\011\126\000\000\000\112\000\000\000\206\000\100\000\027\100\100\001\026\000\013\200\205\200\000\000\206\300\100\001\301\000\001\000\234\200\000\001\232\000\000\000\026\100\002\200\205\100\001\000\206\200\101\001\300\000\200\000\012\001\000\001\101\301\001\000\201\001\002\000\042\101\000\001\234\200\200\001\100\000\000\001\026\000\001\200\205\100\001\000\206\100\102\001\300\000\200\000\001\201\002\000\234\100\200\001\205\200\000\000\206\300\100\001\301\300\002\000\234\200\000\001\232\000\000\000\026\100\004\200\206\000\103\000\206\100\103\001\232\100\000\000\026\100\003\200\205\100\001\000\206\100\102\001\300\000\200\000\001\201\003\000\105\301\003\000\106\001\304\002\200\001\000\000\301\101\004\000\001\202\004\000\134\201\000\002\106\301\304\002\201\001\005\000\025\201\001\002\234\100\200\001\205\200\000\000\206\300\100\001\301\300\002\000\234\200\000\001\232\000\000\000\026\300\001\200\206\000\100\000\027\100\105\001\026\000\001\200\205\100\001\000\206\100\102\001\300\000\200\000\001\201\005\000\234\100\200\001\206\000\103\000\206\300\105\001\232\100\000\000\026\000\004\200\205\200\000\000\206\300\100\001\301\000\001\000\234\200\000\001\232\000\000\000\026\100\001\200\205\100\001\000\206\100\102\001\300\000\200\000\001\001\006\000\234\100\200\001\026\000\001\200\205\100\001\000\206\100\102\001\300\000\200\000\001\101\006\000\234\100\200\001\136\000\000\001\036\000\200\000\032\000\000\000\004\005\000\000\000\153\151\156\144\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\003\000\000\000\157\163\000\004\003\000\000\000\151\163\000\004\007\000\000\000\155\141\143\157\163\170\000\004\006\000\000\000\164\141\142\154\145\000\004\005\000\000\000\152\157\151\156\000\004\014\000\000\000\055\144\171\156\141\155\151\143\154\151\142\000\004\020\000\000\000\055\146\154\141\164\137\156\141\155\145\163\160\141\143\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\010\000\000\000\055\163\150\141\162\145\144\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\006\000\000\000\146\154\141\147\163\000\004\014\000\000\000\116\157\111\155\160\157\162\164\114\151\142\000\004\023\000\000\000\055\127\154\054\055\055\157\165\164\055\151\155\160\154\151\142\075\042\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\147\145\164\164\141\162\147\145\164\000\004\005\000\000\000\154\151\156\153\000\004\006\000\000\000\154\151\156\165\170\000\004\011\000\000\000\146\165\154\154\160\141\164\150\000\004\002\000\000\000\042\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\055\155\167\151\156\144\157\167\163\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\007\000\000\000\055\127\154\054\055\170\000\004\003\000\000\000\055\163\000\000\000\000\000\126\000\000\000\102\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\136\000\000\000\137\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\125\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\125\000\000\000\000\000\000\000\000\000\000\000\147\000\000\000\160\000\000\000\000\001\000\014\055\000\000\000\112\000\000\000\205\000\000\000\305\100\000\000\306\200\300\001\000\001\000\000\101\301\000\000\201\001\001\000\334\000\000\002\234\000\001\000\026\100\002\200\305\101\001\000\306\201\301\003\000\002\200\000\101\302\001\000\205\002\002\000\206\102\102\005\300\002\000\003\234\202\000\001\125\202\202\004\334\101\200\001\241\200\000\000\026\300\374\177\205\000\000\000\305\100\000\000\306\200\300\001\000\001\000\000\101\301\000\000\201\201\002\000\334\000\000\002\234\000\001\000\026\100\002\200\305\101\001\000\306\201\301\003\000\002\200\000\101\302\002\000\205\002\002\000\206\102\102\005\300\002\000\003\234\202\000\001\125\202\202\004\334\101\200\001\241\200\000\000\026\300\374\177\136\000\000\001\036\000\200\000\014\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\011\000\000\000\147\145\164\154\151\156\153\163\000\004\004\000\000\000\141\154\154\000\004\012\000\000\000\144\151\162\145\143\164\157\162\171\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\003\000\000\000\055\114\000\004\006\000\000\000\137\115\101\113\105\000\004\004\000\000\000\145\163\143\000\004\011\000\000\000\142\141\163\145\156\141\155\145\000\004\003\000\000\000\055\154\000\000\000\000\000\055\000\000\000\150\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\151\000\000\000\152\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\154\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\154\000\000\000\155\000\000\000\157\000\000\000\160\000\000\000\014\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\054\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\054\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\011\000\000\000\026\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\011\000\000\000\026\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\011\000\000\000\026\000\000\000\002\000\000\000\137\000\012\000\000\000\024\000\000\000\006\000\000\000\166\141\154\165\145\000\012\000\000\000\024\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\036\000\000\000\053\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\036\000\000\000\053\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\036\000\000\000\053\000\000\000\002\000\000\000\137\000\037\000\000\000\051\000\000\000\006\000\000\000\166\141\154\165\145\000\037\000\000\000\051\000\000\000\000\000\000\000\000\000\000\000\170\000\000\000\176\000\000\000\000\001\000\013\020\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\200\001\200\305\101\000\000\306\201\300\003\000\002\200\000\101\302\000\000\200\002\000\003\125\202\202\004\334\101\200\001\241\200\000\000\026\200\375\177\136\000\000\001\036\000\200\000\004\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\003\000\000\000\055\104\000\000\000\000\000\020\000\000\000\171\000\000\000\172\000\000\000\172\000\000\000\172\000\000\000\172\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\172\000\000\000\173\000\000\000\175\000\000\000\176\000\000\000\007\000\000\000\010\000\000\000\144\145\146\151\156\145\163\000\000\000\000\000\017\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\017\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\016\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\016\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\016\000\000\000\002\000\000\000\137\000\005\000\000\000\014\000\000\000\004\000\000\000\144\145\146\000\005\000\000\000\014\000\000\000\000\000\000\000\000\000\000\000\206\000\000\000\214\000\000\000\000\001\000\014\021\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\300\001\200\305\101\000\000\306\201\300\003\000\002\200\000\101\302\000\000\200\002\000\003\301\002\001\000\125\302\202\004\334\101\200\001\241\200\000\000\026\100\375\177\136\000\000\001\036\000\200\000\005\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\055\111\040\042\000\004\002\000\000\000\042\000\000\000\000\000\021\000\000\000\207\000\000\000\210\000\000\000\210\000\000\000\210\000\000\000\210\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\210\000\000\000\211\000\000\000\213\000\000\000\214\000\000\000\007\000\000\000\014\000\000\000\151\156\143\154\165\144\145\144\151\162\163\000\000\000\000\000\020\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\020\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\017\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\017\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\017\000\000\000\002\000\000\000\137\000\005\000\000\000\015\000\000\000\004\000\000\000\144\151\162\000\005\000\000\000\015\000\000\000\000\000\000\000\057\000\000\000\010\000\000\000\010\000\000\000\010\000\000\000\011\000\000\000\011\000\000\000\020\000\000\000\022\000\000\000\023\000\000\000\024\000\000\000\025\000\000\000\026\000\000\000\027\000\000\000\030\000\000\000\033\000\000\000\035\000\000\000\036\000\000\000\050\000\000\000\050\000\000\000\054\000\000\000\050\000\000\000\056\000\000\000\056\000\000\000\064\000\000\000\064\000\000\000\056\000\000\000\066\000\000\000\066\000\000\000\071\000\000\000\071\000\000\000\066\000\000\000\101\000\000\000\101\000\000\000\137\000\000\000\101\000\000\000\147\000\000\000\147\000\000\000\160\000\000\000\147\000\000\000\170\000\000\000\170\000\000\000\176\000\000\000\170\000\000\000\206\000\000\000\206\000\000\000\214\000\000\000\206\000\000\000\214\000\000\000\002\000\000\000\007\000\000\000\143\146\154\141\147\163\000\015\000\000\000\056\000\000\000\011\000\000\000\143\170\170\146\154\141\147\163\000\020\000\000\000\056\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\022\000\000\000\100\163\162\143\057\164\157\157\154\163\057\157\167\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\004\057\000\000\000\005\000\000\000\112\000\000\000\011\100\200\200\005\000\000\000\006\100\100\000\011\300\100\201\012\200\001\000\011\100\101\202\011\300\101\203\011\100\102\204\011\300\102\205\011\100\103\206\011\300\103\207\112\200\000\000\111\100\104\210\111\300\104\211\205\000\000\000\206\100\100\001\344\000\000\000\211\300\000\212\205\000\000\000\206\100\100\001\344\100\000\000\000\000\000\000\211\300\200\212\205\000\000\000\206\100\100\001\344\200\000\000\000\000\200\000\211\300\000\213\205\000\000\000\206\100\100\001\344\300\000\000\211\300\200\213\205\000\000\000\206\100\100\001\344\000\001\000\211\300\000\214\205\000\000\000\206\100\100\001\344\100\001\000\211\300\200\214\205\000\000\000\206\100\100\001\344\200\001\000\211\300\000\215\036\000\200\000\033\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\003\000\000\000\157\167\000\004\014\000\000\000\164\141\162\147\145\164\163\164\171\154\145\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\016\000\000\000\105\170\164\162\141\127\141\162\156\151\156\147\163\000\004\004\000\000\000\055\167\170\000\004\015\000\000\000\106\141\164\141\154\127\141\162\156\151\156\147\000\004\004\000\000\000\055\167\145\000\004\011\000\000\000\117\160\164\151\155\151\172\145\000\004\004\000\000\000\055\157\170\000\004\015\000\000\000\117\160\164\151\155\151\172\145\123\151\172\145\000\004\004\000\000\000\055\157\163\000\004\016\000\000\000\117\160\164\151\155\151\172\145\123\160\145\145\144\000\004\004\000\000\000\055\157\164\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\004\000\000\000\055\144\062\000\004\015\000\000\000\116\157\105\170\143\145\160\164\151\157\156\163\000\004\004\000\000\000\055\170\144\000\004\007\000\000\000\116\157\122\124\124\111\000\004\004\000\000\000\055\170\162\000\004\014\000\000\000\147\145\164\143\160\160\146\154\141\147\163\000\004\012\000\000\000\147\145\164\143\146\154\141\147\163\000\004\014\000\000\000\147\145\164\143\170\170\146\154\141\147\163\000\004\013\000\000\000\147\145\164\154\144\146\154\141\147\163\000\004\015\000\000\000\147\145\164\154\151\156\153\146\154\141\147\163\000\004\013\000\000\000\147\145\164\144\145\146\151\156\145\163\000\004\017\000\000\000\147\145\164\151\156\143\154\165\144\145\144\151\162\163\000\007\000\000\000\000\000\000\000\046\000\000\000\050\000\000\000\000\001\000\002\003\000\000\000\101\000\000\000\136\000\000\001\036\000\200\000\001\000\000\000\004\001\000\000\000\000\000\000\000\000\003\000\000\000\047\000\000\000\047\000\000\000\050\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\002\000\000\000\000\000\000\000\000\000\000\000\052\000\000\000\060\000\000\000\001\001\000\005\020\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\304\000\000\000\134\200\200\001\206\200\100\000\206\300\100\001\232\000\000\000\026\000\001\200\205\000\000\000\206\000\101\001\300\000\200\000\001\101\001\000\234\100\200\001\136\000\000\001\036\000\200\000\006\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\006\000\000\000\146\154\141\147\163\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\007\000\000\000\151\156\163\145\162\164\000\004\004\000\000\000\055\150\167\000\000\000\000\000\020\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\057\000\000\000\060\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\017\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\017\000\000\000\001\000\000\000\007\000\000\000\143\146\154\141\147\163\000\000\000\000\000\062\000\000\000\065\000\000\000\001\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\304\000\000\000\134\200\200\001\136\000\000\001\036\000\200\000\003\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\006\000\000\000\146\154\141\147\163\000\000\000\000\000\007\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\064\000\000\000\065\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\006\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\006\000\000\000\001\000\000\000\011\000\000\000\143\170\170\146\154\141\147\163\000\000\000\000\000\075\000\000\000\105\000\000\000\000\001\000\005\014\000\000\000\112\000\000\000\206\000\100\000\206\100\100\001\232\000\000\000\026\000\001\200\205\200\000\000\206\300\100\001\300\000\200\000\001\001\001\000\234\100\200\001\136\000\000\001\036\000\200\000\005\000\000\000\004\006\000\000\000\146\154\141\147\163\000\004\010\000\000\000\123\171\155\142\157\154\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\010\000\000\000\157\160\040\163\171\155\146\000\000\000\000\000\014\000\000\000\076\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\104\000\000\000\105\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\013\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\013\000\000\000\000\000\000\000\000\000\000\000\115\000\000\000\120\000\000\000\000\001\000\002\003\000\000\000\112\000\000\000\136\000\000\001\036\000\200\000\000\000\000\000\000\000\000\000\003\000\000\000\116\000\000\000\117\000\000\000\120\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\002\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\002\000\000\000\000\000\000\000\000\000\000\000\130\000\000\000\136\000\000\000\000\001\000\013\020\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\200\001\200\305\101\000\000\306\201\300\003\000\002\200\000\101\302\000\000\200\002\000\003\125\202\202\004\334\101\200\001\241\200\000\000\026\200\375\177\136\000\000\001\036\000\200\000\004\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\003\000\000\000\055\104\000\000\000\000\000\020\000\000\000\131\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\132\000\000\000\133\000\000\000\135\000\000\000\136\000\000\000\007\000\000\000\010\000\000\000\144\145\146\151\156\145\163\000\000\000\000\000\017\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\017\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\016\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\016\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\016\000\000\000\002\000\000\000\137\000\005\000\000\000\014\000\000\000\004\000\000\000\144\145\146\000\005\000\000\000\014\000\000\000\000\000\000\000\000\000\000\000\146\000\000\000\154\000\000\000\000\001\000\014\021\000\000\000\112\000\000\000\205\000\000\000\300\000\000\000\234\000\001\001\026\300\001\200\305\101\000\000\306\201\300\003\000\002\200\000\101\302\000\000\200\002\000\003\301\002\001\000\125\302\202\004\334\101\200\001\241\200\000\000\026\100\375\177\136\000\000\001\036\000\200\000\005\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\055\111\040\042\000\004\002\000\000\000\042\000\000\000\000\000\021\000\000\000\147\000\000\000\150\000\000\000\150\000\000\000\150\000\000\000\150\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\150\000\000\000\151\000\000\000\153\000\000\000\154\000\000\000\007\000\000\000\014\000\000\000\151\156\143\154\165\144\145\144\151\162\163\000\000\000\000\000\020\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\020\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\017\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\017\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\017\000\000\000\002\000\000\000\137\000\005\000\000\000\015\000\000\000\004\000\000\000\144\151\162\000\005\000\000\000\015\000\000\000\000\000\000\000\057\000\000\000\007\000\000\000\007\000\000\000\007\000\000\000\010\000\000\000\010\000\000\000\010\000\000\000\017\000\000\000\021\000\000\000\022\000\000\000\023\000\000\000\024\000\000\000\025\000\000\000\026\000\000\000\031\000\000\000\033\000\000\000\034\000\000\000\046\000\000\000\046\000\000\000\050\000\000\000\046\000\000\000\052\000\000\000\052\000\000\000\060\000\000\000\060\000\000\000\052\000\000\000\062\000\000\000\062\000\000\000\065\000\000\000\065\000\000\000\062\000\000\000\075\000\000\000\075\000\000\000\105\000\000\000\075\000\000\000\115\000\000\000\115\000\000\000\120\000\000\000\115\000\000\000\130\000\000\000\130\000\000\000\136\000\000\000\130\000\000\000\146\000\000\000\146\000\000\000\154\000\000\000\146\000\000\000\154\000\000\000\002\000\000\000\007\000\000\000\143\146\154\141\147\163\000\015\000\000\000\056\000\000\000\011\000\000\000\143\170\170\146\154\141\147\163\000\020\000\000\000\056\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\023\000\000\000\100\163\162\143\057\142\141\163\145\057\150\145\154\160\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\002\004\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\036\000\200\000\002\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\011\000\000\000\163\150\157\167\150\145\154\160\000\001\000\000\000\000\000\000\000\010\000\000\000\076\000\000\000\000\000\000\021\215\000\000\000\012\000\000\000\007\000\000\000\005\100\000\000\105\200\000\000\106\000\300\000\034\000\001\001\026\000\001\200\105\301\000\000\106\001\301\002\205\001\000\000\300\001\200\001\134\101\200\001\041\200\000\000\026\000\376\177\005\300\000\000\006\100\101\000\105\000\000\000\034\100\000\001\012\000\000\000\007\200\001\000\005\100\000\000\105\200\000\000\106\200\301\000\034\000\001\001\026\000\001\200\105\301\000\000\106\001\301\002\205\201\001\000\300\001\200\001\134\101\200\001\041\200\000\000\026\000\376\177\005\300\000\000\006\100\101\000\105\200\001\000\034\100\000\001\005\300\001\000\101\000\002\000\205\100\002\000\034\100\200\001\005\300\001\000\105\200\002\000\034\100\000\001\005\300\001\000\101\300\002\000\205\000\003\000\305\100\003\000\034\100\000\002\005\300\001\000\101\200\003\000\034\100\000\001\005\300\001\000\101\300\003\000\034\100\000\001\005\300\001\000\101\200\003\000\034\100\000\001\005\300\001\000\101\000\004\000\034\100\000\001\005\300\001\000\101\200\003\000\034\100\000\001\005\100\004\000\105\200\001\000\034\000\001\001\026\000\013\200\105\201\000\000\106\201\301\002\106\001\201\002\206\201\304\002\306\301\304\002\006\002\305\002\032\002\000\000\026\300\000\200\000\002\000\003\101\102\005\000\206\002\305\002\225\201\002\004\006\202\305\002\032\002\000\000\026\200\000\200\000\002\200\003\101\302\005\000\325\101\002\004\005\302\001\000\101\002\006\000\200\002\000\003\300\002\200\003\034\102\000\002\006\202\305\002\032\002\000\000\026\300\003\200\005\302\000\000\006\102\101\004\106\202\305\002\244\002\000\000\034\102\200\001\005\102\004\000\106\202\305\002\034\002\001\001\026\000\001\200\105\303\001\000\201\103\006\000\306\203\106\006\006\304\106\006\134\103\000\002\041\202\000\000\026\000\376\177\005\302\001\000\101\202\003\000\034\102\000\001\041\200\000\000\026\000\364\177\005\300\001\000\101\000\007\000\034\100\000\001\005\300\001\000\101\200\003\000\034\100\000\001\005\100\004\000\105\000\000\000\034\000\001\001\026\300\001\200\105\301\001\000\201\101\007\000\300\001\000\002\005\202\000\000\006\002\100\004\006\002\001\004\006\302\104\004\134\101\000\002\041\200\000\000\026\100\375\177\005\300\001\000\101\200\003\000\034\100\000\001\005\300\001\000\101\200\007\000\034\100\000\001\036\000\200\000\037\000\000\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\006\000\000\000\160\141\151\162\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\163\157\162\164\000\004\010\000\000\000\157\160\164\151\157\156\163\000\004\007\000\000\000\160\162\151\156\164\146\000\004\045\000\000\000\120\162\145\155\141\153\145\040\045\163\054\040\141\040\142\165\151\154\144\040\163\143\162\151\160\164\040\147\145\156\145\162\141\164\157\162\000\004\021\000\000\000\137\120\122\105\115\101\113\105\137\126\105\122\123\111\117\116\000\004\023\000\000\000\137\120\122\105\115\101\113\105\137\103\117\120\131\122\111\107\110\124\000\004\006\000\000\000\045\163\040\045\163\000\004\011\000\000\000\137\126\105\122\123\111\117\116\000\004\013\000\000\000\137\103\117\120\131\122\111\107\110\124\000\004\001\000\000\000\000\004\055\000\000\000\125\163\141\147\145\072\040\160\162\145\155\141\153\145\064\040\133\157\160\164\151\157\156\163\135\040\141\143\164\151\157\156\040\133\141\162\147\165\155\145\156\164\163\135\000\004\010\000\000\000\117\120\124\111\117\116\123\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\006\000\000\000\166\141\154\165\145\000\004\002\000\000\000\075\000\004\010\000\000\000\141\154\154\157\167\145\144\000\004\012\000\000\000\073\040\157\156\145\040\157\146\072\000\004\014\000\000\000\040\055\055\045\055\061\065\163\040\045\163\000\004\016\000\000\000\040\040\040\040\040\045\055\061\064\163\040\045\163\000\003\000\000\000\000\000\000\360\077\003\000\000\000\000\000\000\000\100\004\010\000\000\000\101\103\124\111\117\116\123\000\004\012\000\000\000\040\045\055\061\067\163\040\045\163\000\004\102\000\000\000\106\157\162\040\141\144\144\151\164\151\157\156\141\154\040\151\156\146\157\162\155\141\164\151\157\156\054\040\163\145\145\040\150\164\164\160\072\057\057\151\156\144\165\163\164\162\151\157\165\163\157\156\145\056\143\157\155\057\160\162\145\155\141\153\145\000\001\000\000\000\000\000\000\000\052\000\000\000\052\000\000\000\000\002\000\004\010\000\000\000\206\000\100\000\306\000\300\000\130\300\000\001\026\000\000\200\202\100\000\000\202\000\200\000\236\000\000\001\036\000\200\000\001\000\000\000\003\000\000\000\000\000\000\360\077\000\000\000\000\010\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\002\000\000\000\002\000\000\000\141\000\000\000\000\000\007\000\000\000\002\000\000\000\142\000\000\000\000\000\007\000\000\000\000\000\000\000\215\000\000\000\013\000\000\000\013\000\000\000\014\000\000\000\014\000\000\000\014\000\000\000\014\000\000\000\014\000\000\000\014\000\000\000\014\000\000\000\014\000\000\000\014\000\000\000\014\000\000\000\014\000\000\000\014\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\017\000\000\000\017\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\025\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\027\000\000\000\030\000\000\000\030\000\000\000\030\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\032\000\000\000\032\000\000\000\032\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\042\000\000\000\043\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\053\000\000\000\054\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\040\000\000\000\057\000\000\000\063\000\000\000\063\000\000\000\063\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\065\000\000\000\066\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\076\000\000\000\034\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\006\000\000\000\016\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\006\000\000\000\016\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\006\000\000\000\016\000\000\000\005\000\000\000\156\141\155\145\000\007\000\000\000\014\000\000\000\002\000\000\000\137\000\007\000\000\000\014\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\030\000\000\000\040\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\030\000\000\000\040\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\030\000\000\000\040\000\000\000\005\000\000\000\156\141\155\145\000\031\000\000\000\036\000\000\000\002\000\000\000\137\000\031\000\000\000\036\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\102\000\000\000\162\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\102\000\000\000\162\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\102\000\000\000\162\000\000\000\002\000\000\000\137\000\103\000\000\000\160\000\000\000\005\000\000\000\156\141\155\145\000\103\000\000\000\160\000\000\000\004\000\000\000\157\160\164\000\106\000\000\000\160\000\000\000\010\000\000\000\164\162\151\147\147\145\162\000\107\000\000\000\160\000\000\000\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\110\000\000\000\160\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\145\000\000\000\155\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\145\000\000\000\155\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\145\000\000\000\155\000\000\000\002\000\000\000\137\000\146\000\000\000\153\000\000\000\006\000\000\000\166\141\154\165\145\000\146\000\000\000\153\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\173\000\000\000\206\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\173\000\000\000\206\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\173\000\000\000\206\000\000\000\002\000\000\000\137\000\174\000\000\000\204\000\000\000\005\000\000\000\156\141\155\145\000\174\000\000\000\204\000\000\000\000\000\000\000\004\000\000\000\010\000\000\000\076\000\000\000\010\000\000\000\076\000\000\000\000\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\027\000\000\000\100\163\162\143\057\137\160\162\145\155\141\153\145\137\155\141\151\156\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\004\011\000\000\000\001\000\000\000\101\100\000\000\201\200\000\000\344\000\000\000\000\000\000\000\000\000\000\001\000\000\200\000\307\300\000\000\036\000\200\000\004\000\000\000\004\015\000\000\000\160\162\145\155\141\153\145\064\056\154\165\141\000\004\040\000\000\000\124\171\160\145\040\047\160\162\145\155\141\153\145\064\040\055\055\150\145\154\160\047\040\146\157\162\040\150\145\154\160\000\004\055\000\000\000\160\162\145\155\141\153\145\064\040\050\120\162\145\155\141\153\145\040\102\165\151\154\144\040\123\143\162\151\160\164\040\107\145\156\145\162\141\164\157\162\051\040\045\163\000\004\016\000\000\000\137\160\162\145\155\141\153\145\137\155\141\151\156\000\001\000\000\000\000\000\000\000\022\000\000\000\152\000\000\000\003\001\000\017\246\000\000\000\032\000\000\000\026\300\013\200\105\000\000\000\200\000\000\000\301\100\000\000\225\300\000\001\134\000\001\001\005\201\000\000\100\001\200\000\034\001\001\001\026\100\001\200\105\002\000\000\200\002\000\000\301\302\000\000\000\003\000\004\225\002\003\005\134\102\000\001\041\201\000\000\026\300\375\177\005\201\000\000\100\001\000\001\034\001\001\001\026\000\003\200\105\002\001\000\106\102\301\004\200\002\000\004\134\202\000\001\205\202\001\000\305\302\001\000\306\002\302\005\000\003\000\000\101\303\000\000\200\003\000\004\025\203\003\006\334\202\000\001\211\302\202\004\041\201\000\000\026\000\374\177\005\201\000\000\100\001\200\001\034\001\001\001\026\100\001\200\105\002\000\000\200\002\000\000\301\302\000\000\000\003\000\004\225\002\003\005\134\102\000\001\041\201\000\000\026\300\375\177\105\100\002\000\106\200\302\000\132\100\000\000\026\000\000\200\104\000\000\000\205\300\002\000\206\000\103\001\300\000\200\000\234\200\000\001\232\000\000\000\026\200\000\200\205\000\000\000\300\000\200\000\234\100\000\001\205\100\002\000\206\100\103\001\232\000\000\000\026\100\001\200\205\200\003\000\304\000\200\000\005\301\003\000\234\100\200\001\201\000\004\000\236\000\000\001\205\100\002\000\206\100\104\001\232\000\000\000\026\000\001\200\205\300\001\000\206\200\104\001\234\100\200\000\201\000\004\000\236\000\000\001\205\300\004\000\232\100\000\000\026\000\001\200\205\000\005\000\304\000\000\001\234\100\000\001\201\000\004\000\236\000\000\001\205\300\002\000\206\000\103\001\300\000\200\000\234\200\000\001\232\100\000\000\026\200\001\200\205\100\005\000\301\200\005\000\004\001\000\000\101\301\005\000\325\100\201\001\001\001\006\000\234\100\200\001\205\300\001\000\206\100\106\001\305\300\004\000\206\300\000\001\232\100\000\000\026\200\001\200\205\100\005\000\301\200\006\000\005\301\004\000\101\301\006\000\325\100\201\001\001\001\007\000\234\100\200\001\205\300\001\000\206\300\107\001\234\300\200\000\307\200\007\000\207\100\007\000\205\100\007\000\232\100\000\000\026\100\001\200\205\100\005\000\301\000\010\000\005\201\007\000\325\000\201\001\001\001\007\000\234\100\200\001\205\300\001\000\206\100\110\001\234\300\200\000\307\200\007\000\207\100\007\000\205\100\007\000\232\100\000\000\026\100\001\200\205\100\005\000\301\000\010\000\005\201\007\000\325\000\201\001\001\001\007\000\234\100\200\001\205\300\001\000\206\200\110\001\234\300\200\000\307\200\007\000\207\100\007\000\205\100\007\000\232\100\000\000\026\100\001\200\205\100\005\000\301\000\010\000\005\201\007\000\325\000\201\001\001\001\007\000\234\100\200\001\205\300\001\000\206\300\110\001\305\300\004\000\234\100\000\001\201\000\007\000\236\000\000\001\036\000\200\000\044\000\000\000\004\007\000\000\000\144\157\146\151\154\145\000\004\017\000\000\000\057\137\155\141\156\151\146\145\163\164\056\154\165\141\000\004\007\000\000\000\151\160\141\151\162\163\000\004\002\000\000\000\057\000\004\005\000\000\000\160\141\164\150\000\004\014\000\000\000\147\145\164\142\141\163\145\156\141\155\145\000\004\013\000\000\000\137\124\105\115\120\114\101\124\105\123\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\021\000\000\000\154\157\141\144\164\145\155\160\154\141\164\145\146\151\154\145\000\004\011\000\000\000\137\117\120\124\111\117\116\123\000\004\005\000\000\000\146\151\154\145\000\004\003\000\000\000\157\163\000\004\007\000\000\000\151\163\146\151\154\145\000\004\010\000\000\000\166\145\162\163\151\157\156\000\004\007\000\000\000\160\162\151\156\164\146\000\004\021\000\000\000\137\120\122\105\115\101\113\105\137\126\105\122\123\111\117\116\000\003\000\000\000\000\000\000\360\077\004\005\000\000\000\150\145\154\160\000\004\011\000\000\000\163\150\157\167\150\145\154\160\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\006\000\000\000\160\162\151\156\164\000\004\006\000\000\000\145\162\162\157\162\000\004\024\000\000\000\116\157\040\120\162\145\155\141\153\145\040\163\143\162\151\160\164\040\050\000\004\011\000\000\000\051\040\146\157\165\156\144\041\000\003\000\000\000\000\000\000\000\100\004\010\000\000\000\141\143\164\151\157\156\163\000\004\030\000\000\000\105\162\162\157\162\072\040\156\157\040\163\165\143\150\040\141\143\164\151\157\156\040\047\000\004\002\000\000\000\047\000\003\000\000\000\000\000\000\000\000\004\003\000\000\000\157\153\000\004\004\000\000\000\145\162\162\000\004\015\000\000\000\143\150\145\143\153\157\160\164\151\157\156\163\000\004\010\000\000\000\105\162\162\157\162\072\040\000\004\013\000\000\000\143\150\145\143\153\164\157\157\154\163\000\004\016\000\000\000\143\150\145\143\153\160\162\157\152\145\143\164\163\000\004\011\000\000\000\144\157\141\143\164\151\157\156\000\000\000\000\000\246\000\000\000\030\000\000\000\030\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\034\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\034\000\000\000\035\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\041\000\000\000\043\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\047\000\000\000\050\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\072\000\000\000\072\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\077\000\000\000\077\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\107\000\000\000\107\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\126\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\143\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\150\000\000\000\150\000\000\000\152\000\000\000\025\000\000\000\013\000\000\000\163\143\162\151\160\164\160\141\164\150\000\000\000\000\000\245\000\000\000\010\000\000\000\163\143\162\151\160\164\163\000\007\000\000\000\062\000\000\000\012\000\000\000\164\145\155\160\154\141\164\145\163\000\007\000\000\000\062\000\000\000\010\000\000\000\141\143\164\151\157\156\163\000\007\000\000\000\062\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\012\000\000\000\023\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\012\000\000\000\023\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\012\000\000\000\023\000\000\000\002\000\000\000\137\000\013\000\000\000\021\000\000\000\002\000\000\000\166\000\013\000\000\000\021\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\026\000\000\000\046\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\026\000\000\000\046\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\026\000\000\000\046\000\000\000\002\000\000\000\137\000\027\000\000\000\044\000\000\000\002\000\000\000\166\000\027\000\000\000\044\000\000\000\005\000\000\000\156\141\155\145\000\033\000\000\000\044\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\051\000\000\000\062\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\051\000\000\000\062\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\051\000\000\000\062\000\000\000\002\000\000\000\137\000\052\000\000\000\060\000\000\000\002\000\000\000\166\000\052\000\000\000\060\000\000\000\006\000\000\000\146\156\141\155\145\000\067\000\000\000\245\000\000\000\003\000\000\000\013\000\000\000\163\143\162\151\160\164\146\151\154\145\000\014\000\000\000\166\145\162\163\151\157\156\150\145\154\160\000\012\000\000\000\163\150\157\162\164\150\145\154\160\000\011\000\000\000\010\000\000\000\011\000\000\000\012\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\152\000\000\000\022\000\000\000\152\000\000\000\003\000\000\000\013\000\000\000\163\143\162\151\160\164\146\151\154\145\000\001\000\000\000\010\000\000\000\012\000\000\000\163\150\157\162\164\150\145\154\160\000\002\000\000\000\010\000\000\000\014\000\000\000\166\145\162\163\151\157\156\150\145\154\160\000\003\000\000\000\010\000\000\000\000\000\000\000",
"\137\124\105\115\120\114\101\124\105\123\056\143\157\144\145\142\154\157\143\153\163\137\167\157\162\153\163\160\141\143\145\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\143\157\144\145\142\154\157\143\153\163\137\167\157\162\153\163\160\141\143\145\047\054\133\133\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157\144\151\156\147\075\042\125\124\106\055\070\042\040\163\164\141\156\144\141\154\157\156\145\075\042\171\145\163\042\040\077\076\012\074\103\157\144\145\102\154\157\143\153\163\137\167\157\162\153\163\160\141\143\145\137\146\151\154\145\076\012\011\074\127\157\162\153\163\160\141\143\145\040\164\151\164\154\145\075\042\074\045\075\040\164\150\151\163\056\156\141\155\145\040\045\076\042\076\012\011\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\011\011\074\120\162\157\152\145\143\164\040\146\151\154\145\156\141\155\145\075\042\074\045\075\040\160\141\164\150\056\152\157\151\156\050\160\141\164\150\056\147\145\164\162\145\154\141\164\151\166\145\050\164\150\151\163\056\154\157\143\141\164\151\157\156\054\040\160\162\152\056\154\157\143\141\164\151\157\156\051\054\040\160\162\152\056\156\141\155\145\051\040\045\076\056\143\142\160\042\074\045\075\040\151\151\146\050\160\162\152\056\160\162\157\152\145\143\164\075\075\164\150\151\163\056\160\162\157\152\145\143\164\163\133\061\135\054\040\047\040\141\143\164\151\166\145\075\042\061\042\047\054\040\047\047\051\040\045\076\076\012\011\011\074\045\040\146\157\162\040\137\054\144\145\160\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\050\160\162\152\051\051\040\144\157\040\045\076\012\011\011\011\074\104\145\160\145\156\144\163\040\146\151\154\145\156\141\155\145\075\042\074\045\075\040\160\141\164\150\056\152\157\151\156\050\160\141\164\150\056\147\145\164\162\145\154\141\164\151\166\145\050\164\150\151\163\056\154\157\143\141\164\151\157\156\054\040\144\145\160\056\154\157\143\141\164\151\157\156\051\054\040\144\145\160\056\156\141\155\145\051\040\045\076\056\143\142\160\042\040\057\076\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\074\057\120\162\157\152\145\143\164\076\012\011\074\045\040\145\156\144\040\045\076\012\011\074\057\127\157\162\153\163\160\141\143\145\076\012\074\057\103\157\144\145\102\154\157\143\153\163\137\167\157\162\153\163\160\141\143\145\137\146\151\154\145\076\012\135\135\051",
- "\137\124\105\115\120\114\101\124\105\123\056\143\157\144\145\142\154\157\143\153\163\137\143\142\160\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\143\157\144\145\142\154\157\143\153\163\137\143\142\160\047\054\133\133\074\045\040\154\157\143\141\154\040\143\143\040\075\040\160\162\145\155\141\153\145\133\137\117\120\124\111\117\116\123\056\143\143\135\040\045\076\012\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157\144\151\156\147\075\042\125\124\106\055\070\042\040\163\164\141\156\144\141\154\157\156\145\075\042\171\145\163\042\040\077\076\012\074\103\157\144\145\102\154\157\143\153\163\137\160\162\157\152\145\143\164\137\146\151\154\145\076\012\011\074\106\151\154\145\126\145\162\163\151\157\156\040\155\141\152\157\162\075\042\061\042\040\155\151\156\157\162\075\042\066\042\040\057\076\012\011\074\120\162\157\152\145\143\164\076\012\011\011\074\117\160\164\151\157\156\040\164\151\164\154\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\150\151\163\056\156\141\155\145\051\040\045\076\042\040\057\076\012\011\011\074\117\160\164\151\157\156\040\160\143\150\137\155\157\144\145\075\042\062\042\040\057\076\012\011\011\074\117\160\164\151\157\156\040\143\157\155\160\151\154\145\162\075\042\074\045\075\040\137\117\120\124\111\117\116\123\056\143\143\040\045\076\042\040\057\076\012\011\011\074\102\165\151\154\144\076\012\011\011\074\045\040\146\157\162\040\143\146\147\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\143\157\156\146\151\147\050\164\150\151\163\051\040\144\157\040\045\076\012\011\011\011\074\124\141\162\147\145\164\040\164\151\164\154\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\156\141\155\145\051\040\045\076\042\076\012\011\011\011\011\074\117\160\164\151\157\156\040\157\165\164\160\165\164\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\160\162\145\155\141\153\145\056\147\145\164\164\141\162\147\145\164\146\151\154\145\050\143\146\147\054\040\042\164\141\162\147\145\164\042\054\040\156\151\154\054\040\164\162\165\145\051\051\040\045\076\042\040\160\162\145\146\151\170\137\141\165\164\157\075\042\060\042\040\145\170\164\145\156\163\151\157\156\137\141\165\164\157\075\042\060\042\040\057\076\012\011\011\011\011\074\117\160\164\151\157\156\040\157\142\152\145\143\164\137\157\165\164\160\165\164\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\160\162\145\155\141\153\145\056\147\145\164\157\142\152\144\151\162\050\143\146\147\051\051\040\045\076\042\040\057\076\012\011\011\011\011\074\045\040\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\127\151\156\144\157\167\145\144\101\160\160\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\164\171\160\145\075\042\060\042\040\057\076\012\011\011\011\011\074\045\040\145\154\163\145\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\103\157\156\163\157\154\145\101\160\160\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\164\171\160\145\075\042\061\042\040\057\076\012\011\011\011\011\074\045\040\145\154\163\145\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\123\164\141\164\151\143\114\151\142\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\164\171\160\145\075\042\062\042\040\057\076\012\011\011\011\011\074\045\040\145\154\163\145\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\123\150\141\162\145\144\101\160\160\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\164\171\160\145\075\042\063\042\040\057\076\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\143\157\155\160\151\154\145\162\075\042\074\045\075\040\137\117\120\124\111\117\116\123\056\143\143\040\045\076\042\040\057\076\012\011\011\011\011\074\045\040\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\123\150\141\162\145\144\114\151\142\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\143\162\145\141\164\145\104\145\146\106\151\154\145\075\042\060\042\040\057\076\012\011\011\011\011\074\117\160\164\151\157\156\040\143\162\145\141\164\145\123\164\141\164\151\143\114\151\142\075\042\074\045\075\040\151\151\146\050\143\146\147\056\146\154\141\147\163\056\116\157\111\155\160\157\162\164\114\151\142\054\040\060\054\040\061\051\040\045\076\042\040\057\076\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\103\157\155\160\151\154\145\162\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\146\154\141\147\040\151\156\040\151\160\141\151\162\163\050\164\141\142\154\145\056\152\157\151\156\050\143\143\056\147\145\164\143\146\154\141\147\163\050\143\146\147\051\054\040\143\143\056\147\145\164\143\170\170\146\154\141\147\163\050\143\146\147\051\054\040\143\143\056\147\145\164\144\145\146\151\156\145\163\050\143\146\147\056\144\145\146\151\156\145\163\051\054\040\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\051\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\157\160\164\151\157\156\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\146\154\141\147\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\151\146\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\116\157\120\103\110\040\141\156\144\040\143\146\147\056\160\143\150\150\145\141\144\145\162\040\164\150\145\156\040\045\076\012\011\011\011\011\011\074\101\144\144\040\157\160\164\151\157\156\075\042\055\127\151\156\166\141\154\151\144\055\160\143\150\042\040\057\076\012\011\011\011\011\011\074\101\144\144\040\157\160\164\151\157\156\075\042\055\151\156\143\154\165\144\145\040\046\161\165\157\164\073\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\160\143\150\150\145\141\144\145\162\051\040\045\076\046\161\165\157\164\073\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\144\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\057\103\157\155\160\151\154\145\162\076\012\011\011\011\011\074\114\151\156\153\145\162\076\012\011\011\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\123\171\155\142\157\154\163\040\164\150\145\156\040\045\076\012\011\011\011\011\011\074\101\144\144\040\157\160\164\151\157\156\163\075\042\055\163\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\157\160\164\151\157\156\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\154\151\142\144\151\162\163\050\143\146\147\051\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\144\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\154\151\142\156\141\155\145\163\050\143\146\147\051\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\154\151\142\162\141\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\057\114\151\156\153\145\162\076\012\011\011\011\011\074\045\040\151\146\040\160\162\145\155\141\153\145\056\146\151\156\144\146\151\154\145\050\143\146\147\054\040\042\056\162\143\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\144\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\162\145\163\151\156\143\154\165\144\145\144\151\162\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\144\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\057\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\076\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\045\040\151\146\040\043\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\157\162\040\043\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\074\105\170\164\162\141\103\157\155\155\141\156\144\163\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\142\145\146\157\162\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\142\145\146\157\162\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\057\105\170\164\162\141\103\157\155\155\141\156\144\163\076\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\057\124\141\162\147\145\164\076\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\074\057\102\165\151\154\144\076\012\011\011\074\045\040\146\157\162\040\137\054\146\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\146\151\154\145\163\051\040\144\157\040\045\076\012\011\011\074\125\156\151\164\040\146\151\154\145\156\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\146\156\141\155\145\051\040\045\076\042\076\012\011\011\074\045\040\151\146\040\160\141\164\150\056\147\145\164\145\170\164\145\156\163\151\157\156\050\146\156\141\155\145\051\040\075\075\040\042\056\162\143\042\040\164\150\145\156\040\045\076\012\011\011\011\074\117\160\164\151\157\156\040\143\157\155\160\151\154\145\162\126\141\162\075\042\127\111\116\104\122\105\123\042\040\057\076\012\011\011\074\045\040\145\154\163\145\040\045\076\012\011\011\011\074\117\160\164\151\157\156\040\143\157\155\160\151\154\145\162\126\141\162\075\042\074\045\075\040\143\143\056\147\145\164\143\157\155\160\151\154\145\162\166\141\162\050\164\150\151\163\051\040\045\076\042\040\057\076\012\011\011\011\074\045\040\151\146\040\050\156\157\164\040\164\150\151\163\056\146\154\141\147\163\056\116\157\120\103\110\040\141\156\144\040\146\156\141\155\145\040\075\075\040\164\150\151\163\056\160\143\150\150\145\141\144\145\162\051\040\164\150\145\156\040\045\076\012\011\011\011\074\117\160\164\151\157\156\040\143\157\155\160\151\154\145\075\042\061\042\040\057\076\012\011\011\011\074\117\160\164\151\157\156\040\167\145\151\147\150\164\075\042\060\042\040\057\076\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\011\011\011\074\117\160\164\151\157\156\040\164\141\162\147\145\164\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\074\045\040\145\156\144\045\076\012\011\011\074\057\125\156\151\164\076\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\074\105\170\164\145\156\163\151\157\156\163\040\057\076\012\011\074\057\120\162\157\152\145\143\164\076\012\074\057\103\157\144\145\102\154\157\143\153\163\137\160\162\157\152\145\143\164\137\146\151\154\145\076\012\135\135\051",
+ "\137\124\105\115\120\114\101\124\105\123\056\143\157\144\145\142\154\157\143\153\163\137\143\142\160\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\143\157\144\145\142\154\157\143\153\163\137\143\142\160\047\054\133\133\074\045\040\154\157\143\141\154\040\143\143\040\075\040\160\162\145\155\141\153\145\133\137\117\120\124\111\117\116\123\056\143\143\135\040\045\076\012\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157\144\151\156\147\075\042\125\124\106\055\070\042\040\163\164\141\156\144\141\154\157\156\145\075\042\171\145\163\042\040\077\076\012\074\103\157\144\145\102\154\157\143\153\163\137\160\162\157\152\145\143\164\137\146\151\154\145\076\012\011\074\106\151\154\145\126\145\162\163\151\157\156\040\155\141\152\157\162\075\042\061\042\040\155\151\156\157\162\075\042\066\042\040\057\076\012\011\074\120\162\157\152\145\143\164\076\012\011\011\074\117\160\164\151\157\156\040\164\151\164\154\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\150\151\163\056\156\141\155\145\051\040\045\076\042\040\057\076\012\011\011\074\117\160\164\151\157\156\040\160\143\150\137\155\157\144\145\075\042\062\042\040\057\076\012\011\011\074\117\160\164\151\157\156\040\143\157\155\160\151\154\145\162\075\042\074\045\075\040\137\117\120\124\111\117\116\123\056\143\143\040\045\076\042\040\057\076\012\011\011\074\102\165\151\154\144\076\012\011\011\074\045\040\146\157\162\040\143\146\147\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\143\157\156\146\151\147\050\164\150\151\163\051\040\144\157\040\045\076\012\011\011\011\074\124\141\162\147\145\164\040\164\151\164\154\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\156\141\155\145\051\040\045\076\042\076\012\011\011\011\011\074\117\160\164\151\157\156\040\157\165\164\160\165\164\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\142\165\151\154\144\164\141\162\147\145\164\056\146\165\154\154\160\141\164\150\051\040\045\076\042\040\160\162\145\146\151\170\137\141\165\164\157\075\042\060\042\040\145\170\164\145\156\163\151\157\156\137\141\165\164\157\075\042\060\042\040\057\076\012\011\011\011\011\074\117\160\164\151\157\156\040\157\142\152\145\143\164\137\157\165\164\160\165\164\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\157\142\152\145\143\164\163\144\151\162\051\040\045\076\042\040\057\076\012\011\011\011\011\074\045\040\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\127\151\156\144\157\167\145\144\101\160\160\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\164\171\160\145\075\042\060\042\040\057\076\012\011\011\011\011\074\045\040\145\154\163\145\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\103\157\156\163\157\154\145\101\160\160\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\164\171\160\145\075\042\061\042\040\057\076\012\011\011\011\011\074\045\040\145\154\163\145\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\123\164\141\164\151\143\114\151\142\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\164\171\160\145\075\042\062\042\040\057\076\012\011\011\011\011\074\045\040\145\154\163\145\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\123\150\141\162\145\144\114\151\142\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\164\171\160\145\075\042\063\042\040\057\076\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\143\157\155\160\151\154\145\162\075\042\074\045\075\040\137\117\120\124\111\117\116\123\056\143\143\040\045\076\042\040\057\076\012\011\011\011\011\074\045\040\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\123\150\141\162\145\144\114\151\142\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\117\160\164\151\157\156\040\143\162\145\141\164\145\104\145\146\106\151\154\145\075\042\060\042\040\057\076\012\011\011\011\011\074\117\160\164\151\157\156\040\143\162\145\141\164\145\123\164\141\164\151\143\114\151\142\075\042\074\045\075\040\151\151\146\050\143\146\147\056\146\154\141\147\163\056\116\157\111\155\160\157\162\164\114\151\142\054\040\060\054\040\061\051\040\045\076\042\040\057\076\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\103\157\155\160\151\154\145\162\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\146\154\141\147\040\151\156\040\151\160\141\151\162\163\050\164\141\142\154\145\056\152\157\151\156\050\143\143\056\147\145\164\143\146\154\141\147\163\050\143\146\147\051\054\040\143\143\056\147\145\164\143\170\170\146\154\141\147\163\050\143\146\147\051\054\040\143\143\056\147\145\164\144\145\146\151\156\145\163\050\143\146\147\056\144\145\146\151\156\145\163\051\054\040\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\051\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\157\160\164\151\157\156\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\146\154\141\147\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\151\146\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\116\157\120\103\110\040\141\156\144\040\143\146\147\056\160\143\150\150\145\141\144\145\162\040\164\150\145\156\040\045\076\012\011\011\011\011\011\074\101\144\144\040\157\160\164\151\157\156\075\042\055\127\151\156\166\141\154\151\144\055\160\143\150\042\040\057\076\012\011\011\011\011\011\074\101\144\144\040\157\160\164\151\157\156\075\042\055\151\156\143\154\165\144\145\040\046\161\165\157\164\073\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\160\143\150\150\145\141\144\145\162\051\040\045\076\046\161\165\157\164\073\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\144\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\057\103\157\155\160\151\154\145\162\076\012\011\011\011\011\074\114\151\156\153\145\162\076\012\011\011\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\123\171\155\142\157\154\163\040\164\150\145\156\040\045\076\012\011\011\011\011\011\074\101\144\144\040\157\160\164\151\157\156\163\075\042\055\163\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\157\160\164\151\157\156\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\154\151\156\153\163\050\143\146\147\054\040\042\141\154\154\042\054\040\042\144\151\162\145\143\164\157\162\171\042\051\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\144\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\154\151\156\153\163\050\143\146\147\054\040\042\141\154\154\042\054\040\042\142\141\163\145\156\141\155\145\042\051\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\154\151\142\162\141\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\057\114\151\156\153\145\162\076\012\011\011\011\011\074\045\040\151\146\040\160\162\145\155\141\153\145\056\146\151\156\144\146\151\154\145\050\143\146\147\054\040\042\056\162\143\042\051\040\164\150\145\156\040\045\076\012\011\011\011\011\074\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\144\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\162\145\163\151\156\143\154\165\144\145\144\151\162\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\144\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\057\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\076\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\045\040\151\146\040\043\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\157\162\040\043\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\074\105\170\164\162\141\103\157\155\155\141\156\144\163\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\142\145\146\157\162\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\011\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\051\040\144\157\040\045\076\012\011\011\011\011\011\074\101\144\144\040\142\145\146\157\162\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\011\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\074\057\105\170\164\162\141\103\157\155\155\141\156\144\163\076\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\057\124\141\162\147\145\164\076\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\074\057\102\165\151\154\144\076\012\011\011\074\045\040\146\157\162\040\137\054\146\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\146\151\154\145\163\051\040\144\157\040\045\076\012\011\011\074\125\156\151\164\040\146\151\154\145\156\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\146\156\141\155\145\051\040\045\076\042\076\012\011\011\074\045\040\151\146\040\160\141\164\150\056\147\145\164\145\170\164\145\156\163\151\157\156\050\146\156\141\155\145\051\040\075\075\040\042\056\162\143\042\040\164\150\145\156\040\045\076\012\011\011\011\074\117\160\164\151\157\156\040\143\157\155\160\151\154\145\162\126\141\162\075\042\127\111\116\104\122\105\123\042\040\057\076\012\011\011\074\045\040\145\154\163\145\151\146\040\160\141\164\150\056\151\163\143\160\160\146\151\154\145\050\146\156\141\155\145\051\040\164\150\145\156\040\045\076\012\011\011\011\074\117\160\164\151\157\156\040\143\157\155\160\151\154\145\162\126\141\162\075\042\074\045\075\040\151\151\146\050\164\150\151\163\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\042\054\040\042\103\103\042\054\040\042\103\120\120\042\051\040\045\076\042\040\057\076\012\011\011\011\074\045\040\151\146\040\050\156\157\164\040\164\150\151\163\056\146\154\141\147\163\056\116\157\120\103\110\040\141\156\144\040\146\156\141\155\145\040\075\075\040\164\150\151\163\056\160\143\150\150\145\141\144\145\162\051\040\164\150\145\156\040\045\076\012\011\011\011\074\117\160\164\151\157\156\040\143\157\155\160\151\154\145\075\042\061\042\040\057\076\012\011\011\011\074\117\160\164\151\157\156\040\167\145\151\147\150\164\075\042\060\042\040\057\076\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\074\057\125\156\151\164\076\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\074\105\170\164\145\156\163\151\157\156\163\040\057\076\012\011\074\057\120\162\157\152\145\143\164\076\012\074\057\103\157\144\145\102\154\157\143\153\163\137\160\162\157\152\145\143\164\137\146\151\154\145\076\012\135\135\051",
"\137\124\105\115\120\114\101\124\105\123\056\143\157\144\145\154\151\164\145\137\167\157\162\153\163\160\141\143\145\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\143\157\144\145\154\151\164\145\137\167\157\162\153\163\160\141\143\145\047\054\133\133\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157\144\151\156\147\075\042\165\164\146\055\070\042\077\076\012\074\103\157\144\145\114\151\164\145\137\127\157\162\153\163\160\141\143\145\040\116\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\150\151\163\056\156\141\155\145\051\040\045\076\042\040\104\141\164\141\142\141\163\145\075\042\056\057\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\150\151\163\056\156\141\155\145\051\040\045\076\056\164\141\147\163\042\076\012\074\045\040\146\157\162\040\151\054\160\162\152\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\160\162\157\152\145\143\164\163\051\040\144\157\040\045\076\012\040\040\074\120\162\157\152\145\143\164\040\116\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\160\162\152\056\156\141\155\145\051\040\045\076\042\040\120\141\164\150\075\042\074\045\075\040\160\141\164\150\056\152\157\151\156\050\160\141\164\150\056\147\145\164\162\145\154\141\164\151\166\145\050\164\150\151\163\056\154\157\143\141\164\151\157\156\054\040\160\162\152\056\154\157\143\141\164\151\157\156\051\054\040\160\162\152\056\156\141\155\145\051\040\045\076\056\160\162\157\152\145\143\164\042\040\101\143\164\151\166\145\075\042\074\045\075\040\151\151\146\050\151\075\075\061\054\040\042\131\145\163\042\054\040\042\116\157\042\051\040\045\076\042\040\057\076\012\074\045\040\145\156\144\040\045\076\012\040\040\074\102\165\151\154\144\115\141\164\162\151\170\076\012\040\040\074\045\040\146\157\162\040\137\054\040\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\040\040\040\040\074\127\157\162\153\163\160\141\143\145\103\157\156\146\151\147\165\162\141\164\151\157\156\040\116\141\155\145\075\042\074\045\075\040\143\146\147\156\141\155\145\040\045\076\042\040\123\145\154\145\143\164\145\144\075\042\171\145\163\042\076\012\040\040\040\040\074\045\040\146\157\162\040\137\054\160\162\152\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\160\162\157\152\145\143\164\163\051\040\144\157\040\045\076\012\040\040\040\040\040\040\074\120\162\157\152\145\143\164\040\116\141\155\145\075\042\074\045\075\040\160\162\152\056\156\141\155\145\040\045\076\042\040\103\157\156\146\151\147\116\141\155\145\075\042\074\045\075\040\143\146\147\156\141\155\145\040\045\076\042\057\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\074\057\127\157\162\153\163\160\141\143\145\103\157\156\146\151\147\165\162\141\164\151\157\156\076\012\040\040\074\045\040\145\156\144\040\045\076\012\040\040\074\057\102\165\151\154\144\115\141\164\162\151\170\076\012\074\057\103\157\144\145\114\151\164\145\137\127\157\162\153\163\160\141\143\145\076\012\135\135\051",
- "\137\124\105\115\120\114\101\124\105\123\056\143\157\144\145\154\151\164\145\137\160\162\157\152\145\143\164\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\143\157\144\145\154\151\164\145\137\160\162\157\152\145\143\164\047\054\133\133\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157\144\151\156\147\075\042\165\164\146\055\070\042\077\076\012\074\103\157\144\145\114\151\164\145\137\120\162\157\152\145\143\164\040\116\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\150\151\163\056\156\141\155\145\051\040\045\076\042\076\012\040\040\074\045\040\160\162\145\155\141\153\145\056\167\141\154\153\163\157\165\162\143\145\163\050\164\150\151\163\054\040\164\150\151\163\056\146\151\154\145\163\054\040\137\103\117\104\105\114\111\124\105\056\146\151\154\145\163\051\040\045\076\012\040\040\074\123\145\164\164\151\156\147\163\040\124\171\160\145\075\042\074\045\075\040\137\103\117\104\105\114\111\124\105\056\153\151\156\144\050\164\150\151\163\056\153\151\156\144\051\040\045\076\042\076\012\040\040\074\045\040\146\157\162\040\143\146\147\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\143\157\156\146\151\147\050\164\150\151\163\051\040\144\157\040\045\076\012\040\040\074\045\040\040\154\157\143\141\154\040\164\141\162\147\145\164\040\075\040\160\162\145\155\141\153\145\056\147\145\164\164\141\162\147\145\164\146\151\154\145\050\143\146\147\054\040\042\164\141\162\147\145\164\042\054\040\156\151\154\054\040\164\162\165\145\051\040\045\076\012\040\040\040\040\074\103\157\156\146\151\147\165\162\141\164\151\157\156\040\116\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\156\141\155\145\051\040\045\076\042\040\103\157\155\160\151\154\145\162\124\171\160\145\075\042\147\156\165\040\074\045\075\040\151\151\146\050\143\146\147\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\042\054\040\042\147\143\143\042\054\040\042\147\053\053\042\051\040\045\076\042\040\104\145\142\165\147\147\145\162\124\171\160\145\075\042\107\116\125\040\147\144\142\040\144\145\142\165\147\147\145\162\042\040\124\171\160\145\075\042\074\045\075\040\137\103\117\104\105\114\111\124\105\056\153\151\156\144\050\143\146\147\056\153\151\156\144\051\040\045\076\042\076\012\040\040\040\040\040\040\074\107\145\156\145\162\141\154\040\117\165\164\160\165\164\106\151\154\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\141\162\147\145\164\051\040\045\076\042\040\111\156\164\145\162\155\145\144\151\141\164\145\104\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\160\162\145\155\141\153\145\056\147\145\164\157\142\152\144\151\162\050\143\146\147\051\051\040\045\076\042\040\103\157\155\155\141\156\144\075\042\056\057\074\045\075\040\160\141\164\150\056\147\145\164\156\141\155\145\050\164\141\162\147\145\164\051\040\045\076\042\040\103\157\155\155\141\156\144\101\162\147\165\155\145\156\164\163\075\042\042\040\127\157\162\153\151\156\147\104\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\141\164\150\056\147\145\164\144\151\162\145\143\164\157\162\171\050\164\141\162\147\145\164\051\040\045\076\042\040\120\141\165\163\145\105\170\145\143\127\150\145\156\120\162\157\143\124\145\162\155\151\156\141\164\145\163\075\042\074\045\075\040\151\151\146\050\143\146\147\056\153\151\156\144\040\075\075\040\042\127\151\156\144\157\167\145\144\101\160\160\042\054\040\042\156\157\042\054\040\042\171\145\163\042\051\040\045\076\042\057\076\012\040\040\040\040\040\040\074\103\157\155\160\151\154\145\162\040\122\145\161\165\151\162\145\144\075\042\171\145\163\042\040\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\164\141\142\154\145\056\152\157\151\156\050\160\162\145\155\141\153\145\056\147\143\143\056\147\145\164\143\146\154\141\147\163\050\143\146\147\051\054\040\160\162\145\155\141\153\145\056\147\143\143\056\147\145\164\143\170\170\146\154\141\147\163\050\143\146\147\051\054\040\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\051\054\040\042\073\042\051\040\045\076\042\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\111\156\143\154\165\144\145\120\141\164\150\040\126\141\154\165\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\057\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\144\145\146\151\156\145\163\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\120\162\145\160\162\157\143\145\163\163\157\162\040\126\141\154\165\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\057\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\057\103\157\155\160\151\154\145\162\076\012\040\040\040\040\040\040\074\114\151\156\153\145\162\040\122\145\161\165\151\162\145\144\075\042\171\145\163\042\040\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\164\141\142\154\145\056\152\157\151\156\050\160\162\145\155\141\153\145\056\147\143\143\056\147\145\164\154\144\146\154\141\147\163\050\143\146\147\051\054\040\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\051\054\040\042\073\042\051\040\045\076\042\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\154\151\142\144\151\162\163\050\143\146\147\051\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\114\151\142\162\141\162\171\120\141\164\150\040\126\141\154\165\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\154\151\142\156\141\155\145\163\050\143\146\147\051\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\114\151\142\162\141\162\171\040\126\141\154\165\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\057\114\151\156\153\145\162\076\012\040\040\040\040\040\040\074\045\040\151\146\040\160\162\145\155\141\153\145\056\146\151\156\144\146\151\154\145\050\143\146\147\054\040\042\056\162\143\042\051\040\164\150\145\156\040\045\076\012\040\040\040\040\040\040\074\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\040\122\145\161\165\151\162\145\144\075\042\171\145\163\042\040\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\164\141\142\154\145\056\152\157\151\156\050\143\146\147\056\144\145\146\151\156\145\163\054\143\146\147\056\162\145\163\144\145\146\151\156\145\163\051\054\040\042\055\104\042\054\040\042\073\042\054\040\042\042\051\040\045\076\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\146\147\056\162\145\163\157\160\164\151\157\156\163\054\040\042\073\042\051\040\045\076\042\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\164\141\142\154\145\056\152\157\151\156\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\054\040\143\146\147\056\162\145\163\151\156\143\154\165\144\145\144\151\162\163\051\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\111\156\143\154\165\144\145\120\141\164\150\040\126\141\154\165\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\057\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\057\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\076\012\040\040\040\040\040\040\074\045\040\145\154\163\145\040\045\076\012\040\040\040\040\040\040\074\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\040\122\145\161\165\151\162\145\144\075\042\156\157\042\040\117\160\164\151\157\156\163\075\042\042\057\076\012\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\045\040\151\146\040\043\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\040\040\040\040\040\040\074\120\162\145\102\165\151\154\144\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\103\157\155\155\141\156\144\040\105\156\141\142\154\145\144\075\042\171\145\163\042\076\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\074\057\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\057\120\162\145\102\165\151\154\144\076\012\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\045\040\151\146\040\043\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\040\040\040\040\040\040\074\120\157\163\164\102\165\151\154\144\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\103\157\155\155\141\156\144\040\105\156\141\142\154\145\144\075\042\171\145\163\042\076\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\074\057\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\057\120\157\163\164\102\165\151\154\144\076\012\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\103\165\163\164\157\155\102\165\151\154\144\040\105\156\141\142\154\145\144\075\042\156\157\042\076\012\040\040\040\040\040\040\040\040\074\103\154\145\141\156\103\157\155\155\141\156\144\076\074\057\103\154\145\141\156\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\102\165\151\154\144\103\157\155\155\141\156\144\076\074\057\102\165\151\154\144\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\123\151\156\147\154\145\106\151\154\145\103\157\155\155\141\156\144\076\074\057\123\151\156\147\154\145\106\151\154\145\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\115\141\153\145\146\151\154\145\107\145\156\145\162\141\164\151\157\156\103\157\155\155\141\156\144\076\074\057\115\141\153\145\146\151\154\145\107\145\156\145\162\141\164\151\157\156\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\124\150\151\162\144\120\141\162\164\171\124\157\157\154\116\141\155\145\076\116\157\156\145\074\057\124\150\151\162\144\120\141\162\164\171\124\157\157\154\116\141\155\145\076\012\040\040\040\040\040\040\040\040\074\127\157\162\153\151\156\147\104\151\162\145\143\164\157\162\171\076\074\057\127\157\162\153\151\156\147\104\151\162\145\143\164\157\162\171\076\012\040\040\040\040\040\040\074\057\103\165\163\164\157\155\102\165\151\154\144\076\012\040\040\040\040\040\040\074\101\144\144\151\164\151\157\156\141\154\122\165\154\145\163\076\012\040\040\040\040\040\040\040\040\074\103\165\163\164\157\155\120\157\163\164\102\165\151\154\144\076\074\057\103\165\163\164\157\155\120\157\163\164\102\165\151\154\144\076\012\040\040\040\040\040\040\040\040\074\103\165\163\164\157\155\120\162\145\102\165\151\154\144\076\074\057\103\165\163\164\157\155\120\162\145\102\165\151\154\144\076\012\040\040\040\040\040\040\074\057\101\144\144\151\164\151\157\156\141\154\122\165\154\145\163\076\012\040\040\040\040\074\057\103\157\156\146\151\147\165\162\141\164\151\157\156\076\012\040\040\074\045\145\156\144\040\045\076\012\040\040\074\057\123\145\164\164\151\156\147\163\076\012\040\040\074\045\040\146\157\162\040\137\054\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\040\040\074\104\145\160\145\156\144\145\156\143\151\145\163\040\156\141\155\145\075\042\074\045\075\040\143\146\147\156\141\155\145\040\045\076\042\076\012\040\040\040\040\074\045\040\146\157\162\040\137\054\144\145\160\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\050\164\150\151\163\051\051\040\144\157\040\045\076\012\040\040\040\040\074\120\162\157\152\145\143\164\040\116\141\155\145\075\042\074\045\075\040\144\145\160\056\156\141\155\145\040\045\076\042\057\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\074\057\104\145\160\145\156\144\145\156\143\151\145\163\076\012\040\040\074\045\040\145\156\144\040\045\076\012\074\057\103\157\144\145\114\151\164\145\137\120\162\157\152\145\143\164\076\012\135\135\051",
+ "\137\124\105\115\120\114\101\124\105\123\056\143\157\144\145\154\151\164\145\137\160\162\157\152\145\143\164\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\143\157\144\145\154\151\164\145\137\160\162\157\152\145\143\164\047\054\133\133\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157\144\151\156\147\075\042\165\164\146\055\070\042\077\076\012\074\103\157\144\145\114\151\164\145\137\120\162\157\152\145\143\164\040\116\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\150\151\163\056\156\141\155\145\051\040\045\076\042\076\012\040\040\074\045\040\160\162\145\155\141\153\145\056\167\141\154\153\163\157\165\162\143\145\163\050\164\150\151\163\054\040\164\150\151\163\056\146\151\154\145\163\054\040\137\103\117\104\105\114\111\124\105\056\146\151\154\145\163\051\040\045\076\012\040\040\074\123\145\164\164\151\156\147\163\040\124\171\160\145\075\042\074\045\075\040\137\103\117\104\105\114\111\124\105\056\153\151\156\144\050\164\150\151\163\056\153\151\156\144\051\040\045\076\042\076\012\040\040\074\045\040\146\157\162\040\143\146\147\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\143\157\156\146\151\147\050\164\150\151\163\051\040\144\157\040\045\076\012\040\040\040\040\074\103\157\156\146\151\147\165\162\141\164\151\157\156\040\116\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\156\141\155\145\051\040\045\076\042\040\103\157\155\160\151\154\145\162\124\171\160\145\075\042\147\156\165\040\074\045\075\040\151\151\146\050\143\146\147\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\042\054\040\042\147\143\143\042\054\040\042\147\053\053\042\051\040\045\076\042\040\104\145\142\165\147\147\145\162\124\171\160\145\075\042\107\116\125\040\147\144\142\040\144\145\142\165\147\147\145\162\042\040\124\171\160\145\075\042\074\045\075\040\137\103\117\104\105\114\111\124\105\056\153\151\156\144\050\143\146\147\056\153\151\156\144\051\040\045\076\042\076\012\040\040\040\040\040\040\074\107\145\156\145\162\141\154\040\117\165\164\160\165\164\106\151\154\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\142\165\151\154\144\164\141\162\147\145\164\056\146\165\154\154\160\141\164\150\051\040\045\076\042\040\111\156\164\145\162\155\145\144\151\141\164\145\104\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\157\142\152\145\143\164\163\144\151\162\051\040\045\076\042\040\103\157\155\155\141\156\144\075\042\056\057\074\045\075\040\143\146\147\056\142\165\151\154\144\164\141\162\147\145\164\056\156\141\155\145\040\045\076\042\040\103\157\155\155\141\156\144\101\162\147\165\155\145\156\164\163\075\042\042\040\127\157\162\153\151\156\147\104\151\162\145\143\164\157\162\171\075\042\074\045\075\040\143\146\147\056\142\165\151\154\144\164\141\162\147\145\164\056\144\151\162\145\143\164\157\162\171\040\045\076\042\040\120\141\165\163\145\105\170\145\143\127\150\145\156\120\162\157\143\124\145\162\155\151\156\141\164\145\163\075\042\074\045\075\040\151\151\146\050\143\146\147\056\153\151\156\144\040\075\075\040\042\127\151\156\144\157\167\145\144\101\160\160\042\054\040\042\156\157\042\054\040\042\171\145\163\042\051\040\045\076\042\057\076\012\040\040\040\040\040\040\074\103\157\155\160\151\154\145\162\040\122\145\161\165\151\162\145\144\075\042\171\145\163\042\040\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\164\141\142\154\145\056\152\157\151\156\050\160\162\145\155\141\153\145\056\147\143\143\056\147\145\164\143\146\154\141\147\163\050\143\146\147\051\054\040\160\162\145\155\141\153\145\056\147\143\143\056\147\145\164\143\170\170\146\154\141\147\163\050\143\146\147\051\054\040\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\051\054\040\042\073\042\051\040\045\076\042\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\111\156\143\154\165\144\145\120\141\164\150\040\126\141\154\165\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\057\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\144\145\146\151\156\145\163\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\120\162\145\160\162\157\143\145\163\163\157\162\040\126\141\154\165\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\057\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\057\103\157\155\160\151\154\145\162\076\012\040\040\040\040\040\040\074\114\151\156\153\145\162\040\122\145\161\165\151\162\145\144\075\042\171\145\163\042\040\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\152\157\151\156\050\160\162\145\155\141\153\145\056\147\143\143\056\147\145\164\154\144\146\154\141\147\163\050\143\146\147\051\054\040\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\051\051\054\040\042\073\042\051\040\045\076\042\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\154\151\156\153\163\050\143\146\147\054\040\042\141\154\154\042\054\040\042\144\151\162\145\143\164\157\162\171\042\051\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\114\151\142\162\141\162\171\120\141\164\150\040\126\141\154\165\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\154\151\156\153\163\050\143\146\147\054\040\042\141\154\154\042\054\040\042\142\141\163\145\156\141\155\145\042\051\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\114\151\142\162\141\162\171\040\126\141\154\165\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\040\057\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\057\114\151\156\153\145\162\076\012\040\040\040\040\040\040\074\045\040\151\146\040\160\162\145\155\141\153\145\056\146\151\156\144\146\151\154\145\050\143\146\147\054\040\042\056\162\143\042\051\040\164\150\145\156\040\045\076\012\040\040\040\040\040\040\074\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\040\122\145\161\165\151\162\145\144\075\042\171\145\163\042\040\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\164\141\142\154\145\056\152\157\151\156\050\143\146\147\056\144\145\146\151\156\145\163\054\143\146\147\056\162\145\163\144\145\146\151\156\145\163\051\054\040\042\055\104\042\054\040\042\073\042\054\040\042\042\051\040\045\076\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\146\147\056\162\145\163\157\160\164\151\157\156\163\054\040\042\073\042\051\040\045\076\042\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\164\141\142\154\145\056\152\157\151\156\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\054\040\143\146\147\056\162\145\163\151\156\143\154\165\144\145\144\151\162\163\051\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\111\156\143\154\165\144\145\120\141\164\150\040\126\141\154\165\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\042\057\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\057\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\076\012\040\040\040\040\040\040\074\045\040\145\154\163\145\040\045\076\012\040\040\040\040\040\040\074\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\040\122\145\161\165\151\162\145\144\075\042\156\157\042\040\117\160\164\151\157\156\163\075\042\042\057\076\012\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\045\040\151\146\040\043\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\040\040\040\040\040\040\074\120\162\145\102\165\151\154\144\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\103\157\155\155\141\156\144\040\105\156\141\142\154\145\144\075\042\171\145\163\042\076\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\074\057\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\057\120\162\145\102\165\151\154\144\076\012\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\045\040\151\146\040\043\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\040\040\040\040\040\040\074\120\157\163\164\102\165\151\154\144\076\012\040\040\040\040\040\040\040\040\074\045\040\146\157\162\040\137\054\166\040\151\156\040\151\160\141\151\162\163\050\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\051\040\144\157\040\045\076\012\040\040\040\040\040\040\040\040\074\103\157\155\155\141\156\144\040\105\156\141\142\154\145\144\075\042\171\145\163\042\076\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\166\051\040\045\076\074\057\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\057\120\157\163\164\102\165\151\154\144\076\012\040\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\040\040\074\103\165\163\164\157\155\102\165\151\154\144\040\105\156\141\142\154\145\144\075\042\156\157\042\076\012\040\040\040\040\040\040\040\040\074\103\154\145\141\156\103\157\155\155\141\156\144\076\074\057\103\154\145\141\156\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\102\165\151\154\144\103\157\155\155\141\156\144\076\074\057\102\165\151\154\144\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\123\151\156\147\154\145\106\151\154\145\103\157\155\155\141\156\144\076\074\057\123\151\156\147\154\145\106\151\154\145\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\115\141\153\145\146\151\154\145\107\145\156\145\162\141\164\151\157\156\103\157\155\155\141\156\144\076\074\057\115\141\153\145\146\151\154\145\107\145\156\145\162\141\164\151\157\156\103\157\155\155\141\156\144\076\012\040\040\040\040\040\040\040\040\074\124\150\151\162\144\120\141\162\164\171\124\157\157\154\116\141\155\145\076\116\157\156\145\074\057\124\150\151\162\144\120\141\162\164\171\124\157\157\154\116\141\155\145\076\012\040\040\040\040\040\040\040\040\074\127\157\162\153\151\156\147\104\151\162\145\143\164\157\162\171\076\074\057\127\157\162\153\151\156\147\104\151\162\145\143\164\157\162\171\076\012\040\040\040\040\040\040\074\057\103\165\163\164\157\155\102\165\151\154\144\076\012\040\040\040\040\040\040\074\101\144\144\151\164\151\157\156\141\154\122\165\154\145\163\076\012\040\040\040\040\040\040\040\040\074\103\165\163\164\157\155\120\157\163\164\102\165\151\154\144\076\074\057\103\165\163\164\157\155\120\157\163\164\102\165\151\154\144\076\012\040\040\040\040\040\040\040\040\074\103\165\163\164\157\155\120\162\145\102\165\151\154\144\076\074\057\103\165\163\164\157\155\120\162\145\102\165\151\154\144\076\012\040\040\040\040\040\040\074\057\101\144\144\151\164\151\157\156\141\154\122\165\154\145\163\076\012\040\040\040\040\074\057\103\157\156\146\151\147\165\162\141\164\151\157\156\076\012\040\040\074\045\145\156\144\040\045\076\012\040\040\074\057\123\145\164\164\151\156\147\163\076\012\040\040\074\045\040\146\157\162\040\137\054\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\040\040\074\104\145\160\145\156\144\145\156\143\151\145\163\040\156\141\155\145\075\042\074\045\075\040\143\146\147\156\141\155\145\040\045\076\042\076\012\040\040\040\040\074\045\040\146\157\162\040\137\054\144\145\160\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\050\164\150\151\163\051\051\040\144\157\040\045\076\012\040\040\040\040\074\120\162\157\152\145\143\164\040\116\141\155\145\075\042\074\045\075\040\144\145\160\056\156\141\155\145\040\045\076\042\057\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\074\057\104\145\160\145\156\144\145\156\143\151\145\163\076\012\040\040\074\045\040\145\156\144\040\045\076\012\074\057\103\157\144\145\114\151\164\145\137\120\162\157\152\145\143\164\076\012\135\135\051",
"\137\124\105\115\120\114\101\124\105\123\056\155\141\153\145\137\163\157\154\165\164\151\157\156\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\155\141\153\145\137\163\157\154\165\164\151\157\156\047\054\133\133\043\040\074\045\075\040\160\162\145\155\141\153\145\056\141\143\164\151\157\156\163\133\137\101\103\124\111\117\116\135\056\163\150\157\162\164\156\141\155\145\040\045\076\040\163\157\154\165\164\151\157\156\040\155\141\153\145\146\151\154\145\040\141\165\164\157\147\145\156\145\162\141\164\145\144\040\142\171\040\120\162\145\155\141\153\145\012\043\040\125\163\141\147\145\072\040\155\141\153\145\040\133\040\103\117\116\106\111\107\075\143\157\156\146\151\147\137\156\141\155\145\040\135\012\043\040\127\150\145\162\145\040\173\143\157\156\146\151\147\137\156\141\155\145\175\040\151\163\040\157\156\145\040\157\146\072\040\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\054\040\047\042\047\054\040\047\042\047\054\040\047\054\040\047\051\040\045\076\056\012\012\151\146\156\144\145\146\040\103\117\116\106\111\107\012\040\040\103\117\116\106\111\107\075\074\045\075\040\137\115\101\113\105\056\145\163\143\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\133\061\135\051\040\045\076\012\145\156\144\151\146\012\145\170\160\157\162\164\040\103\117\116\106\111\107\012\012\120\122\117\112\105\103\124\123\040\072\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\137\115\101\113\105\056\145\163\143\050\164\141\142\154\145\056\145\170\164\162\141\143\164\050\164\150\151\163\056\160\162\157\152\145\143\164\163\054\040\042\156\141\155\145\042\051\051\054\040\042\040\042\051\040\045\076\012\012\056\120\110\117\116\131\072\040\141\154\154\040\143\154\145\141\156\040\044\050\120\122\117\112\105\103\124\123\051\012\012\141\154\154\072\040\044\050\120\122\117\112\105\103\124\123\051\012\012\074\045\040\146\157\162\040\137\054\160\162\152\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\160\162\157\152\145\143\164\163\051\040\144\157\040\045\076\012\040\074\045\040\146\157\162\040\143\146\147\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\143\157\156\146\151\147\050\160\162\152\051\040\144\157\040\045\076\012\151\146\145\161\040\050\044\050\103\117\116\106\111\107\051\054\074\045\075\040\137\115\101\113\105\056\145\163\143\050\143\146\147\056\156\141\155\145\051\045\076\051\012\040\040\104\105\120\105\116\104\105\116\103\111\105\123\040\072\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\137\115\101\113\105\056\145\163\143\050\164\141\142\154\145\056\145\170\164\162\141\143\164\050\160\162\145\155\141\153\145\056\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\050\143\146\147\051\054\040\042\156\141\155\145\042\051\051\054\040\042\040\042\051\040\045\076\012\145\156\144\151\146\012\040\074\045\040\145\156\144\040\045\076\012\012\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\162\152\056\156\141\155\145\051\040\045\076\072\040\044\173\104\105\120\105\116\104\105\116\103\111\105\123\175\012\011\100\145\143\150\157\040\075\075\075\075\040\102\165\151\154\144\151\156\147\040\074\045\075\040\160\162\152\056\156\141\155\145\040\045\076\040\075\075\075\075\012\011\100\044\173\115\101\113\105\175\040\055\055\156\157\055\160\162\151\156\164\055\144\151\162\145\143\164\157\162\171\040\055\103\040\074\045\075\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\162\145\154\141\164\151\166\145\050\164\150\151\163\056\154\157\143\141\164\151\157\156\054\040\160\162\152\056\154\157\143\141\164\151\157\156\051\051\045\076\040\055\146\040\074\045\075\137\115\101\113\105\056\145\163\143\050\137\115\101\113\105\056\147\145\164\155\141\153\145\146\151\154\145\156\141\155\145\050\160\162\152\054\040\164\162\165\145\051\051\045\076\012\011\012\074\045\040\145\156\144\040\045\076\012\012\143\154\145\141\156\072\012\074\045\040\146\157\162\040\137\054\160\162\152\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\160\162\157\152\145\143\164\163\051\040\144\157\040\045\076\012\011\100\044\173\115\101\113\105\175\040\055\055\156\157\055\160\162\151\156\164\055\144\151\162\145\143\164\157\162\171\040\055\103\040\074\045\075\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\162\145\154\141\164\151\166\145\050\164\150\151\163\056\154\157\143\141\164\151\157\156\054\040\160\162\152\056\154\157\143\141\164\151\157\156\051\051\045\076\040\055\146\040\074\045\075\137\115\101\113\105\056\145\163\143\050\137\115\101\113\105\056\147\145\164\155\141\153\145\146\151\154\145\156\141\155\145\050\160\162\152\054\040\164\162\165\145\051\051\045\076\040\143\154\145\141\156\012\074\045\040\145\156\144\040\045\076\012\135\135\051",
- "\137\124\105\115\120\114\101\124\105\123\056\155\141\153\145\137\143\160\160\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\155\141\153\145\137\143\160\160\047\054\133\133\074\045\040\154\157\143\141\154\040\143\143\040\075\040\160\162\145\155\141\153\145\133\137\117\120\124\111\117\116\123\056\143\143\135\040\045\076\012\043\040\074\045\075\040\160\162\145\155\141\153\145\056\141\143\164\151\157\156\163\133\137\101\103\124\111\117\116\135\056\163\150\157\162\164\156\141\155\145\040\045\076\040\160\162\157\152\145\143\164\040\155\141\153\145\146\151\154\145\040\141\165\164\157\147\145\156\145\162\141\164\145\144\040\142\171\040\120\162\145\155\141\153\145\012\012\151\146\156\144\145\146\040\103\117\116\106\111\107\012\040\040\103\117\116\106\111\107\075\074\045\075\040\137\115\101\113\105\056\145\163\143\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\133\061\135\051\040\045\076\012\145\156\144\151\146\012\012\074\045\040\146\157\162\040\143\146\147\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\143\157\156\146\151\147\050\164\150\151\163\051\040\144\157\040\045\076\012\151\146\145\161\040\050\044\050\103\117\116\106\111\107\051\054\074\045\075\040\137\115\101\113\105\056\145\163\143\050\143\146\147\056\156\141\155\145\051\045\076\051\012\040\040\074\045\040\154\157\143\141\154\040\164\141\162\147\145\164\040\075\040\160\162\145\155\141\153\145\056\147\145\164\164\141\162\147\145\164\146\151\154\145\050\143\146\147\054\040\042\164\141\162\147\145\164\042\054\040\156\151\154\054\040\164\162\165\145\051\040\045\076\012\040\040\124\101\122\107\105\124\104\111\122\040\040\075\040\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\144\151\162\145\143\164\157\162\171\050\164\141\162\147\145\164\051\051\040\045\076\012\040\040\124\101\122\107\105\124\040\040\040\040\040\075\040\044\050\124\101\122\107\105\124\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\156\141\155\145\050\164\141\162\147\145\164\051\051\040\045\076\012\040\040\117\102\112\104\111\122\040\040\040\040\040\075\040\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\162\145\155\141\153\145\056\147\145\164\157\142\152\144\151\162\050\143\146\147\051\051\040\045\076\012\040\040\104\105\106\111\116\105\123\040\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\143\056\147\145\164\144\145\146\151\156\145\163\050\143\146\147\056\144\145\146\151\156\145\163\051\054\040\042\040\042\051\040\045\076\012\040\040\111\116\103\114\125\104\105\123\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\143\056\147\145\164\151\156\143\154\165\144\145\144\151\162\163\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\051\054\040\042\040\042\051\040\045\076\012\040\040\103\120\120\106\114\101\107\123\040\040\053\075\040\074\045\075\040\143\143\056\147\145\164\143\160\160\146\154\141\147\163\050\143\146\147\051\040\045\076\040\044\050\104\105\106\111\116\105\123\051\040\044\050\111\116\103\114\125\104\105\123\051\012\040\040\103\106\114\101\107\123\040\040\040\040\053\075\040\044\050\103\120\120\106\114\101\107\123\051\040\044\050\101\122\103\110\051\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\164\141\142\154\145\056\152\157\151\156\050\143\143\056\147\145\164\143\146\154\141\147\163\050\143\146\147\051\054\040\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\012\040\040\103\130\130\106\114\101\107\123\040\040\053\075\040\044\050\103\106\114\101\107\123\051\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\143\056\147\145\164\143\170\170\146\154\141\147\163\050\143\146\147\051\054\040\042\040\042\051\040\045\076\012\040\040\114\104\106\114\101\107\123\040\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\164\141\142\154\145\056\152\157\151\156\050\143\143\056\147\145\164\154\144\146\154\141\147\163\050\143\146\147\051\054\040\143\143\056\147\145\164\154\151\156\153\146\154\141\147\163\050\143\146\147\051\054\040\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\012\040\040\122\105\123\106\114\101\107\123\040\040\053\075\040\044\050\104\105\106\111\116\105\123\051\040\044\050\111\116\103\114\125\104\105\123\051\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\164\141\142\154\145\056\152\157\151\156\050\143\143\056\147\145\164\144\145\146\151\156\145\163\050\143\146\147\056\162\145\163\144\145\146\151\156\145\163\051\054\040\143\143\056\147\145\164\151\156\143\154\165\144\145\144\151\162\163\050\143\146\147\056\162\145\163\151\156\143\154\165\144\145\144\151\162\163\051\054\040\143\146\147\056\162\145\163\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\012\040\040\114\104\104\105\120\123\040\040\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\137\115\101\113\105\056\147\145\164\164\141\162\147\145\164\144\145\160\163\050\143\146\147\051\054\040\042\040\042\051\040\045\076\012\040\040\074\045\040\151\146\040\143\146\147\056\153\151\156\144\040\075\075\040\042\123\164\141\164\151\143\114\151\142\042\040\164\150\145\156\040\045\076\012\040\040\114\111\116\113\103\115\104\040\040\040\040\075\040\141\162\040\055\162\143\163\040\044\050\124\101\122\107\105\124\051\040\044\050\117\102\112\105\103\124\123\051\040\044\050\101\122\103\110\051\012\040\040\074\045\040\145\154\163\145\040\045\076\012\040\040\114\111\116\113\103\115\104\040\040\040\040\075\040\044\050\074\045\075\040\151\151\146\050\143\146\147\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\042\054\040\042\103\103\042\054\040\042\103\130\130\042\051\040\045\076\051\040\055\157\040\044\050\124\101\122\107\105\124\051\040\044\050\117\102\112\105\103\124\123\051\040\044\050\114\104\106\114\101\107\123\051\040\044\050\122\105\123\117\125\122\103\105\123\051\040\044\050\101\122\103\110\051\012\040\040\074\045\040\145\156\144\040\045\076\012\040\040\144\145\146\151\156\145\040\120\122\105\102\125\111\114\104\103\115\104\123\012\040\040\040\040\074\045\040\151\146\040\043\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\100\145\143\150\157\040\122\165\156\156\151\156\147\040\160\162\145\055\142\165\151\154\144\040\143\157\155\155\141\156\144\163\012\011\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\156\134\164\042\051\040\045\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\145\156\144\145\146\012\040\040\144\145\146\151\156\145\040\120\122\105\114\111\116\113\103\115\104\123\012\040\040\040\040\074\045\040\151\146\040\043\143\146\147\056\160\162\145\154\151\156\153\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\100\145\143\150\157\040\122\165\156\156\151\156\147\040\160\162\145\055\154\151\156\153\040\143\157\155\155\141\156\144\163\012\011\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\162\145\154\151\156\153\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\156\134\164\042\051\040\045\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\145\156\144\145\146\012\040\040\144\145\146\151\156\145\040\120\117\123\124\102\125\111\114\104\103\115\104\123\012\040\040\040\040\074\045\040\151\146\040\043\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\100\145\143\150\157\040\122\165\156\156\151\156\147\040\160\157\163\164\055\142\165\151\154\144\040\143\157\155\155\141\156\144\163\012\011\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\156\134\164\042\051\040\045\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\145\156\144\145\146\012\145\156\144\151\146\012\012\074\045\040\145\156\144\040\045\076\012\012\117\102\112\105\103\124\123\040\072\075\040\134\012\074\045\040\146\157\162\040\137\054\040\146\151\154\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\146\151\154\145\163\051\040\144\157\040\045\076\012\040\074\045\040\151\146\040\160\141\164\150\056\151\163\143\160\160\146\151\154\145\050\146\151\154\145\051\040\164\150\145\156\040\045\076\012\011\044\050\117\102\112\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\142\141\163\145\156\141\155\145\050\146\151\154\145\051\051\040\045\076\056\157\040\134\012\040\074\045\040\145\156\144\040\045\076\012\074\045\040\145\156\144\040\045\076\012\012\122\105\123\117\125\122\103\105\123\040\072\075\040\134\012\074\045\040\146\157\162\040\137\054\040\146\151\154\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\146\151\154\145\163\051\040\144\157\040\045\076\012\040\074\045\040\151\146\040\160\141\164\150\056\151\163\162\145\163\157\165\162\143\145\146\151\154\145\050\146\151\154\145\051\040\164\150\145\156\040\045\076\012\011\044\050\117\102\112\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\142\141\163\145\156\141\155\145\050\146\151\154\145\051\051\040\045\076\056\162\145\163\040\134\012\040\074\045\040\145\156\144\040\045\076\012\074\045\040\145\156\144\040\045\076\012\012\123\110\105\114\114\124\131\120\105\040\072\075\040\155\163\144\157\163\012\151\146\145\161\040\050\054\044\050\103\157\155\123\160\145\143\051\044\050\103\117\115\123\120\105\103\051\051\012\040\040\123\110\105\114\114\124\131\120\105\040\072\075\040\160\157\163\151\170\012\145\156\144\151\146\012\151\146\145\161\040\050\057\142\151\156\054\044\050\146\151\156\144\163\164\162\151\156\147\040\057\142\151\156\054\044\050\123\110\105\114\114\051\051\051\012\040\040\123\110\105\114\114\124\131\120\105\040\072\075\040\160\157\163\151\170\012\145\156\144\151\146\012\012\151\146\145\161\040\050\160\157\163\151\170\054\044\050\123\110\105\114\114\124\131\120\105\051\051\012\040\040\040\115\113\104\111\122\040\040\040\072\075\040\155\153\144\151\162\040\055\160\012\040\040\040\120\101\124\110\123\105\120\040\072\075\040\057\012\145\154\163\145\012\040\040\040\115\113\104\111\122\040\040\040\072\075\040\155\153\144\151\162\012\040\040\040\120\101\124\110\123\105\120\040\072\075\040\134\134\012\145\156\144\151\146\012\012\123\131\123\137\124\101\122\107\105\124\040\040\040\040\072\075\040\044\050\163\165\142\163\164\040\057\054\044\050\120\101\124\110\123\105\120\051\054\044\050\124\101\122\107\105\124\051\051\012\123\131\123\137\124\101\122\107\105\124\104\111\122\040\072\075\040\044\050\163\165\142\163\164\040\057\054\044\050\120\101\124\110\123\105\120\051\054\044\050\124\101\122\107\105\124\104\111\122\051\051\012\123\131\123\137\117\102\112\104\111\122\040\040\040\040\072\075\040\044\050\163\165\142\163\164\040\057\054\044\050\120\101\124\110\123\105\120\051\054\044\050\117\102\112\104\111\122\051\051\012\012\056\120\110\117\116\131\072\040\143\154\145\141\156\040\160\162\145\142\165\151\154\144\040\160\162\145\154\151\156\153\012\012\074\045\040\151\146\040\157\163\056\151\163\050\042\115\141\143\117\123\130\042\051\040\141\156\144\040\164\150\151\163\056\153\151\156\144\040\075\075\040\042\127\151\156\144\157\167\145\144\101\160\160\042\040\164\150\145\156\040\045\076\012\141\154\154\072\040\044\050\124\101\122\107\105\124\051\040\044\050\144\151\162\040\044\050\124\101\122\107\105\124\104\111\122\051\051\120\153\147\111\156\146\157\040\044\050\144\151\162\040\044\050\124\101\122\107\105\124\104\111\122\051\051\111\156\146\157\056\160\154\151\163\164\012\012\044\050\144\151\162\040\044\050\124\101\122\107\105\124\104\111\122\051\051\120\153\147\111\156\146\157\072\012\012\044\050\144\151\162\040\044\050\124\101\122\107\105\124\104\111\122\051\051\111\156\146\157\056\160\154\151\163\164\072\012\074\045\040\145\156\144\040\045\076\012\012\044\050\124\101\122\107\105\124\051\072\040\044\050\124\101\122\107\105\124\104\111\122\051\040\044\050\117\102\112\104\111\122\051\040\160\162\145\142\165\151\154\144\040\044\050\117\102\112\105\103\124\123\051\040\044\050\114\104\104\105\120\123\051\040\044\050\122\105\123\117\125\122\103\105\123\051\040\160\162\145\154\151\156\153\012\011\100\145\143\150\157\040\114\151\156\153\151\156\147\040\074\045\075\040\164\150\151\163\056\156\141\155\145\040\045\076\012\011\100\044\050\114\111\116\113\103\115\104\051\012\011\044\050\120\117\123\124\102\125\111\114\104\103\115\104\123\051\012\012\044\050\124\101\122\107\105\124\104\111\122\051\072\012\011\100\145\143\150\157\040\103\162\145\141\164\151\156\147\040\044\100\012\011\100\044\050\115\113\104\111\122\051\040\044\050\123\131\123\137\124\101\122\107\105\124\104\111\122\051\012\011\012\044\050\117\102\112\104\111\122\051\072\012\011\100\145\143\150\157\040\103\162\145\141\164\151\156\147\040\044\100\012\011\100\044\050\115\113\104\111\122\051\040\044\050\123\131\123\137\117\102\112\104\111\122\051\012\012\143\154\145\141\156\072\012\011\100\145\143\150\157\040\103\154\145\141\156\151\156\147\040\074\045\075\040\164\150\151\163\056\156\141\155\145\040\045\076\012\151\146\145\161\040\050\160\157\163\151\170\054\044\050\123\110\105\114\114\124\131\120\105\051\051\012\011\100\162\155\040\055\146\040\040\044\050\124\101\122\107\105\124\051\012\011\100\162\155\040\055\162\146\040\044\050\117\102\112\104\111\122\051\012\145\154\163\145\012\011\100\151\146\040\145\170\151\163\164\040\044\050\123\131\123\137\124\101\122\107\105\124\051\040\144\145\154\040\044\050\123\131\123\137\124\101\122\107\105\124\051\012\011\100\151\146\040\145\170\151\163\164\040\044\050\123\131\123\137\117\102\112\104\111\122\051\040\162\155\144\151\162\040\057\163\040\057\161\040\044\050\123\131\123\137\117\102\112\104\111\122\051\012\145\156\144\151\146\012\012\160\162\145\142\165\151\154\144\072\012\011\044\050\120\122\105\102\125\111\114\104\103\115\104\123\051\012\011\012\160\162\145\154\151\156\153\072\012\011\044\050\120\122\105\114\111\116\113\103\115\104\123\051\012\011\012\074\045\040\146\157\162\040\137\054\040\146\151\154\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\146\151\154\145\163\051\040\144\157\040\045\076\012\074\045\040\151\146\040\160\141\164\150\056\151\163\143\160\160\146\151\154\145\050\146\151\154\145\051\040\164\150\145\156\040\045\076\012\044\050\117\102\112\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\142\141\163\145\156\141\155\145\050\146\151\154\145\051\051\040\045\076\056\157\072\040\074\045\075\040\137\115\101\113\105\056\145\163\143\050\146\151\154\145\051\040\045\076\012\011\100\145\143\150\157\040\044\050\156\157\164\144\151\162\040\044\074\051\012\011\074\045\040\151\146\040\050\160\141\164\150\056\151\163\143\146\151\154\145\050\146\151\154\145\051\051\040\164\150\145\156\040\045\076\012\011\100\044\050\103\103\051\040\044\050\103\106\114\101\107\123\051\040\055\157\040\044\100\040\055\143\040\044\074\012\011\074\045\040\145\154\163\145\040\045\076\012\011\100\044\050\103\130\130\051\040\044\050\103\130\130\106\114\101\107\123\051\040\055\157\040\044\100\040\055\143\040\044\074\012\011\074\045\040\145\156\144\040\045\076\012\011\012\074\045\040\145\154\163\145\151\146\040\050\160\141\164\150\056\147\145\164\145\170\164\145\156\163\151\157\156\050\146\151\154\145\051\040\075\075\040\042\056\162\143\042\051\040\164\150\145\156\040\045\076\012\044\050\117\102\112\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\142\141\163\145\156\141\155\145\050\146\151\154\145\051\051\040\045\076\056\162\145\163\072\040\074\045\075\040\137\115\101\113\105\056\145\163\143\050\146\151\154\145\051\040\045\076\012\011\100\145\143\150\157\040\044\050\156\157\164\144\151\162\040\044\074\051\012\011\100\167\151\156\144\162\145\163\040\044\074\040\055\117\040\143\157\146\146\040\055\157\040\044\100\040\044\050\122\105\123\106\114\101\107\123\051\012\012\074\045\040\145\156\144\040\045\076\012\074\045\040\145\156\144\040\045\076\012\012\055\151\156\143\154\165\144\145\040\044\050\117\102\112\105\103\124\123\072\045\056\157\075\045\056\144\051\012\135\135\051",
+ "\137\124\105\115\120\114\101\124\105\123\056\155\141\153\145\137\143\160\160\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\155\141\153\145\137\143\160\160\047\054\133\133\074\045\040\154\157\143\141\154\040\143\143\040\075\040\160\162\145\155\141\153\145\133\137\117\120\124\111\117\116\123\056\143\143\135\040\045\076\012\043\040\074\045\075\040\160\162\145\155\141\153\145\056\141\143\164\151\157\156\163\133\137\101\103\124\111\117\116\135\056\163\150\157\162\164\156\141\155\145\040\045\076\040\160\162\157\152\145\143\164\040\155\141\153\145\146\151\154\145\040\141\165\164\157\147\145\156\145\162\141\164\145\144\040\142\171\040\120\162\145\155\141\153\145\012\012\151\146\156\144\145\146\040\103\117\116\106\111\107\012\040\040\103\117\116\106\111\107\075\074\045\075\040\137\115\101\113\105\056\145\163\143\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\133\061\135\051\040\045\076\012\145\156\144\151\146\012\012\074\045\040\146\157\162\040\143\146\147\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\143\157\156\146\151\147\050\164\150\151\163\051\040\144\157\040\045\076\012\151\146\145\161\040\050\044\050\103\117\116\106\111\107\051\054\074\045\075\040\137\115\101\113\105\056\145\163\143\050\143\146\147\056\156\141\155\145\051\045\076\051\012\040\040\124\101\122\107\105\124\104\111\122\040\040\075\040\074\045\075\040\137\115\101\113\105\056\145\163\143\050\143\146\147\056\142\165\151\154\144\164\141\162\147\145\164\056\144\151\162\145\143\164\157\162\171\051\040\045\076\012\040\040\124\101\122\107\105\124\040\040\040\040\040\075\040\044\050\124\101\122\107\105\124\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\143\146\147\056\142\165\151\154\144\164\141\162\147\145\164\056\156\141\155\145\051\040\045\076\012\040\040\117\102\112\104\111\122\040\040\040\040\040\075\040\074\045\075\040\137\115\101\113\105\056\145\163\143\050\143\146\147\056\157\142\152\145\143\164\163\144\151\162\051\040\045\076\012\040\040\104\105\106\111\116\105\123\040\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\143\056\147\145\164\144\145\146\151\156\145\163\050\143\146\147\056\144\145\146\151\156\145\163\051\054\040\042\040\042\051\040\045\076\012\040\040\111\116\103\114\125\104\105\123\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\143\056\147\145\164\151\156\143\154\165\144\145\144\151\162\163\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\051\054\040\042\040\042\051\040\045\076\012\040\040\103\120\120\106\114\101\107\123\040\040\053\075\040\074\045\075\040\143\143\056\147\145\164\143\160\160\146\154\141\147\163\050\143\146\147\051\040\045\076\040\044\050\104\105\106\111\116\105\123\051\040\044\050\111\116\103\114\125\104\105\123\051\012\040\040\103\106\114\101\107\123\040\040\040\040\053\075\040\044\050\103\120\120\106\114\101\107\123\051\040\044\050\101\122\103\110\051\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\164\141\142\154\145\056\152\157\151\156\050\143\143\056\147\145\164\143\146\154\141\147\163\050\143\146\147\051\054\040\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\012\040\040\103\130\130\106\114\101\107\123\040\040\053\075\040\044\050\103\106\114\101\107\123\051\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\143\056\147\145\164\143\170\170\146\154\141\147\163\050\143\146\147\051\054\040\042\040\042\051\040\045\076\012\040\040\114\104\106\114\101\107\123\040\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\164\141\142\154\145\056\152\157\151\156\050\143\143\056\147\145\164\154\144\146\154\141\147\163\050\143\146\147\051\054\040\143\143\056\147\145\164\154\151\156\153\146\154\141\147\163\050\143\146\147\051\054\040\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\012\040\040\122\105\123\106\114\101\107\123\040\040\053\075\040\044\050\104\105\106\111\116\105\123\051\040\044\050\111\116\103\114\125\104\105\123\051\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\164\141\142\154\145\056\152\157\151\156\050\143\143\056\147\145\164\144\145\146\151\156\145\163\050\143\146\147\056\162\145\163\144\145\146\151\156\145\163\051\054\040\143\143\056\147\145\164\151\156\143\154\165\144\145\144\151\162\163\050\143\146\147\056\162\145\163\151\156\143\154\165\144\145\144\151\162\163\051\054\040\143\146\147\056\162\145\163\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\012\040\040\114\104\104\105\120\123\040\040\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\137\115\101\113\105\056\145\163\143\050\160\162\145\155\141\153\145\056\147\145\164\154\151\156\153\163\050\143\146\147\054\040\042\163\151\142\154\151\156\147\163\042\054\040\042\146\165\154\154\160\141\164\150\042\051\051\051\040\045\076\012\040\040\074\045\040\151\146\040\143\146\147\056\153\151\156\144\040\075\075\040\042\123\164\141\164\151\143\114\151\142\042\040\164\150\145\156\040\045\076\012\040\040\114\111\116\113\103\115\104\040\040\040\040\075\040\141\162\040\055\162\143\163\040\044\050\124\101\122\107\105\124\051\040\044\050\117\102\112\105\103\124\123\051\012\040\040\074\045\040\145\154\163\145\040\045\076\012\040\040\114\111\116\113\103\115\104\040\040\040\040\075\040\044\050\074\045\075\040\151\151\146\050\143\146\147\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\042\054\040\042\103\103\042\054\040\042\103\130\130\042\051\040\045\076\051\040\055\157\040\044\050\124\101\122\107\105\124\051\040\044\050\117\102\112\105\103\124\123\051\040\044\050\114\104\106\114\101\107\123\051\040\044\050\122\105\123\117\125\122\103\105\123\051\040\044\050\101\122\103\110\051\012\040\040\074\045\040\145\156\144\040\045\076\012\040\040\144\145\146\151\156\145\040\120\122\105\102\125\111\114\104\103\115\104\123\012\040\040\040\040\074\045\040\151\146\040\043\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\100\145\143\150\157\040\122\165\156\156\151\156\147\040\160\162\145\055\142\165\151\154\144\040\143\157\155\155\141\156\144\163\012\011\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\156\134\164\042\051\040\045\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\145\156\144\145\146\012\040\040\144\145\146\151\156\145\040\120\122\105\114\111\116\113\103\115\104\123\012\040\040\040\040\074\045\040\151\146\040\043\143\146\147\056\160\162\145\154\151\156\153\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\100\145\143\150\157\040\122\165\156\156\151\156\147\040\160\162\145\055\154\151\156\153\040\143\157\155\155\141\156\144\163\012\011\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\162\145\154\151\156\153\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\156\134\164\042\051\040\045\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\145\156\144\145\146\012\040\040\144\145\146\151\156\145\040\120\117\123\124\102\125\111\114\104\103\115\104\123\012\040\040\040\040\074\045\040\151\146\040\043\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\100\145\143\150\157\040\122\165\156\156\151\156\147\040\160\157\163\164\055\142\165\151\154\144\040\143\157\155\155\141\156\144\163\012\011\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\156\134\164\042\051\040\045\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\145\156\144\145\146\012\145\156\144\151\146\012\012\074\045\040\145\156\144\040\045\076\012\012\117\102\112\105\103\124\123\040\072\075\040\134\012\074\045\040\146\157\162\040\137\054\040\146\151\154\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\146\151\154\145\163\051\040\144\157\040\045\076\012\040\074\045\040\151\146\040\160\141\164\150\056\151\163\143\160\160\146\151\154\145\050\146\151\154\145\051\040\164\150\145\156\040\045\076\012\011\044\050\117\102\112\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\142\141\163\145\156\141\155\145\050\146\151\154\145\051\051\040\045\076\056\157\040\134\012\040\074\045\040\145\156\144\040\045\076\012\074\045\040\145\156\144\040\045\076\012\012\122\105\123\117\125\122\103\105\123\040\072\075\040\134\012\074\045\040\146\157\162\040\137\054\040\146\151\154\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\146\151\154\145\163\051\040\144\157\040\045\076\012\040\074\045\040\151\146\040\160\141\164\150\056\151\163\162\145\163\157\165\162\143\145\146\151\154\145\050\146\151\154\145\051\040\164\150\145\156\040\045\076\012\011\044\050\117\102\112\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\142\141\163\145\156\141\155\145\050\146\151\154\145\051\051\040\045\076\056\162\145\163\040\134\012\040\074\045\040\145\156\144\040\045\076\012\074\045\040\145\156\144\040\045\076\012\012\123\110\105\114\114\124\131\120\105\040\072\075\040\155\163\144\157\163\012\151\146\145\161\040\050\054\044\050\103\157\155\123\160\145\143\051\044\050\103\117\115\123\120\105\103\051\051\012\040\040\123\110\105\114\114\124\131\120\105\040\072\075\040\160\157\163\151\170\012\145\156\144\151\146\012\151\146\145\161\040\050\057\142\151\156\054\044\050\146\151\156\144\163\164\162\151\156\147\040\057\142\151\156\054\044\050\123\110\105\114\114\051\051\051\012\040\040\123\110\105\114\114\124\131\120\105\040\072\075\040\160\157\163\151\170\012\145\156\144\151\146\012\012\151\146\145\161\040\050\160\157\163\151\170\054\044\050\123\110\105\114\114\124\131\120\105\051\051\012\040\040\040\115\113\104\111\122\040\040\040\072\075\040\155\153\144\151\162\040\055\160\012\040\040\040\120\101\124\110\123\105\120\040\072\075\040\057\012\145\154\163\145\012\040\040\040\115\113\104\111\122\040\040\040\072\075\040\155\153\144\151\162\012\040\040\040\120\101\124\110\123\105\120\040\072\075\040\134\134\012\145\156\144\151\146\012\012\123\131\123\137\124\101\122\107\105\124\040\040\040\040\072\075\040\044\050\163\165\142\163\164\040\057\054\044\050\120\101\124\110\123\105\120\051\054\044\050\124\101\122\107\105\124\051\051\012\123\131\123\137\124\101\122\107\105\124\104\111\122\040\072\075\040\044\050\163\165\142\163\164\040\057\054\044\050\120\101\124\110\123\105\120\051\054\044\050\124\101\122\107\105\124\104\111\122\051\051\012\123\131\123\137\117\102\112\104\111\122\040\040\040\040\072\075\040\044\050\163\165\142\163\164\040\057\054\044\050\120\101\124\110\123\105\120\051\054\044\050\117\102\112\104\111\122\051\051\012\012\056\120\110\117\116\131\072\040\143\154\145\141\156\040\160\162\145\142\165\151\154\144\040\160\162\145\154\151\156\153\012\012\074\045\040\151\146\040\157\163\056\151\163\050\042\115\141\143\117\123\130\042\051\040\141\156\144\040\164\150\151\163\056\153\151\156\144\040\075\075\040\042\127\151\156\144\157\167\145\144\101\160\160\042\040\164\150\145\156\040\045\076\012\141\154\154\072\040\044\050\124\101\122\107\105\124\051\040\044\050\144\151\162\040\044\050\124\101\122\107\105\124\104\111\122\051\051\120\153\147\111\156\146\157\040\044\050\144\151\162\040\044\050\124\101\122\107\105\124\104\111\122\051\051\111\156\146\157\056\160\154\151\163\164\012\012\044\050\144\151\162\040\044\050\124\101\122\107\105\124\104\111\122\051\051\120\153\147\111\156\146\157\072\012\012\044\050\144\151\162\040\044\050\124\101\122\107\105\124\104\111\122\051\051\111\156\146\157\056\160\154\151\163\164\072\012\074\045\040\145\156\144\040\045\076\012\012\044\050\124\101\122\107\105\124\051\072\040\044\050\124\101\122\107\105\124\104\111\122\051\040\044\050\117\102\112\104\111\122\051\040\160\162\145\142\165\151\154\144\040\044\050\117\102\112\105\103\124\123\051\040\044\050\114\104\104\105\120\123\051\040\044\050\122\105\123\117\125\122\103\105\123\051\040\160\162\145\154\151\156\153\012\011\100\145\143\150\157\040\114\151\156\153\151\156\147\040\074\045\075\040\164\150\151\163\056\156\141\155\145\040\045\076\012\011\100\044\050\114\111\116\113\103\115\104\051\012\011\044\050\120\117\123\124\102\125\111\114\104\103\115\104\123\051\012\012\044\050\124\101\122\107\105\124\104\111\122\051\072\012\011\100\145\143\150\157\040\103\162\145\141\164\151\156\147\040\044\100\012\011\100\044\050\115\113\104\111\122\051\040\044\050\123\131\123\137\124\101\122\107\105\124\104\111\122\051\012\011\012\044\050\117\102\112\104\111\122\051\072\012\011\100\145\143\150\157\040\103\162\145\141\164\151\156\147\040\044\100\012\011\100\044\050\115\113\104\111\122\051\040\044\050\123\131\123\137\117\102\112\104\111\122\051\012\012\143\154\145\141\156\072\012\011\100\145\143\150\157\040\103\154\145\141\156\151\156\147\040\074\045\075\040\164\150\151\163\056\156\141\155\145\040\045\076\012\151\146\145\161\040\050\160\157\163\151\170\054\044\050\123\110\105\114\114\124\131\120\105\051\051\012\011\100\162\155\040\055\146\040\040\044\050\124\101\122\107\105\124\051\012\011\100\162\155\040\055\162\146\040\044\050\117\102\112\104\111\122\051\012\145\154\163\145\012\011\100\151\146\040\145\170\151\163\164\040\044\050\123\131\123\137\124\101\122\107\105\124\051\040\144\145\154\040\044\050\123\131\123\137\124\101\122\107\105\124\051\012\011\100\151\146\040\145\170\151\163\164\040\044\050\123\131\123\137\117\102\112\104\111\122\051\040\162\155\144\151\162\040\057\163\040\057\161\040\044\050\123\131\123\137\117\102\112\104\111\122\051\012\145\156\144\151\146\012\012\160\162\145\142\165\151\154\144\072\012\011\044\050\120\122\105\102\125\111\114\104\103\115\104\123\051\012\011\012\160\162\145\154\151\156\153\072\012\011\044\050\120\122\105\114\111\116\113\103\115\104\123\051\012\011\012\074\045\040\146\157\162\040\137\054\040\146\151\154\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\146\151\154\145\163\051\040\144\157\040\045\076\012\074\045\040\151\146\040\160\141\164\150\056\151\163\143\160\160\146\151\154\145\050\146\151\154\145\051\040\164\150\145\156\040\045\076\012\044\050\117\102\112\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\142\141\163\145\156\141\155\145\050\146\151\154\145\051\051\040\045\076\056\157\072\040\074\045\075\040\137\115\101\113\105\056\145\163\143\050\146\151\154\145\051\040\045\076\012\011\100\145\143\150\157\040\044\050\156\157\164\144\151\162\040\044\074\051\012\011\074\045\040\151\146\040\050\160\141\164\150\056\151\163\143\146\151\154\145\050\146\151\154\145\051\051\040\164\150\145\156\040\045\076\012\011\100\044\050\103\103\051\040\044\050\103\106\114\101\107\123\051\040\055\157\040\044\100\040\055\143\040\044\074\012\011\074\045\040\145\154\163\145\040\045\076\012\011\100\044\050\103\130\130\051\040\044\050\103\130\130\106\114\101\107\123\051\040\055\157\040\044\100\040\055\143\040\044\074\012\011\074\045\040\145\156\144\040\045\076\012\011\012\074\045\040\145\154\163\145\151\146\040\050\160\141\164\150\056\147\145\164\145\170\164\145\156\163\151\157\156\050\146\151\154\145\051\040\075\075\040\042\056\162\143\042\051\040\164\150\145\156\040\045\076\012\044\050\117\102\112\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\160\141\164\150\056\147\145\164\142\141\163\145\156\141\155\145\050\146\151\154\145\051\051\040\045\076\056\162\145\163\072\040\074\045\075\040\137\115\101\113\105\056\145\163\143\050\146\151\154\145\051\040\045\076\012\011\100\145\143\150\157\040\044\050\156\157\164\144\151\162\040\044\074\051\012\011\100\167\151\156\144\162\145\163\040\044\074\040\055\117\040\143\157\146\146\040\055\157\040\044\100\040\044\050\122\105\123\106\114\101\107\123\051\012\012\074\045\040\145\156\144\040\045\076\012\074\045\040\145\156\144\040\045\076\012\012\055\151\156\143\154\165\144\145\040\044\050\117\102\112\105\103\124\123\072\045\056\157\075\045\056\144\051\012\135\135\051",
+ "\137\124\105\115\120\114\101\124\105\123\056\155\141\153\145\137\143\163\150\141\162\160\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\155\141\153\145\137\143\163\150\141\162\160\047\054\133\133\074\045\040\154\157\143\141\154\040\143\163\143\040\075\040\160\162\145\155\141\153\145\056\143\163\143\040\045\076\012\043\040\074\045\075\040\160\162\145\155\141\153\145\056\141\143\164\151\157\156\163\133\137\101\103\124\111\117\116\135\056\163\150\157\162\164\156\141\155\145\040\045\076\040\160\162\157\152\145\143\164\040\155\141\153\145\146\151\154\145\040\141\165\164\157\147\145\156\145\162\141\164\145\144\040\142\171\040\120\162\145\155\141\153\145\012\012\151\146\156\144\145\146\040\103\117\116\106\111\107\012\040\040\103\117\116\106\111\107\075\074\045\075\040\137\115\101\113\105\056\145\163\143\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\133\061\135\051\040\045\076\012\145\156\144\151\146\012\012\151\146\156\144\145\146\040\103\123\103\012\040\040\103\123\103\075\074\045\075\040\143\163\143\056\147\145\164\143\157\155\160\151\154\145\162\166\141\162\050\164\150\151\163\051\040\045\076\012\145\156\144\151\146\012\012\151\146\156\144\145\146\040\122\105\123\107\105\116\012\040\040\122\105\123\107\105\116\075\162\145\163\147\145\156\012\145\156\144\151\146\012\012\012\074\045\040\146\157\162\040\143\146\147\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\143\157\156\146\151\147\050\164\150\151\163\051\040\144\157\040\045\076\012\151\146\145\161\040\050\044\050\103\117\116\106\111\107\051\054\074\045\075\040\137\115\101\113\105\056\145\163\143\050\143\146\147\056\156\141\155\145\051\045\076\051\012\040\040\124\101\122\107\105\124\104\111\122\040\040\040\075\040\074\045\075\040\137\115\101\113\105\056\145\163\143\050\143\146\147\056\142\165\151\154\144\164\141\162\147\145\164\056\144\151\162\145\143\164\157\162\171\051\040\045\076\012\040\040\117\102\112\104\111\122\040\040\040\040\040\040\075\040\074\045\075\040\137\115\101\113\105\056\145\163\143\050\143\146\147\056\157\142\152\145\143\164\163\144\151\162\051\040\045\076\012\040\040\106\114\101\107\123\040\040\040\040\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\163\143\056\147\145\164\146\154\141\147\163\050\143\146\147\051\054\040\042\040\042\051\040\045\076\040\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\144\145\146\151\156\145\163\054\040\042\057\144\072\042\054\040\042\042\054\040\042\040\042\051\040\045\076\012\040\040\074\045\040\154\157\143\141\154\040\163\151\142\154\151\156\147\163\040\075\040\137\115\101\113\105\056\145\163\143\050\160\162\145\155\141\153\145\056\147\145\164\154\151\156\153\163\050\143\146\147\054\040\042\163\151\142\154\151\156\147\163\042\054\040\042\146\165\154\154\160\141\164\150\042\051\051\040\045\076\012\040\040\122\105\106\105\122\105\116\103\105\123\040\053\075\040\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\163\151\142\154\151\156\147\163\054\040\042\057\162\072\042\054\040\042\042\054\040\042\040\042\051\040\045\076\012\040\040\104\105\120\105\116\104\123\040\040\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\163\151\142\154\151\156\147\163\054\040\042\040\042\051\040\045\076\012\145\156\144\151\146\012\012\074\045\040\145\156\144\040\045\076\012\012\124\101\122\107\105\124\040\040\040\040\040\040\075\040\044\050\124\101\122\107\105\124\104\111\122\051\057\074\045\075\040\137\115\101\113\105\056\145\163\143\050\164\150\151\163\056\142\165\151\154\144\164\141\162\147\145\164\056\156\141\155\145\051\040\045\076\012\074\045\040\151\146\040\043\164\150\151\163\056\154\151\142\144\151\162\163\040\076\040\060\040\164\150\145\156\040\045\076\012\106\114\101\107\123\040\040\040\040\040\040\053\075\040\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\137\115\101\113\105\056\145\163\143\050\164\150\151\163\056\154\151\142\144\151\162\163\051\054\040\042\057\154\151\142\072\042\054\040\042\042\054\040\042\040\042\051\040\045\076\012\074\045\040\145\156\144\040\045\076\012\122\105\106\105\122\105\116\103\105\123\040\053\075\040\074\045\075\040\164\141\142\154\145\056\151\155\160\154\157\144\145\050\137\115\101\113\105\056\145\163\143\050\160\162\145\155\141\153\145\056\147\145\164\154\151\156\153\163\050\164\150\151\163\054\040\042\163\171\163\164\145\155\042\054\040\042\142\141\163\145\156\141\155\145\042\051\051\054\040\047\057\162\072\047\054\040\047\047\054\040\047\040\047\051\040\045\076\012\135\135\051",
"\137\124\105\115\120\114\101\124\105\123\056\166\163\062\060\060\062\137\163\157\154\165\164\151\157\156\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\166\163\062\060\060\062\137\163\157\154\165\164\151\157\156\047\054\133\133\074\045\040\145\157\154\040\075\040\042\134\162\134\156\042\040\045\076\012\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\123\157\154\165\164\151\157\156\040\106\151\154\145\054\040\106\157\162\155\141\164\040\126\145\162\163\151\157\156\040\067\056\060\060\012\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\120\162\157\152\145\143\164\050\042\173\074\045\075\137\126\123\056\164\157\157\154\050\160\162\152\051\045\076\175\042\051\040\075\040\042\074\045\075\160\162\152\056\156\141\155\145\045\076\042\054\040\042\074\045\075\160\141\164\150\056\164\162\141\156\163\154\141\164\145\050\160\141\164\150\056\147\145\164\162\145\154\141\164\151\166\145\050\164\150\151\163\056\154\157\143\141\164\151\157\156\054\040\137\126\123\056\160\162\157\152\145\143\164\146\151\154\145\050\160\162\152\051\051\051\045\076\042\054\040\042\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\042\012\105\156\144\120\162\157\152\145\143\164\012\074\045\040\145\156\144\040\045\076\012\107\154\157\142\141\154\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\123\157\154\165\164\151\157\156\103\157\156\146\151\147\165\162\141\164\151\157\156\051\040\075\040\160\162\145\123\157\154\165\164\151\157\156\012\011\074\045\040\146\157\162\040\151\054\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\011\011\103\157\156\146\151\147\116\141\155\145\056\074\045\075\040\151\055\061\040\045\076\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\012\011\074\045\040\145\156\144\040\045\076\011\011\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\104\145\160\145\156\144\145\156\143\151\145\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\011\040\074\045\040\146\157\162\040\151\054\144\145\160\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\050\160\162\152\051\051\040\144\157\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\151\040\055\040\061\040\045\076\040\075\040\173\074\045\075\040\144\145\160\056\165\165\151\144\040\045\076\175\012\011\040\074\045\040\145\156\144\040\045\076\012\011\074\045\040\145\156\144\040\045\076\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\104\145\160\145\156\144\145\156\143\151\145\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\103\157\156\146\151\147\165\162\141\164\151\157\156\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\011\040\074\045\040\146\157\162\040\151\054\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\011\011\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\056\074\045\075\143\146\147\156\141\155\145\045\076\056\101\143\164\151\166\145\103\146\147\040\075\040\074\045\075\143\146\147\156\141\155\145\045\076\174\074\045\075\137\126\123\056\141\162\143\150\050\160\162\152\054\040\062\060\060\062\051\045\076\012\011\011\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\056\074\045\075\143\146\147\156\141\155\145\045\076\056\102\165\151\154\144\056\060\040\075\040\074\045\075\143\146\147\156\141\155\145\045\076\174\074\045\075\137\126\123\056\141\162\143\150\050\160\162\152\054\040\062\060\060\062\051\045\076\012\011\040\074\045\040\145\156\144\040\045\076\012\011\074\045\040\145\156\144\040\045\076\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\105\170\164\145\156\163\151\142\151\154\151\164\171\107\154\157\142\141\154\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\105\170\164\145\156\163\151\142\151\154\151\164\171\101\144\144\111\156\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\105\156\144\107\154\157\142\141\154\012\135\135\051",
- "\137\124\105\115\120\114\101\124\105\123\056\166\163\062\060\060\063\137\163\157\154\165\164\151\157\156\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\166\163\062\060\060\063\137\163\157\154\165\164\151\157\156\047\054\133\133\074\045\040\145\157\154\040\075\040\042\134\162\134\156\042\040\045\076\012\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\123\157\154\165\164\151\157\156\040\106\151\154\145\054\040\106\157\162\155\141\164\040\126\145\162\163\151\157\156\040\070\056\060\060\012\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\120\162\157\152\145\143\164\050\042\173\074\045\075\137\126\123\056\164\157\157\154\050\160\162\152\051\045\076\175\042\051\040\075\040\042\074\045\075\160\162\152\056\156\141\155\145\045\076\042\054\040\042\074\045\075\160\141\164\150\056\164\162\141\156\163\154\141\164\145\050\160\141\164\150\056\147\145\164\162\145\154\141\164\151\166\145\050\164\150\151\163\056\154\157\143\141\164\151\157\156\054\040\137\126\123\056\160\162\157\152\145\143\164\146\151\154\145\050\160\162\152\051\051\051\045\076\042\054\040\042\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\042\012\040\074\045\040\146\157\162\040\137\054\144\145\160\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\050\160\162\152\051\051\040\144\157\040\045\076\012\011\173\074\045\075\040\144\145\160\056\165\165\151\144\040\045\076\175\040\075\040\173\074\045\075\040\144\145\160\056\165\165\151\144\040\045\076\175\012\040\074\045\040\145\156\144\040\045\076\012\105\156\144\120\162\157\152\145\143\164\012\074\045\040\145\156\144\040\045\076\012\107\154\157\142\141\154\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\123\157\154\165\164\151\157\156\103\157\156\146\151\147\165\162\141\164\151\157\156\051\040\075\040\160\162\145\123\157\154\165\164\151\157\156\012\011\074\045\040\146\157\162\040\151\054\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\011\011\074\045\075\040\143\146\147\156\141\155\145\040\045\076\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\012\011\074\045\040\145\156\144\040\045\076\011\011\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\104\145\160\145\156\144\145\156\143\151\145\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\103\157\156\146\151\147\165\162\141\164\151\157\156\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\011\040\074\045\040\146\157\162\040\151\054\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\011\011\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\056\074\045\075\143\146\147\156\141\155\145\045\076\056\101\143\164\151\166\145\103\146\147\040\075\040\074\045\075\143\146\147\156\141\155\145\045\076\174\074\045\075\137\126\123\056\141\162\143\150\050\160\162\152\054\040\062\060\060\062\051\045\076\012\011\011\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\056\074\045\075\143\146\147\156\141\155\145\045\076\056\102\165\151\154\144\056\060\040\075\040\074\045\075\143\146\147\156\141\155\145\045\076\174\074\045\075\137\126\123\056\141\162\143\150\050\160\162\152\054\040\062\060\060\062\051\045\076\012\011\040\074\045\040\145\156\144\040\045\076\012\011\074\045\040\145\156\144\040\045\076\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\105\170\164\145\156\163\151\142\151\154\151\164\171\107\154\157\142\141\154\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\105\170\164\145\156\163\151\142\151\154\151\164\171\101\144\144\111\156\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\105\156\144\107\154\157\142\141\154\012\135\135\051",
- "\137\124\105\115\120\114\101\124\105\123\056\166\163\062\060\060\065\137\163\157\154\165\164\151\157\156\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\166\163\062\060\060\065\137\163\157\154\165\164\151\157\156\047\054\133\133\074\045\040\145\157\154\040\075\040\042\134\162\134\156\042\040\045\076\012\074\045\075\040\042\134\062\063\071\134\061\070\067\134\061\071\061\042\040\045\076\012\074\045\040\154\157\143\141\154\040\150\141\163\143\160\160\054\040\150\141\163\144\157\164\156\145\164\040\045\076\012\074\045\040\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\065\042\040\164\150\145\156\040\045\076\012\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\123\157\154\165\164\151\157\156\040\106\151\154\145\054\040\106\157\162\155\141\164\040\126\145\162\163\151\157\156\040\071\056\060\060\012\043\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\065\012\074\045\040\145\154\163\145\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\070\042\040\164\150\145\156\040\045\076\012\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\123\157\154\165\164\151\157\156\040\106\151\154\145\054\040\106\157\162\155\141\164\040\126\145\162\163\151\157\156\040\061\060\056\060\060\012\043\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\070\012\074\045\040\145\156\144\040\045\076\012\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\040\074\045\040\151\146\040\050\160\162\152\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\042\040\157\162\040\160\162\152\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\053\053\042\051\040\164\150\145\156\040\150\141\163\143\160\160\040\075\040\164\162\165\145\040\145\156\144\040\045\076\012\040\074\045\040\151\146\040\050\160\162\152\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\043\042\051\040\164\150\145\156\040\150\141\163\144\157\164\156\145\164\040\075\040\164\162\165\145\040\145\156\144\040\045\076\012\120\162\157\152\145\143\164\050\042\173\074\045\075\137\126\123\056\164\157\157\154\050\160\162\152\051\045\076\175\042\051\040\075\040\042\074\045\075\160\162\152\056\156\141\155\145\045\076\042\054\040\042\074\045\075\160\141\164\150\056\164\162\141\156\163\154\141\164\145\050\160\141\164\150\056\147\145\164\162\145\154\141\164\151\166\145\050\164\150\151\163\056\154\157\143\141\164\151\157\156\054\040\137\126\123\056\160\162\157\152\145\143\164\146\151\154\145\050\160\162\152\051\051\054\042\134\134\042\051\045\076\042\054\040\042\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\042\012\040\074\045\040\146\157\162\040\137\054\144\145\160\040\151\156\040\151\160\141\151\162\163\050\160\162\145\155\141\153\145\056\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\050\160\162\152\051\051\040\144\157\040\045\076\012\011\173\074\045\075\040\144\145\160\056\165\165\151\144\040\045\076\175\040\075\040\173\074\045\075\040\144\145\160\056\165\165\151\144\040\045\076\175\012\040\074\045\040\145\156\144\040\045\076\012\105\156\144\120\162\157\152\145\143\164\012\074\045\040\145\156\144\040\045\076\012\107\154\157\142\141\154\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\123\157\154\165\164\151\157\156\103\157\156\146\151\147\165\162\141\164\151\157\156\120\154\141\164\146\157\162\155\163\051\040\075\040\160\162\145\123\157\154\165\164\151\157\156\012\040\040\040\040\074\045\040\146\157\162\040\137\054\040\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\040\040\040\040\040\074\045\040\151\146\040\150\141\163\144\157\164\156\145\164\040\164\150\145\156\040\045\076\012\011\011\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\101\156\171\040\103\120\125\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\101\156\171\040\103\120\125\012\040\040\040\040\040\074\045\040\145\156\144\073\040\151\146\040\150\141\163\144\157\164\156\145\164\040\141\156\144\040\150\141\163\143\160\160\040\164\150\145\156\040\045\076\012\011\011\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\115\151\170\145\144\040\120\154\141\164\146\157\162\155\163\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\115\151\170\145\144\040\120\154\141\164\146\157\162\155\163\012\040\040\040\040\040\074\045\040\145\156\144\073\040\151\146\040\150\141\163\143\160\160\040\164\150\145\156\040\045\076\012\011\011\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\127\151\156\063\062\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\127\151\156\063\062\012\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\103\157\156\146\151\147\165\162\141\164\151\157\156\120\154\141\164\146\157\162\155\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\011\040\074\045\040\146\157\162\040\137\054\040\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\011\040\040\074\045\040\151\146\040\150\141\163\144\157\164\156\145\164\040\164\150\145\156\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\101\156\171\040\103\120\125\056\101\143\164\151\166\145\103\146\147\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\040\040\040\074\045\040\151\146\040\050\160\162\152\056\154\141\156\147\165\141\147\145\040\176\075\040\042\103\042\040\141\156\144\040\160\162\152\056\154\141\156\147\165\141\147\145\040\176\075\040\042\103\053\053\042\051\040\164\150\145\156\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\101\156\171\040\103\120\125\056\102\165\151\154\144\056\060\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\040\040\040\074\045\040\145\156\144\040\045\076\012\011\040\040\074\045\040\145\156\144\073\040\151\146\040\050\150\141\163\144\157\164\156\145\164\040\141\156\144\040\150\141\163\143\160\160\051\040\164\150\145\156\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\115\151\170\145\144\040\120\154\141\164\146\157\162\155\163\056\101\143\164\151\166\145\103\146\147\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\115\151\170\145\144\040\120\154\141\164\146\157\162\155\163\056\102\165\151\154\144\056\060\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\040\040\074\045\040\145\156\144\073\040\151\146\040\050\150\141\163\143\160\160\051\040\164\150\145\156\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\127\151\156\063\062\056\101\143\164\151\166\145\103\146\147\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\040\040\040\074\045\040\151\146\040\050\160\162\152\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\042\040\157\162\040\160\162\152\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\053\053\042\051\040\164\150\145\156\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\127\151\156\063\062\056\102\165\151\154\144\056\060\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\040\040\040\074\045\040\145\156\144\040\045\076\012\011\040\040\074\045\040\145\156\144\040\045\076\012\011\040\074\045\040\145\156\144\040\045\076\012\011\074\045\040\145\156\144\040\045\076\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\123\157\154\165\164\151\157\156\120\162\157\160\145\162\164\151\145\163\051\040\075\040\160\162\145\123\157\154\165\164\151\157\156\012\011\011\110\151\144\145\123\157\154\165\164\151\157\156\116\157\144\145\040\075\040\106\101\114\123\105\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\105\156\144\107\154\157\142\141\154\012\135\135\051",
- "\137\124\105\115\120\114\101\124\105\123\056\166\163\062\060\060\170\137\166\143\160\162\157\152\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\166\163\062\060\060\170\137\166\143\160\162\157\152\047\054\133\133\074\045\040\145\157\154\040\075\040\042\134\162\134\156\042\040\045\076\012\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157\144\151\156\147\075\042\127\151\156\144\157\167\163\055\061\062\065\062\042\077\076\012\074\126\151\163\165\141\154\123\164\165\144\151\157\120\162\157\152\145\143\164\012\011\120\162\157\152\145\143\164\124\171\160\145\075\042\126\151\163\165\141\154\040\103\053\053\042\012\074\045\040\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\062\042\040\164\150\145\156\040\045\076\012\011\126\145\162\163\151\157\156\075\042\067\056\060\060\042\012\074\045\040\145\154\163\145\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\063\042\040\164\150\145\156\040\045\076\012\011\126\145\162\163\151\157\156\075\042\067\056\061\060\042\012\074\045\040\145\154\163\145\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\065\042\040\164\150\145\156\040\045\076\012\011\126\145\162\163\151\157\156\075\042\070\056\060\060\042\012\074\045\040\145\154\163\145\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\070\042\040\164\150\145\156\040\045\076\012\011\126\145\162\163\151\157\156\075\042\071\056\060\060\042\012\074\045\040\145\156\144\040\045\076\012\011\116\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\150\151\163\056\156\141\155\145\051\040\045\076\042\012\011\120\162\157\152\145\143\164\107\125\111\104\075\042\173\074\045\075\040\164\150\151\163\056\165\165\151\144\040\045\076\175\042\012\074\045\040\151\146\040\137\101\103\124\111\117\116\040\076\040\042\166\163\062\060\060\063\042\040\164\150\145\156\040\045\076\012\011\122\157\157\164\116\141\155\145\163\160\141\143\145\075\042\074\045\075\040\164\150\151\163\056\156\141\155\145\040\045\076\042\012\074\045\040\145\156\144\040\045\076\012\011\113\145\171\167\157\162\144\075\042\074\045\075\040\151\151\146\050\164\150\151\163\056\146\154\141\147\163\056\115\141\156\141\147\145\144\054\040\042\115\141\156\141\147\145\144\103\120\162\157\152\042\054\040\042\127\151\156\063\062\120\162\157\152\042\051\040\045\076\042\012\011\076\012\011\074\120\154\141\164\146\157\162\155\163\076\012\011\011\074\120\154\141\164\146\157\162\155\012\011\011\011\116\141\155\145\075\042\127\151\156\063\062\042\012\011\011\057\076\012\011\074\057\120\154\141\164\146\157\162\155\163\076\012\074\045\040\151\146\040\137\101\103\124\111\117\116\040\076\040\042\166\163\062\060\060\063\042\040\164\150\145\156\040\045\076\012\011\074\124\157\157\154\106\151\154\145\163\076\012\011\074\057\124\157\157\154\106\151\154\145\163\076\012\074\045\040\145\156\144\040\045\076\012\011\074\103\157\156\146\151\147\165\162\141\164\151\157\156\163\076\012\074\045\040\146\157\162\040\143\146\147\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\143\157\156\146\151\147\050\164\150\151\163\051\040\144\157\040\045\076\012\011\011\074\045\040\154\157\143\141\154\040\164\141\162\147\145\164\040\075\040\160\162\145\155\141\153\145\056\147\145\164\164\141\162\147\145\164\146\151\154\145\050\143\146\147\054\040\042\164\141\162\147\145\164\042\054\040\042\167\151\156\144\157\167\163\042\051\040\045\076\012\011\011\074\103\157\156\146\151\147\165\162\141\164\151\157\156\012\011\011\011\116\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\156\141\155\145\051\040\045\076\174\127\151\156\063\062\042\012\011\011\011\117\165\164\160\165\164\104\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\160\141\164\150\056\164\162\141\156\163\154\141\164\145\050\160\141\164\150\056\147\145\164\144\151\162\145\143\164\157\162\171\050\164\141\162\147\145\164\051\054\040\042\134\134\042\051\051\040\045\076\042\012\011\011\011\111\156\164\145\162\155\145\144\151\141\164\145\104\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\160\141\164\150\056\164\162\141\156\163\154\141\164\145\050\160\162\145\155\141\153\145\056\147\145\164\157\142\152\144\151\162\050\143\146\147\051\054\040\042\134\134\042\051\051\040\045\076\042\012\011\011\011\103\157\156\146\151\147\165\162\141\164\151\157\156\124\171\160\145\075\042\074\045\075\040\137\126\123\056\143\146\147\164\171\160\145\050\143\146\147\051\040\045\076\042\012\011\011\011\103\150\141\162\141\143\164\145\162\123\145\164\075\042\074\045\075\040\151\151\146\050\143\146\147\056\146\154\141\147\163\056\125\156\151\143\157\144\145\054\040\061\054\040\062\051\040\045\076\042\012\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\115\141\156\141\147\145\144\040\164\150\145\156\040\045\076\012\011\011\011\115\141\156\141\147\145\144\105\170\164\145\156\163\151\157\156\163\075\042\164\162\165\145\042\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\076\012\074\045\040\146\157\162\040\137\054\142\154\157\143\153\040\151\156\040\151\160\141\151\162\163\050\137\126\123\133\137\101\103\124\111\117\116\135\051\040\144\157\040\045\076\012\011\074\045\040\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\101\114\151\156\153\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\101\114\151\156\153\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\101\160\160\126\145\162\151\146\151\145\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\101\160\160\126\145\162\151\146\151\145\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\101\165\170\151\154\151\141\162\171\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\101\165\170\151\154\151\141\162\171\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\102\163\143\115\141\153\145\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\102\163\143\115\141\153\145\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\103\114\103\157\155\160\151\154\145\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\103\114\103\157\155\160\151\154\145\162\124\157\157\154\042\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\117\160\164\151\155\151\172\141\164\151\157\156\075\042\074\045\075\040\137\126\123\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\045\076\042\011\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\106\162\141\155\145\120\157\151\156\164\145\162\040\164\150\145\156\040\045\076\012\011\011\011\011\117\155\151\164\106\162\141\155\145\120\157\151\156\164\145\162\163\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\111\156\143\154\165\144\145\104\151\162\145\143\164\157\162\151\145\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\051\054\040\042\073\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\144\145\146\151\156\145\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\120\162\145\160\162\157\143\145\163\163\157\162\104\145\146\151\156\151\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\144\145\146\151\156\145\163\051\054\040\042\073\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\123\171\155\142\157\154\163\040\141\156\144\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\115\141\156\141\147\145\144\040\164\150\145\156\040\045\076\012\011\011\011\011\115\151\156\151\155\141\154\122\145\142\165\151\154\144\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\105\170\143\145\160\164\151\157\156\163\040\164\150\145\156\040\045\076\012\011\011\011\011\105\170\143\145\160\164\151\157\156\110\141\156\144\154\151\156\147\075\042\074\045\075\040\151\151\146\050\137\101\103\124\111\117\116\040\074\040\042\166\163\062\060\060\065\042\054\040\042\106\101\114\123\105\042\054\040\060\051\040\045\076\042\012\011\011\011\074\045\040\145\154\163\145\151\146\040\143\146\147\056\146\154\141\147\163\056\123\105\110\040\141\156\144\040\137\101\103\124\111\117\116\040\076\040\042\166\163\062\060\060\063\042\040\164\150\145\156\040\045\076\012\011\011\011\011\105\170\143\145\160\164\151\157\156\110\141\156\144\154\151\156\147\075\042\062\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\137\126\123\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\075\075\040\060\040\141\156\144\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\115\141\156\141\147\145\144\040\164\150\145\156\040\045\076\012\011\011\011\011\102\141\163\151\143\122\165\156\164\151\155\145\103\150\145\143\153\163\075\042\063\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\137\126\123\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\176\075\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\123\164\162\151\156\147\120\157\157\154\151\156\147\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\122\165\156\164\151\155\145\114\151\142\162\141\162\171\075\042\074\045\075\040\137\126\123\056\162\165\156\164\151\155\145\050\143\146\147\051\040\045\076\042\012\011\011\011\011\105\156\141\142\154\145\106\165\156\143\164\151\157\156\114\145\166\145\154\114\151\156\153\151\156\147\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\151\146\040\137\101\103\124\111\117\116\040\074\040\042\166\163\062\060\060\065\042\040\141\156\144\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\116\157\122\124\124\111\040\164\150\145\156\040\045\076\012\011\011\011\011\122\165\156\164\151\155\145\124\171\160\145\111\156\146\157\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\154\163\145\151\146\040\137\101\103\124\111\117\116\040\076\040\042\166\163\062\060\060\063\042\040\141\156\144\040\143\146\147\056\146\154\141\147\163\056\116\157\122\124\124\111\040\164\150\145\156\040\045\076\012\011\011\011\011\122\165\156\164\151\155\145\124\171\160\145\111\156\146\157\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\146\141\154\163\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\141\164\151\166\145\127\103\150\141\162\040\164\150\145\156\040\045\076\012\011\011\011\011\124\162\145\141\164\127\103\150\141\162\137\164\101\163\102\165\151\154\164\111\156\124\171\160\145\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\154\163\145\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\116\141\164\151\166\145\127\103\150\141\162\040\164\150\145\156\040\045\076\012\011\011\011\011\124\162\145\141\164\127\103\150\141\162\137\164\101\163\102\165\151\154\164\111\156\124\171\160\145\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\146\141\154\163\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\116\157\120\103\110\040\141\156\144\040\143\146\147\056\160\143\150\150\145\141\144\145\162\040\164\150\145\156\040\045\076\012\011\011\011\011\125\163\145\120\162\145\143\157\155\160\151\154\145\144\110\145\141\144\145\162\075\042\074\045\075\040\151\151\146\050\137\101\103\124\111\117\116\040\074\040\042\166\163\062\060\060\065\042\054\040\063\054\040\062\051\040\045\076\042\012\011\011\011\011\120\162\145\143\157\155\160\151\154\145\144\110\145\141\144\145\162\124\150\162\157\165\147\150\075\042\074\045\075\040\143\146\147\056\160\143\150\150\145\141\144\145\162\040\045\076\042\012\011\011\011\074\045\040\145\154\163\145\040\045\076\012\011\011\011\011\125\163\145\120\162\145\143\157\155\160\151\154\145\144\110\145\141\144\145\162\075\042\074\045\075\040\151\151\146\050\137\101\103\124\111\117\116\040\076\040\042\166\163\062\060\060\063\042\040\157\162\040\143\146\147\056\146\154\141\147\163\056\116\157\120\103\110\054\040\060\054\040\062\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\127\141\162\156\151\156\147\114\145\166\145\154\075\042\074\045\075\040\151\151\146\050\143\146\147\056\146\154\141\147\163\056\105\170\164\162\141\127\141\162\156\151\156\147\163\054\040\064\054\040\063\051\040\045\076\042\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\106\141\164\141\154\127\141\162\156\151\156\147\163\040\164\150\145\156\040\045\076\012\011\011\011\011\127\141\162\156\101\163\105\162\162\157\162\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\137\101\103\124\111\117\116\040\074\040\042\166\163\062\060\060\070\042\040\141\156\144\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\115\141\156\141\147\145\144\040\164\150\145\156\040\045\076\012\011\011\011\011\104\145\164\145\143\164\066\064\102\151\164\120\157\162\164\141\142\151\154\151\164\171\120\162\157\142\154\145\155\163\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\156\157\164\040\143\146\147\056\146\154\141\147\163\056\116\157\066\064\102\151\164\103\150\145\143\153\163\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\120\162\157\147\162\141\155\104\141\164\141\102\141\163\145\106\151\154\145\116\141\155\145\075\042\044\050\117\165\164\104\151\162\051\134\044\050\120\162\157\152\145\143\164\116\141\155\145\051\056\160\144\142\042\012\011\011\011\011\104\145\142\165\147\111\156\146\157\162\155\141\164\151\157\156\106\157\162\155\141\164\075\042\074\045\075\040\137\126\123\056\163\171\155\142\157\154\163\050\143\146\147\051\040\045\076\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\103\165\163\164\157\155\102\165\151\154\144\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\103\165\163\164\157\155\102\165\151\154\144\124\157\157\154\042\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\106\170\103\157\160\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\106\170\103\157\160\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\114\151\156\153\145\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\074\045\040\151\146\040\143\146\147\056\153\151\156\144\040\176\075\040\042\123\164\141\164\151\143\114\151\142\042\040\164\150\145\156\040\045\076\012\011\011\011\011\116\141\155\145\075\042\126\103\114\151\156\153\145\162\124\157\157\154\042\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\111\155\160\157\162\164\114\151\142\040\164\150\145\156\040\045\076\012\011\011\011\011\111\147\156\157\162\145\111\155\160\157\162\164\114\151\142\162\141\162\171\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\154\151\156\153\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\104\145\160\145\156\144\145\156\143\151\145\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\147\145\164\154\151\142\162\141\162\151\145\163\050\143\146\147\051\054\040\042\040\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\117\165\164\160\165\164\106\151\154\145\075\042\044\050\117\165\164\104\151\162\051\134\074\045\075\040\160\141\164\150\056\147\145\164\156\141\155\145\050\164\141\162\147\145\164\051\040\045\076\042\012\011\011\011\011\114\151\156\153\111\156\143\162\145\155\145\156\164\141\154\075\042\074\045\075\040\151\151\146\050\137\126\123\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\075\075\040\060\054\040\062\054\040\061\051\040\045\076\042\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\114\151\142\162\141\162\171\104\151\162\145\143\164\157\162\151\145\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\154\151\142\144\151\162\163\051\040\054\040\042\073\042\051\040\045\076\042\012\011\011\011\074\045\040\154\157\143\141\154\040\144\145\146\146\151\154\145\040\075\040\160\162\145\155\141\153\145\056\146\151\156\144\146\151\154\145\050\143\146\147\054\040\042\056\144\145\146\042\051\073\040\151\146\040\144\145\146\146\151\154\145\040\164\150\145\156\040\045\076\012\011\011\011\011\115\157\144\165\154\145\104\145\146\151\156\151\164\151\157\156\106\151\154\145\075\042\074\045\075\040\144\145\146\146\151\154\145\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\115\141\156\151\146\145\163\164\040\164\150\145\156\040\045\076\012\011\011\011\011\107\145\156\145\162\141\164\145\115\141\156\151\146\145\163\164\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\146\141\154\163\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\107\145\156\145\162\141\164\145\104\145\142\165\147\111\156\146\157\162\155\141\164\151\157\156\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\137\126\123\056\163\171\155\142\157\154\163\050\143\146\147\051\040\176\075\040\060\051\040\045\076\042\012\011\011\011\074\045\040\151\146\040\137\126\123\056\163\171\155\142\157\154\163\050\143\146\147\051\040\176\075\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\120\162\157\147\162\141\155\104\141\164\141\142\141\163\145\106\151\154\145\075\042\044\050\117\165\164\104\151\162\051\134\044\050\120\162\157\152\145\143\164\116\141\155\145\051\056\160\144\142\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\123\165\142\123\171\163\164\145\155\075\042\074\045\075\040\151\151\146\050\143\146\147\056\153\151\156\144\040\075\075\040\042\103\157\156\163\157\154\145\101\160\160\042\054\040\061\054\040\062\051\040\045\076\042\012\011\011\011\074\045\040\151\146\040\137\126\123\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\176\075\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\117\160\164\151\155\151\172\145\122\145\146\145\162\145\156\143\145\163\075\042\062\042\012\011\011\011\011\105\156\141\142\154\145\103\117\115\104\101\124\106\157\154\144\151\156\147\075\042\062\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\103\157\156\163\157\154\145\101\160\160\042\040\157\162\040\143\146\147\056\153\151\156\144\040\075\075\040\042\127\151\156\144\157\167\145\144\101\160\160\042\051\040\141\156\144\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\127\151\156\115\141\151\156\040\164\150\145\156\040\045\076\012\011\011\011\011\105\156\164\162\171\120\157\151\156\164\123\171\155\142\157\154\075\042\155\141\151\156\103\122\124\123\164\141\162\164\165\160\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\143\146\147\056\153\151\156\144\040\075\075\040\042\123\150\141\162\145\144\114\151\142\042\040\164\150\145\156\040\045\076\012\011\011\011\011\111\155\160\157\162\164\114\151\142\162\141\162\171\075\042\074\045\075\040\160\141\164\150\056\164\162\141\156\163\154\141\164\145\050\137\126\123\056\151\155\160\157\162\164\154\151\142\146\151\154\145\050\143\146\147\051\054\040\042\134\134\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\124\141\162\147\145\164\115\141\143\150\151\156\145\075\042\061\042\012\011\011\074\045\040\145\154\163\145\040\045\076\012\011\011\011\011\116\141\155\145\075\042\126\103\114\151\142\162\141\162\151\141\156\124\157\157\154\042\012\011\011\011\011\117\165\164\160\165\164\106\151\154\145\075\042\044\050\117\165\164\104\151\162\051\134\134\074\045\075\040\160\141\164\150\056\147\145\164\156\141\155\145\050\164\141\162\147\145\164\051\040\045\076\042\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\115\141\156\141\147\145\144\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\115\141\156\141\147\145\144\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\115\141\156\151\146\145\163\164\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\115\141\156\151\146\145\163\164\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\115\111\104\114\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\115\111\104\114\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\120\162\145\102\165\151\154\144\105\166\145\156\164\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\120\162\145\102\165\151\154\144\105\166\145\156\164\124\157\157\154\042\012\011\011\011\011\074\045\040\151\146\040\043\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\103\157\155\155\141\156\144\114\151\156\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\162\134\156\042\051\051\040\045\076\042\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\120\162\145\114\151\156\153\105\166\145\156\164\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\120\162\145\114\151\156\153\105\166\145\156\164\124\157\157\154\042\012\011\011\011\011\074\045\040\151\146\040\043\143\146\147\056\160\162\145\154\151\156\153\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\103\157\155\155\141\156\144\114\151\156\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\162\145\154\151\156\153\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\162\134\156\042\051\051\040\045\076\042\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\120\157\163\164\102\165\151\154\144\105\166\145\156\164\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\120\157\163\164\102\165\151\154\144\105\166\145\156\164\124\157\157\154\042\012\011\011\011\011\074\045\040\151\146\040\043\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\103\157\155\155\141\156\144\114\151\156\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\162\134\156\042\051\051\040\045\076\042\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\042\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\162\145\163\157\160\164\151\157\156\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\162\145\163\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\144\145\146\151\156\145\163\040\076\040\060\040\157\162\040\043\143\146\147\056\162\145\163\144\145\146\151\156\145\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\120\162\145\160\162\157\143\145\163\163\157\162\104\145\146\151\156\151\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\152\157\151\156\050\143\146\147\056\144\145\146\151\156\145\163\054\040\143\146\147\056\162\145\163\144\145\146\151\156\145\163\051\051\054\040\042\073\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\040\076\040\060\040\157\162\040\043\143\146\147\056\162\145\163\151\156\143\154\165\144\145\144\151\162\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\111\156\143\154\165\144\145\104\151\162\145\143\164\157\162\151\145\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\152\157\151\156\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\054\040\143\146\147\056\162\145\163\151\156\143\154\165\144\145\144\151\162\163\051\051\054\040\042\073\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\127\145\142\104\145\160\154\157\171\155\145\156\164\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\127\145\142\104\145\160\154\157\171\155\145\156\164\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\127\145\142\123\145\162\166\151\143\145\120\162\157\170\171\107\145\156\145\162\141\164\157\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\127\145\142\123\145\162\166\151\143\145\120\162\157\170\171\107\145\156\145\162\141\164\157\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\130\104\103\115\141\153\145\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\130\104\103\115\141\153\145\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\130\115\114\104\141\164\141\107\145\156\145\162\141\164\157\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\130\115\114\104\141\164\141\107\145\156\145\162\141\164\157\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\156\144\040\045\076\012\074\045\040\145\156\144\040\045\076\012\011\011\074\057\103\157\156\146\151\147\165\162\141\164\151\157\156\076\012\011\074\045\040\145\156\144\040\045\076\012\011\074\057\103\157\156\146\151\147\165\162\141\164\151\157\156\163\076\012\011\074\122\145\146\145\162\145\156\143\145\163\076\012\011\074\057\122\145\146\145\162\145\156\143\145\163\076\012\011\074\106\151\154\145\163\076\012\011\011\074\045\040\160\162\145\155\141\153\145\056\167\141\154\153\163\157\165\162\143\145\163\050\164\150\151\163\054\040\164\150\151\163\056\146\151\154\145\163\054\040\137\126\123\056\146\151\154\145\163\051\040\045\076\012\011\074\057\106\151\154\145\163\076\012\011\074\107\154\157\142\141\154\163\076\012\011\074\057\107\154\157\142\141\154\163\076\012\074\057\126\151\163\165\141\154\123\164\165\144\151\157\120\162\157\152\145\143\164\076\012\135\135\051",
- "\033\114\165\141\121\000\001\004\004\004\010\000\036\000\000\000\100\163\162\143\057\141\143\164\151\157\156\163\057\143\154\145\141\156\057\137\143\154\145\141\156\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\004\012\000\000\000\044\000\000\000\105\000\000\000\212\300\000\000\211\200\300\200\211\000\301\201\344\100\000\000\000\000\000\000\211\300\200\202\134\100\000\001\036\000\200\000\006\000\000\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\006\000\000\000\143\154\145\141\156\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\050\000\000\000\122\145\155\157\166\145\040\141\154\154\040\142\151\156\141\162\151\145\163\040\141\156\144\040\147\145\156\145\162\141\164\145\144\040\146\151\154\145\163\000\004\010\000\000\000\145\170\145\143\165\164\145\000\002\000\000\000\000\000\000\000\014\000\000\000\023\000\000\000\000\002\000\012\022\000\000\000\132\000\000\000\026\200\003\200\205\000\000\000\300\000\200\000\234\000\001\001\026\000\002\200\305\101\000\000\306\201\300\003\000\002\000\000\106\302\100\003\334\201\200\001\005\002\001\000\006\102\101\004\100\002\200\003\034\102\000\001\241\200\000\000\026\000\375\177\036\000\200\000\006\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\016\000\000\000\147\145\164\157\165\164\160\165\164\156\141\155\145\000\003\000\000\000\000\000\000\360\077\004\003\000\000\000\157\163\000\004\007\000\000\000\162\145\155\157\166\145\000\000\000\000\000\022\000\000\000\015\000\000\000\015\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\016\000\000\000\020\000\000\000\023\000\000\000\010\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\021\000\000\000\012\000\000\000\164\145\155\160\154\141\164\145\163\000\000\000\000\000\021\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\005\000\000\000\021\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\005\000\000\000\021\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\005\000\000\000\021\000\000\000\002\000\000\000\137\000\006\000\000\000\017\000\000\000\005\000\000\000\164\155\160\154\000\006\000\000\000\017\000\000\000\006\000\000\000\146\156\141\155\145\000\013\000\000\000\017\000\000\000\000\000\000\000\000\000\000\000\036\000\000\000\123\000\000\000\001\000\000\027\243\000\000\000\012\000\000\000\112\000\000\000\212\000\000\000\305\000\000\000\005\101\000\000\334\000\001\001\026\300\032\200\005\202\000\000\006\302\100\004\100\002\000\000\205\002\001\000\206\102\101\005\306\202\301\003\006\303\301\003\234\002\200\001\034\102\000\000\005\002\002\000\006\102\102\004\100\002\200\003\034\002\001\001\026\300\026\200\005\203\000\000\006\303\100\006\100\003\200\000\205\003\001\000\206\103\101\007\306\203\301\005\006\304\301\005\234\003\200\001\034\103\000\000\006\203\302\005\032\003\000\000\026\300\000\200\005\303\002\000\006\003\103\006\106\203\302\005\034\103\000\001\005\003\002\000\006\103\103\006\100\003\200\005\034\003\001\001\026\000\021\200\005\004\002\000\006\204\103\010\100\004\200\007\201\304\003\000\034\204\200\001\105\204\000\000\106\304\300\010\200\004\000\001\305\004\001\000\306\104\301\011\005\005\001\000\006\005\104\012\100\005\000\010\034\205\000\001\105\005\001\000\106\105\304\012\200\005\000\010\134\005\000\001\334\004\000\000\134\104\000\000\105\304\002\000\106\204\304\010\205\004\002\000\206\204\103\011\300\004\200\007\001\305\003\000\101\305\004\000\234\004\000\002\134\104\000\000\105\304\002\000\106\204\304\010\205\004\002\000\206\204\103\011\300\004\200\007\001\305\003\000\101\005\005\000\234\004\000\002\134\104\000\000\105\304\002\000\106\204\304\010\205\004\002\000\206\204\103\011\300\004\200\007\001\305\003\000\101\105\005\000\234\004\000\002\134\104\000\000\105\304\002\000\106\204\304\010\205\004\002\000\206\204\103\011\300\004\200\007\001\205\005\000\101\305\004\000\234\004\000\002\134\104\000\000\105\304\002\000\106\204\304\010\205\004\002\000\206\204\103\011\300\004\200\007\001\205\005\000\101\005\005\000\234\004\000\002\134\104\000\000\105\304\002\000\106\004\303\010\206\204\302\007\134\104\000\001\041\103\000\000\026\000\356\177\041\102\000\000\026\100\350\177\341\200\000\000\026\100\344\177\305\300\005\000\005\001\002\000\006\001\106\002\334\000\001\001\026\200\007\200\005\002\000\000\105\102\000\000\034\002\001\001\026\200\003\200\104\003\000\000\200\003\000\006\306\103\306\003\134\103\200\001\105\003\002\000\106\103\302\006\200\003\000\006\134\003\001\001\026\300\000\200\104\004\000\000\200\004\000\010\306\204\306\003\134\104\200\001\141\103\000\000\026\100\376\177\041\202\000\000\026\200\373\177\005\302\006\000\106\002\307\003\034\202\000\001\027\100\107\004\026\000\001\200\006\002\307\003\100\002\000\000\200\002\200\000\300\002\000\001\034\102\000\002\341\200\000\000\026\200\367\177\305\300\006\000\005\001\007\000\334\200\000\001\027\100\307\001\026\100\000\200\305\000\007\000\334\100\200\000\036\000\200\000\036\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\005\000\000\000\156\141\155\145\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\014\000\000\000\145\141\143\150\160\162\157\152\145\143\164\000\004\007\000\000\000\157\142\152\144\151\162\000\004\003\000\000\000\157\163\000\004\006\000\000\000\162\155\144\151\162\000\004\013\000\000\000\145\141\143\150\143\157\156\146\151\147\000\004\016\000\000\000\147\145\164\164\141\162\147\145\164\146\151\154\145\000\004\007\000\000\000\164\141\162\147\145\164\000\004\015\000\000\000\147\145\164\144\151\162\145\143\164\157\162\171\000\004\014\000\000\000\147\145\164\142\141\163\145\156\141\155\145\000\004\007\000\000\000\162\145\155\157\166\145\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\006\000\000\000\154\151\156\165\170\000\004\007\000\000\000\155\141\143\157\163\170\000\004\007\000\000\000\151\155\160\154\151\142\000\004\006\000\000\000\160\141\151\162\163\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\005\000\000\000\164\171\160\145\000\004\010\000\000\000\157\156\143\154\145\141\156\000\004\011\000\000\000\146\165\156\143\164\151\157\156\000\000\000\000\000\243\000\000\000\037\000\000\000\040\000\000\000\041\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\057\000\000\000\074\000\000\000\050\000\000\000\075\000\000\000\045\000\000\000\076\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\103\000\000\000\103\000\000\000\103\000\000\000\103\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\105\000\000\000\106\000\000\000\103\000\000\000\107\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\102\000\000\000\114\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\121\000\000\000\121\000\000\000\123\000\000\000\037\000\000\000\012\000\000\000\163\157\154\165\164\151\157\156\163\000\001\000\000\000\242\000\000\000\011\000\000\000\160\162\157\152\145\143\164\163\000\002\000\000\000\242\000\000\000\010\000\000\000\164\141\162\147\145\164\163\000\003\000\000\000\242\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\006\000\000\000\165\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\006\000\000\000\165\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\006\000\000\000\165\000\000\000\002\000\000\000\137\000\007\000\000\000\163\000\000\000\004\000\000\000\163\154\156\000\007\000\000\000\163\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\024\000\000\000\163\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\024\000\000\000\163\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\024\000\000\000\163\000\000\000\004\000\000\000\160\162\152\000\025\000\000\000\161\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\051\000\000\000\161\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\051\000\000\000\161\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\051\000\000\000\161\000\000\000\004\000\000\000\143\146\147\000\052\000\000\000\157\000\000\000\007\000\000\000\164\141\162\147\145\164\000\057\000\000\000\157\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\171\000\000\000\233\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\171\000\000\000\233\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\171\000\000\000\233\000\000\000\002\000\000\000\137\000\172\000\000\000\231\000\000\000\007\000\000\000\141\143\164\151\157\156\000\172\000\000\000\231\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\175\000\000\000\217\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\175\000\000\000\217\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\175\000\000\000\217\000\000\000\002\000\000\000\137\000\176\000\000\000\215\000\000\000\004\000\000\000\163\154\156\000\176\000\000\000\215\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\206\000\000\000\215\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\206\000\000\000\215\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\206\000\000\000\215\000\000\000\004\000\000\000\160\162\152\000\207\000\000\000\213\000\000\000\001\000\000\000\023\000\000\000\143\154\145\141\156\164\145\155\160\154\141\164\145\146\151\154\145\163\000\012\000\000\000\023\000\000\000\032\000\000\000\032\000\000\000\033\000\000\000\034\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\032\000\000\000\124\000\000\000\001\000\000\000\023\000\000\000\143\154\145\141\156\164\145\155\160\154\141\164\145\146\151\154\145\163\000\001\000\000\000\011\000\000\000\000\000\000\000",
+ "\137\124\105\115\120\114\101\124\105\123\056\166\163\062\060\060\063\137\163\157\154\165\164\151\157\156\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\166\163\062\060\060\063\137\163\157\154\165\164\151\157\156\047\054\133\133\074\045\040\145\157\154\040\075\040\042\134\162\134\156\042\040\045\076\012\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\123\157\154\165\164\151\157\156\040\106\151\154\145\054\040\106\157\162\155\141\164\040\126\145\162\163\151\157\156\040\070\056\060\060\012\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\120\162\157\152\145\143\164\050\042\173\074\045\075\137\126\123\056\164\157\157\154\050\160\162\152\051\045\076\175\042\051\040\075\040\042\074\045\075\160\162\152\056\156\141\155\145\045\076\042\054\040\042\074\045\075\160\141\164\150\056\164\162\141\156\163\154\141\164\145\050\160\141\164\150\056\147\145\164\162\145\154\141\164\151\166\145\050\164\150\151\163\056\154\157\143\141\164\151\157\156\054\040\137\126\123\056\160\162\157\152\145\143\164\146\151\154\145\050\160\162\152\051\051\051\045\076\042\054\040\042\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\042\012\040\040\074\045\040\154\157\143\141\154\040\144\145\160\163\040\075\040\160\162\145\155\141\153\145\056\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\050\160\162\152\051\073\040\151\146\040\043\144\145\160\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\120\162\157\152\145\143\164\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\104\145\160\145\156\144\145\156\143\151\145\163\051\040\075\040\160\157\163\164\120\162\157\152\145\143\164\012\011\074\045\040\146\157\162\040\137\054\144\145\160\040\151\156\040\151\160\141\151\162\163\050\144\145\160\163\051\040\144\157\040\045\076\012\011\011\173\074\045\075\040\144\145\160\056\165\165\151\144\040\045\076\175\040\075\040\173\074\045\075\040\144\145\160\056\165\165\151\144\040\045\076\175\012\011\074\045\040\145\156\144\040\045\076\012\011\105\156\144\120\162\157\152\145\143\164\123\145\143\164\151\157\156\012\040\040\074\045\040\145\156\144\040\045\076\012\105\156\144\120\162\157\152\145\143\164\012\074\045\040\145\156\144\040\045\076\012\107\154\157\142\141\154\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\123\157\154\165\164\151\157\156\103\157\156\146\151\147\165\162\141\164\151\157\156\051\040\075\040\160\162\145\123\157\154\165\164\151\157\156\012\011\074\045\040\146\157\162\040\151\054\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\011\011\074\045\075\040\143\146\147\156\141\155\145\040\045\076\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\012\011\074\045\040\145\156\144\040\045\076\011\011\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\104\145\160\145\156\144\145\156\143\151\145\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\103\157\156\146\151\147\165\162\141\164\151\157\156\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\011\040\074\045\040\146\157\162\040\151\054\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\011\011\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\056\074\045\075\143\146\147\156\141\155\145\045\076\056\101\143\164\151\166\145\103\146\147\040\075\040\074\045\075\143\146\147\156\141\155\145\045\076\174\074\045\075\137\126\123\056\141\162\143\150\050\160\162\152\054\040\062\060\060\062\051\045\076\012\011\011\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\056\074\045\075\143\146\147\156\141\155\145\045\076\056\102\165\151\154\144\056\060\040\075\040\074\045\075\143\146\147\156\141\155\145\045\076\174\074\045\075\137\126\123\056\141\162\143\150\050\160\162\152\054\040\062\060\060\062\051\045\076\012\011\040\074\045\040\145\156\144\040\045\076\012\011\074\045\040\145\156\144\040\045\076\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\105\170\164\145\156\163\151\142\151\154\151\164\171\107\154\157\142\141\154\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\105\170\164\145\156\163\151\142\151\154\151\164\171\101\144\144\111\156\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\105\156\144\107\154\157\142\141\154\012\135\135\051",
+ "\137\124\105\115\120\114\101\124\105\123\056\166\163\062\060\060\065\137\163\157\154\165\164\151\157\156\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\166\163\062\060\060\065\137\163\157\154\165\164\151\157\156\047\054\133\133\074\045\040\145\157\154\040\075\040\042\134\162\134\156\042\040\045\076\012\074\045\075\040\042\134\062\063\071\134\061\070\067\134\061\071\061\042\040\045\076\012\074\045\040\154\157\143\141\154\040\150\141\163\143\160\160\054\040\150\141\163\144\157\164\156\145\164\040\045\076\012\074\045\040\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\065\042\040\164\150\145\156\040\045\076\012\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\123\157\154\165\164\151\157\156\040\106\151\154\145\054\040\106\157\162\155\141\164\040\126\145\162\163\151\157\156\040\071\056\060\060\012\043\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\065\012\074\045\040\145\154\163\145\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\070\042\040\164\150\145\156\040\045\076\012\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\123\157\154\165\164\151\157\156\040\106\151\154\145\054\040\106\157\162\155\141\164\040\126\145\162\163\151\157\156\040\061\060\056\060\060\012\043\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\070\012\074\045\040\145\156\144\040\045\076\012\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\040\040\074\045\040\151\146\040\050\160\162\152\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\042\040\157\162\040\160\162\152\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\053\053\042\051\040\164\150\145\156\040\150\141\163\143\160\160\040\075\040\164\162\165\145\040\145\156\144\040\045\076\012\040\040\074\045\040\151\146\040\050\160\162\152\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\043\042\051\040\164\150\145\156\040\150\141\163\144\157\164\156\145\164\040\075\040\164\162\165\145\040\145\156\144\040\045\076\012\120\162\157\152\145\143\164\050\042\173\074\045\075\137\126\123\056\164\157\157\154\050\160\162\152\051\045\076\175\042\051\040\075\040\042\074\045\075\160\162\152\056\156\141\155\145\045\076\042\054\040\042\074\045\075\160\141\164\150\056\164\162\141\156\163\154\141\164\145\050\160\141\164\150\056\147\145\164\162\145\154\141\164\151\166\145\050\164\150\151\163\056\154\157\143\141\164\151\157\156\054\040\137\126\123\056\160\162\157\152\145\143\164\146\151\154\145\050\160\162\152\051\051\054\042\134\134\042\051\045\076\042\054\040\042\173\074\045\075\160\162\152\056\165\165\151\144\045\076\175\042\012\040\040\074\045\040\154\157\143\141\154\040\144\145\160\163\040\075\040\160\162\145\155\141\153\145\056\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\050\160\162\152\051\073\040\151\146\040\043\144\145\160\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\120\162\157\152\145\143\164\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\104\145\160\145\156\144\145\156\143\151\145\163\051\040\075\040\160\157\163\164\120\162\157\152\145\143\164\012\011\074\045\040\146\157\162\040\137\054\144\145\160\040\151\156\040\151\160\141\151\162\163\050\144\145\160\163\051\040\144\157\040\045\076\012\011\011\173\074\045\075\040\144\145\160\056\165\165\151\144\040\045\076\175\040\075\040\173\074\045\075\040\144\145\160\056\165\165\151\144\040\045\076\175\012\011\074\045\040\145\156\144\040\045\076\012\011\105\156\144\120\162\157\152\145\143\164\123\145\143\164\151\157\156\012\040\040\074\045\040\145\156\144\040\045\076\012\105\156\144\120\162\157\152\145\143\164\012\074\045\040\145\156\144\040\045\076\012\107\154\157\142\141\154\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\123\157\154\165\164\151\157\156\103\157\156\146\151\147\165\162\141\164\151\157\156\120\154\141\164\146\157\162\155\163\051\040\075\040\160\162\145\123\157\154\165\164\151\157\156\012\040\040\040\040\074\045\040\146\157\162\040\137\054\040\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\040\040\040\040\040\074\045\040\151\146\040\150\141\163\144\157\164\156\145\164\040\164\150\145\156\040\045\076\012\011\011\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\101\156\171\040\103\120\125\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\101\156\171\040\103\120\125\012\040\040\040\040\040\074\045\040\145\156\144\073\040\151\146\040\150\141\163\144\157\164\156\145\164\040\141\156\144\040\150\141\163\143\160\160\040\164\150\145\156\040\045\076\012\011\011\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\115\151\170\145\144\040\120\154\141\164\146\157\162\155\163\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\115\151\170\145\144\040\120\154\141\164\146\157\162\155\163\012\040\040\040\040\040\074\045\040\145\156\144\073\040\151\146\040\150\141\163\143\160\160\040\164\150\145\156\040\045\076\012\011\011\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\127\151\156\063\062\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\127\151\156\063\062\012\040\040\040\040\040\074\045\040\145\156\144\040\045\076\012\040\040\040\040\074\045\040\145\156\144\040\045\076\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\120\162\157\152\145\143\164\103\157\156\146\151\147\165\162\141\164\151\157\156\120\154\141\164\146\157\162\155\163\051\040\075\040\160\157\163\164\123\157\154\165\164\151\157\156\012\011\074\045\040\146\157\162\040\160\162\152\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\160\162\157\152\145\143\164\050\164\150\151\163\051\040\144\157\040\045\076\012\011\040\074\045\040\146\157\162\040\137\054\040\143\146\147\156\141\155\145\040\151\156\040\151\160\141\151\162\163\050\164\150\151\163\056\143\157\156\146\151\147\165\162\141\164\151\157\156\163\051\040\144\157\040\045\076\012\011\040\040\074\045\040\151\146\040\150\141\163\144\157\164\156\145\164\040\164\150\145\156\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\101\156\171\040\103\120\125\056\101\143\164\151\166\145\103\146\147\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\040\040\040\074\045\040\151\146\040\050\160\162\152\056\154\141\156\147\165\141\147\145\040\176\075\040\042\103\042\040\141\156\144\040\160\162\152\056\154\141\156\147\165\141\147\145\040\176\075\040\042\103\053\053\042\051\040\164\150\145\156\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\101\156\171\040\103\120\125\056\102\165\151\154\144\056\060\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\040\040\040\074\045\040\145\156\144\040\045\076\012\011\040\040\074\045\040\145\156\144\073\040\151\146\040\050\150\141\163\144\157\164\156\145\164\040\141\156\144\040\150\141\163\143\160\160\051\040\164\150\145\156\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\115\151\170\145\144\040\120\154\141\164\146\157\162\155\163\056\101\143\164\151\166\145\103\146\147\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\115\151\170\145\144\040\120\154\141\164\146\157\162\155\163\056\102\165\151\154\144\056\060\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\040\040\074\045\040\145\156\144\073\040\151\146\040\050\150\141\163\143\160\160\051\040\164\150\145\156\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\127\151\156\063\062\056\101\143\164\151\166\145\103\146\147\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\040\040\040\074\045\040\151\146\040\050\160\162\152\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\042\040\157\162\040\160\162\152\056\154\141\156\147\165\141\147\145\040\075\075\040\042\103\053\053\042\051\040\164\150\145\156\040\045\076\012\011\011\173\074\045\075\040\160\162\152\056\165\165\151\144\040\045\076\175\056\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\127\151\156\063\062\056\102\165\151\154\144\056\060\040\075\040\074\045\075\040\143\146\147\156\141\155\145\040\045\076\174\074\045\075\040\137\126\123\056\141\162\143\150\050\160\162\152\051\040\045\076\012\011\040\040\040\074\045\040\145\156\144\040\045\076\012\011\040\040\074\045\040\145\156\144\040\045\076\012\011\040\074\045\040\145\156\144\040\045\076\012\011\074\045\040\145\156\144\040\045\076\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\011\107\154\157\142\141\154\123\145\143\164\151\157\156\050\123\157\154\165\164\151\157\156\120\162\157\160\145\162\164\151\145\163\051\040\075\040\160\162\145\123\157\154\165\164\151\157\156\012\011\011\110\151\144\145\123\157\154\165\164\151\157\156\116\157\144\145\040\075\040\106\101\114\123\105\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\012\105\156\144\107\154\157\142\141\154\012\135\135\051",
+ "\137\124\105\115\120\114\101\124\105\123\056\166\163\062\060\060\170\137\166\143\160\162\157\152\075\160\162\145\155\141\153\145\056\154\157\141\144\164\145\155\160\154\141\164\145\163\164\162\151\156\147\050\047\166\163\062\060\060\170\137\166\143\160\162\157\152\047\054\133\133\074\045\040\145\157\154\040\075\040\042\134\162\134\156\042\040\045\076\012\074\077\170\155\154\040\166\145\162\163\151\157\156\075\042\061\056\060\042\040\145\156\143\157\144\151\156\147\075\042\127\151\156\144\157\167\163\055\061\062\065\062\042\077\076\012\074\126\151\163\165\141\154\123\164\165\144\151\157\120\162\157\152\145\143\164\012\011\120\162\157\152\145\143\164\124\171\160\145\075\042\126\151\163\165\141\154\040\103\053\053\042\012\074\045\040\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\062\042\040\164\150\145\156\040\045\076\012\011\126\145\162\163\151\157\156\075\042\067\056\060\060\042\012\074\045\040\145\154\163\145\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\063\042\040\164\150\145\156\040\045\076\012\011\126\145\162\163\151\157\156\075\042\067\056\061\060\042\012\074\045\040\145\154\163\145\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\065\042\040\164\150\145\156\040\045\076\012\011\126\145\162\163\151\157\156\075\042\070\056\060\060\042\012\074\045\040\145\154\163\145\151\146\040\137\101\103\124\111\117\116\040\075\075\040\042\166\163\062\060\060\070\042\040\164\150\145\156\040\045\076\012\011\126\145\162\163\151\157\156\075\042\071\056\060\060\042\012\074\045\040\145\156\144\040\045\076\012\011\116\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\150\151\163\056\156\141\155\145\051\040\045\076\042\012\011\120\162\157\152\145\143\164\107\125\111\104\075\042\173\074\045\075\040\164\150\151\163\056\165\165\151\144\040\045\076\175\042\012\074\045\040\151\146\040\137\101\103\124\111\117\116\040\076\040\042\166\163\062\060\060\063\042\040\164\150\145\156\040\045\076\012\011\122\157\157\164\116\141\155\145\163\160\141\143\145\075\042\074\045\075\040\164\150\151\163\056\156\141\155\145\040\045\076\042\012\074\045\040\145\156\144\040\045\076\012\011\113\145\171\167\157\162\144\075\042\074\045\075\040\151\151\146\050\164\150\151\163\056\146\154\141\147\163\056\115\141\156\141\147\145\144\054\040\042\115\141\156\141\147\145\144\103\120\162\157\152\042\054\040\042\127\151\156\063\062\120\162\157\152\042\051\040\045\076\042\012\011\076\012\011\074\120\154\141\164\146\157\162\155\163\076\012\011\011\074\120\154\141\164\146\157\162\155\012\011\011\011\116\141\155\145\075\042\127\151\156\063\062\042\012\011\011\057\076\012\011\074\057\120\154\141\164\146\157\162\155\163\076\012\074\045\040\151\146\040\137\101\103\124\111\117\116\040\076\040\042\166\163\062\060\060\063\042\040\164\150\145\156\040\045\076\012\011\074\124\157\157\154\106\151\154\145\163\076\012\011\074\057\124\157\157\154\106\151\154\145\163\076\012\074\045\040\145\156\144\040\045\076\012\011\074\103\157\156\146\151\147\165\162\141\164\151\157\156\163\076\012\074\045\040\146\157\162\040\143\146\147\040\151\156\040\160\162\145\155\141\153\145\056\145\141\143\150\143\157\156\146\151\147\050\164\150\151\163\051\040\144\157\040\045\076\012\011\011\074\103\157\156\146\151\147\165\162\141\164\151\157\156\012\011\011\011\116\141\155\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\156\141\155\145\051\040\045\076\174\127\151\156\063\062\042\012\011\011\011\117\165\164\160\165\164\104\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\142\165\151\154\144\164\141\162\147\145\164\056\144\151\162\145\143\164\157\162\171\051\040\045\076\042\012\011\011\011\111\156\164\145\162\155\145\144\151\141\164\145\104\151\162\145\143\164\157\162\171\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\157\142\152\145\143\164\163\144\151\162\051\040\045\076\042\012\011\011\011\103\157\156\146\151\147\165\162\141\164\151\157\156\124\171\160\145\075\042\074\045\075\040\137\126\123\056\143\146\147\164\171\160\145\050\143\146\147\051\040\045\076\042\012\011\011\011\103\150\141\162\141\143\164\145\162\123\145\164\075\042\074\045\075\040\151\151\146\050\143\146\147\056\146\154\141\147\163\056\125\156\151\143\157\144\145\054\040\061\054\040\062\051\040\045\076\042\012\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\115\141\156\141\147\145\144\040\164\150\145\156\040\045\076\012\011\011\011\115\141\156\141\147\145\144\105\170\164\145\156\163\151\157\156\163\075\042\164\162\165\145\042\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\076\012\074\045\040\146\157\162\040\137\054\142\154\157\143\153\040\151\156\040\151\160\141\151\162\163\050\137\126\123\133\137\101\103\124\111\117\116\135\051\040\144\157\040\045\076\012\011\074\045\040\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\101\114\151\156\153\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\101\114\151\156\153\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\101\160\160\126\145\162\151\146\151\145\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\101\160\160\126\145\162\151\146\151\145\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\101\165\170\151\154\151\141\162\171\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\101\165\170\151\154\151\141\162\171\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\102\163\143\115\141\153\145\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\102\163\143\115\141\153\145\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\103\114\103\157\155\160\151\154\145\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\103\114\103\157\155\160\151\154\145\162\124\157\157\154\042\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\117\160\164\151\155\151\172\141\164\151\157\156\075\042\074\045\075\040\137\126\123\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\045\076\042\011\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\106\162\141\155\145\120\157\151\156\164\145\162\040\164\150\145\156\040\045\076\012\011\011\011\011\117\155\151\164\106\162\141\155\145\120\157\151\156\164\145\162\163\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\111\156\143\154\165\144\145\104\151\162\145\143\164\157\162\151\145\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\051\054\040\042\073\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\144\145\146\151\156\145\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\120\162\145\160\162\157\143\145\163\163\157\162\104\145\146\151\156\151\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\144\145\146\151\156\145\163\051\054\040\042\073\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\123\171\155\142\157\154\163\040\141\156\144\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\115\141\156\141\147\145\144\040\164\150\145\156\040\045\076\012\011\011\011\011\115\151\156\151\155\141\154\122\145\142\165\151\154\144\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\105\170\143\145\160\164\151\157\156\163\040\164\150\145\156\040\045\076\012\011\011\011\011\105\170\143\145\160\164\151\157\156\110\141\156\144\154\151\156\147\075\042\074\045\075\040\151\151\146\050\137\101\103\124\111\117\116\040\074\040\042\166\163\062\060\060\065\042\054\040\042\106\101\114\123\105\042\054\040\060\051\040\045\076\042\012\011\011\011\074\045\040\145\154\163\145\151\146\040\143\146\147\056\146\154\141\147\163\056\123\105\110\040\141\156\144\040\137\101\103\124\111\117\116\040\076\040\042\166\163\062\060\060\063\042\040\164\150\145\156\040\045\076\012\011\011\011\011\105\170\143\145\160\164\151\157\156\110\141\156\144\154\151\156\147\075\042\062\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\137\126\123\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\075\075\040\060\040\141\156\144\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\115\141\156\141\147\145\144\040\164\150\145\156\040\045\076\012\011\011\011\011\102\141\163\151\143\122\165\156\164\151\155\145\103\150\145\143\153\163\075\042\063\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\137\126\123\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\176\075\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\123\164\162\151\156\147\120\157\157\154\151\156\147\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\122\165\156\164\151\155\145\114\151\142\162\141\162\171\075\042\074\045\075\040\137\126\123\056\162\165\156\164\151\155\145\050\143\146\147\051\040\045\076\042\012\011\011\011\011\105\156\141\142\154\145\106\165\156\143\164\151\157\156\114\145\166\145\154\114\151\156\153\151\156\147\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\151\146\040\137\101\103\124\111\117\116\040\074\040\042\166\163\062\060\060\065\042\040\141\156\144\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\116\157\122\124\124\111\040\164\150\145\156\040\045\076\012\011\011\011\011\122\165\156\164\151\155\145\124\171\160\145\111\156\146\157\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\154\163\145\151\146\040\137\101\103\124\111\117\116\040\076\040\042\166\163\062\060\060\063\042\040\141\156\144\040\143\146\147\056\146\154\141\147\163\056\116\157\122\124\124\111\040\164\150\145\156\040\045\076\012\011\011\011\011\122\165\156\164\151\155\145\124\171\160\145\111\156\146\157\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\146\141\154\163\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\141\164\151\166\145\127\103\150\141\162\040\164\150\145\156\040\045\076\012\011\011\011\011\124\162\145\141\164\127\103\150\141\162\137\164\101\163\102\165\151\154\164\111\156\124\171\160\145\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\154\163\145\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\116\141\164\151\166\145\127\103\150\141\162\040\164\150\145\156\040\045\076\012\011\011\011\011\124\162\145\141\164\127\103\150\141\162\137\164\101\163\102\165\151\154\164\111\156\124\171\160\145\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\146\141\154\163\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\116\157\120\103\110\040\141\156\144\040\143\146\147\056\160\143\150\150\145\141\144\145\162\040\164\150\145\156\040\045\076\012\011\011\011\011\125\163\145\120\162\145\143\157\155\160\151\154\145\144\110\145\141\144\145\162\075\042\074\045\075\040\151\151\146\050\137\101\103\124\111\117\116\040\074\040\042\166\163\062\060\060\065\042\054\040\063\054\040\062\051\040\045\076\042\012\011\011\011\011\120\162\145\143\157\155\160\151\154\145\144\110\145\141\144\145\162\124\150\162\157\165\147\150\075\042\074\045\075\040\143\146\147\056\160\143\150\150\145\141\144\145\162\040\045\076\042\012\011\011\011\074\045\040\145\154\163\145\040\045\076\012\011\011\011\011\125\163\145\120\162\145\143\157\155\160\151\154\145\144\110\145\141\144\145\162\075\042\074\045\075\040\151\151\146\050\137\101\103\124\111\117\116\040\076\040\042\166\163\062\060\060\063\042\040\157\162\040\143\146\147\056\146\154\141\147\163\056\116\157\120\103\110\054\040\060\054\040\062\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\127\141\162\156\151\156\147\114\145\166\145\154\075\042\074\045\075\040\151\151\146\050\143\146\147\056\146\154\141\147\163\056\105\170\164\162\141\127\141\162\156\151\156\147\163\054\040\064\054\040\063\051\040\045\076\042\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\106\141\164\141\154\127\141\162\156\151\156\147\163\040\164\150\145\156\040\045\076\012\011\011\011\011\127\141\162\156\101\163\105\162\162\157\162\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\137\101\103\124\111\117\116\040\074\040\042\166\163\062\060\060\070\042\040\141\156\144\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\115\141\156\141\147\145\144\040\164\150\145\156\040\045\076\012\011\011\011\011\104\145\164\145\143\164\066\064\102\151\164\120\157\162\164\141\142\151\154\151\164\171\120\162\157\142\154\145\155\163\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\156\157\164\040\143\146\147\056\146\154\141\147\163\056\116\157\066\064\102\151\164\103\150\145\143\153\163\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\120\162\157\147\162\141\155\104\141\164\141\102\141\163\145\106\151\154\145\116\141\155\145\075\042\044\050\117\165\164\104\151\162\051\134\044\050\120\162\157\152\145\143\164\116\141\155\145\051\056\160\144\142\042\012\011\011\011\011\104\145\142\165\147\111\156\146\157\162\155\141\164\151\157\156\106\157\162\155\141\164\075\042\074\045\075\040\137\126\123\056\163\171\155\142\157\154\163\050\143\146\147\051\040\045\076\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\103\165\163\164\157\155\102\165\151\154\144\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\103\165\163\164\157\155\102\165\151\154\144\124\157\157\154\042\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\106\170\103\157\160\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\106\170\103\157\160\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\114\151\156\153\145\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\074\045\040\151\146\040\143\146\147\056\153\151\156\144\040\176\075\040\042\123\164\141\164\151\143\114\151\142\042\040\164\150\145\156\040\045\076\012\011\011\011\011\116\141\155\145\075\042\126\103\114\151\156\153\145\162\124\157\157\154\042\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\111\155\160\157\162\164\114\151\142\040\164\150\145\156\040\045\076\012\011\011\011\011\111\147\156\157\162\145\111\155\160\157\162\164\114\151\142\162\141\162\171\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\154\151\156\153\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\104\145\160\145\156\144\145\156\143\151\145\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\147\145\164\154\151\156\153\163\050\143\146\147\054\040\042\141\154\154\042\054\040\042\146\165\154\154\160\141\164\150\042\051\054\040\042\040\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\117\165\164\160\165\164\106\151\154\145\075\042\044\050\117\165\164\104\151\162\051\134\074\045\075\040\143\146\147\056\142\165\151\154\144\164\141\162\147\145\164\056\156\141\155\145\040\045\076\042\012\011\011\011\011\114\151\156\153\111\156\143\162\145\155\145\156\164\141\154\075\042\074\045\075\040\151\151\146\050\137\126\123\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\075\075\040\060\054\040\062\054\040\061\051\040\045\076\042\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\114\151\142\162\141\162\171\104\151\162\145\143\164\157\162\151\145\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\160\141\164\150\056\164\162\141\156\163\154\141\164\145\050\143\146\147\056\154\151\142\144\151\162\163\051\051\040\054\040\042\073\042\051\040\045\076\042\012\011\011\011\074\045\040\154\157\143\141\154\040\144\145\146\146\151\154\145\040\075\040\160\162\145\155\141\153\145\056\146\151\156\144\146\151\154\145\050\143\146\147\054\040\042\056\144\145\146\042\051\073\040\151\146\040\144\145\146\146\151\154\145\040\164\150\145\156\040\045\076\012\011\011\011\011\115\157\144\165\154\145\104\145\146\151\156\151\164\151\157\156\106\151\154\145\075\042\074\045\075\040\144\145\146\146\151\154\145\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\143\146\147\056\146\154\141\147\163\056\116\157\115\141\156\151\146\145\163\164\040\164\150\145\156\040\045\076\012\011\011\011\011\107\145\156\145\162\141\164\145\115\141\156\151\146\145\163\164\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\146\141\154\163\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\107\145\156\145\162\141\164\145\104\145\142\165\147\111\156\146\157\162\155\141\164\151\157\156\075\042\074\045\075\040\137\126\123\056\142\157\157\154\050\137\126\123\056\163\171\155\142\157\154\163\050\143\146\147\051\040\176\075\040\060\051\040\045\076\042\012\011\011\011\074\045\040\151\146\040\137\126\123\056\163\171\155\142\157\154\163\050\143\146\147\051\040\176\075\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\120\162\157\147\162\141\155\104\141\164\141\142\141\163\145\106\151\154\145\075\042\044\050\117\165\164\104\151\162\051\134\044\050\120\162\157\152\145\143\164\116\141\155\145\051\056\160\144\142\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\123\165\142\123\171\163\164\145\155\075\042\074\045\075\040\151\151\146\050\143\146\147\056\153\151\156\144\040\075\075\040\042\103\157\156\163\157\154\145\101\160\160\042\054\040\061\054\040\062\051\040\045\076\042\012\011\011\011\074\045\040\151\146\040\137\126\123\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\176\075\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\117\160\164\151\155\151\172\145\122\145\146\145\162\145\156\143\145\163\075\042\062\042\012\011\011\011\011\105\156\141\142\154\145\103\117\115\104\101\124\106\157\154\144\151\156\147\075\042\062\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\050\143\146\147\056\153\151\156\144\040\075\075\040\042\103\157\156\163\157\154\145\101\160\160\042\040\157\162\040\143\146\147\056\153\151\156\144\040\075\075\040\042\127\151\156\144\157\167\145\144\101\160\160\042\051\040\141\156\144\040\156\157\164\040\143\146\147\056\146\154\141\147\163\056\127\151\156\115\141\151\156\040\164\150\145\156\040\045\076\012\011\011\011\011\105\156\164\162\171\120\157\151\156\164\123\171\155\142\157\154\075\042\155\141\151\156\103\122\124\123\164\141\162\164\165\160\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\143\146\147\056\153\151\156\144\040\075\075\040\042\123\150\141\162\145\144\114\151\142\042\040\164\150\145\156\040\045\076\012\011\011\011\011\074\045\040\154\157\143\141\154\040\151\155\160\154\151\142\156\141\155\145\040\075\040\160\141\164\150\056\164\162\141\156\163\154\141\164\145\050\160\162\145\155\141\153\145\056\147\145\164\164\141\162\147\145\164\050\143\146\147\054\040\042\154\151\156\153\042\054\040\042\167\151\156\144\157\167\163\042\051\056\146\165\154\154\160\141\164\150\054\040\042\134\134\042\051\040\045\076\012\011\011\011\011\111\155\160\157\162\164\114\151\142\162\141\162\171\075\042\074\045\075\040\151\151\146\050\143\146\147\056\146\154\141\147\163\056\116\157\111\155\160\157\162\164\114\151\142\054\040\143\146\147\056\157\142\152\145\143\164\163\144\151\162\056\056\042\134\134\042\056\056\160\141\164\150\056\147\145\164\156\141\155\145\050\151\155\160\154\151\142\156\141\155\145\051\054\040\151\155\160\154\151\142\156\141\155\145\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\011\124\141\162\147\145\164\115\141\143\150\151\156\145\075\042\061\042\012\011\011\074\045\040\145\154\163\145\040\045\076\012\011\011\011\011\116\141\155\145\075\042\126\103\114\151\142\162\141\162\151\141\156\124\157\157\154\042\012\011\011\011\011\117\165\164\160\165\164\106\151\154\145\075\042\044\050\117\165\164\104\151\162\051\134\074\045\075\040\143\146\147\056\142\165\151\154\144\164\141\162\147\145\164\056\156\141\155\145\040\045\076\042\012\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\115\141\156\141\147\145\144\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\115\141\156\141\147\145\144\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\115\141\156\151\146\145\163\164\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\115\141\156\151\146\145\163\164\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\115\111\104\114\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\115\111\104\114\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\120\162\145\102\165\151\154\144\105\166\145\156\164\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\120\162\145\102\165\151\154\144\105\166\145\156\164\124\157\157\154\042\012\011\011\011\011\074\045\040\151\146\040\043\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\103\157\155\155\141\156\144\114\151\156\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\162\145\142\165\151\154\144\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\162\134\156\042\051\051\040\045\076\042\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\120\162\145\114\151\156\153\105\166\145\156\164\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\120\162\145\114\151\156\153\105\166\145\156\164\124\157\157\154\042\012\011\011\011\011\074\045\040\151\146\040\043\143\146\147\056\160\162\145\154\151\156\153\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\103\157\155\155\141\156\144\114\151\156\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\162\145\154\151\156\153\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\162\134\156\042\051\051\040\045\076\042\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\120\157\163\164\102\165\151\154\144\105\166\145\156\164\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\120\157\163\164\102\165\151\154\144\105\166\145\156\164\124\157\157\154\042\012\011\011\011\011\074\045\040\151\146\040\043\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\103\157\155\155\141\156\144\114\151\156\145\075\042\074\045\075\040\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\151\155\160\154\157\144\145\050\143\146\147\056\160\157\163\164\142\165\151\154\144\143\157\155\155\141\156\144\163\054\040\042\042\054\040\042\042\054\040\042\134\162\134\156\042\051\051\040\045\076\042\012\011\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\042\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\162\145\163\157\160\164\151\157\156\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\117\160\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\143\146\147\056\162\145\163\157\160\164\151\157\156\163\051\054\040\042\040\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\144\145\146\151\156\145\163\040\076\040\060\040\157\162\040\043\143\146\147\056\162\145\163\144\145\146\151\156\145\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\120\162\145\160\162\157\143\145\163\163\157\162\104\145\146\151\156\151\164\151\157\156\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\152\157\151\156\050\143\146\147\056\144\145\146\151\156\145\163\054\040\143\146\147\056\162\145\163\144\145\146\151\156\145\163\051\051\054\040\042\073\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\040\076\040\060\040\157\162\040\043\143\146\147\056\162\145\163\151\156\143\154\165\144\145\144\151\162\163\040\076\040\060\040\164\150\145\156\040\045\076\012\011\011\011\011\101\144\144\151\164\151\157\156\141\154\111\156\143\154\165\144\145\104\151\162\145\143\164\157\162\151\145\163\075\042\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\160\162\145\155\141\153\145\056\145\163\143\050\164\141\142\154\145\056\152\157\151\156\050\143\146\147\056\151\156\143\154\165\144\145\144\151\162\163\054\040\143\146\147\056\162\145\163\151\156\143\154\165\144\145\144\151\162\163\051\051\054\040\042\073\042\051\040\045\076\042\012\011\011\011\074\045\040\145\156\144\040\045\076\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\127\145\142\104\145\160\154\157\171\155\145\156\164\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\127\145\142\104\145\160\154\157\171\155\145\156\164\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\127\145\142\123\145\162\166\151\143\145\120\162\157\170\171\107\145\156\145\162\141\164\157\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\127\145\142\123\145\162\166\151\143\145\120\162\157\170\171\107\145\156\145\162\141\164\157\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\130\104\103\115\141\153\145\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\130\104\103\115\141\153\145\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\154\163\145\151\146\040\050\142\154\157\143\153\040\075\075\040\042\126\103\130\115\114\104\141\164\141\107\145\156\145\162\141\164\157\162\124\157\157\154\042\051\040\164\150\145\156\040\045\076\012\011\011\011\074\124\157\157\154\012\011\011\011\011\116\141\155\145\075\042\126\103\130\115\114\104\141\164\141\107\145\156\145\162\141\164\157\162\124\157\157\154\042\012\011\011\011\057\076\012\011\074\045\040\145\156\144\040\045\076\012\074\045\040\145\156\144\040\045\076\012\011\011\074\057\103\157\156\146\151\147\165\162\141\164\151\157\156\076\012\011\074\045\040\145\156\144\040\045\076\012\011\074\057\103\157\156\146\151\147\165\162\141\164\151\157\156\163\076\012\011\074\122\145\146\145\162\145\156\143\145\163\076\012\011\074\057\122\145\146\145\162\145\156\143\145\163\076\012\011\074\106\151\154\145\163\076\012\011\011\074\045\040\160\162\145\155\141\153\145\056\167\141\154\153\163\157\165\162\143\145\163\050\164\150\151\163\054\040\164\150\151\163\056\146\151\154\145\163\054\040\137\126\123\056\146\151\154\145\163\051\040\045\076\012\011\074\057\106\151\154\145\163\076\012\011\074\107\154\157\142\141\154\163\076\012\011\074\057\107\154\157\142\141\154\163\076\012\074\057\126\151\163\165\141\154\123\164\165\144\151\157\120\162\157\152\145\143\164\076\012\135\135\051",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\036\000\000\000\100\163\162\143\057\141\143\164\151\157\156\163\057\143\154\145\141\156\057\137\143\154\145\141\156\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\004\013\000\000\000\044\000\000\000\105\000\000\000\212\000\001\000\211\200\300\200\211\000\301\201\211\200\301\202\344\100\000\000\000\000\000\000\211\300\200\203\134\100\000\001\036\000\200\000\010\000\000\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\006\000\000\000\143\154\145\141\156\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\050\000\000\000\122\145\155\157\166\145\040\141\154\154\040\142\151\156\141\162\151\145\163\040\141\156\144\040\147\145\156\145\162\141\164\145\144\040\146\151\154\145\163\000\004\014\000\000\000\164\141\162\147\145\164\163\164\171\154\145\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\010\000\000\000\145\170\145\143\165\164\145\000\002\000\000\000\000\000\000\000\014\000\000\000\023\000\000\000\000\002\000\012\022\000\000\000\132\000\000\000\026\200\003\200\205\000\000\000\300\000\200\000\234\000\001\001\026\000\002\200\305\101\000\000\306\201\300\003\000\002\000\000\106\302\100\003\334\201\200\001\005\002\001\000\006\102\101\004\100\002\200\003\034\102\000\001\241\200\000\000\026\000\375\177\036\000\200\000\006\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\016\000\000\000\147\145\164\157\165\164\160\165\164\156\141\155\145\000\003\000\000\000\000\000\000\360\077\004\003\000\000\000\157\163\000\004\007\000\000\000\162\145\155\157\166\145\000\000\000\000\000\022\000\000\000\015\000\000\000\015\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\016\000\000\000\020\000\000\000\023\000\000\000\010\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\021\000\000\000\012\000\000\000\164\145\155\160\154\141\164\145\163\000\000\000\000\000\021\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\005\000\000\000\021\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\005\000\000\000\021\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\005\000\000\000\021\000\000\000\002\000\000\000\137\000\006\000\000\000\017\000\000\000\005\000\000\000\164\155\160\154\000\006\000\000\000\017\000\000\000\006\000\000\000\146\156\141\155\145\000\013\000\000\000\017\000\000\000\000\000\000\000\000\000\000\000\037\000\000\000\133\000\000\000\001\000\000\032\321\000\000\000\012\000\000\000\112\000\000\000\212\000\000\000\305\000\000\000\306\100\300\001\334\200\200\000\044\001\000\000\000\000\200\001\105\201\000\000\205\301\000\000\134\001\001\001\026\000\045\200\205\002\001\000\206\102\101\005\300\002\000\000\005\203\001\000\006\303\101\006\106\003\302\004\206\103\302\004\034\003\200\001\234\102\000\000\205\202\002\000\206\302\102\005\300\002\200\004\234\002\001\001\026\000\041\200\205\003\001\000\206\103\101\007\300\003\200\000\005\204\001\000\006\304\101\010\106\004\302\006\206\104\302\006\034\004\200\001\234\103\000\000\206\003\303\006\232\003\000\000\026\200\001\200\205\003\000\000\206\103\103\007\300\003\000\002\000\004\200\006\106\004\303\006\334\003\200\001\234\103\000\000\205\203\002\000\206\203\103\007\300\003\200\006\234\003\001\001\026\200\032\200\205\004\001\000\206\104\101\011\300\004\000\001\005\205\001\000\006\305\101\012\100\005\000\002\200\005\200\010\306\305\303\010\306\005\304\013\134\205\200\001\206\305\303\010\206\105\104\013\034\005\200\001\234\104\000\000\205\004\000\000\206\204\104\011\300\004\000\002\000\005\200\010\105\205\002\000\106\305\304\012\200\005\200\010\301\005\005\000\001\106\005\000\134\205\000\002\106\205\305\012\334\004\200\001\234\104\000\000\205\004\000\000\206\204\104\011\300\004\000\002\000\005\200\010\105\205\002\000\106\305\304\012\200\005\200\010\301\005\005\000\001\306\005\000\101\306\005\000\134\205\200\002\106\205\305\012\334\004\200\001\234\104\000\000\205\004\000\000\206\204\104\011\300\004\000\002\000\005\200\010\105\205\002\000\106\305\304\012\200\005\200\010\301\005\005\000\001\306\005\000\101\006\006\000\134\205\200\002\106\205\305\012\334\004\200\001\234\104\000\000\206\104\306\010\027\200\106\011\026\300\003\200\205\004\000\000\206\104\103\011\300\004\000\002\000\005\200\010\105\205\002\000\106\305\304\012\200\005\200\010\301\005\005\000\001\306\005\000\101\306\005\000\134\205\200\002\106\205\305\012\201\305\006\000\125\205\205\012\334\004\200\001\234\104\000\000\205\004\000\000\206\204\104\011\300\004\000\002\000\005\200\010\105\205\002\000\106\305\304\012\200\005\200\010\301\005\007\000\001\106\005\000\134\205\000\002\106\205\305\012\334\004\200\001\234\104\000\000\205\004\000\000\206\204\104\011\300\004\000\002\000\005\200\010\105\205\002\000\106\305\304\012\200\005\200\010\301\005\007\000\001\306\005\000\134\205\000\002\106\205\305\012\334\004\200\001\234\104\000\000\205\004\000\000\206\104\103\011\300\004\000\002\000\005\200\010\106\005\303\010\334\004\200\001\234\104\000\000\241\103\000\000\026\200\344\177\241\102\000\000\026\000\336\177\141\201\000\000\026\000\332\177\105\101\007\000\205\201\002\000\206\201\107\003\134\001\001\001\026\200\007\200\205\202\000\000\305\302\000\000\234\002\001\001\026\200\003\200\304\003\000\000\000\004\000\007\106\304\307\004\334\103\200\001\305\203\002\000\306\303\302\007\000\004\000\007\334\003\001\001\026\300\000\200\304\004\000\000\000\005\000\011\106\005\310\004\334\104\200\001\341\103\000\000\026\100\376\177\241\202\000\000\026\200\373\177\205\102\010\000\306\202\310\004\234\202\000\001\027\300\110\005\026\000\001\200\206\202\310\004\300\002\000\000\000\003\200\000\100\003\000\001\234\102\000\002\141\201\000\000\026\200\367\177\105\101\010\000\205\201\010\000\134\201\000\001\027\300\310\002\026\100\000\200\105\201\010\000\134\101\200\000\036\000\200\000\044\000\000\000\004\003\000\000\000\157\163\000\004\007\000\000\000\147\145\164\143\167\144\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\005\000\000\000\156\141\155\145\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\014\000\000\000\145\141\143\150\160\162\157\152\145\143\164\000\004\007\000\000\000\157\142\152\144\151\162\000\004\006\000\000\000\162\155\144\151\162\000\004\013\000\000\000\145\141\143\150\143\157\156\146\151\147\000\004\014\000\000\000\142\165\151\154\144\164\141\162\147\145\164\000\004\012\000\000\000\144\151\162\145\143\164\157\162\171\000\004\011\000\000\000\142\141\163\145\156\141\155\145\000\004\007\000\000\000\162\145\155\157\166\145\000\004\012\000\000\000\147\145\164\164\141\162\147\145\164\000\004\006\000\000\000\142\165\151\154\144\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\011\000\000\000\146\165\154\154\160\141\164\150\000\004\006\000\000\000\154\151\156\165\170\000\004\007\000\000\000\155\141\143\157\163\170\000\004\005\000\000\000\153\151\156\144\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\005\000\000\000\056\141\160\160\000\004\005\000\000\000\154\151\156\153\000\004\006\000\000\000\160\141\151\162\163\000\004\010\000\000\000\141\143\164\151\157\156\163\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\005\000\000\000\164\171\160\145\000\004\010\000\000\000\157\156\143\154\145\141\156\000\004\011\000\000\000\146\165\156\143\164\151\157\156\000\001\000\000\000\000\000\000\000\045\000\000\000\047\000\000\000\001\002\000\006\010\000\000\000\205\000\000\000\206\100\100\001\300\000\200\000\006\201\100\000\104\001\000\000\235\000\000\002\236\000\000\000\036\000\200\000\003\000\000\000\004\005\000\000\000\160\141\164\150\000\004\007\000\000\000\162\145\142\141\163\145\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\000\000\000\000\010\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\047\000\000\000\002\000\000\000\007\000\000\000\160\141\162\145\156\164\000\000\000\000\000\007\000\000\000\004\000\000\000\144\151\162\000\000\000\000\000\007\000\000\000\001\000\000\000\004\000\000\000\143\167\144\000\321\000\000\000\040\000\000\000\041\000\000\000\042\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\047\000\000\000\047\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\054\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\056\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\061\000\000\000\061\000\000\000\061\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\065\000\000\000\104\000\000\000\056\000\000\000\105\000\000\000\053\000\000\000\106\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\115\000\000\000\116\000\000\000\113\000\000\000\117\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\112\000\000\000\124\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\131\000\000\000\131\000\000\000\133\000\000\000\040\000\000\000\012\000\000\000\163\157\154\165\164\151\157\156\163\000\001\000\000\000\320\000\000\000\011\000\000\000\160\162\157\152\145\143\164\163\000\002\000\000\000\320\000\000\000\010\000\000\000\164\141\162\147\145\164\163\000\003\000\000\000\320\000\000\000\004\000\000\000\143\167\144\000\006\000\000\000\320\000\000\000\007\000\000\000\162\145\142\141\163\145\000\010\000\000\000\320\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\013\000\000\000\243\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\013\000\000\000\243\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\013\000\000\000\243\000\000\000\002\000\000\000\137\000\014\000\000\000\241\000\000\000\004\000\000\000\163\154\156\000\014\000\000\000\241\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\031\000\000\000\241\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\031\000\000\000\241\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\031\000\000\000\241\000\000\000\004\000\000\000\160\162\152\000\032\000\000\000\237\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\061\000\000\000\237\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\061\000\000\000\237\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\061\000\000\000\237\000\000\000\004\000\000\000\143\146\147\000\062\000\000\000\235\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\247\000\000\000\311\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\247\000\000\000\311\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\247\000\000\000\311\000\000\000\002\000\000\000\137\000\250\000\000\000\307\000\000\000\007\000\000\000\141\143\164\151\157\156\000\250\000\000\000\307\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\253\000\000\000\275\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\253\000\000\000\275\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\253\000\000\000\275\000\000\000\002\000\000\000\137\000\254\000\000\000\273\000\000\000\004\000\000\000\163\154\156\000\254\000\000\000\273\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\264\000\000\000\273\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\264\000\000\000\273\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\264\000\000\000\273\000\000\000\004\000\000\000\160\162\152\000\265\000\000\000\271\000\000\000\001\000\000\000\023\000\000\000\143\154\145\141\156\164\145\155\160\154\141\164\145\146\151\154\145\163\000\013\000\000\000\023\000\000\000\032\000\000\000\032\000\000\000\033\000\000\000\034\000\000\000\035\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\032\000\000\000\134\000\000\000\001\000\000\000\023\000\000\000\143\154\145\141\156\164\145\155\160\154\141\164\145\146\151\154\145\163\000\001\000\000\000\012\000\000\000\000\000\000\000",
"\033\114\165\141\121\000\001\004\004\004\010\000\050\000\000\000\100\163\162\143\057\141\143\164\151\157\156\163\057\143\157\144\145\142\154\157\143\153\163\057\137\143\157\144\145\142\154\157\143\153\163\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\007\054\000\000\000\005\000\000\000\112\100\002\000\111\200\300\200\111\000\301\201\111\200\301\202\212\000\000\002\301\000\002\000\001\101\002\000\101\201\002\000\201\301\002\000\242\100\000\002\111\200\200\203\212\000\000\001\301\100\003\000\001\201\003\000\242\100\000\001\111\200\000\206\212\100\000\000\312\000\000\001\001\101\004\000\101\201\004\000\342\100\000\001\211\300\000\210\111\200\200\207\212\000\200\000\312\000\000\001\001\001\005\000\105\101\005\000\106\201\305\002\342\100\000\001\242\100\200\000\111\200\200\211\212\000\200\000\312\000\000\001\001\001\006\000\105\101\005\000\106\101\306\002\342\100\000\001\242\100\200\000\111\200\200\213\244\000\000\000\111\200\000\215\034\100\000\001\036\000\200\000\033\000\000\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\013\000\000\000\143\157\144\145\142\154\157\143\153\163\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\015\000\000\000\103\157\144\145\072\072\102\154\157\143\153\163\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\024\000\000\000\103\157\144\145\072\072\102\154\157\143\153\163\040\123\164\165\144\151\157\000\004\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\014\000\000\000\166\141\154\151\144\137\164\157\157\154\163\000\004\003\000\000\000\143\143\000\004\004\000\000\000\147\143\143\000\004\003\000\000\000\157\167\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\013\000\000\000\056\167\157\162\153\163\160\141\143\145\000\004\013\000\000\000\137\124\105\115\120\114\101\124\105\123\000\004\025\000\000\000\143\157\144\145\142\154\157\143\153\163\137\167\157\162\153\163\160\141\143\145\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\005\000\000\000\056\143\142\160\000\004\017\000\000\000\143\157\144\145\142\154\157\143\153\163\137\143\142\160\000\004\010\000\000\000\157\156\143\154\145\141\156\000\001\000\000\000\000\000\000\000\035\000\000\000\042\000\000\000\000\003\000\013\023\000\000\000\305\000\000\000\000\001\200\000\334\000\001\001\026\300\002\200\005\102\000\000\006\202\100\004\100\002\200\003\201\302\000\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\002\001\000\125\202\202\004\034\102\000\001\341\200\000\000\026\100\374\177\036\000\200\000\005\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\003\000\000\000\157\163\000\004\007\000\000\000\162\145\155\157\166\145\000\004\010\000\000\000\056\144\145\160\145\156\144\000\004\010\000\000\000\056\154\141\171\157\165\164\000\000\000\000\000\023\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\036\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\036\000\000\000\040\000\000\000\042\000\000\000\010\000\000\000\012\000\000\000\163\157\154\165\164\151\157\156\163\000\000\000\000\000\022\000\000\000\011\000\000\000\160\162\157\152\145\143\164\163\000\000\000\000\000\022\000\000\000\010\000\000\000\164\141\162\147\145\164\163\000\000\000\000\000\022\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\022\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\022\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\022\000\000\000\002\000\000\000\137\000\004\000\000\000\020\000\000\000\005\000\000\000\156\141\155\145\000\004\000\000\000\020\000\000\000\000\000\000\000\054\000\000\000\010\000\000\000\010\000\000\000\011\000\000\000\012\000\000\000\013\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\015\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\021\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\023\000\000\000\025\000\000\000\025\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\027\000\000\000\027\000\000\000\031\000\000\000\031\000\000\000\032\000\000\000\032\000\000\000\032\000\000\000\032\000\000\000\033\000\000\000\033\000\000\000\042\000\000\000\042\000\000\000\010\000\000\000\043\000\000\000\000\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\044\000\000\000\100\163\162\143\057\141\143\164\151\157\156\163\057\143\157\144\145\154\151\164\145\057\137\143\157\144\145\154\151\164\145\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\007\063\000\000\000\012\000\000\000\007\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\300\000\000\112\100\002\000\111\100\101\202\111\300\101\203\111\100\102\204\212\000\000\002\301\300\002\000\001\001\003\000\101\101\003\000\201\201\003\000\242\100\000\002\111\200\000\205\212\000\000\001\301\000\004\000\001\101\004\000\242\100\000\001\111\200\200\207\212\100\000\000\312\000\200\000\001\001\005\000\342\100\200\000\211\300\200\211\111\200\000\211\212\000\200\000\312\000\000\001\001\201\005\000\105\301\005\000\106\001\306\002\342\100\000\001\242\100\200\000\111\200\200\212\212\000\200\000\312\000\000\001\001\201\006\000\105\301\005\000\106\301\306\002\342\100\000\001\242\100\200\000\111\200\200\214\244\200\000\000\111\200\000\216\034\100\000\001\036\000\200\000\035\000\000\000\004\012\000\000\000\137\103\117\104\105\114\111\124\105\000\004\005\000\000\000\153\151\156\144\000\004\006\000\000\000\146\151\154\145\163\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\011\000\000\000\143\157\144\145\154\151\164\145\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\011\000\000\000\103\157\144\145\114\151\164\145\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\030\000\000\000\103\157\144\145\114\151\164\145\040\050\145\170\160\145\162\151\155\145\156\164\141\154\051\000\004\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\014\000\000\000\166\141\154\151\144\137\164\157\157\154\163\000\004\003\000\000\000\143\143\000\004\004\000\000\000\147\143\143\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\013\000\000\000\056\167\157\162\153\163\160\141\143\145\000\004\013\000\000\000\137\124\105\115\120\114\101\124\105\123\000\004\023\000\000\000\143\157\144\145\154\151\164\145\137\167\157\162\153\163\160\141\143\145\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\011\000\000\000\056\160\162\157\152\145\143\164\000\004\021\000\000\000\143\157\144\145\154\151\164\145\137\160\162\157\152\145\143\164\000\004\010\000\000\000\157\156\143\154\145\141\156\000\003\000\000\000\000\000\000\000\016\000\000\000\026\000\000\000\000\001\000\002\021\000\000\000\127\000\100\000\026\100\000\200\027\100\100\000\026\200\000\200\101\200\000\000\136\000\000\001\026\000\002\200\027\300\100\000\026\200\000\200\101\000\001\000\136\000\000\001\026\300\000\200\027\100\101\000\026\100\000\200\101\200\001\000\136\000\000\001\036\000\200\000\007\000\000\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\013\000\000\000\105\170\145\143\165\164\141\142\154\145\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\017\000\000\000\123\164\141\164\151\143\040\114\151\142\162\141\162\171\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\020\000\000\000\104\171\156\141\155\151\143\040\114\151\142\162\141\162\171\000\000\000\000\000\021\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\021\000\000\000\021\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\023\000\000\000\023\000\000\000\024\000\000\000\024\000\000\000\026\000\000\000\001\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\036\000\000\000\050\000\000\000\000\004\000\012\045\000\000\000\005\001\000\000\006\101\100\002\101\201\000\000\214\301\300\001\034\201\200\001\027\000\101\001\026\300\002\200\105\101\001\000\106\201\301\002\200\001\000\002\301\301\001\000\005\002\002\000\006\102\102\004\100\002\200\000\034\202\000\001\101\202\002\000\225\101\002\003\134\101\000\001\026\000\004\200\027\300\102\001\026\200\001\200\105\101\001\000\106\201\301\002\200\001\000\002\301\001\003\000\225\301\001\003\134\101\000\001\026\300\001\200\105\101\001\000\106\201\301\002\200\001\000\002\301\101\003\000\000\002\200\000\101\202\003\000\225\101\002\003\134\101\000\001\036\000\200\000\017\000\000\000\004\007\000\000\000\163\164\162\151\156\147\000\004\004\000\000\000\162\145\160\000\004\003\000\000\000\040\040\000\003\000\000\000\000\000\000\360\077\004\013\000\000\000\107\162\157\165\160\123\164\141\162\164\000\004\003\000\000\000\151\157\000\004\006\000\000\000\167\162\151\164\145\000\004\031\000\000\000\074\126\151\162\164\165\141\154\104\151\162\145\143\164\157\162\171\040\116\141\155\145\075\042\000\004\005\000\000\000\160\141\164\150\000\004\010\000\000\000\147\145\164\156\141\155\145\000\004\004\000\000\000\042\076\012\000\004\011\000\000\000\107\162\157\165\160\105\156\144\000\004\025\000\000\000\074\057\126\151\162\164\165\141\154\104\151\162\145\143\164\157\162\171\076\012\000\004\015\000\000\000\074\106\151\154\145\040\116\141\155\145\075\042\000\004\005\000\000\000\042\057\076\012\000\000\000\000\000\045\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\041\000\000\000\041\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\043\000\000\000\043\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\050\000\000\000\005\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\044\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\044\000\000\000\006\000\000\000\163\164\141\164\145\000\000\000\000\000\044\000\000\000\012\000\000\000\156\145\163\164\154\145\166\145\154\000\000\000\000\000\044\000\000\000\007\000\000\000\151\156\144\145\156\164\000\005\000\000\000\044\000\000\000\000\000\000\000\000\000\000\000\104\000\000\000\114\000\000\000\000\003\000\013\045\000\000\000\305\000\000\000\000\001\200\000\334\000\001\001\026\100\007\200\005\102\000\000\006\202\100\004\100\002\200\003\201\302\000\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\002\001\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\102\001\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\202\001\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\302\001\000\125\202\202\004\034\102\000\001\341\200\000\000\026\300\367\177\036\000\200\000\010\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\003\000\000\000\157\163\000\004\007\000\000\000\162\145\155\157\166\145\000\004\006\000\000\000\056\164\141\147\163\000\004\004\000\000\000\056\155\153\000\004\010\000\000\000\137\167\163\160\056\155\153\000\004\006\000\000\000\056\154\151\163\164\000\004\005\000\000\000\056\157\165\164\000\000\000\000\000\045\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\107\000\000\000\107\000\000\000\107\000\000\000\107\000\000\000\107\000\000\000\107\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\105\000\000\000\112\000\000\000\114\000\000\000\010\000\000\000\012\000\000\000\163\157\154\165\164\151\157\156\163\000\000\000\000\000\044\000\000\000\011\000\000\000\160\162\157\152\145\143\164\163\000\000\000\000\000\044\000\000\000\010\000\000\000\164\141\162\147\145\164\163\000\000\000\000\000\044\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\044\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\044\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\044\000\000\000\002\000\000\000\137\000\004\000\000\000\042\000\000\000\005\000\000\000\156\141\155\145\000\004\000\000\000\042\000\000\000\000\000\000\000\063\000\000\000\007\000\000\000\007\000\000\000\016\000\000\000\026\000\000\000\016\000\000\000\036\000\000\000\050\000\000\000\036\000\000\000\057\000\000\000\057\000\000\000\060\000\000\000\061\000\000\000\062\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\064\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\066\000\000\000\070\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\072\000\000\000\074\000\000\000\074\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\076\000\000\000\100\000\000\000\100\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\101\000\000\000\102\000\000\000\102\000\000\000\114\000\000\000\114\000\000\000\057\000\000\000\115\000\000\000\000\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\034\000\000\000\100\163\162\143\057\141\143\164\151\157\156\163\057\155\141\153\145\057\137\155\141\153\145\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\007\073\000\000\000\012\000\000\000\007\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\000\000\000\144\200\000\000\011\100\200\201\005\000\000\000\144\300\000\000\011\100\000\202\005\100\001\000\112\000\002\000\111\300\101\203\111\100\102\204\111\300\102\205\212\000\000\002\301\100\003\000\001\201\003\000\101\301\003\000\201\001\004\000\242\100\000\002\111\200\000\206\212\000\000\001\301\200\004\000\001\301\004\000\242\100\000\001\111\200\200\210\212\200\000\000\312\000\200\000\001\201\005\000\342\100\200\000\211\300\200\212\312\000\200\000\001\001\006\000\342\100\200\000\211\300\200\213\111\200\000\212\212\000\200\000\312\000\000\001\044\001\001\000\105\201\006\000\106\301\306\002\342\100\000\001\242\100\200\000\111\200\200\214\212\000\200\000\312\000\000\001\044\101\001\000\105\201\006\000\106\101\307\002\342\100\000\001\242\100\200\000\111\200\000\216\034\100\000\001\036\000\200\000\036\000\000\000\004\006\000\000\000\137\115\101\113\105\000\004\004\000\000\000\145\163\143\000\004\016\000\000\000\147\145\164\164\141\162\147\145\164\144\145\160\163\000\004\020\000\000\000\147\145\164\155\141\153\145\146\151\154\145\156\141\155\145\000\004\011\000\000\000\147\145\164\156\141\155\145\163\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\006\000\000\000\147\155\141\153\145\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\011\000\000\000\107\116\125\040\115\141\153\145\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\053\000\000\000\107\116\125\040\155\141\153\145\146\151\154\145\163\040\146\157\162\040\120\117\123\111\130\054\040\115\151\156\107\127\054\040\141\156\144\040\103\171\147\167\151\156\000\004\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\014\000\000\000\166\141\154\151\144\137\164\157\157\154\163\000\004\003\000\000\000\143\143\000\004\004\000\000\000\147\143\143\000\004\004\000\000\000\143\163\143\000\004\004\000\000\000\155\143\163\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\013\000\000\000\137\124\105\115\120\114\101\124\105\123\000\004\016\000\000\000\155\141\153\145\137\163\157\154\165\164\151\157\156\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\011\000\000\000\155\141\153\145\137\143\160\160\000\006\000\000\000\000\000\000\000\016\000\000\000\031\000\000\000\000\001\000\013\034\000\000\000\105\000\000\000\200\000\000\000\134\200\000\001\027\100\300\000\026\000\004\200\112\000\000\000\205\200\000\000\300\000\000\000\234\000\001\001\026\300\001\200\305\101\000\000\306\301\300\003\000\002\200\000\105\002\001\000\106\102\301\004\200\002\000\003\134\002\000\001\334\101\000\000\241\200\000\000\026\100\375\177\136\000\000\001\026\000\001\200\113\200\101\000\301\300\001\000\001\001\002\000\134\200\000\002\136\000\000\001\036\000\200\000\011\000\000\000\004\005\000\000\000\164\171\160\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\160\141\151\162\163\000\004\007\000\000\000\151\156\163\145\162\164\000\004\006\000\000\000\137\115\101\113\105\000\004\004\000\000\000\145\163\143\000\004\005\000\000\000\147\163\165\142\000\004\002\000\000\000\040\000\004\003\000\000\000\134\040\000\000\000\000\000\034\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\020\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\021\000\000\000\022\000\000\000\024\000\000\000\024\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\027\000\000\000\031\000\000\000\010\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\033\000\000\000\007\000\000\000\162\145\163\165\154\164\000\006\000\000\000\025\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\011\000\000\000\024\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\011\000\000\000\024\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\011\000\000\000\024\000\000\000\002\000\000\000\137\000\012\000\000\000\022\000\000\000\002\000\000\000\166\000\012\000\000\000\022\000\000\000\007\000\000\000\162\145\163\165\154\164\000\032\000\000\000\033\000\000\000\000\000\000\000\000\000\000\000\041\000\000\000\053\000\000\000\000\001\000\016\050\000\000\000\112\000\000\000\205\000\000\000\206\100\100\001\300\000\000\000\234\200\000\001\305\200\000\000\000\001\000\001\334\000\001\001\026\200\006\200\005\002\000\000\006\302\100\004\100\002\200\003\206\002\101\000\034\202\200\001\105\002\000\000\106\102\301\004\200\002\000\004\301\202\001\000\003\003\000\006\102\003\200\000\134\202\200\002\205\302\001\000\206\002\102\005\300\002\200\004\006\103\102\004\106\103\102\000\234\202\000\002\100\002\000\005\205\202\002\000\206\302\102\005\300\002\200\000\005\003\003\000\006\103\103\006\100\003\200\004\034\003\000\001\234\102\000\000\341\200\000\000\026\200\370\177\136\000\000\001\036\000\200\000\016\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\020\000\000\000\147\145\164\144\145\160\145\156\144\145\156\143\151\145\163\000\004\007\000\000\000\151\160\141\151\162\163\000\004\012\000\000\000\147\145\164\143\157\156\146\151\147\000\004\005\000\000\000\156\141\155\145\000\004\016\000\000\000\147\145\164\164\141\162\147\145\164\146\151\154\145\000\004\007\000\000\000\164\141\162\147\145\164\000\004\005\000\000\000\160\141\164\150\000\004\007\000\000\000\162\145\142\141\163\145\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\156\163\145\162\164\000\004\006\000\000\000\137\115\101\113\105\000\004\004\000\000\000\145\163\143\000\000\000\000\000\050\000\000\000\042\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\043\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\045\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\050\000\000\000\044\000\000\000\050\000\000\000\052\000\000\000\053\000\000\000\012\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\047\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\047\000\000\000\005\000\000\000\144\145\160\163\000\005\000\000\000\047\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\010\000\000\000\046\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\010\000\000\000\046\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\010\000\000\000\046\000\000\000\002\000\000\000\137\000\011\000\000\000\044\000\000\000\004\000\000\000\160\162\152\000\011\000\000\000\044\000\000\000\007\000\000\000\160\162\152\143\146\147\000\016\000\000\000\044\000\000\000\007\000\000\000\164\141\162\147\145\164\000\025\000\000\000\044\000\000\000\000\000\000\000\000\000\000\000\065\000\000\000\106\000\000\000\000\002\000\017\043\000\000\000\201\000\000\000\305\100\000\000\005\201\000\000\334\000\001\001\026\100\004\200\006\302\300\003\106\302\100\000\027\100\002\004\026\000\000\200\214\000\101\001\132\000\000\000\026\200\002\200\005\102\000\000\106\102\301\003\034\002\001\001\026\000\001\200\106\303\100\006\206\303\100\000\027\200\203\006\026\000\000\200\214\000\101\001\041\202\000\000\026\000\376\177\341\200\000\000\026\300\372\177\027\000\101\001\026\200\000\200\301\200\001\000\336\000\000\001\026\300\000\200\306\300\101\000\001\001\002\000\325\000\201\001\336\000\000\001\036\000\200\000\011\000\000\000\003\000\000\000\000\000\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\003\000\000\000\000\000\000\360\077\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\011\000\000\000\115\141\153\145\146\151\154\145\000\004\005\000\000\000\156\141\155\145\000\004\006\000\000\000\056\155\141\153\145\000\000\000\000\000\043\000\000\000\067\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\070\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\071\000\000\000\072\000\000\000\072\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\073\000\000\000\074\000\000\000\070\000\000\000\076\000\000\000\101\000\000\000\101\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\104\000\000\000\106\000\000\000\015\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\042\000\000\000\013\000\000\000\163\145\141\162\143\150\160\162\152\163\000\000\000\000\000\042\000\000\000\006\000\000\000\143\157\165\156\164\000\001\000\000\000\042\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\031\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\031\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\031\000\000\000\002\000\000\000\137\000\005\000\000\000\027\000\000\000\004\000\000\000\163\154\156\000\005\000\000\000\027\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\017\000\000\000\027\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\017\000\000\000\027\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\017\000\000\000\027\000\000\000\002\000\000\000\137\000\020\000\000\000\025\000\000\000\004\000\000\000\160\162\152\000\020\000\000\000\025\000\000\000\000\000\000\000\000\000\000\000\115\000\000\000\123\000\000\000\000\001\000\011\022\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\301\200\000\000\134\200\200\001\205\300\000\000\300\000\200\000\234\000\001\001\026\000\001\200\305\001\001\000\306\101\301\003\000\002\000\003\334\201\000\001\111\300\201\002\241\200\000\000\026\000\376\177\136\000\000\001\036\000\200\000\006\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\010\000\000\000\145\170\164\162\141\143\164\000\004\005\000\000\000\156\141\155\145\000\004\006\000\000\000\160\141\151\162\163\000\004\006\000\000\000\137\115\101\113\105\000\004\004\000\000\000\145\163\143\000\000\000\000\000\022\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\117\000\000\000\120\000\000\000\122\000\000\000\123\000\000\000\007\000\000\000\004\000\000\000\164\142\154\000\000\000\000\000\021\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\021\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\010\000\000\000\020\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\010\000\000\000\020\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\010\000\000\000\020\000\000\000\002\000\000\000\153\000\011\000\000\000\016\000\000\000\002\000\000\000\166\000\011\000\000\000\016\000\000\000\000\000\000\000\000\000\000\000\151\000\000\000\151\000\000\000\000\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\302\000\000\000\135\000\200\001\136\000\000\000\036\000\200\000\002\000\000\000\004\006\000\000\000\137\115\101\113\105\000\004\020\000\000\000\147\145\164\155\141\153\145\146\151\154\145\156\141\155\145\000\000\000\000\000\007\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\001\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\006\000\000\000\000\000\000\000\000\000\000\000\155\000\000\000\155\000\000\000\000\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\302\000\200\000\135\000\200\001\136\000\000\000\036\000\200\000\002\000\000\000\004\006\000\000\000\137\115\101\113\105\000\004\020\000\000\000\147\145\164\155\141\153\145\146\151\154\145\156\141\155\145\000\000\000\000\000\007\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\001\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\006\000\000\000\000\000\000\000\073\000\000\000\007\000\000\000\007\000\000\000\016\000\000\000\031\000\000\000\016\000\000\000\041\000\000\000\053\000\000\000\041\000\000\000\065\000\000\000\106\000\000\000\065\000\000\000\115\000\000\000\123\000\000\000\115\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\134\000\000\000\135\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\137\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\143\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\144\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\146\000\000\000\150\000\000\000\150\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\151\000\000\000\152\000\000\000\152\000\000\000\154\000\000\000\154\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\156\000\000\000\156\000\000\000\132\000\000\000\157\000\000\000\000\000\000\000\000\000\000\000",
- "\033\114\165\141\121\000\001\004\004\004\010\000\042\000\000\000\100\163\162\143\057\141\143\164\151\157\156\163\057\166\163\164\165\144\151\157\057\137\166\163\164\165\144\151\157\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\024\365\000\000\000\012\000\000\000\007\000\000\000\005\000\000\000\112\000\000\005\201\200\000\000\301\300\000\000\001\001\001\000\101\101\001\000\201\201\001\000\301\301\001\000\001\002\002\000\101\102\002\000\201\202\002\000\301\302\002\000\142\100\000\005\011\100\200\200\005\000\000\000\112\000\200\006\201\200\000\000\301\300\000\000\001\001\001\000\101\101\001\000\201\201\001\000\301\301\001\000\001\002\002\000\101\102\002\000\201\202\002\000\301\102\003\000\001\303\002\000\101\203\003\000\201\303\003\000\142\100\200\006\011\100\000\206\005\000\000\000\112\000\200\010\201\300\001\000\301\300\000\000\001\101\003\000\101\201\002\000\201\101\001\000\301\201\000\000\001\102\004\000\101\102\002\000\201\002\002\000\301\002\001\000\001\203\004\000\101\303\004\000\201\003\005\000\301\103\005\000\001\204\005\000\101\304\005\000\201\304\002\000\301\204\001\000\142\100\000\011\011\100\000\210\005\000\000\000\105\000\000\000\106\000\304\000\011\100\000\214\005\000\000\000\144\000\000\000\011\100\200\214\005\000\000\000\144\100\000\000\011\100\000\215\005\000\000\000\144\200\000\000\011\100\200\215\005\000\000\000\144\300\000\000\011\100\000\216\044\000\001\000\144\100\001\000\205\000\000\000\344\200\001\000\000\000\000\000\000\000\200\000\211\300\200\216\205\000\000\000\344\300\001\000\211\300\000\217\205\000\000\000\344\000\002\000\211\300\200\217\205\000\000\000\344\100\002\000\211\300\000\220\205\000\000\000\344\200\002\000\211\300\200\220\205\000\000\000\344\300\002\000\211\300\000\221\205\000\000\000\344\000\003\000\211\300\200\221\205\000\011\000\312\000\002\000\311\100\300\222\311\300\111\223\311\100\112\224\012\001\000\002\101\301\012\000\201\001\013\000\301\101\013\000\001\202\013\000\042\101\000\002\311\000\001\225\012\001\000\001\101\001\014\000\201\101\014\000\042\101\000\001\311\000\201\227\012\001\200\000\112\001\000\001\201\301\014\000\305\001\015\000\306\101\315\003\142\101\000\001\042\101\200\000\311\000\001\231\012\001\200\000\112\001\000\001\201\301\015\000\305\001\015\000\306\001\316\003\142\101\000\001\042\101\200\000\311\000\001\233\005\001\000\000\006\101\106\002\311\000\201\214\234\100\000\001\205\000\011\000\312\000\002\000\311\000\303\222\311\100\116\223\311\200\116\224\012\001\000\002\101\301\012\000\201\001\013\000\301\101\013\000\001\202\013\000\042\101\000\002\311\000\001\225\012\001\000\001\101\001\014\000\201\101\014\000\042\101\000\001\311\000\201\227\012\001\200\000\112\001\000\001\201\301\014\000\305\001\015\000\306\301\316\003\142\101\000\001\042\101\200\000\311\000\001\231\012\001\200\000\112\001\000\001\201\301\015\000\305\001\015\000\306\001\316\003\142\101\000\001\042\101\200\000\311\000\001\233\005\001\000\000\006\101\106\002\311\000\201\214\234\100\000\001\205\000\011\000\312\000\002\000\311\000\304\222\311\000\117\223\311\100\117\224\012\001\000\002\101\301\012\000\201\001\013\000\301\101\013\000\001\202\013\000\042\101\000\002\311\000\001\225\012\001\000\001\101\001\014\000\201\101\014\000\042\101\000\001\311\000\201\227\012\001\200\000\112\001\000\001\201\301\014\000\305\001\015\000\306\201\317\003\142\101\000\001\042\101\200\000\311\000\001\231\012\001\200\000\112\001\000\001\201\301\015\000\305\001\015\000\306\001\316\003\142\101\000\001\042\101\200\000\311\000\001\233\005\001\000\000\006\101\106\002\311\000\201\214\234\100\000\001\205\000\011\000\312\000\002\000\311\000\306\222\311\300\117\223\311\000\120\224\012\001\000\002\101\301\012\000\201\001\013\000\301\101\013\000\001\202\013\000\042\101\000\002\311\000\001\225\012\001\000\001\101\001\014\000\201\101\014\000\042\101\000\001\311\000\201\227\012\001\200\000\112\001\000\001\201\301\014\000\305\001\015\000\306\201\317\003\142\101\000\001\042\101\200\000\311\000\001\231\012\001\200\000\112\001\000\001\201\301\015\000\305\001\015\000\306\001\316\003\142\101\000\001\042\101\200\000\311\000\001\233\005\001\000\000\006\101\106\002\311\000\201\214\234\100\000\001\036\000\200\000\101\000\000\000\004\004\000\000\000\137\126\123\000\004\007\000\000\000\166\163\062\060\060\062\000\004\021\000\000\000\126\103\103\114\103\157\155\160\151\154\145\162\124\157\157\154\000\004\022\000\000\000\126\103\103\165\163\164\157\155\102\165\151\154\144\124\157\157\154\000\004\015\000\000\000\126\103\114\151\156\153\145\162\124\157\157\154\000\004\013\000\000\000\126\103\115\111\104\114\124\157\157\154\000\004\025\000\000\000\126\103\120\157\163\164\102\165\151\154\144\105\166\145\156\164\124\157\157\154\000\004\024\000\000\000\126\103\120\162\145\102\165\151\154\144\105\166\145\156\164\124\157\157\154\000\004\023\000\000\000\126\103\120\162\145\114\151\156\153\105\166\145\156\164\124\157\157\154\000\004\027\000\000\000\126\103\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\000\004\037\000\000\000\126\103\127\145\142\123\145\162\166\151\143\145\120\162\157\170\171\107\145\156\145\162\141\164\157\162\124\157\157\154\000\004\024\000\000\000\126\103\127\145\142\104\145\160\154\157\171\155\145\156\164\124\157\157\154\000\004\007\000\000\000\166\163\062\060\060\063\000\004\027\000\000\000\126\103\130\115\114\104\141\164\141\107\145\156\145\162\141\164\157\162\124\157\157\154\000\004\036\000\000\000\126\103\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\000\004\047\000\000\000\126\103\101\165\170\151\154\151\141\162\171\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\000\004\007\000\000\000\166\163\062\060\060\065\000\004\036\000\000\000\126\103\115\141\156\141\147\145\144\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\000\004\014\000\000\000\126\103\101\114\151\156\153\124\157\157\154\000\004\017\000\000\000\126\103\115\141\156\151\146\145\163\164\124\157\157\154\000\004\016\000\000\000\126\103\130\104\103\115\141\153\145\124\157\157\154\000\004\016\000\000\000\126\103\102\163\143\115\141\153\145\124\157\157\154\000\004\014\000\000\000\126\103\106\170\103\157\160\124\157\157\154\000\004\022\000\000\000\126\103\101\160\160\126\145\162\151\146\151\145\162\124\157\157\154\000\004\007\000\000\000\166\163\062\060\060\070\000\004\010\000\000\000\157\156\143\154\145\141\156\000\004\005\000\000\000\141\162\143\150\000\004\005\000\000\000\142\157\157\154\000\004\010\000\000\000\143\146\147\164\171\160\145\000\004\006\000\000\000\146\151\154\145\163\000\004\016\000\000\000\151\155\160\157\162\164\154\151\142\146\151\154\145\000\004\015\000\000\000\157\160\164\151\155\151\172\141\164\151\157\156\000\004\014\000\000\000\160\162\157\152\145\143\164\146\151\154\145\000\004\010\000\000\000\162\165\156\164\151\155\145\000\004\010\000\000\000\163\171\155\142\157\154\163\000\004\005\000\000\000\164\157\157\154\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\023\000\000\000\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\062\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\035\000\000\000\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\062\000\004\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\005\000\000\000\056\163\154\156\000\004\013\000\000\000\137\124\105\115\120\114\101\124\105\123\000\004\020\000\000\000\166\163\062\060\060\062\137\163\157\154\165\164\151\157\156\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\010\000\000\000\056\166\143\160\162\157\152\000\004\016\000\000\000\166\163\062\060\060\170\137\166\143\160\162\157\152\000\004\023\000\000\000\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\063\000\004\035\000\000\000\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\063\000\004\020\000\000\000\166\163\062\060\060\063\137\163\157\154\165\164\151\157\156\000\004\023\000\000\000\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\065\000\004\035\000\000\000\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\065\000\004\020\000\000\000\166\163\062\060\060\065\137\163\157\154\165\164\151\157\156\000\004\023\000\000\000\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\070\000\004\035\000\000\000\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\070\000\015\000\000\000\000\000\000\000\107\000\000\000\136\000\000\000\000\003\000\020\134\000\000\000\305\000\000\000\000\001\000\000\334\000\001\001\026\300\002\200\005\102\000\000\006\202\100\004\100\002\200\003\201\302\000\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\002\001\000\125\202\202\004\034\102\000\001\341\200\000\000\026\100\374\177\305\000\000\000\000\001\200\000\334\000\001\001\026\200\007\200\005\102\000\000\006\202\100\004\100\002\200\003\201\102\001\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\202\001\000\125\202\202\004\034\102\000\001\005\102\000\000\006\302\101\004\100\002\200\003\201\002\002\000\125\202\202\004\200\002\200\003\301\102\002\000\225\302\002\005\034\202\200\001\105\002\000\000\200\002\000\004\134\002\001\001\026\300\000\200\205\103\000\000\206\203\100\007\300\003\200\006\234\103\000\001\141\202\000\000\026\100\376\177\341\200\000\000\026\200\367\177\305\000\000\000\000\001\000\001\334\000\001\001\026\100\007\200\005\102\000\000\006\202\100\004\100\002\200\003\201\202\002\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\302\002\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\002\003\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\102\003\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\202\003\000\125\202\202\004\034\102\000\001\341\200\000\000\026\300\367\177\036\000\200\000\017\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\003\000\000\000\157\163\000\004\007\000\000\000\162\145\155\157\166\145\000\004\005\000\000\000\056\163\165\157\000\004\005\000\000\000\056\156\143\142\000\004\015\000\000\000\056\143\163\160\162\157\152\056\165\163\145\162\000\004\020\000\000\000\056\143\163\160\162\157\152\056\167\145\142\151\156\146\157\000\004\013\000\000\000\155\141\164\143\150\146\151\154\145\163\000\004\017\000\000\000\056\166\143\160\162\157\152\056\052\056\165\163\145\162\000\004\017\000\000\000\056\143\163\160\162\157\152\056\052\056\165\163\145\162\000\004\005\000\000\000\056\160\144\142\000\004\005\000\000\000\056\151\144\142\000\004\005\000\000\000\056\151\154\153\000\004\014\000\000\000\056\166\163\150\157\163\164\056\145\170\145\000\004\016\000\000\000\056\145\170\145\056\155\141\156\151\146\145\163\164\000\000\000\000\000\134\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\110\000\000\000\112\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\122\000\000\000\123\000\000\000\115\000\000\000\124\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\127\000\000\000\134\000\000\000\136\000\000\000\030\000\000\000\012\000\000\000\163\157\154\165\164\151\157\156\163\000\000\000\000\000\133\000\000\000\011\000\000\000\160\162\157\152\145\143\164\163\000\000\000\000\000\133\000\000\000\010\000\000\000\164\141\162\147\145\164\163\000\000\000\000\000\133\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\022\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\022\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\022\000\000\000\002\000\000\000\137\000\004\000\000\000\020\000\000\000\005\000\000\000\156\141\155\145\000\004\000\000\000\020\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\025\000\000\000\067\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\025\000\000\000\067\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\025\000\000\000\067\000\000\000\002\000\000\000\137\000\026\000\000\000\065\000\000\000\005\000\000\000\156\141\155\145\000\026\000\000\000\065\000\000\000\006\000\000\000\146\151\154\145\163\000\053\000\000\000\065\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\056\000\000\000\065\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\056\000\000\000\065\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\056\000\000\000\065\000\000\000\002\000\000\000\137\000\057\000\000\000\063\000\000\000\006\000\000\000\146\156\141\155\145\000\057\000\000\000\063\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\072\000\000\000\133\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\072\000\000\000\133\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\072\000\000\000\133\000\000\000\002\000\000\000\137\000\073\000\000\000\131\000\000\000\005\000\000\000\156\141\155\145\000\073\000\000\000\131\000\000\000\000\000\000\000\000\000\000\000\145\000\000\000\157\000\000\000\000\002\000\003\016\000\000\000\206\000\100\000\027\100\100\001\026\300\001\200\030\200\300\000\026\200\000\200\201\300\000\000\236\000\000\001\026\000\001\200\201\000\001\000\236\000\000\001\026\100\000\200\201\100\001\000\236\000\000\001\036\000\200\000\006\000\000\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\003\000\000\000\103\043\000\003\000\000\000\000\000\124\237\100\004\005\000\000\000\056\116\105\124\000\004\010\000\000\000\101\156\171\040\103\120\125\000\004\006\000\000\000\127\151\156\063\062\000\000\000\000\000\016\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\147\000\000\000\147\000\000\000\150\000\000\000\150\000\000\000\150\000\000\000\152\000\000\000\152\000\000\000\153\000\000\000\155\000\000\000\155\000\000\000\157\000\000\000\002\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\015\000\000\000\010\000\000\000\166\145\162\163\151\157\156\000\000\000\000\000\015\000\000\000\000\000\000\000\000\000\000\000\167\000\000\000\175\000\000\000\000\001\000\005\021\000\000\000\105\000\000\000\030\100\300\000\026\200\001\200\105\200\000\000\200\000\000\000\301\300\000\000\001\001\001\000\135\000\000\002\136\000\000\000\026\100\001\200\105\200\000\000\200\000\000\000\301\100\001\000\001\201\001\000\135\000\000\002\136\000\000\000\036\000\200\000\007\000\000\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\007\000\000\000\166\163\062\060\060\065\000\004\004\000\000\000\151\151\146\000\004\005\000\000\000\124\122\125\105\000\004\006\000\000\000\106\101\114\123\105\000\004\005\000\000\000\164\162\165\145\000\004\006\000\000\000\146\141\154\163\145\000\000\000\000\000\021\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\175\000\000\000\001\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\205\000\000\000\215\000\000\000\000\001\000\002\017\000\000\000\106\000\100\000\027\100\300\000\026\200\000\200\101\200\000\000\136\000\000\001\026\300\001\200\106\000\100\000\027\300\300\000\026\200\000\200\101\000\001\000\136\000\000\001\026\100\000\200\101\100\001\000\136\000\000\001\036\000\200\000\006\000\000\000\004\005\000\000\000\153\151\156\144\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\003\000\000\000\000\000\000\000\100\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\003\000\000\000\000\000\000\020\100\003\000\000\000\000\000\000\360\077\000\000\000\000\017\000\000\000\206\000\000\000\206\000\000\000\206\000\000\000\207\000\000\000\207\000\000\000\207\000\000\000\210\000\000\000\210\000\000\000\210\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\213\000\000\000\213\000\000\000\215\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\016\000\000\000\000\000\000\000\000\000\000\000\225\000\000\000\227\000\000\000\000\002\000\006\010\000\000\000\205\000\000\000\206\100\100\001\300\000\000\000\000\001\200\000\101\201\000\000\325\100\201\001\234\100\000\001\036\000\200\000\003\000\000\000\004\003\000\000\000\151\157\000\004\006\000\000\000\167\162\151\164\145\000\004\003\000\000\000\015\012\000\000\000\000\000\010\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\227\000\000\000\002\000\000\000\007\000\000\000\151\156\144\145\156\164\000\000\000\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\007\000\000\000\000\000\000\000\000\000\000\000\231\000\000\000\233\000\000\000\000\003\000\012\013\000\000\000\305\000\000\000\306\100\300\001\000\001\000\000\101\201\000\000\200\001\200\000\301\301\000\000\000\002\000\001\101\002\001\000\025\101\002\002\334\100\000\001\036\000\200\000\005\000\000\000\004\003\000\000\000\151\157\000\004\006\000\000\000\167\162\151\164\145\000\004\002\000\000\000\011\000\004\003\000\000\000\075\042\000\004\004\000\000\000\042\015\012\000\000\000\000\000\013\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\233\000\000\000\003\000\000\000\007\000\000\000\151\156\144\145\156\164\000\000\000\000\000\012\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\012\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\012\000\000\000\000\000\000\000\000\000\000\000\235\000\000\000\273\000\000\000\002\004\000\017\154\000\000\000\005\001\000\000\006\101\100\002\101\201\000\000\214\301\300\001\034\201\200\001\027\000\101\001\026\100\005\200\104\001\000\000\200\001\000\002\301\101\001\000\134\101\200\001\104\001\200\000\200\001\000\002\301\201\001\000\005\302\001\000\006\002\102\004\100\002\200\000\034\002\000\001\134\101\000\000\104\001\200\000\200\001\000\002\301\101\002\000\001\202\002\000\134\101\000\002\104\001\000\000\200\001\000\002\301\301\002\000\134\101\200\001\026\100\023\200\027\000\103\001\026\000\001\200\104\001\000\000\200\001\000\002\301\101\003\000\134\101\200\001\026\200\021\200\104\001\000\000\200\001\000\002\301\201\003\000\134\101\200\001\104\001\200\000\200\001\000\002\301\301\003\000\005\302\001\000\006\002\104\004\100\002\200\000\201\102\004\000\034\002\200\001\134\101\000\000\104\001\000\000\200\001\000\002\301\301\002\000\134\101\200\001\106\201\104\000\106\301\304\002\132\101\000\000\026\100\013\200\106\001\105\000\027\100\200\002\026\200\012\200\105\101\005\000\206\201\105\000\134\001\001\001\026\000\011\200\204\002\000\000\300\002\000\002\001\303\005\000\234\102\200\001\204\002\200\000\300\002\000\002\001\003\006\000\100\003\200\004\201\103\006\000\125\203\203\006\234\102\000\002\204\002\000\000\300\002\000\002\001\203\006\000\234\102\200\001\204\002\000\000\300\002\000\002\001\303\006\000\234\102\200\001\204\002\200\000\300\002\000\002\001\003\007\000\101\103\007\000\234\102\000\002\204\002\200\000\300\002\000\002\001\203\007\000\101\303\007\000\234\102\000\002\204\002\000\000\300\002\000\002\001\003\010\000\234\102\200\001\204\002\000\000\300\002\000\002\001\103\010\000\234\102\200\001\141\201\000\000\026\000\366\177\104\001\000\000\200\001\000\002\301\201\010\000\134\101\200\001\036\000\200\000\043\000\000\000\004\007\000\000\000\163\164\162\151\156\147\000\004\004\000\000\000\162\145\160\000\004\002\000\000\000\011\000\003\000\000\000\000\000\000\000\100\004\013\000\000\000\107\162\157\165\160\123\164\141\162\164\000\004\010\000\000\000\074\106\151\154\164\145\162\000\004\005\000\000\000\116\141\155\145\000\004\005\000\000\000\160\141\164\150\000\004\010\000\000\000\147\145\164\156\141\155\145\000\004\007\000\000\000\106\151\154\164\145\162\000\004\001\000\000\000\000\004\003\000\000\000\011\076\000\004\011\000\000\000\107\162\157\165\160\105\156\144\000\004\012\000\000\000\074\057\106\151\154\164\145\162\076\000\004\006\000\000\000\074\106\151\154\145\000\004\015\000\000\000\122\145\154\141\164\151\166\145\120\141\164\150\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\002\000\000\000\134\000\004\006\000\000\000\146\154\141\147\163\000\004\006\000\000\000\116\157\120\103\110\000\004\012\000\000\000\160\143\150\163\157\165\162\143\145\000\004\007\000\000\000\151\160\141\151\162\163\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\024\000\000\000\011\074\106\151\154\145\103\157\156\146\151\147\165\162\141\164\151\157\156\000\004\006\000\000\000\011\116\141\155\145\000\004\007\000\000\000\174\127\151\156\063\062\000\004\004\000\000\000\011\011\076\000\004\010\000\000\000\011\011\074\124\157\157\154\000\004\007\000\000\000\011\011\116\141\155\145\000\004\021\000\000\000\126\103\103\114\103\157\155\160\151\154\145\162\124\157\157\154\000\004\027\000\000\000\011\011\125\163\145\120\162\145\143\157\155\160\151\154\145\144\110\145\141\144\145\162\000\004\002\000\000\000\061\000\004\005\000\000\000\011\011\057\076\000\004\026\000\000\000\011\074\057\106\151\154\145\103\157\156\146\151\147\165\162\141\164\151\157\156\076\000\004\010\000\000\000\074\057\106\151\154\145\076\000\000\000\000\000\154\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\240\000\000\000\240\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\246\000\000\000\246\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\254\000\000\000\254\000\000\000\254\000\000\000\254\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\257\000\000\000\257\000\000\000\257\000\000\000\257\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\261\000\000\000\261\000\000\000\261\000\000\000\261\000\000\000\262\000\000\000\262\000\000\000\262\000\000\000\262\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\265\000\000\000\265\000\000\000\265\000\000\000\265\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\256\000\000\000\266\000\000\000\271\000\000\000\271\000\000\000\271\000\000\000\271\000\000\000\273\000\000\000\012\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\153\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\153\000\000\000\006\000\000\000\163\164\141\164\145\000\000\000\000\000\153\000\000\000\012\000\000\000\156\145\163\164\154\145\166\145\154\000\000\000\000\000\153\000\000\000\007\000\000\000\151\156\144\145\156\164\000\005\000\000\000\153\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\077\000\000\000\147\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\077\000\000\000\147\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\077\000\000\000\147\000\000\000\002\000\000\000\137\000\100\000\000\000\145\000\000\000\010\000\000\000\143\146\147\156\141\155\145\000\100\000\000\000\145\000\000\000\002\000\000\000\007\000\000\000\157\165\164\160\165\164\000\007\000\000\000\141\164\164\162\151\142\000\000\000\000\000\304\000\000\000\314\000\000\000\000\001\000\007\032\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\301\200\000\000\001\301\000\000\134\200\000\002\206\000\101\000\206\100\101\001\232\000\000\000\026\100\003\200\205\000\000\000\206\200\101\001\300\000\000\000\234\200\000\001\305\300\001\000\306\000\302\001\000\001\000\001\105\301\001\000\106\101\302\002\200\001\200\000\134\001\000\001\335\000\000\000\336\000\000\000\026\000\000\200\136\000\000\001\036\000\200\000\012\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\016\000\000\000\147\145\164\164\141\162\147\145\164\146\151\154\145\000\004\007\000\000\000\151\155\160\154\151\142\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\006\000\000\000\146\154\141\147\163\000\004\014\000\000\000\116\157\111\155\160\157\162\164\114\151\142\000\004\012\000\000\000\147\145\164\157\142\152\144\151\162\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\010\000\000\000\147\145\164\156\141\155\145\000\000\000\000\000\032\000\000\000\305\000\000\000\305\000\000\000\305\000\000\000\305\000\000\000\305\000\000\000\305\000\000\000\306\000\000\000\306\000\000\000\306\000\000\000\306\000\000\000\307\000\000\000\307\000\000\000\307\000\000\000\307\000\000\000\310\000\000\000\310\000\000\000\310\000\000\000\310\000\000\000\310\000\000\000\310\000\000\000\310\000\000\000\310\000\000\000\310\000\000\000\310\000\000\000\312\000\000\000\314\000\000\000\003\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\031\000\000\000\006\000\000\000\146\156\141\155\145\000\006\000\000\000\031\000\000\000\007\000\000\000\157\142\152\144\151\162\000\016\000\000\000\027\000\000\000\000\000\000\000\000\000\000\000\324\000\000\000\340\000\000\000\000\001\000\010\024\000\000\000\101\000\000\000\205\100\000\000\306\200\100\000\234\000\001\001\026\200\002\200\027\300\100\003\026\100\000\200\101\000\001\000\026\200\001\200\027\100\101\003\026\100\000\200\101\200\001\000\026\200\000\200\027\300\101\003\026\000\000\200\101\000\002\000\241\200\000\000\026\200\374\177\136\000\000\001\036\000\200\000\011\000\000\000\003\000\000\000\000\000\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\146\154\141\147\163\000\004\011\000\000\000\117\160\164\151\155\151\172\145\000\003\000\000\000\000\000\000\010\100\004\015\000\000\000\117\160\164\151\155\151\172\145\123\151\172\145\000\003\000\000\000\000\000\000\360\077\004\016\000\000\000\117\160\164\151\155\151\172\145\123\160\145\145\144\000\003\000\000\000\000\000\000\000\100\000\000\000\000\024\000\000\000\325\000\000\000\326\000\000\000\326\000\000\000\326\000\000\000\326\000\000\000\327\000\000\000\327\000\000\000\330\000\000\000\330\000\000\000\331\000\000\000\331\000\000\000\332\000\000\000\332\000\000\000\333\000\000\000\333\000\000\000\334\000\000\000\326\000\000\000\335\000\000\000\337\000\000\000\340\000\000\000\007\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\023\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\023\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\022\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\022\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\022\000\000\000\002\000\000\000\137\000\005\000\000\000\020\000\000\000\006\000\000\000\166\141\154\165\145\000\005\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\350\000\000\000\362\000\000\000\000\001\000\005\020\000\000\000\206\000\100\000\027\100\100\001\026\100\000\200\101\200\000\000\026\000\000\200\101\300\000\000\205\000\001\000\206\100\101\001\306\200\101\000\006\301\101\000\234\200\200\001\300\000\000\001\000\001\200\000\325\000\201\001\336\000\000\001\036\000\200\000\010\000\000\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\003\000\000\000\103\043\000\004\010\000\000\000\056\143\163\160\162\157\152\000\004\010\000\000\000\056\166\143\160\162\157\152\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\005\000\000\000\156\141\155\145\000\000\000\000\000\020\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\353\000\000\000\353\000\000\000\355\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\360\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\361\000\000\000\362\000\000\000\003\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\017\000\000\000\012\000\000\000\145\170\164\145\156\163\151\157\156\000\000\000\000\000\017\000\000\000\006\000\000\000\146\156\141\155\145\000\013\000\000\000\017\000\000\000\000\000\000\000\000\000\000\000\372\000\000\000\001\001\000\000\000\001\000\006\032\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\134\200\000\001\127\200\300\000\026\000\000\200\102\100\000\000\102\000\200\000\206\300\100\000\206\000\101\001\232\000\000\000\026\200\001\200\205\100\001\000\300\000\200\000\001\201\001\000\101\201\000\000\235\000\000\002\236\000\000\000\026\100\001\200\205\100\001\000\300\000\200\000\001\301\001\000\101\001\002\000\235\000\000\002\236\000\000\000\036\000\200\000\011\000\000\000\004\004\000\000\000\137\126\123\000\004\015\000\000\000\157\160\164\151\155\151\172\141\164\151\157\156\000\003\000\000\000\000\000\000\000\000\004\006\000\000\000\146\154\141\147\163\000\004\016\000\000\000\123\164\141\164\151\143\122\165\156\164\151\155\145\000\004\004\000\000\000\151\151\146\000\003\000\000\000\000\000\000\360\077\003\000\000\000\000\000\000\010\100\003\000\000\000\000\000\000\000\100\000\000\000\000\032\000\000\000\373\000\000\000\373\000\000\000\373\000\000\000\373\000\000\000\373\000\000\000\373\000\000\000\373\000\000\000\373\000\000\000\374\000\000\000\374\000\000\000\374\000\000\000\374\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\377\000\000\000\377\000\000\000\377\000\000\000\377\000\000\000\377\000\000\000\377\000\000\000\001\001\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\031\000\000\000\013\000\000\000\144\145\142\165\147\142\165\151\154\144\000\010\000\000\000\031\000\000\000\000\000\000\000\000\000\000\000\011\001\000\000\024\001\000\000\000\001\000\003\033\000\000\000\106\000\100\000\106\100\300\000\132\100\000\000\026\200\000\200\101\200\000\000\136\000\000\001\026\200\004\200\106\000\100\000\106\300\300\000\132\100\000\000\026\100\002\200\105\000\001\000\106\100\301\000\200\000\000\000\134\200\000\001\027\200\300\000\026\300\000\200\106\000\100\000\106\200\301\000\132\000\000\000\026\200\000\200\101\300\001\000\136\000\000\001\026\100\000\200\101\000\002\000\136\000\000\001\036\000\200\000\011\000\000\000\004\006\000\000\000\146\154\141\147\163\000\004\010\000\000\000\123\171\155\142\157\154\163\000\003\000\000\000\000\000\000\000\000\004\022\000\000\000\116\157\105\144\151\164\101\156\144\103\157\156\164\151\156\165\145\000\004\004\000\000\000\137\126\123\000\004\015\000\000\000\157\160\164\151\155\151\172\141\164\151\157\156\000\004\010\000\000\000\115\141\156\141\147\145\144\000\003\000\000\000\000\000\000\010\100\003\000\000\000\000\000\000\020\100\000\000\000\000\033\000\000\000\012\001\000\000\012\001\000\000\012\001\000\000\012\001\000\000\013\001\000\000\013\001\000\000\013\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\016\001\000\000\017\001\000\000\017\001\000\000\017\001\000\000\021\001\000\000\021\001\000\000\024\001\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\032\000\000\000\000\000\000\000\000\000\000\000\034\001\000\000\042\001\000\000\000\001\000\002\011\000\000\000\106\000\100\000\027\100\300\000\026\200\000\200\101\200\000\000\136\000\000\001\026\100\000\200\101\300\000\000\136\000\000\001\036\000\200\000\004\000\000\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\003\000\000\000\103\043\000\004\045\000\000\000\106\101\105\060\064\105\103\060\055\063\060\061\106\055\061\061\104\063\055\102\106\064\102\055\060\060\103\060\064\106\067\071\105\106\102\103\000\004\045\000\000\000\070\102\103\071\103\105\102\070\055\070\102\064\101\055\061\061\104\060\055\070\104\061\061\055\060\060\101\060\103\071\061\102\103\071\064\062\000\000\000\000\000\011\000\000\000\035\001\000\000\035\001\000\000\035\001\000\000\036\001\000\000\036\001\000\000\036\001\000\000\040\001\000\000\040\001\000\000\042\001\000\000\001\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\010\000\000\000\000\000\000\000\365\000\000\000\007\000\000\000\007\000\000\000\016\000\000\000\016\000\000\000\017\000\000\000\020\000\000\000\021\000\000\000\022\000\000\000\023\000\000\000\024\000\000\000\025\000\000\000\026\000\000\000\027\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\033\000\000\000\033\000\000\000\034\000\000\000\035\000\000\000\036\000\000\000\037\000\000\000\040\000\000\000\041\000\000\000\042\000\000\000\043\000\000\000\044\000\000\000\045\000\000\000\046\000\000\000\047\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\055\000\000\000\056\000\000\000\057\000\000\000\060\000\000\000\061\000\000\000\062\000\000\000\063\000\000\000\064\000\000\000\065\000\000\000\066\000\000\000\067\000\000\000\070\000\000\000\071\000\000\000\072\000\000\000\073\000\000\000\074\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\107\000\000\000\136\000\000\000\107\000\000\000\145\000\000\000\157\000\000\000\145\000\000\000\167\000\000\000\175\000\000\000\167\000\000\000\205\000\000\000\215\000\000\000\205\000\000\000\227\000\000\000\233\000\000\000\235\000\000\000\273\000\000\000\273\000\000\000\273\000\000\000\235\000\000\000\304\000\000\000\314\000\000\000\304\000\000\000\324\000\000\000\340\000\000\000\324\000\000\000\350\000\000\000\362\000\000\000\350\000\000\000\372\000\000\000\001\001\000\000\372\000\000\000\011\001\000\000\024\001\000\000\011\001\000\000\034\001\000\000\042\001\000\000\034\001\000\000\053\001\000\000\053\001\000\000\054\001\000\000\055\001\000\000\056\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\062\001\000\000\064\001\000\000\064\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\066\001\000\000\066\001\000\000\070\001\000\000\070\001\000\000\071\001\000\000\071\001\000\000\071\001\000\000\071\001\000\000\072\001\000\000\072\001\000\000\074\001\000\000\074\001\000\000\074\001\000\000\053\001\000\000\077\001\000\000\077\001\000\000\100\001\000\000\101\001\000\000\102\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\104\001\000\000\106\001\000\000\106\001\000\000\106\001\000\000\106\001\000\000\106\001\000\000\110\001\000\000\110\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\112\001\000\000\112\001\000\000\114\001\000\000\114\001\000\000\115\001\000\000\115\001\000\000\115\001\000\000\115\001\000\000\116\001\000\000\116\001\000\000\120\001\000\000\120\001\000\000\120\001\000\000\077\001\000\000\123\001\000\000\123\001\000\000\124\001\000\000\125\001\000\000\126\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\130\001\000\000\132\001\000\000\132\001\000\000\132\001\000\000\132\001\000\000\132\001\000\000\134\001\000\000\134\001\000\000\135\001\000\000\135\001\000\000\135\001\000\000\135\001\000\000\136\001\000\000\136\001\000\000\140\001\000\000\140\001\000\000\141\001\000\000\141\001\000\000\141\001\000\000\141\001\000\000\142\001\000\000\142\001\000\000\144\001\000\000\144\001\000\000\144\001\000\000\123\001\000\000\147\001\000\000\147\001\000\000\150\001\000\000\151\001\000\000\152\001\000\000\154\001\000\000\154\001\000\000\154\001\000\000\154\001\000\000\154\001\000\000\154\001\000\000\154\001\000\000\156\001\000\000\156\001\000\000\156\001\000\000\156\001\000\000\156\001\000\000\160\001\000\000\160\001\000\000\161\001\000\000\161\001\000\000\161\001\000\000\161\001\000\000\162\001\000\000\162\001\000\000\164\001\000\000\164\001\000\000\165\001\000\000\165\001\000\000\165\001\000\000\165\001\000\000\166\001\000\000\166\001\000\000\170\001\000\000\170\001\000\000\170\001\000\000\147\001\000\000\171\001\000\000\002\000\000\000\007\000\000\000\157\165\164\160\165\164\000\110\000\000\000\364\000\000\000\007\000\000\000\141\164\164\162\151\142\000\111\000\000\000\364\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\044\000\000\000\100\163\162\143\057\141\143\164\151\157\156\163\057\143\157\144\145\154\151\164\145\057\137\143\157\144\145\154\151\164\145\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\007\064\000\000\000\012\000\000\000\007\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\300\000\000\112\200\002\000\111\100\101\202\111\300\101\203\111\100\102\204\111\300\102\205\212\000\000\002\301\100\003\000\001\201\003\000\101\301\003\000\201\001\004\000\242\100\000\002\111\200\000\206\212\000\000\001\301\200\004\000\001\301\004\000\242\100\000\001\111\200\200\210\212\100\000\000\312\000\200\000\001\201\005\000\342\100\200\000\211\300\200\212\111\200\000\212\212\000\200\000\312\000\000\001\001\001\006\000\105\101\006\000\106\201\306\002\342\100\000\001\242\100\200\000\111\200\200\213\212\000\200\000\312\000\000\001\001\001\007\000\105\101\006\000\106\101\307\002\342\100\000\001\242\100\200\000\111\200\200\215\244\200\000\000\111\200\000\217\034\100\000\001\036\000\200\000\037\000\000\000\004\012\000\000\000\137\103\117\104\105\114\111\124\105\000\004\005\000\000\000\153\151\156\144\000\004\006\000\000\000\146\151\154\145\163\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\011\000\000\000\143\157\144\145\154\151\164\145\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\011\000\000\000\103\157\144\145\114\151\164\145\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\030\000\000\000\103\157\144\145\114\151\164\145\040\050\145\170\160\145\162\151\155\145\156\164\141\154\051\000\004\014\000\000\000\164\141\162\147\145\164\163\164\171\154\145\000\004\006\000\000\000\154\151\156\165\170\000\004\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\014\000\000\000\166\141\154\151\144\137\164\157\157\154\163\000\004\003\000\000\000\143\143\000\004\004\000\000\000\147\143\143\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\013\000\000\000\056\167\157\162\153\163\160\141\143\145\000\004\013\000\000\000\137\124\105\115\120\114\101\124\105\123\000\004\023\000\000\000\143\157\144\145\154\151\164\145\137\167\157\162\153\163\160\141\143\145\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\011\000\000\000\056\160\162\157\152\145\143\164\000\004\021\000\000\000\143\157\144\145\154\151\164\145\137\160\162\157\152\145\143\164\000\004\010\000\000\000\157\156\143\154\145\141\156\000\003\000\000\000\000\000\000\000\016\000\000\000\026\000\000\000\000\001\000\002\021\000\000\000\127\000\100\000\026\100\000\200\027\100\100\000\026\200\000\200\101\200\000\000\136\000\000\001\026\000\002\200\027\300\100\000\026\200\000\200\101\000\001\000\136\000\000\001\026\300\000\200\027\100\101\000\026\100\000\200\101\200\001\000\136\000\000\001\036\000\200\000\007\000\000\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\013\000\000\000\105\170\145\143\165\164\141\142\154\145\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\017\000\000\000\123\164\141\164\151\143\040\114\151\142\162\141\162\171\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\020\000\000\000\104\171\156\141\155\151\143\040\114\151\142\162\141\162\171\000\000\000\000\000\021\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\020\000\000\000\020\000\000\000\020\000\000\000\021\000\000\000\021\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\023\000\000\000\023\000\000\000\024\000\000\000\024\000\000\000\026\000\000\000\001\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\036\000\000\000\050\000\000\000\000\004\000\012\045\000\000\000\005\001\000\000\006\101\100\002\101\201\000\000\214\301\300\001\034\201\200\001\027\000\101\001\026\300\002\200\105\101\001\000\106\201\301\002\200\001\000\002\301\301\001\000\005\002\002\000\006\102\102\004\100\002\200\000\034\202\000\001\101\202\002\000\225\101\002\003\134\101\000\001\026\000\004\200\027\300\102\001\026\200\001\200\105\101\001\000\106\201\301\002\200\001\000\002\301\001\003\000\225\301\001\003\134\101\000\001\026\300\001\200\105\101\001\000\106\201\301\002\200\001\000\002\301\101\003\000\000\002\200\000\101\202\003\000\225\101\002\003\134\101\000\001\036\000\200\000\017\000\000\000\004\007\000\000\000\163\164\162\151\156\147\000\004\004\000\000\000\162\145\160\000\004\003\000\000\000\040\040\000\003\000\000\000\000\000\000\360\077\004\013\000\000\000\107\162\157\165\160\123\164\141\162\164\000\004\003\000\000\000\151\157\000\004\006\000\000\000\167\162\151\164\145\000\004\031\000\000\000\074\126\151\162\164\165\141\154\104\151\162\145\143\164\157\162\171\040\116\141\155\145\075\042\000\004\005\000\000\000\160\141\164\150\000\004\010\000\000\000\147\145\164\156\141\155\145\000\004\004\000\000\000\042\076\012\000\004\011\000\000\000\107\162\157\165\160\105\156\144\000\004\025\000\000\000\074\057\126\151\162\164\165\141\154\104\151\162\145\143\164\157\162\171\076\012\000\004\015\000\000\000\074\106\151\154\145\040\116\141\155\145\075\042\000\004\005\000\000\000\042\057\076\012\000\000\000\000\000\045\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\037\000\000\000\041\000\000\000\041\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\042\000\000\000\043\000\000\000\043\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\044\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\050\000\000\000\005\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\044\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\044\000\000\000\006\000\000\000\163\164\141\164\145\000\000\000\000\000\044\000\000\000\012\000\000\000\156\145\163\164\154\145\166\145\154\000\000\000\000\000\044\000\000\000\007\000\000\000\151\156\144\145\156\164\000\005\000\000\000\044\000\000\000\000\000\000\000\000\000\000\000\105\000\000\000\117\000\000\000\000\003\000\013\053\000\000\000\305\000\000\000\000\001\000\000\334\000\001\001\026\300\002\200\005\102\000\000\006\202\100\004\100\002\200\003\201\302\000\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\002\001\000\125\202\202\004\034\102\000\001\341\200\000\000\026\100\374\177\305\000\000\000\000\001\200\000\334\000\001\001\026\100\004\200\005\102\000\000\006\202\100\004\100\002\200\003\201\102\001\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\202\001\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\302\001\000\125\202\202\004\034\102\000\001\341\200\000\000\026\300\372\177\036\000\200\000\010\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\003\000\000\000\157\163\000\004\007\000\000\000\162\145\155\157\166\145\000\004\010\000\000\000\137\167\163\160\056\155\153\000\004\006\000\000\000\056\164\141\147\163\000\004\004\000\000\000\056\155\153\000\004\006\000\000\000\056\154\151\163\164\000\004\005\000\000\000\056\157\165\164\000\000\000\000\000\053\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\106\000\000\000\107\000\000\000\107\000\000\000\107\000\000\000\107\000\000\000\107\000\000\000\107\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\106\000\000\000\110\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\113\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\112\000\000\000\115\000\000\000\117\000\000\000\015\000\000\000\012\000\000\000\163\157\154\165\164\151\157\156\163\000\000\000\000\000\052\000\000\000\011\000\000\000\160\162\157\152\145\143\164\163\000\000\000\000\000\052\000\000\000\010\000\000\000\164\141\162\147\145\164\163\000\000\000\000\000\052\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\022\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\022\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\022\000\000\000\002\000\000\000\137\000\004\000\000\000\020\000\000\000\005\000\000\000\156\141\155\145\000\004\000\000\000\020\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\025\000\000\000\052\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\025\000\000\000\052\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\025\000\000\000\052\000\000\000\002\000\000\000\137\000\026\000\000\000\050\000\000\000\005\000\000\000\156\141\155\145\000\026\000\000\000\050\000\000\000\000\000\000\000\064\000\000\000\007\000\000\000\007\000\000\000\016\000\000\000\026\000\000\000\016\000\000\000\036\000\000\000\050\000\000\000\036\000\000\000\057\000\000\000\057\000\000\000\060\000\000\000\061\000\000\000\062\000\000\000\063\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\065\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\067\000\000\000\071\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\072\000\000\000\073\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\077\000\000\000\077\000\000\000\101\000\000\000\101\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\102\000\000\000\103\000\000\000\103\000\000\000\117\000\000\000\117\000\000\000\057\000\000\000\120\000\000\000\000\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\034\000\000\000\100\163\162\143\057\141\143\164\151\157\156\163\057\155\141\153\145\057\137\155\141\153\145\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\010\103\000\000\000\012\000\000\000\007\000\000\000\005\000\000\000\144\000\000\000\011\100\200\200\005\000\000\000\144\100\000\000\011\100\000\201\005\000\000\000\144\200\000\000\011\100\200\201\005\000\001\000\112\100\002\000\111\200\301\202\111\000\302\203\111\200\302\204\111\000\303\205\212\000\000\002\301\200\003\000\001\301\003\000\101\001\004\000\201\101\004\000\242\100\000\002\111\200\200\206\212\000\200\001\301\300\004\000\001\001\005\000\101\101\005\000\242\100\200\001\111\200\000\211\212\200\000\000\312\000\200\000\001\001\006\000\342\100\200\000\211\300\200\213\312\000\200\001\001\201\006\000\101\301\006\000\201\001\007\000\342\100\200\001\211\300\200\214\111\200\000\213\212\000\200\000\312\000\000\001\044\301\000\000\105\201\007\000\106\301\307\002\342\100\000\001\242\100\200\000\111\200\200\216\212\000\000\001\312\000\200\001\044\001\001\000\105\201\007\000\106\101\310\002\244\101\001\000\342\100\200\001\012\001\200\001\144\201\001\000\205\201\007\000\206\201\110\003\344\301\001\000\042\101\200\001\242\100\000\001\111\200\000\220\034\100\000\001\036\000\200\000\043\000\000\000\004\006\000\000\000\137\115\101\113\105\000\004\004\000\000\000\145\163\143\000\004\020\000\000\000\147\145\164\155\141\153\145\146\151\154\145\156\141\155\145\000\004\011\000\000\000\147\145\164\156\141\155\145\163\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\006\000\000\000\147\155\141\153\145\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\011\000\000\000\107\116\125\040\115\141\153\145\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\053\000\000\000\107\116\125\040\155\141\153\145\146\151\154\145\163\040\146\157\162\040\120\117\123\111\130\054\040\115\151\156\107\127\054\040\141\156\144\040\103\171\147\167\151\156\000\004\014\000\000\000\164\141\162\147\145\164\163\164\171\154\145\000\004\006\000\000\000\154\151\156\165\170\000\004\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\003\000\000\000\103\043\000\004\014\000\000\000\166\141\154\151\144\137\164\157\157\154\163\000\004\003\000\000\000\143\143\000\004\004\000\000\000\147\143\143\000\004\007\000\000\000\144\157\164\156\145\164\000\004\005\000\000\000\155\157\156\157\000\004\003\000\000\000\155\163\000\004\005\000\000\000\160\156\145\164\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\013\000\000\000\137\124\105\115\120\114\101\124\105\123\000\004\016\000\000\000\155\141\153\145\137\163\157\154\165\164\151\157\156\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\011\000\000\000\155\141\153\145\137\143\160\160\000\004\014\000\000\000\155\141\153\145\137\143\163\150\141\162\160\000\010\000\000\000\000\000\000\000\016\000\000\000\031\000\000\000\000\001\000\013\034\000\000\000\105\000\000\000\200\000\000\000\134\200\000\001\027\100\300\000\026\000\004\200\112\000\000\000\205\200\000\000\300\000\000\000\234\000\001\001\026\300\001\200\305\101\000\000\306\301\300\003\000\002\200\000\105\002\001\000\106\102\301\004\200\002\000\003\134\002\000\001\334\101\000\000\241\200\000\000\026\100\375\177\136\000\000\001\026\000\001\200\113\200\101\000\301\300\001\000\001\001\002\000\134\200\000\002\136\000\000\001\036\000\200\000\011\000\000\000\004\005\000\000\000\164\171\160\145\000\004\006\000\000\000\164\141\142\154\145\000\004\007\000\000\000\151\160\141\151\162\163\000\004\007\000\000\000\151\156\163\145\162\164\000\004\006\000\000\000\137\115\101\113\105\000\004\004\000\000\000\145\163\143\000\004\005\000\000\000\147\163\165\142\000\004\002\000\000\000\040\000\004\003\000\000\000\134\040\000\000\000\000\000\034\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\017\000\000\000\020\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\021\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\021\000\000\000\022\000\000\000\024\000\000\000\024\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\026\000\000\000\027\000\000\000\031\000\000\000\010\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\033\000\000\000\007\000\000\000\162\145\163\165\154\164\000\006\000\000\000\025\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\011\000\000\000\024\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\011\000\000\000\024\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\011\000\000\000\024\000\000\000\002\000\000\000\137\000\012\000\000\000\022\000\000\000\002\000\000\000\166\000\012\000\000\000\022\000\000\000\007\000\000\000\162\145\163\165\154\164\000\032\000\000\000\033\000\000\000\000\000\000\000\000\000\000\000\043\000\000\000\064\000\000\000\000\002\000\017\043\000\000\000\201\000\000\000\305\100\000\000\005\201\000\000\334\000\001\001\026\100\004\200\006\302\300\003\106\302\100\000\027\100\002\004\026\000\000\200\214\000\101\001\132\000\000\000\026\200\002\200\005\102\000\000\106\102\301\003\034\002\001\001\026\000\001\200\106\303\100\006\206\303\100\000\027\200\203\006\026\000\000\200\214\000\101\001\041\202\000\000\026\000\376\177\341\200\000\000\026\300\372\177\027\000\101\001\026\200\000\200\301\200\001\000\336\000\000\001\026\300\000\200\306\300\101\000\001\001\002\000\325\000\201\001\336\000\000\001\036\000\200\000\011\000\000\000\003\000\000\000\000\000\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\137\123\117\114\125\124\111\117\116\123\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\003\000\000\000\000\000\000\360\077\004\011\000\000\000\160\162\157\152\145\143\164\163\000\004\011\000\000\000\115\141\153\145\146\151\154\145\000\004\005\000\000\000\156\141\155\145\000\004\006\000\000\000\056\155\141\153\145\000\000\000\000\000\043\000\000\000\045\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\046\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\047\000\000\000\050\000\000\000\050\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\051\000\000\000\052\000\000\000\046\000\000\000\054\000\000\000\057\000\000\000\057\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\062\000\000\000\064\000\000\000\015\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\042\000\000\000\013\000\000\000\163\145\141\162\143\150\160\162\152\163\000\000\000\000\000\042\000\000\000\006\000\000\000\143\157\165\156\164\000\001\000\000\000\042\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\031\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\031\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\031\000\000\000\002\000\000\000\137\000\005\000\000\000\027\000\000\000\004\000\000\000\163\154\156\000\005\000\000\000\027\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\017\000\000\000\027\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\017\000\000\000\027\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\017\000\000\000\027\000\000\000\002\000\000\000\137\000\020\000\000\000\025\000\000\000\004\000\000\000\160\162\152\000\020\000\000\000\025\000\000\000\000\000\000\000\000\000\000\000\073\000\000\000\101\000\000\000\000\001\000\011\022\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\301\200\000\000\134\200\200\001\205\300\000\000\300\000\200\000\234\000\001\001\026\000\001\200\305\001\001\000\306\101\301\003\000\002\000\003\334\201\000\001\111\300\201\002\241\200\000\000\026\000\376\177\136\000\000\001\036\000\200\000\006\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\010\000\000\000\145\170\164\162\141\143\164\000\004\005\000\000\000\156\141\155\145\000\004\006\000\000\000\160\141\151\162\163\000\004\006\000\000\000\137\115\101\113\105\000\004\004\000\000\000\145\163\143\000\000\000\000\000\022\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\074\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\075\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\075\000\000\000\076\000\000\000\100\000\000\000\101\000\000\000\007\000\000\000\004\000\000\000\164\142\154\000\000\000\000\000\021\000\000\000\007\000\000\000\162\145\163\165\154\164\000\005\000\000\000\021\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\010\000\000\000\020\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\010\000\000\000\020\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\010\000\000\000\020\000\000\000\002\000\000\000\153\000\011\000\000\000\016\000\000\000\002\000\000\000\166\000\011\000\000\000\016\000\000\000\000\000\000\000\000\000\000\000\131\000\000\000\131\000\000\000\000\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\302\000\000\000\135\000\200\001\136\000\000\000\036\000\200\000\002\000\000\000\004\006\000\000\000\137\115\101\113\105\000\004\020\000\000\000\147\145\164\155\141\153\145\146\151\154\145\156\141\155\145\000\000\000\000\000\007\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\001\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\006\000\000\000\000\000\000\000\000\000\000\000\140\000\000\000\140\000\000\000\000\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\302\000\200\000\135\000\200\001\136\000\000\000\036\000\200\000\002\000\000\000\004\006\000\000\000\137\115\101\113\105\000\004\020\000\000\000\147\145\164\155\141\153\145\146\151\154\145\156\141\155\145\000\000\000\000\000\007\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\140\000\000\000\001\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\006\000\000\000\000\000\000\000\000\000\000\000\142\000\000\000\142\000\000\000\000\001\000\002\012\000\000\000\106\000\100\000\127\100\300\000\026\300\000\200\106\000\100\000\127\200\300\000\026\000\000\200\102\100\000\000\102\000\200\000\136\000\000\001\036\000\200\000\003\000\000\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\000\000\000\000\012\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\142\000\000\000\001\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\011\000\000\000\000\000\000\000\000\000\000\000\145\000\000\000\145\000\000\000\000\001\000\004\007\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\302\000\200\000\135\000\200\001\136\000\000\000\036\000\200\000\002\000\000\000\004\006\000\000\000\137\115\101\113\105\000\004\020\000\000\000\147\145\164\155\141\153\145\146\151\154\145\156\141\155\145\000\000\000\000\000\007\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\145\000\000\000\001\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\006\000\000\000\000\000\000\000\000\000\000\000\147\000\000\000\147\000\000\000\000\001\000\002\007\000\000\000\106\000\100\000\127\100\300\000\026\000\000\200\102\100\000\000\102\000\200\000\136\000\000\001\036\000\200\000\002\000\000\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\003\000\000\000\103\043\000\000\000\000\000\007\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\001\000\000\000\005\000\000\000\164\150\151\163\000\000\000\000\000\006\000\000\000\000\000\000\000\103\000\000\000\007\000\000\000\007\000\000\000\016\000\000\000\031\000\000\000\016\000\000\000\043\000\000\000\064\000\000\000\043\000\000\000\073\000\000\000\101\000\000\000\073\000\000\000\110\000\000\000\110\000\000\000\111\000\000\000\112\000\000\000\113\000\000\000\114\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\120\000\000\000\122\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\124\000\000\000\125\000\000\000\127\000\000\000\127\000\000\000\131\000\000\000\132\000\000\000\133\000\000\000\133\000\000\000\134\000\000\000\134\000\000\000\136\000\000\000\136\000\000\000\140\000\000\000\141\000\000\000\141\000\000\000\142\000\000\000\143\000\000\000\143\000\000\000\145\000\000\000\146\000\000\000\146\000\000\000\147\000\000\000\150\000\000\000\151\000\000\000\151\000\000\000\110\000\000\000\152\000\000\000\000\000\000\000\000\000\000\000",
+ "\033\114\165\141\121\000\001\004\004\004\010\000\042\000\000\000\100\163\162\143\057\141\143\164\151\157\156\163\057\166\163\164\165\144\151\157\057\137\166\163\164\165\144\151\157\056\154\165\141\000\000\000\000\000\000\000\000\000\000\000\002\024\366\000\000\000\012\000\000\000\007\000\000\000\005\000\000\000\112\000\000\005\201\200\000\000\301\300\000\000\001\001\001\000\101\101\001\000\201\201\001\000\301\301\001\000\001\002\002\000\101\102\002\000\201\202\002\000\301\302\002\000\142\100\000\005\011\100\200\200\005\000\000\000\112\000\200\006\201\200\000\000\301\300\000\000\001\001\001\000\101\101\001\000\201\201\001\000\301\301\001\000\001\002\002\000\101\102\002\000\201\202\002\000\301\102\003\000\001\303\002\000\101\203\003\000\201\303\003\000\142\100\200\006\011\100\000\206\005\000\000\000\112\000\200\010\201\300\001\000\301\300\000\000\001\101\003\000\101\201\002\000\201\101\001\000\301\201\000\000\001\102\004\000\101\102\002\000\201\002\002\000\301\002\001\000\001\203\004\000\101\303\004\000\201\003\005\000\301\103\005\000\001\204\005\000\101\304\005\000\201\304\002\000\301\204\001\000\142\100\000\011\011\100\000\210\005\000\000\000\105\000\000\000\106\000\304\000\011\100\000\214\005\000\000\000\144\000\000\000\011\100\200\214\005\000\000\000\144\100\000\000\011\100\000\215\005\000\000\000\144\200\000\000\011\100\200\215\005\000\000\000\144\300\000\000\011\100\000\216\044\000\001\000\144\100\001\000\205\000\000\000\344\200\001\000\000\000\000\000\000\000\200\000\211\300\200\216\205\000\000\000\344\300\001\000\211\300\000\217\205\000\000\000\344\000\002\000\211\300\200\217\205\000\000\000\344\100\002\000\211\300\000\220\205\000\000\000\344\200\002\000\211\300\200\220\205\000\000\000\344\300\002\000\211\300\000\221\205\300\010\000\312\100\002\000\311\100\100\222\311\200\311\222\311\000\312\223\311\200\312\224\012\001\000\002\101\001\013\000\201\101\013\000\301\201\013\000\001\302\013\000\042\101\000\002\311\000\201\225\012\001\000\001\101\101\014\000\201\201\014\000\042\101\000\001\311\000\001\230\012\001\200\000\112\001\000\001\201\001\015\000\305\101\015\000\306\201\315\003\142\101\000\001\042\101\200\000\311\000\201\231\012\001\200\000\112\001\000\001\201\001\016\000\305\101\015\000\306\101\316\003\142\101\000\001\042\101\200\000\311\000\201\233\005\001\000\000\006\101\106\002\311\000\201\214\234\100\000\001\205\300\010\000\312\100\002\000\311\000\103\222\311\200\316\222\311\300\316\223\311\200\312\224\012\001\000\002\101\001\013\000\201\101\013\000\301\201\013\000\001\302\013\000\042\101\000\002\311\000\201\225\012\001\000\001\101\101\014\000\201\201\014\000\042\101\000\001\311\000\001\230\012\001\200\000\112\001\000\001\201\001\015\000\305\101\015\000\306\001\317\003\142\101\000\001\042\101\200\000\311\000\201\231\012\001\200\000\112\001\000\001\201\001\016\000\305\101\015\000\306\101\316\003\142\101\000\001\042\101\200\000\311\000\201\233\005\001\000\000\006\101\106\002\311\000\201\214\234\100\000\001\205\300\010\000\312\100\002\000\311\000\104\222\311\100\317\222\311\200\317\223\311\200\312\224\012\001\000\002\101\001\013\000\201\101\013\000\301\201\013\000\001\302\013\000\042\101\000\002\311\000\201\225\012\001\000\001\101\101\014\000\201\201\014\000\042\101\000\001\311\000\001\230\012\001\200\000\112\001\000\001\201\001\015\000\305\101\015\000\306\301\317\003\142\101\000\001\042\101\200\000\311\000\201\231\012\001\200\000\112\001\000\001\201\001\016\000\305\101\015\000\306\101\316\003\142\101\000\001\042\101\200\000\311\000\201\233\005\001\000\000\006\101\106\002\311\000\201\214\234\100\000\001\205\300\010\000\312\100\002\000\311\000\106\222\311\000\320\222\311\100\320\223\311\200\312\224\012\001\000\002\101\001\013\000\201\101\013\000\301\201\013\000\001\302\013\000\042\101\000\002\311\000\201\225\012\001\000\001\101\101\014\000\201\201\014\000\042\101\000\001\311\000\001\230\012\001\200\000\112\001\000\001\201\001\015\000\305\101\015\000\306\301\317\003\142\101\000\001\042\101\200\000\311\000\201\231\012\001\200\000\112\001\000\001\201\001\016\000\305\101\015\000\306\101\316\003\142\101\000\001\042\101\200\000\311\000\201\233\005\001\000\000\006\101\106\002\311\000\201\214\234\100\000\001\036\000\200\000\102\000\000\000\004\004\000\000\000\137\126\123\000\004\007\000\000\000\166\163\062\060\060\062\000\004\021\000\000\000\126\103\103\114\103\157\155\160\151\154\145\162\124\157\157\154\000\004\022\000\000\000\126\103\103\165\163\164\157\155\102\165\151\154\144\124\157\157\154\000\004\015\000\000\000\126\103\114\151\156\153\145\162\124\157\157\154\000\004\013\000\000\000\126\103\115\111\104\114\124\157\157\154\000\004\025\000\000\000\126\103\120\157\163\164\102\165\151\154\144\105\166\145\156\164\124\157\157\154\000\004\024\000\000\000\126\103\120\162\145\102\165\151\154\144\105\166\145\156\164\124\157\157\154\000\004\023\000\000\000\126\103\120\162\145\114\151\156\153\105\166\145\156\164\124\157\157\154\000\004\027\000\000\000\126\103\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\000\004\037\000\000\000\126\103\127\145\142\123\145\162\166\151\143\145\120\162\157\170\171\107\145\156\145\162\141\164\157\162\124\157\157\154\000\004\024\000\000\000\126\103\127\145\142\104\145\160\154\157\171\155\145\156\164\124\157\157\154\000\004\007\000\000\000\166\163\062\060\060\063\000\004\027\000\000\000\126\103\130\115\114\104\141\164\141\107\145\156\145\162\141\164\157\162\124\157\157\154\000\004\036\000\000\000\126\103\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\000\004\047\000\000\000\126\103\101\165\170\151\154\151\141\162\171\115\141\156\141\147\145\144\127\162\141\160\160\145\162\107\145\156\145\162\141\164\157\162\124\157\157\154\000\004\007\000\000\000\166\163\062\060\060\065\000\004\036\000\000\000\126\103\115\141\156\141\147\145\144\122\145\163\157\165\162\143\145\103\157\155\160\151\154\145\162\124\157\157\154\000\004\014\000\000\000\126\103\101\114\151\156\153\124\157\157\154\000\004\017\000\000\000\126\103\115\141\156\151\146\145\163\164\124\157\157\154\000\004\016\000\000\000\126\103\130\104\103\115\141\153\145\124\157\157\154\000\004\016\000\000\000\126\103\102\163\143\115\141\153\145\124\157\157\154\000\004\014\000\000\000\126\103\106\170\103\157\160\124\157\157\154\000\004\022\000\000\000\126\103\101\160\160\126\145\162\151\146\151\145\162\124\157\157\154\000\004\007\000\000\000\166\163\062\060\060\070\000\004\010\000\000\000\157\156\143\154\145\141\156\000\004\005\000\000\000\141\162\143\150\000\004\005\000\000\000\142\157\157\154\000\004\010\000\000\000\143\146\147\164\171\160\145\000\004\006\000\000\000\146\151\154\145\163\000\004\015\000\000\000\157\160\164\151\155\151\172\141\164\151\157\156\000\004\014\000\000\000\160\162\157\152\145\143\164\146\151\154\145\000\004\010\000\000\000\162\165\156\164\151\155\145\000\004\010\000\000\000\163\171\155\142\157\154\163\000\004\005\000\000\000\164\157\157\154\000\004\012\000\000\000\156\145\167\141\143\164\151\157\156\000\004\010\000\000\000\164\162\151\147\147\145\162\000\004\012\000\000\000\163\150\157\162\164\156\141\155\145\000\004\023\000\000\000\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\062\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\035\000\000\000\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\062\000\004\014\000\000\000\164\141\162\147\145\164\163\164\171\154\145\000\004\010\000\000\000\167\151\156\144\157\167\163\000\004\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\004\013\000\000\000\103\157\156\163\157\154\145\101\160\160\000\004\014\000\000\000\127\151\156\144\157\167\145\144\101\160\160\000\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\004\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\004\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\022\000\000\000\163\157\154\165\164\151\157\156\164\145\155\160\154\141\164\145\163\000\004\005\000\000\000\056\163\154\156\000\004\013\000\000\000\137\124\105\115\120\114\101\124\105\123\000\004\020\000\000\000\166\163\062\060\060\062\137\163\157\154\165\164\151\157\156\000\004\021\000\000\000\160\162\157\152\145\143\164\164\145\155\160\154\141\164\145\163\000\004\010\000\000\000\056\166\143\160\162\157\152\000\004\016\000\000\000\166\163\062\060\060\170\137\166\143\160\162\157\152\000\004\023\000\000\000\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\063\000\004\035\000\000\000\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\063\000\004\020\000\000\000\166\163\062\060\060\063\137\163\157\154\165\164\151\157\156\000\004\023\000\000\000\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\065\000\004\035\000\000\000\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\065\000\004\020\000\000\000\166\163\062\060\060\065\137\163\157\154\165\164\151\157\156\000\004\023\000\000\000\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\070\000\004\035\000\000\000\115\151\143\162\157\163\157\146\164\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\070\000\014\000\000\000\000\000\000\000\107\000\000\000\136\000\000\000\000\003\000\020\134\000\000\000\305\000\000\000\000\001\000\000\334\000\001\001\026\300\002\200\005\102\000\000\006\202\100\004\100\002\200\003\201\302\000\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\002\001\000\125\202\202\004\034\102\000\001\341\200\000\000\026\100\374\177\305\000\000\000\000\001\200\000\334\000\001\001\026\200\007\200\005\102\000\000\006\202\100\004\100\002\200\003\201\102\001\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\202\001\000\125\202\202\004\034\102\000\001\005\102\000\000\006\302\101\004\100\002\200\003\201\002\002\000\125\202\202\004\200\002\200\003\301\102\002\000\225\302\002\005\034\202\200\001\105\002\000\000\200\002\000\004\134\002\001\001\026\300\000\200\205\103\000\000\206\203\100\007\300\003\200\006\234\103\000\001\141\202\000\000\026\100\376\177\341\200\000\000\026\200\367\177\305\000\000\000\000\001\000\001\334\000\001\001\026\100\007\200\005\102\000\000\006\202\100\004\100\002\200\003\201\202\002\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\302\002\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\002\003\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\102\003\000\125\202\202\004\034\102\000\001\005\102\000\000\006\202\100\004\100\002\200\003\201\202\003\000\125\202\202\004\034\102\000\001\341\200\000\000\026\300\367\177\036\000\200\000\017\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\003\000\000\000\157\163\000\004\007\000\000\000\162\145\155\157\166\145\000\004\005\000\000\000\056\163\165\157\000\004\005\000\000\000\056\156\143\142\000\004\015\000\000\000\056\143\163\160\162\157\152\056\165\163\145\162\000\004\020\000\000\000\056\143\163\160\162\157\152\056\167\145\142\151\156\146\157\000\004\013\000\000\000\155\141\164\143\150\146\151\154\145\163\000\004\017\000\000\000\056\166\143\160\162\157\152\056\052\056\165\163\145\162\000\004\017\000\000\000\056\143\163\160\162\157\152\056\052\056\165\163\145\162\000\004\005\000\000\000\056\160\144\142\000\004\005\000\000\000\056\151\144\142\000\004\005\000\000\000\056\151\154\153\000\004\014\000\000\000\056\166\163\150\157\163\164\056\145\170\145\000\004\016\000\000\000\056\145\170\145\056\155\141\156\151\146\145\163\164\000\000\000\000\000\134\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\110\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\111\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\110\000\000\000\112\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\116\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\121\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\122\000\000\000\123\000\000\000\115\000\000\000\124\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\127\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\131\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\132\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\133\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\134\000\000\000\127\000\000\000\134\000\000\000\136\000\000\000\030\000\000\000\012\000\000\000\163\157\154\165\164\151\157\156\163\000\000\000\000\000\133\000\000\000\011\000\000\000\160\162\157\152\145\143\164\163\000\000\000\000\000\133\000\000\000\010\000\000\000\164\141\162\147\145\164\163\000\000\000\000\000\133\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\003\000\000\000\022\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\003\000\000\000\022\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\003\000\000\000\022\000\000\000\002\000\000\000\137\000\004\000\000\000\020\000\000\000\005\000\000\000\156\141\155\145\000\004\000\000\000\020\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\025\000\000\000\067\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\025\000\000\000\067\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\025\000\000\000\067\000\000\000\002\000\000\000\137\000\026\000\000\000\065\000\000\000\005\000\000\000\156\141\155\145\000\026\000\000\000\065\000\000\000\006\000\000\000\146\151\154\145\163\000\053\000\000\000\065\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\056\000\000\000\065\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\056\000\000\000\065\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\056\000\000\000\065\000\000\000\002\000\000\000\137\000\057\000\000\000\063\000\000\000\006\000\000\000\146\156\141\155\145\000\057\000\000\000\063\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\072\000\000\000\133\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\072\000\000\000\133\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\072\000\000\000\133\000\000\000\002\000\000\000\137\000\073\000\000\000\131\000\000\000\005\000\000\000\156\141\155\145\000\073\000\000\000\131\000\000\000\000\000\000\000\000\000\000\000\145\000\000\000\157\000\000\000\000\002\000\003\016\000\000\000\206\000\100\000\027\100\100\001\026\300\001\200\030\200\300\000\026\200\000\200\201\300\000\000\236\000\000\001\026\000\001\200\201\000\001\000\236\000\000\001\026\100\000\200\201\100\001\000\236\000\000\001\036\000\200\000\006\000\000\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\003\000\000\000\103\043\000\003\000\000\000\000\000\124\237\100\004\005\000\000\000\056\116\105\124\000\004\010\000\000\000\101\156\171\040\103\120\125\000\004\006\000\000\000\127\151\156\063\062\000\000\000\000\000\016\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\147\000\000\000\147\000\000\000\150\000\000\000\150\000\000\000\150\000\000\000\152\000\000\000\152\000\000\000\153\000\000\000\155\000\000\000\155\000\000\000\157\000\000\000\002\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\015\000\000\000\010\000\000\000\166\145\162\163\151\157\156\000\000\000\000\000\015\000\000\000\000\000\000\000\000\000\000\000\167\000\000\000\175\000\000\000\000\001\000\005\021\000\000\000\105\000\000\000\030\100\300\000\026\200\001\200\105\200\000\000\200\000\000\000\301\300\000\000\001\001\001\000\135\000\000\002\136\000\000\000\026\100\001\200\105\200\000\000\200\000\000\000\301\100\001\000\001\201\001\000\135\000\000\002\136\000\000\000\036\000\200\000\007\000\000\000\004\010\000\000\000\137\101\103\124\111\117\116\000\004\007\000\000\000\166\163\062\060\060\065\000\004\004\000\000\000\151\151\146\000\004\005\000\000\000\124\122\125\105\000\004\006\000\000\000\106\101\114\123\105\000\004\005\000\000\000\164\162\165\145\000\004\006\000\000\000\146\141\154\163\145\000\000\000\000\000\021\000\000\000\170\000\000\000\170\000\000\000\170\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\171\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\173\000\000\000\175\000\000\000\001\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\205\000\000\000\215\000\000\000\000\001\000\002\017\000\000\000\106\000\100\000\027\100\300\000\026\200\000\200\101\200\000\000\136\000\000\001\026\300\001\200\106\000\100\000\027\300\300\000\026\200\000\200\101\000\001\000\136\000\000\001\026\100\000\200\101\100\001\000\136\000\000\001\036\000\200\000\006\000\000\000\004\005\000\000\000\153\151\156\144\000\004\012\000\000\000\123\150\141\162\145\144\114\151\142\000\003\000\000\000\000\000\000\000\100\004\012\000\000\000\123\164\141\164\151\143\114\151\142\000\003\000\000\000\000\000\000\020\100\003\000\000\000\000\000\000\360\077\000\000\000\000\017\000\000\000\206\000\000\000\206\000\000\000\206\000\000\000\207\000\000\000\207\000\000\000\207\000\000\000\210\000\000\000\210\000\000\000\210\000\000\000\211\000\000\000\211\000\000\000\211\000\000\000\213\000\000\000\213\000\000\000\215\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\016\000\000\000\000\000\000\000\000\000\000\000\225\000\000\000\227\000\000\000\000\002\000\006\010\000\000\000\205\000\000\000\206\100\100\001\300\000\000\000\000\001\200\000\101\201\000\000\325\100\201\001\234\100\000\001\036\000\200\000\003\000\000\000\004\003\000\000\000\151\157\000\004\006\000\000\000\167\162\151\164\145\000\004\003\000\000\000\015\012\000\000\000\000\000\010\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\226\000\000\000\227\000\000\000\002\000\000\000\007\000\000\000\151\156\144\145\156\164\000\000\000\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\007\000\000\000\000\000\000\000\000\000\000\000\231\000\000\000\233\000\000\000\000\003\000\012\013\000\000\000\305\000\000\000\306\100\300\001\000\001\000\000\101\201\000\000\200\001\200\000\301\301\000\000\000\002\000\001\101\002\001\000\025\101\002\002\334\100\000\001\036\000\200\000\005\000\000\000\004\003\000\000\000\151\157\000\004\006\000\000\000\167\162\151\164\145\000\004\002\000\000\000\011\000\004\003\000\000\000\075\042\000\004\004\000\000\000\042\015\012\000\000\000\000\000\013\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\232\000\000\000\233\000\000\000\003\000\000\000\007\000\000\000\151\156\144\145\156\164\000\000\000\000\000\012\000\000\000\005\000\000\000\156\141\155\145\000\000\000\000\000\012\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\012\000\000\000\000\000\000\000\000\000\000\000\235\000\000\000\273\000\000\000\002\004\000\017\154\000\000\000\005\001\000\000\006\101\100\002\101\201\000\000\214\301\300\001\034\201\200\001\027\000\101\001\026\100\005\200\104\001\000\000\200\001\000\002\301\101\001\000\134\101\200\001\104\001\200\000\200\001\000\002\301\201\001\000\005\302\001\000\006\002\102\004\100\002\200\000\034\002\000\001\134\101\000\000\104\001\200\000\200\001\000\002\301\101\002\000\001\202\002\000\134\101\000\002\104\001\000\000\200\001\000\002\301\301\002\000\134\101\200\001\026\100\023\200\027\000\103\001\026\000\001\200\104\001\000\000\200\001\000\002\301\101\003\000\134\101\200\001\026\200\021\200\104\001\000\000\200\001\000\002\301\201\003\000\134\101\200\001\104\001\200\000\200\001\000\002\301\301\003\000\005\302\001\000\006\002\104\004\100\002\200\000\201\102\004\000\034\002\200\001\134\101\000\000\104\001\000\000\200\001\000\002\301\301\002\000\134\101\200\001\106\201\104\000\106\301\304\002\132\101\000\000\026\100\013\200\106\001\105\000\027\100\200\002\026\200\012\200\105\101\005\000\206\201\105\000\134\001\001\001\026\000\011\200\204\002\000\000\300\002\000\002\001\303\005\000\234\102\200\001\204\002\200\000\300\002\000\002\001\003\006\000\100\003\200\004\201\103\006\000\125\203\203\006\234\102\000\002\204\002\000\000\300\002\000\002\001\203\006\000\234\102\200\001\204\002\000\000\300\002\000\002\001\303\006\000\234\102\200\001\204\002\200\000\300\002\000\002\001\003\007\000\101\103\007\000\234\102\000\002\204\002\200\000\300\002\000\002\001\203\007\000\101\303\007\000\234\102\000\002\204\002\000\000\300\002\000\002\001\003\010\000\234\102\200\001\204\002\000\000\300\002\000\002\001\103\010\000\234\102\200\001\141\201\000\000\026\000\366\177\104\001\000\000\200\001\000\002\301\201\010\000\134\101\200\001\036\000\200\000\043\000\000\000\004\007\000\000\000\163\164\162\151\156\147\000\004\004\000\000\000\162\145\160\000\004\002\000\000\000\011\000\003\000\000\000\000\000\000\000\100\004\013\000\000\000\107\162\157\165\160\123\164\141\162\164\000\004\010\000\000\000\074\106\151\154\164\145\162\000\004\005\000\000\000\116\141\155\145\000\004\005\000\000\000\160\141\164\150\000\004\010\000\000\000\147\145\164\156\141\155\145\000\004\007\000\000\000\106\151\154\164\145\162\000\004\001\000\000\000\000\004\003\000\000\000\011\076\000\004\011\000\000\000\107\162\157\165\160\105\156\144\000\004\012\000\000\000\074\057\106\151\154\164\145\162\076\000\004\006\000\000\000\074\106\151\154\145\000\004\015\000\000\000\122\145\154\141\164\151\166\145\120\141\164\150\000\004\012\000\000\000\164\162\141\156\163\154\141\164\145\000\004\002\000\000\000\134\000\004\006\000\000\000\146\154\141\147\163\000\004\006\000\000\000\116\157\120\103\110\000\004\012\000\000\000\160\143\150\163\157\165\162\143\145\000\004\007\000\000\000\151\160\141\151\162\163\000\004\017\000\000\000\143\157\156\146\151\147\165\162\141\164\151\157\156\163\000\004\024\000\000\000\011\074\106\151\154\145\103\157\156\146\151\147\165\162\141\164\151\157\156\000\004\006\000\000\000\011\116\141\155\145\000\004\007\000\000\000\174\127\151\156\063\062\000\004\004\000\000\000\011\011\076\000\004\010\000\000\000\011\011\074\124\157\157\154\000\004\007\000\000\000\011\011\116\141\155\145\000\004\021\000\000\000\126\103\103\114\103\157\155\160\151\154\145\162\124\157\157\154\000\004\027\000\000\000\011\011\125\163\145\120\162\145\143\157\155\160\151\154\145\144\110\145\141\144\145\162\000\004\002\000\000\000\061\000\004\005\000\000\000\011\011\057\076\000\004\026\000\000\000\011\074\057\106\151\154\145\103\157\156\146\151\147\165\162\141\164\151\157\156\076\000\004\010\000\000\000\074\057\106\151\154\145\076\000\000\000\000\000\154\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\236\000\000\000\240\000\000\000\240\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\241\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\242\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\243\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\244\000\000\000\246\000\000\000\246\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\247\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\253\000\000\000\254\000\000\000\254\000\000\000\254\000\000\000\254\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\255\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\256\000\000\000\257\000\000\000\257\000\000\000\257\000\000\000\257\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\260\000\000\000\261\000\000\000\261\000\000\000\261\000\000\000\261\000\000\000\262\000\000\000\262\000\000\000\262\000\000\000\262\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\263\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\264\000\000\000\265\000\000\000\265\000\000\000\265\000\000\000\265\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\266\000\000\000\256\000\000\000\266\000\000\000\271\000\000\000\271\000\000\000\271\000\000\000\271\000\000\000\273\000\000\000\012\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\153\000\000\000\006\000\000\000\146\156\141\155\145\000\000\000\000\000\153\000\000\000\006\000\000\000\163\164\141\164\145\000\000\000\000\000\153\000\000\000\012\000\000\000\156\145\163\164\154\145\166\145\154\000\000\000\000\000\153\000\000\000\007\000\000\000\151\156\144\145\156\164\000\005\000\000\000\153\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\077\000\000\000\147\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\077\000\000\000\147\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\077\000\000\000\147\000\000\000\002\000\000\000\137\000\100\000\000\000\145\000\000\000\010\000\000\000\143\146\147\156\141\155\145\000\100\000\000\000\145\000\000\000\002\000\000\000\007\000\000\000\157\165\164\160\165\164\000\007\000\000\000\141\164\164\162\151\142\000\000\000\000\000\303\000\000\000\317\000\000\000\000\001\000\010\024\000\000\000\101\000\000\000\205\100\000\000\306\200\100\000\234\000\001\001\026\200\002\200\027\300\100\003\026\100\000\200\101\000\001\000\026\200\001\200\027\100\101\003\026\100\000\200\101\200\001\000\026\200\000\200\027\300\101\003\026\000\000\200\101\000\002\000\241\200\000\000\026\200\374\177\136\000\000\001\036\000\200\000\011\000\000\000\003\000\000\000\000\000\000\000\000\004\007\000\000\000\151\160\141\151\162\163\000\004\006\000\000\000\146\154\141\147\163\000\004\011\000\000\000\117\160\164\151\155\151\172\145\000\003\000\000\000\000\000\000\010\100\004\015\000\000\000\117\160\164\151\155\151\172\145\123\151\172\145\000\003\000\000\000\000\000\000\360\077\004\016\000\000\000\117\160\164\151\155\151\172\145\123\160\145\145\144\000\003\000\000\000\000\000\000\000\100\000\000\000\000\024\000\000\000\304\000\000\000\305\000\000\000\305\000\000\000\305\000\000\000\305\000\000\000\306\000\000\000\306\000\000\000\307\000\000\000\307\000\000\000\310\000\000\000\310\000\000\000\311\000\000\000\311\000\000\000\312\000\000\000\312\000\000\000\313\000\000\000\305\000\000\000\314\000\000\000\316\000\000\000\317\000\000\000\007\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\023\000\000\000\007\000\000\000\162\145\163\165\154\164\000\001\000\000\000\023\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\004\000\000\000\022\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\022\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\004\000\000\000\022\000\000\000\002\000\000\000\137\000\005\000\000\000\020\000\000\000\006\000\000\000\166\141\154\165\145\000\005\000\000\000\020\000\000\000\000\000\000\000\000\000\000\000\327\000\000\000\341\000\000\000\000\001\000\005\020\000\000\000\206\000\100\000\027\100\100\001\026\100\000\200\101\200\000\000\026\000\000\200\101\300\000\000\205\000\001\000\206\100\101\001\306\200\101\000\006\301\101\000\234\200\200\001\300\000\000\001\000\001\200\000\325\000\201\001\336\000\000\001\036\000\200\000\010\000\000\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\003\000\000\000\103\043\000\004\010\000\000\000\056\143\163\160\162\157\152\000\004\010\000\000\000\056\166\143\160\162\157\152\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\005\000\000\000\156\141\155\145\000\000\000\000\000\020\000\000\000\331\000\000\000\331\000\000\000\331\000\000\000\332\000\000\000\332\000\000\000\334\000\000\000\337\000\000\000\337\000\000\000\337\000\000\000\337\000\000\000\337\000\000\000\340\000\000\000\340\000\000\000\340\000\000\000\340\000\000\000\341\000\000\000\003\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\017\000\000\000\012\000\000\000\145\170\164\145\156\163\151\157\156\000\000\000\000\000\017\000\000\000\006\000\000\000\146\156\141\155\145\000\013\000\000\000\017\000\000\000\000\000\000\000\000\000\000\000\351\000\000\000\360\000\000\000\000\001\000\006\032\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\134\200\000\001\127\200\300\000\026\000\000\200\102\100\000\000\102\000\200\000\206\300\100\000\206\000\101\001\232\000\000\000\026\200\001\200\205\100\001\000\300\000\200\000\001\201\001\000\101\201\000\000\235\000\000\002\236\000\000\000\026\100\001\200\205\100\001\000\300\000\200\000\001\301\001\000\101\001\002\000\235\000\000\002\236\000\000\000\036\000\200\000\011\000\000\000\004\004\000\000\000\137\126\123\000\004\015\000\000\000\157\160\164\151\155\151\172\141\164\151\157\156\000\003\000\000\000\000\000\000\000\000\004\006\000\000\000\146\154\141\147\163\000\004\016\000\000\000\123\164\141\164\151\143\122\165\156\164\151\155\145\000\004\004\000\000\000\151\151\146\000\003\000\000\000\000\000\000\360\077\003\000\000\000\000\000\000\010\100\003\000\000\000\000\000\000\000\100\000\000\000\000\032\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\352\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\353\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\354\000\000\000\356\000\000\000\356\000\000\000\356\000\000\000\356\000\000\000\356\000\000\000\356\000\000\000\360\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\031\000\000\000\013\000\000\000\144\145\142\165\147\142\165\151\154\144\000\010\000\000\000\031\000\000\000\000\000\000\000\000\000\000\000\370\000\000\000\003\001\000\000\000\001\000\003\033\000\000\000\106\000\100\000\106\100\300\000\132\100\000\000\026\200\000\200\101\200\000\000\136\000\000\001\026\200\004\200\106\000\100\000\106\300\300\000\132\100\000\000\026\100\002\200\105\000\001\000\106\100\301\000\200\000\000\000\134\200\000\001\027\200\300\000\026\300\000\200\106\000\100\000\106\200\301\000\132\000\000\000\026\200\000\200\101\300\001\000\136\000\000\001\026\100\000\200\101\000\002\000\136\000\000\001\036\000\200\000\011\000\000\000\004\006\000\000\000\146\154\141\147\163\000\004\010\000\000\000\123\171\155\142\157\154\163\000\003\000\000\000\000\000\000\000\000\004\022\000\000\000\116\157\105\144\151\164\101\156\144\103\157\156\164\151\156\165\145\000\004\004\000\000\000\137\126\123\000\004\015\000\000\000\157\160\164\151\155\151\172\141\164\151\157\156\000\004\010\000\000\000\115\141\156\141\147\145\144\000\003\000\000\000\000\000\000\010\100\003\000\000\000\000\000\000\020\100\000\000\000\000\033\000\000\000\371\000\000\000\371\000\000\000\371\000\000\000\371\000\000\000\372\000\000\000\372\000\000\000\372\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\376\000\000\000\376\000\000\000\376\000\000\000\000\001\000\000\000\001\000\000\003\001\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\032\000\000\000\000\000\000\000\000\000\000\000\013\001\000\000\021\001\000\000\000\001\000\002\011\000\000\000\106\000\100\000\027\100\300\000\026\200\000\200\101\200\000\000\136\000\000\001\026\100\000\200\101\300\000\000\136\000\000\001\036\000\200\000\004\000\000\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\003\000\000\000\103\043\000\004\045\000\000\000\106\101\105\060\064\105\103\060\055\063\060\061\106\055\061\061\104\063\055\102\106\064\102\055\060\060\103\060\064\106\067\071\105\106\102\103\000\004\045\000\000\000\070\102\103\071\103\105\102\070\055\070\102\064\101\055\061\061\104\060\055\070\104\061\061\055\060\060\101\060\103\071\061\102\103\071\064\062\000\000\000\000\000\011\000\000\000\014\001\000\000\014\001\000\000\014\001\000\000\015\001\000\000\015\001\000\000\015\001\000\000\017\001\000\000\017\001\000\000\021\001\000\000\001\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\010\000\000\000\000\000\000\000\366\000\000\000\007\000\000\000\007\000\000\000\016\000\000\000\016\000\000\000\017\000\000\000\020\000\000\000\021\000\000\000\022\000\000\000\023\000\000\000\024\000\000\000\025\000\000\000\026\000\000\000\027\000\000\000\031\000\000\000\031\000\000\000\031\000\000\000\033\000\000\000\033\000\000\000\034\000\000\000\035\000\000\000\036\000\000\000\037\000\000\000\040\000\000\000\041\000\000\000\042\000\000\000\043\000\000\000\044\000\000\000\045\000\000\000\046\000\000\000\047\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\053\000\000\000\053\000\000\000\054\000\000\000\055\000\000\000\056\000\000\000\057\000\000\000\060\000\000\000\061\000\000\000\062\000\000\000\063\000\000\000\064\000\000\000\065\000\000\000\066\000\000\000\067\000\000\000\070\000\000\000\071\000\000\000\072\000\000\000\073\000\000\000\074\000\000\000\076\000\000\000\076\000\000\000\076\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\107\000\000\000\136\000\000\000\107\000\000\000\145\000\000\000\157\000\000\000\145\000\000\000\167\000\000\000\175\000\000\000\167\000\000\000\205\000\000\000\215\000\000\000\205\000\000\000\227\000\000\000\233\000\000\000\235\000\000\000\273\000\000\000\273\000\000\000\273\000\000\000\235\000\000\000\303\000\000\000\317\000\000\000\303\000\000\000\327\000\000\000\341\000\000\000\327\000\000\000\351\000\000\000\360\000\000\000\351\000\000\000\370\000\000\000\003\001\000\000\370\000\000\000\013\001\000\000\021\001\000\000\013\001\000\000\032\001\000\000\032\001\000\000\033\001\000\000\034\001\000\000\035\001\000\000\036\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\040\001\000\000\042\001\000\000\042\001\000\000\042\001\000\000\042\001\000\000\042\001\000\000\044\001\000\000\044\001\000\000\045\001\000\000\045\001\000\000\045\001\000\000\045\001\000\000\046\001\000\000\046\001\000\000\050\001\000\000\050\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\052\001\000\000\052\001\000\000\054\001\000\000\054\001\000\000\054\001\000\000\032\001\000\000\057\001\000\000\057\001\000\000\060\001\000\000\061\001\000\000\062\001\000\000\063\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\065\001\000\000\067\001\000\000\067\001\000\000\067\001\000\000\067\001\000\000\067\001\000\000\071\001\000\000\071\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\072\001\000\000\073\001\000\000\073\001\000\000\075\001\000\000\075\001\000\000\076\001\000\000\076\001\000\000\076\001\000\000\076\001\000\000\077\001\000\000\077\001\000\000\101\001\000\000\101\001\000\000\101\001\000\000\057\001\000\000\104\001\000\000\104\001\000\000\105\001\000\000\106\001\000\000\107\001\000\000\110\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\112\001\000\000\114\001\000\000\114\001\000\000\114\001\000\000\114\001\000\000\114\001\000\000\116\001\000\000\116\001\000\000\117\001\000\000\117\001\000\000\117\001\000\000\117\001\000\000\120\001\000\000\120\001\000\000\122\001\000\000\122\001\000\000\123\001\000\000\123\001\000\000\123\001\000\000\123\001\000\000\124\001\000\000\124\001\000\000\126\001\000\000\126\001\000\000\126\001\000\000\104\001\000\000\131\001\000\000\131\001\000\000\132\001\000\000\133\001\000\000\134\001\000\000\135\001\000\000\137\001\000\000\137\001\000\000\137\001\000\000\137\001\000\000\137\001\000\000\137\001\000\000\137\001\000\000\141\001\000\000\141\001\000\000\141\001\000\000\141\001\000\000\141\001\000\000\143\001\000\000\143\001\000\000\144\001\000\000\144\001\000\000\144\001\000\000\144\001\000\000\145\001\000\000\145\001\000\000\147\001\000\000\147\001\000\000\150\001\000\000\150\001\000\000\150\001\000\000\150\001\000\000\151\001\000\000\151\001\000\000\153\001\000\000\153\001\000\000\153\001\000\000\131\001\000\000\154\001\000\000\002\000\000\000\007\000\000\000\157\165\164\160\165\164\000\110\000\000\000\365\000\000\000\007\000\000\000\141\164\164\162\151\142\000\111\000\000\000\365\000\000\000\000\000\000\000",
};
int builtin_sizes[] = {
- 5276,
+ 5713,
1709,
2201,
3851,
2543,
- 5563,
+ 5679,
2782,
- 9725,
- 9996,
- 7261,
+ 9726,
+ 12674,
+ 7407,
2697,
- 4349,
- 2667,
- 5176,
+ 899,
+ 4223,
+ 2478,
+ 2579,
+ 2682,
662,
- 3457,
+ 3398,
810,
- 3472,
+ 3457,
1230,
- 4195,
+ 4135,
+ 1167,
1382,
- 1232,
- 2437,
- 8385,
- 3192,
+ 1360,
+ 2567,
+ 8436,
+ 3864,
1290,
- 2490,
- 3660,
- 9837,
+ 2683,
+ 3488,
+ 9422,
0
};
diff --git a/src/tools/csc.lua b/src/tools/csc.lua
new file mode 100644
index 0000000..035246c
--- /dev/null
+++ b/src/tools/csc.lua
@@ -0,0 +1,49 @@
+--
+-- csc.lua
+-- Interface for the C# compilers, all of which are flag compatible.
+-- Copyright (c) 2002-2008 Jason Perkins and the Premake project
+--
+
+
+ premake.csc = { }
+
+
+--
+-- Translation of Premake flags into CSC flags
+--
+
+ local flags =
+ {
+ FatalWarning = "/warnaserror",
+ Optimize = "/optimize",
+ OptimizeSize = "/optimize",
+ OptimizeSpeed = "/optimize",
+ Symbols = "/debug",
+ Unsafe = "/unsafe"
+ }
+
+
+
+--
+-- Returns the compiler filename (they all use the same arguments)
+--
+
+ function premake.csc.getcompilervar(cfg)
+ if (_OPTIONS.dotnet == "ms") then
+ return "csc"
+ elseif (_OPTIONS.dotnet == "mono") then
+ return "mcs"
+ else
+ return "cscc"
+ end
+ end
+
+
+--
+-- Returns a list of compiler flags, based on the supplied configuration.
+--
+
+ function premake.csc.getflags(cfg)
+ local result = table.translate(cfg.flags, flags)
+ return result
+ end
diff --git a/src/base/gcc.lua b/src/tools/gcc.lua
index be4f81d..9a8092f 100644
--- a/src/base/gcc.lua
+++ b/src/tools/gcc.lua
@@ -6,6 +6,7 @@
premake.gcc = { }
+ premake.targetstyle = "linux"
--
@@ -33,16 +34,6 @@
--
--- Returns the compiler ID used by Code::Blocks.
---
-
- function premake.gcc.getcompilervar(cfg)
- return iif(cfg.language == "C", "CC", "CPP")
- end
-
-
-
---
-- Returns a list of compiler flags, based on the supplied configuration.
--
@@ -55,7 +46,7 @@
function premake.gcc.getcflags(cfg)
local result = table.translate(cfg.flags, cflags)
if (cfg.kind == "SharedLib" and not os.is("windows")) then
- table.insert(flags, "-fPIC")
+ table.insert(result, "-fPIC")
end
return result
end
@@ -75,13 +66,15 @@
local result = { }
if (cfg.kind == "SharedLib") then
- if (not os.is("macosx")) then
+ if os.is("macosx") then
+ result = table.join(result, { "-dynamiclib", "-flat_namespace" })
+ else
table.insert(result, "-shared")
end
-- create import library for DLLs under Windows
if (os.is("windows") and not cfg.flags.NoImportLib) then
- table.insert(result, '-Wl,--out-implib="' .. premake.gettargetfile(cfg, "implib", "linux") .. '"')
+ table.insert(result, '-Wl,--out-implib="'..premake.gettarget(cfg, "link", "linux").fullpath..'"')
end
end
@@ -97,27 +90,23 @@
table.insert(result, "-s")
end
end
-
- if (os.is("macosx") and cfg.flags.Dylib) then
- table.insert(result, "-dynamiclib -flat_namespace")
- end
return result
end
--
--- Returns a list of linker flags for library search directories and
--- library names.
+-- Returns a list of linker flags for library search directories and library
+-- names. See bug #1729227 for background on why the path must be split.
--
function premake.gcc.getlinkflags(cfg)
local result = { }
- for _, value in ipairs(premake.getlibdirs(cfg)) do
- table.insert(result, '-L "' .. value .. '"')
+ for _, value in ipairs(premake.getlinks(cfg, "all", "directory")) do
+ table.insert(result, '-L' .. _MAKE.esc(value))
end
- for _, value in ipairs(premake.getlibnames(cfg)) do
- table.insert(result, '-l "' .. value .. '"')
+ for _, value in ipairs(premake.getlinks(cfg, "all", "basename")) do
+ table.insert(result, '-l' .. _MAKE.esc(value))
end
return result
end
diff --git a/src/tools/ow.lua b/src/tools/ow.lua
new file mode 100644
index 0000000..f3b828e
--- /dev/null
+++ b/src/tools/ow.lua
@@ -0,0 +1,109 @@
+--
+-- ow.lua
+-- Provides Open Watcom-specific configuration strings.
+-- Copyright (c) 2008 Jason Perkins and the Premake project
+--
+
+ premake.ow = { }
+ premake.ow.targetstyle = "windows"
+
+
+--
+-- Translation of Premake flags into OpenWatcom flags
+--
+
+ local cflags =
+ {
+ ExtraWarnings = "-wx",
+ FatalWarning = "-we",
+ Optimize = "-ox",
+ OptimizeSize = "-os",
+ OptimizeSpeed = "-ot",
+ Symbols = "-d2",
+ }
+
+ local cxxflags =
+ {
+ NoExceptions = "-xd",
+ NoRTTI = "-xr",
+ }
+
+
+
+
+--
+-- Returns a list of compiler flags, based on the supplied configuration.
+--
+
+ function premake.ow.getcppflags(cfg)
+ return ""
+ end
+
+ function premake.ow.getcflags(cfg)
+ local result = table.translate(cfg.flags, cflags)
+ if (cfg.flags.Symbols) then
+ table.insert(result, "-hw") -- Watcom debug format for Watcom debugger
+ end
+ return result
+ end
+
+ function premake.ow.getcxxflags(cfg)
+ local result = table.translate(cfg.flags, cxxflags)
+ return result
+ end
+
+
+
+--
+-- Returns a list of linker flags, based on the supplied configuration.
+--
+
+ function premake.ow.getldflags(cfg)
+ local result = { }
+
+ if (cfg.flags.Symbols) then
+ table.insert(result, "op symf")
+ end
+
+ return result
+ end
+
+
+--
+-- Returns a list of linker flags for library search directories and
+-- library names.
+--
+
+ function premake.ow.getlinkflags(cfg)
+ local result = { }
+ return result
+ end
+
+
+
+--
+-- Decorate defines for the command line.
+--
+
+ function premake.ow.getdefines(defines)
+ local result = { }
+ for _,def in ipairs(defines) do
+ table.insert(result, '-D' .. def)
+ end
+ return result
+ end
+
+
+
+--
+-- Decorate include file search paths for the command line.
+--
+
+ function premake.ow.getincludedirs(includedirs)
+ local result = { }
+ for _,dir in ipairs(includedirs) do
+ table.insert(result, '-I "' .. dir .. '"')
+ end
+ return result
+ end
+
diff --git a/tests/premake4.lua b/tests/premake4.lua
index a998db4..662de57 100644
--- a/tests/premake4.lua
+++ b/tests/premake4.lua
@@ -14,6 +14,7 @@
dofile("test_premake.lua")
dofile("test_config.lua")
dofile("test_project.lua")
+ dofile("test_targets.lua")
dofile("test_functions.lua")
diff --git a/tests/test_config.lua b/tests/test_config.lua
deleted file mode 100644
index c363dbb..0000000
--- a/tests/test_config.lua
+++ /dev/null
@@ -1,154 +0,0 @@
---
--- tests/test_config.project.lua
--- Automated test suite for the configuration support functions.
--- Copyright (c) 2008 Jason Perkins and the Premake project
---
-
- T.config = { }
-
- local cfg
- function T.config.setup()
- _ACTION = "gmake"
- cfg = { }
- cfg.location = ""
- cfg.targetname = "MyPackage"
- cfg.targetdir = ""
- end
-
-
---
--- premake.gettargetfile() tests
---
-
- function T.config.gettargetfile_IndexesFieldValues()
- cfg.kind = "SharedLib"
- cfg.implibname = "imports"
- test.isequal("imports.lib", premake.gettargetfile(cfg, "implib", "windows"))
- end
-
- function T.config.gettargetfile_FallsBackToTargetValues()
- cfg.kind = "SharedLib"
- test.isequal("libMyPackage.a", premake.gettargetfile(cfg, "implib", "linux"))
- end
-
- function T.config.gettargetfile_OnWindowsConsole()
- cfg.kind = "ConsoleApp"
- test.isequal("MyPackage.exe", premake.gettargetfile(cfg, "target", "windows"))
- end
-
- function T.config.gettargetfile_OnLinuxConsole()
- cfg.kind = "ConsoleApp"
- test.isequal("MyPackage", premake.gettargetfile(cfg, "target", "linux"))
- end
-
- function T.config.gettargetfile_OnMacOSXConsole()
- cfg.kind = "ConsoleApp"
- test.isequal("MyPackage", premake.gettargetfile(cfg, "target", "macosx"))
- end
-
- function T.config.gettargetfile_OnBSDConsole()
- cfg.kind = "ConsoleApp"
- test.isequal("MyPackage", premake.gettargetfile(cfg, "target", "bsd"))
- end
-
- function T.config.gettargetfile_OnWindowsWindowed()
- cfg.kind = "WindowedApp"
- test.isequal("MyPackage.exe", premake.gettargetfile(cfg, "target", "windows"))
- end
-
- function T.config.gettargetfile_OnLinuxWindowed()
- cfg.kind = "WindowedApp"
- test.isequal("MyPackage", premake.gettargetfile(cfg, "target", "linux"))
- end
-
- function T.config.gettargetfile_OnMacOSXWindowed()
- cfg.kind = "WindowedApp"
- test.isequal("MyPackage.app/Contents/MacOS/MyPackage", premake.gettargetfile(cfg, "target", "macosx"))
- end
-
- function T.config.gettargetfile_OnBSDWindowed()
- cfg.kind = "WindowedApp"
- test.isequal("MyPackage", premake.gettargetfile(cfg, "target", "bsd"))
- end
-
- function T.config.gettargetfile_OnWindowsShared()
- cfg.kind = "SharedLib"
- test.isequal("MyPackage.dll", premake.gettargetfile(cfg, "target", "windows"))
- end
-
- function T.config.gettargetfile_OnLinuxShared()
- cfg.kind = "SharedLib"
- test.isequal("libMyPackage.so", premake.gettargetfile(cfg, "target", "linux"))
- end
-
- function T.config.gettargetfile_OnMacOSXShared()
- cfg.kind = "SharedLib"
- test.isequal("libMyPackage.so", premake.gettargetfile(cfg, "target", "macosx"))
- end
-
- function T.config.gettargetfile_OnBSDShared()
- cfg.kind = "SharedLib"
- test.isequal("libMyPackage.so", premake.gettargetfile(cfg, "target", "bsd"))
- end
-
- function T.config.gettargetfile_OnWindowsStatic()
- cfg.kind = "StaticLib"
- test.isequal("MyPackage.lib", premake.gettargetfile(cfg, "target", "windows"))
- end
-
- function T.config.gettargetfile_OnLinuxStatic()
- cfg.kind = "StaticLib"
- test.isequal("libMyPackage.a", premake.gettargetfile(cfg, "target", "linux"))
- end
-
- function T.config.gettargetfile_OnMacOSXStatic()
- cfg.kind = "StaticLib"
- test.isequal("libMyPackage.a", premake.gettargetfile(cfg, "target", "macosx"))
- end
-
- function T.config.gettargetfile_OnBSDStatic()
- cfg.kind = "StaticLib"
- test.isequal("libMyPackage.a", premake.gettargetfile(cfg, "target", "bsd"))
- end
-
- function T.config.gettargetfile_OnPosixStaticLib()
- cfg.kind = "StaticLib"
- test.isequal("libMyPackage.a", premake.gettargetfile(cfg, "target", "windows", true))
- end
-
- function T.config.gettargetfile_OnPosixImpLib()
- cfg.kind = "SharedLib"
- test.isequal("libMyPackage.a", premake.gettargetfile(cfg, "implib", "windows", true))
- end
-
-
-
---
--- premake.iskeywordsmatch() tests
---
-
- function T.config.checkterms_ReturnsTrue_OnInclusion()
- test.istrue( premake.iskeywordsmatch( {'Debug'}, {'Debug','Windows'} ) )
- end
-
- function T.config.checkterms_ReturnsTrue_OnCaseMismatch()
- test.istrue( premake.iskeywordsmatch( {'Debug'}, {'debug','Windows'} ) )
- end
-
- function T.config.checkterms_MatchesPatterns()
- test.istrue( premake.iskeywordsmatch( {'vs200%d'}, {'VS2005'} ) )
- end
-
- function T.config.checkterms_ReturnsFalse_OnNoTermsAndKeywords()
- test.isfalse( premake.iskeywordsmatch( {'Debug'}, {} ) )
- end
-
- function T.config.checkterms_ReturnsTrue_OnNoTermsOrKeywords()
- test.istrue( premake.iskeywordsmatch( {}, {} ) )
- end
-
- function T.config.checkterms_ReturnsTrue_OnTermsAndNoKeywords()
- test.istrue ( premake.iskeywordsmatch( {}, {'Debug'} ) )
- end
-
-
diff --git a/tests/test_path.lua b/tests/test_path.lua
index 944b930..ab5531b 100644
--- a/tests/test_path.lua
+++ b/tests/test_path.lua
@@ -17,7 +17,15 @@
test.isequal(expected, path.getabsolute("a/b/c"))
end
+ function T.path.getabsolute_RemovesDotDots_OnWindowsAbsolute()
+ test.isequal("c:/ProjectB/bin", path.getabsolute("c:/ProjectA/../ProjectB/bin"))
+ end
+ function T.path.getabsolute_RemovesDotDots_OnPosixAbsolute()
+ test.isequal("/ProjectB/bin", path.getabsolute("/ProjectA/../ProjectB/bin"))
+ end
+
+
--
-- path.getbasename() tests
--
@@ -46,7 +54,7 @@
function T.path.getdirectory_ReturnsRootPath_OnRootPathOnly()
test.isequal("/", path.getdirectory("/filename.ext"))
end
-
+
--
-- path.getextension() tests
diff --git a/tests/test_premake.lua b/tests/test_premake.lua
index a10f547..ecbaa6d 100644
--- a/tests/test_premake.lua
+++ b/tests/test_premake.lua
@@ -16,7 +16,7 @@
_ACTION = "gmake"
premake.checktools()
test.isequal("gcc", _OPTIONS.cc)
- test.isequal("mcs", _OPTIONS.csc)
+ test.isequal("mono", _OPTIONS.dotnet)
end
@@ -25,7 +25,7 @@
_OPTIONS["cc"] = "xyz"
ok, err = premake.checktools()
test.isfalse( ok )
- test.isequal("the GNU Make action does not support /cc=xyz", err)
+ test.isequal("the GNU Make action does not support /cc=xyz (yet)", err)
end
diff --git a/tests/test_targets.lua b/tests/test_targets.lua
new file mode 100644
index 0000000..47e1040
--- /dev/null
+++ b/tests/test_targets.lua
@@ -0,0 +1,287 @@
+--
+-- tests/test_targets.lua
+-- Automated test suite for premake.gettarget()
+-- Copyright (c) 2008 Jason Perkins and the Premake project
+--
+
+ T.targets = { }
+
+ local cfg
+ function T.targets.setup()
+ cfg = { }
+ cfg.basedir = "."
+ cfg.location = "."
+ cfg.language = "C++"
+ cfg.project = { name = "MyProject" }
+ end
+
+
+
+--
+-- C++ ConsoleApp naming conventions
+--
+
+ function T.targets.On_Console_Build_Windows_Windows()
+ cfg.kind = "ConsoleApp"
+ test.isequal("MyProject.exe", premake.gettarget(cfg, "build", "windows", "windows").fullpath)
+ end
+
+ function T.targets.On_Console_Build_Windows_Linux()
+ cfg.kind = "ConsoleApp"
+ test.isequal("MyProject.exe", premake.gettarget(cfg, "build", "windows", "linux").fullpath)
+ end
+
+ function T.targets.On_Console_Build_Windows_MacOSX()
+ cfg.kind = "ConsoleApp"
+ test.isequal("MyProject.exe", premake.gettarget(cfg, "build", "windows", "macosx").fullpath)
+ end
+
+ function T.targets.On_Console_Build_Linux_Windows()
+ cfg.kind = "ConsoleApp"
+ test.isequal("MyProject.exe", premake.gettarget(cfg, "build", "linux", "windows").fullpath)
+ end
+
+ function T.targets.On_Console_Build_Linux_Linux()
+ cfg.kind = "ConsoleApp"
+ test.isequal("MyProject", premake.gettarget(cfg, "build", "linux", "linux").fullpath)
+ end
+
+ function T.targets.On_Console_Build_Linux_MacOSX()
+ cfg.kind = "ConsoleApp"
+ test.isequal("MyProject", premake.gettarget(cfg, "build", "linux", "macosx").fullpath)
+ end
+
+
+
+--
+-- C++ WindowedApp naming conventions
+--
+
+ function T.targets.On_Windowed_Build_Windows_Windows()
+ cfg.kind = "WindowedApp"
+ test.isequal("MyProject.exe", premake.gettarget(cfg, "build", "windows", "windows").fullpath)
+ end
+
+ function T.targets.On_Windowed_Build_Windows_Linux()
+ cfg.kind = "WindowedApp"
+ test.isequal("MyProject.exe", premake.gettarget(cfg, "build", "windows", "windows").fullpath)
+ end
+
+ function T.targets.On_Windowed_Build_Windows_MacOSX()
+ cfg.kind = "WindowedApp"
+ test.isequal("MyProject.exe", premake.gettarget(cfg, "build", "windows", "macosx").fullpath)
+ end
+
+ function T.targets.On_Windowed_Build_Linux_Windows()
+ cfg.kind = "WindowedApp"
+ test.isequal("MyProject.exe", premake.gettarget(cfg, "build", "linux", "windows").fullpath)
+ end
+
+ function T.targets.On_Windowed_Build_Linux_Linux()
+ cfg.kind = "WindowedApp"
+ test.isequal("MyProject", premake.gettarget(cfg, "build", "linux", "linux").fullpath)
+ end
+
+ function T.targets.On_Windowed_Build_Linux_MacOSX()
+ cfg.kind = "WindowedApp"
+ test.isequal("MyProject.app/Contents/MacOS/MyProject", premake.gettarget(cfg, "build", "linux", "macosx").fullpath)
+ end
+
+
+
+--
+-- C++ SharedLib naming conventions
+--
+
+ function T.targets.On_Shared_Build_Windows_Windows()
+ cfg.kind = "SharedLib"
+ test.isequal("MyProject.dll", premake.gettarget(cfg, "build", "windows", "windows").fullpath)
+ end
+
+ function T.targets.On_Shared_Build_Windows_Linux()
+ cfg.kind = "SharedLib"
+ test.isequal("MyProject.dll", premake.gettarget(cfg, "build", "windows", "windows").fullpath)
+ end
+
+ function T.targets.On_Shared_Build_Windows_MacOSX()
+ cfg.kind = "SharedLib"
+ test.isequal("MyProject.dll", premake.gettarget(cfg, "build", "windows", "macosx").fullpath)
+ end
+
+ function T.targets.On_Shared_Build_Linux_Windows()
+ cfg.kind = "SharedLib"
+ test.isequal("MyProject.dll", premake.gettarget(cfg, "build", "linux", "windows").fullpath)
+ end
+
+ function T.targets.On_Shared_Build_Linux_Linux()
+ cfg.kind = "SharedLib"
+ test.isequal("libMyProject.so", premake.gettarget(cfg, "build", "linux", "linux").fullpath)
+ end
+
+ function T.targets.On_Shared_Build_Linux_MacOSX()
+ cfg.kind = "SharedLib"
+ test.isequal("libMyProject.so", premake.gettarget(cfg, "build", "linux", "macosx").fullpath)
+ end
+
+ function T.targets.On_Shared_Link_Windows_Windows()
+ cfg.kind = "SharedLib"
+ test.isequal("MyProject.lib", premake.gettarget(cfg, "link", "windows", "windows").fullpath)
+ end
+
+ function T.targets.On_Shared_Link_Windows_Linux()
+ cfg.kind = "SharedLib"
+ test.isequal("MyProject.lib", premake.gettarget(cfg, "link", "windows", "linux").fullpath)
+ end
+
+ function T.targets.On_Shared_Link_Windows_MacOSX()
+ cfg.kind = "SharedLib"
+ test.isequal("MyProject.lib", premake.gettarget(cfg, "link", "windows", "macosx").fullpath)
+ end
+
+ function T.targets.On_Shared_Link_Linux_Windows()
+ cfg.kind = "SharedLib"
+ test.isequal("libMyProject.a", premake.gettarget(cfg, "link", "linux", "windows").fullpath)
+ end
+
+
+--
+-- C++ StaticLib naming conventions
+--
+
+ function T.targets.On_Static_Build_Windows_Windows()
+ cfg.kind = "StaticLib"
+ test.isequal("MyProject.lib", premake.gettarget(cfg, "build", "windows", "windows").fullpath)
+ end
+
+ function T.targets.On_Static_Build_Windows_Linux()
+ cfg.kind = "StaticLib"
+ test.isequal("MyProject.lib", premake.gettarget(cfg, "build", "windows", "windows").fullpath)
+ end
+
+ function T.targets.On_Static_Build_Windows_MacOSX()
+ cfg.kind = "StaticLib"
+ test.isequal("MyProject.lib", premake.gettarget(cfg, "build", "windows", "macosx").fullpath)
+ end
+
+ function T.targets.On_Static_Build_Linux_Windows()
+ cfg.kind = "StaticLib"
+ test.isequal("libMyProject.a", premake.gettarget(cfg, "build", "linux", "windows").fullpath)
+ end
+
+ function T.targets.On_Static_Build_Linux_Linux()
+ cfg.kind = "StaticLib"
+ test.isequal("libMyProject.a", premake.gettarget(cfg, "build", "linux", "linux").fullpath)
+ end
+
+ function T.targets.On_Static_Build_Linux_MacOSX()
+ cfg.kind = "StaticLib"
+ test.isequal("libMyProject.a", premake.gettarget(cfg, "build", "linux", "macosx").fullpath)
+ end
+
+ function T.targets.On_Static_Link_Windows_Windows()
+ cfg.kind = "StaticLib"
+ test.isequal("MyProject.lib", premake.gettarget(cfg, "link", "windows", "windows").fullpath)
+ end
+
+ function T.targets.On_Static_Link_Windows_Linux()
+ cfg.kind = "StaticLib"
+ test.isequal("MyProject.lib", premake.gettarget(cfg, "link", "windows", "windows").fullpath)
+ end
+
+ function T.targets.On_Static_Link_Windows_MacOSX()
+ cfg.kind = "StaticLib"
+ test.isequal("MyProject.lib", premake.gettarget(cfg, "link", "windows", "macosx").fullpath)
+ end
+
+ function T.targets.On_Static_Link_Linux_Windows()
+ cfg.kind = "StaticLib"
+ test.isequal("libMyProject.a", premake.gettarget(cfg, "link", "linux", "windows").fullpath)
+ end
+
+ function T.targets.On_Static_Link_Linux_Linux()
+ cfg.kind = "StaticLib"
+ test.isequal("libMyProject.a", premake.gettarget(cfg, "link", "linux", "linux").fullpath)
+ end
+
+ function T.targets.On_Static_Link_Linux_MacOSX()
+ cfg.kind = "StaticLib"
+ test.isequal("libMyProject.a", premake.gettarget(cfg, "link", "linux", "macosx").fullpath)
+ end
+
+
+
+--
+-- C# naming conventions
+--
+
+ function T.targets.On_Cs_Console_Build_Linux_Linux()
+ cfg.language = "C#"
+ cfg.kind = "ConsoleApp"
+ test.isequal("MyProject.exe", premake.gettarget(cfg, "build", "linux", "linux").fullpath)
+ end
+
+ function T.targets.On_Cs_Windowed_Build_Linux_Linux()
+ cfg.language = "C#"
+ cfg.kind = "WindowedApp"
+ test.isequal("MyProject.exe", premake.gettarget(cfg, "build", "linux", "linux").fullpath)
+ end
+
+ function T.targets.On_Cs_Shared_Build_Linux_Linux()
+ cfg.language = "C#"
+ cfg.kind = "SharedLib"
+ test.isequal("MyProject.dll", premake.gettarget(cfg, "build", "linux", "linux").fullpath)
+ end
+
+
+
+--
+-- Field handling tests
+--
+
+ function T.targets.TargetName_OverridesProjectName()
+ cfg.kind = "ConsoleApp"
+ cfg.targetname = "MyTarget"
+ test.isequal("MyTarget.exe", premake.gettarget(cfg, "build", "windows").fullpath)
+ end
+
+ function T.targets.TargetDir_OverridesBaseDir()
+ cfg.kind = "ConsoleApp"
+ cfg.targetdir = "MyTarget"
+ test.isequal("MyTarget\\MyProject.exe", premake.gettarget(cfg, "build", "windows").fullpath)
+ end
+
+ function T.targets.TargetExtension_OverridesDefault()
+ cfg.kind = "ConsoleApp"
+ cfg.targetextension = ".zmf"
+ test.isequal("MyProject.zmf", premake.gettarget(cfg, "build", "windows").fullpath)
+ end
+
+ function T.targets.TargetPrefix_OverridesDefault()
+ cfg.kind = "ConsoleApp"
+ cfg.targetprefix = "zoo"
+ test.isequal("zooMyProject.exe", premake.gettarget(cfg, "build", "windows").fullpath)
+ end
+
+ function T.targets.ImpLibName_UsedOnSharedLinks()
+ cfg.kind = "SharedLib"
+ cfg.implibname = "MyImports"
+ test.isequal("MyImports.lib", premake.gettarget(cfg, "link", "windows").fullpath)
+ end
+
+ function T.targets.ImpLibDir_UsedOnSharedLinks()
+ cfg.kind = "SharedLib"
+ cfg.implibdir = "MyTarget"
+ test.isequal("MyTarget\\MyProject.lib", premake.gettarget(cfg, "link", "windows").fullpath)
+ end
+
+ function T.targets.ImpLibExtension_UsedOnSharedLinks()
+ cfg.kind = "SharedLib"
+ cfg.implibextension = ".zmf"
+ test.isequal("MyProject.zmf", premake.gettarget(cfg, "link", "windows").fullpath)
+ end
+
+ function T.targets.ImpLibPrefix_UsedOnSharedLinks()
+ cfg.kind = "SharedLib"
+ cfg.implibprefix = "zoo"
+ test.isequal("zooMyProject.lib", premake.gettarget(cfg, "link", "windows").fullpath)
+ end