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:
authorstarkos <none@none>2008-11-19 05:17:43 +0300
committerstarkos <none@none>2008-11-19 05:17:43 +0300
commitde820a54455b5144f8138132beca61e366fcc5dc (patch)
tree29ffff112cba1877c5612f3c7a873e224a3e78e4
parent56ba443bbdfb97a24e6ae5166542f39e368d4c90 (diff)
** Merged with refac_clean branch; moved cleaning code into the actions, improved namespaces (r568:570)
-rw-r--r--src/actions/clean/_clean.lua144
-rw-r--r--src/actions/make/_make.lua16
-rw-r--r--src/actions/make/make_cpp.tmpl16
-rw-r--r--src/actions/make/make_solution.tmpl14
-rw-r--r--src/actions/vstudio/_vstudio.lua72
-rw-r--r--src/actions/vstudio/vs2002_solution.tmpl6
-rw-r--r--src/actions/vstudio/vs2003_solution.tmpl6
-rw-r--r--src/actions/vstudio/vs2005_solution.tmpl14
-rw-r--r--src/actions/vstudio/vs200x_vcproj.tmpl52
-rw-r--r--src/host/bytecode.c32
10 files changed, 182 insertions, 190 deletions
diff --git a/src/actions/clean/_clean.lua b/src/actions/clean/_clean.lua
index dc556bf..6909b0a 100644
--- a/src/actions/clean/_clean.lua
+++ b/src/actions/clean/_clean.lua
@@ -5,13 +5,11 @@
--
- clean = { }
-
--
-- Remove files created by an object's templates.
--
- function clean.templatefiles(this, templates)
+ local function cleantemplatefiles(this, templates)
if (templates) then
for _,tmpl in ipairs(templates) do
local fname = premake.getoutputname(this, tmpl[1])
@@ -22,108 +20,64 @@
--
--- Remove solution specific files
---
-
- function clean.solution(sln)
- local base = path.join(sln.location, sln.name)
-
- -- Visual Studio files
- os.remove(base .. ".suo")
- os.remove(base .. ".ncb")
- end
-
-
---
--- Remove project specific files
---
-
- function clean.project(prj)
- local base = path.join(prj.location, prj.name)
-
- if (prj.objdir) then
- os.rmdir(prj.objdir)
- end
-
- -- Visual Studio files
- os.remove(base .. ".csproj.user")
- os.remove(base .. ".csproj.webinfo")
-
- local files = os.matchfiles(base .. ".vcproj.*.user", base .. ".csproj.*.user")
- for _, fname in ipairs(files) do
- os.remove(fname)
- end
- end
-
-
---
--- Remove configuration specific files
+-- Register the "clean" action.
--
- function clean.config(cfg)
- -- remove the target binary
- os.remove(premake.gettargetfile(cfg, "target", cfg.kind, "windows"))
- os.remove(premake.gettargetfile(cfg, "target", cfg.kind, "linux"))
- os.remove(premake.gettargetfile(cfg, "target", cfg.kind, "macosx"))
-
- -- if there is an import library, remove that too
- os.remove(premake.gettargetfile(cfg, "implib", "StaticLib", "linux"))
- os.remove(premake.gettargetfile(cfg, "implib", "StaticLib", "windows"))
-
- local target = premake.gettargetfile(cfg, "target")
- local base = path.join(path.getdirectory(target), path.getbasename(target))
-
- -- Visual Studio files
- os.remove(base .. ".pdb")
- os.remove(base .. ".idb")
- os.remove(base .. ".ilk")
- os.remove(base .. ".vshost.exe")
- os.remove(base .. ".exe.manifest")
-
- -- Mono files
- os.remove(base .. ".exe.mdb")
- os.remove(base .. ".dll.mdb")
-
- -- remove object directory
- -- os.rmdir(cfg.objdir)
- end
-
-
---
--- For each registered action, walk all of the objects in the session and
--- remove the files created by their templates.
---
+ premake.actions["clean"] = {
+ description = "Remove all binaries and generated files",
- function clean.all()
- -- remove all template-driven files
- for _,action in pairs(premake.actions) do
+ execute = function()
+ local solutions = { }
+ local projects = { }
+ local targets = { }
+
+ -- 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
- clean.templatefiles(sln, action.solutiontemplates)
- clean.solution(sln)
-
+ table.insert(solutions, path.join(sln.location, sln.name))
+
for prj in premake.eachproject(sln) do
- clean.templatefiles(prj, action.projecttemplates)
- clean.project(prj)
+ table.insert(projects, path.join(prj.location, prj.name))
+ if (prj.objdir) then
+ os.rmdir(prj.objdir)
+ end
+
for cfg in premake.eachconfig(prj) do
- clean.config(cfg)
+ local target = premake.gettargetfile(cfg, "target")
+ table.insert(targets, path.join(path.getdirectory(target), path.getbasename(target)))
+
+ -- remove the target binary
+ os.remove(premake.gettargetfile(cfg, "target", cfg.kind, "windows"))
+ os.remove(premake.gettargetfile(cfg, "target", cfg.kind, "linux"))
+ os.remove(premake.gettargetfile(cfg, "target", cfg.kind, "macosx"))
+
+ -- if there is an import library, remove that too
+ os.remove(premake.gettargetfile(cfg, "implib", "StaticLib", "linux"))
+ os.remove(premake.gettargetfile(cfg, "implib", "StaticLib", "windows"))
+
+ os.rmdir(cfg.objdir)
end
end
end
- end
-
- -- project custom clean-up
- if (type(onclean) == "function") then
- onclean()
- end
- end
-
---
--- Register the "clean" action.
---
+ -- Walk the tree again. Delete templated and toolset-specific files
+ for _,action in pairs(premake.actions) do
+ for _,sln in ipairs(_SOLUTIONS) do
+ cleantemplatefiles(sln, action.solutiontemplates)
+ for prj in premake.eachproject(sln) do
+ cleantemplatefiles(prj, action.projecttemplates)
+ end
+ end
+
+ if (type(action.onclean) == "function") then
+ action.onclean(solutions, projects, targets)
+ end
+ end
- premake.actions["clean"] = {
- description = "Remove all binaries and generated files",
- execute = clean.all,
+ -- global cleaner
+ if (type(onclean) == "function") then
+ onclean()
+ end
+ end,
}
diff --git a/src/actions/make/_make.lua b/src/actions/make/_make.lua
index 66919af..5f044b5 100644
--- a/src/actions/make/_make.lua
+++ b/src/actions/make/_make.lua
@@ -4,18 +4,18 @@
-- Copyright (c) 2008 Jason Perkins and the Premake project
--
- make = { }
+ _MAKE = { }
--
-- Escape a string so it can be written to a makefile.
--
- function make.esc(value)
+ function _MAKE.esc(value)
if (type(value) == "table") then
local result = { }
for _,v in ipairs(value) do
- table.insert(result, make.esc(v))
+ table.insert(result, _MAKE.esc(v))
end
return result
else
@@ -31,7 +31,7 @@
-- writes to the same location I use name + ".make" to keep it unique.
--
- function make.getmakefilename(this, searchprjs)
+ function _MAKE.getmakefilename(this, searchprjs)
-- how many projects/solutions use this location?
local count = 0
for _,sln in ipairs(_SOLUTIONS) do
@@ -55,10 +55,10 @@
-- Returns a list of object names, properly escaped to be included in the makefile.
--
- function make.getnames(tbl)
+ function _MAKE.getnames(tbl)
local result = table.extract(tbl, "name")
for k,v in pairs(result) do
- result[k] = make.esc(v)
+ result[k] = _MAKE.esc(v)
end
return result
end
@@ -82,10 +82,10 @@
},
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 },
},
}
diff --git a/src/actions/make/make_cpp.tmpl b/src/actions/make/make_cpp.tmpl
index 2210bd5..02d65b9 100644
--- a/src/actions/make/make_cpp.tmpl
+++ b/src/actions/make/make_cpp.tmpl
@@ -1,14 +1,14 @@
# <%= premake.actions[_ACTION].shortname %> project makefile autogenerated by Premake
ifndef CONFIG
- CONFIG=<%= make.esc(this.configurations[1]) %>
+ CONFIG=<%= _MAKE.esc(this.configurations[1]) %>
endif
<% for cfg in premake.eachconfig(this) do %>
-ifeq ($(CONFIG),<%= make.esc(cfg.name)%>)
- TARGETDIR = <%= make.esc(path.getdirectory(cfg.target)) %>
- TARGET = $(TARGETDIR)/<%= make.esc(path.getname(cfg.target)) %>
- OBJDIR = <%= make.esc(premake.getobjdir(cfg)) %>
+ifeq ($(CONFIG),<%= _MAKE.esc(cfg.name)%>)
+ TARGETDIR = <%= _MAKE.esc(path.getdirectory(cfg.target)) %>
+ TARGET = $(TARGETDIR)/<%= _MAKE.esc(path.getname(cfg.target)) %>
+ OBJDIR = <%= _MAKE.esc(premake.getobjdir(cfg)) %>
DEFINES += <%= premake.tools[_OPTIONS.cc].make_defines(cfg) %>
INCLUDES += <%= premake.tools[_OPTIONS.cc].make_includes(cfg) %>
CPPFLAGS += <%= premake.tools[_OPTIONS.cc].make_cppflags(cfg) %> $(DEFINES) $(INCLUDES)
@@ -29,14 +29,14 @@ endif
OBJECTS := \
<% for _, file in ipairs(this.files) do %>
<% if path.iscppfile(file) then %>
- $(OBJDIR)/<%= make.esc(path.getbasename(file)) %>.o \
+ $(OBJDIR)/<%= _MAKE.esc(path.getbasename(file)) %>.o \
<% end %>
<% end %>
RESOURCES := \
<% for _, file in ipairs(this.files) do %>
<% if path.isresourcefile(file) then %>
- $(OBJDIR)/<%= make.esc(path.getbasename(file)) %>.res \
+ $(OBJDIR)/<%= _MAKE.esc(path.getbasename(file)) %>.res \
<% end %>
<% end %>
@@ -95,7 +95,7 @@ endif
<% for _, file in ipairs(this.files) do %>
<% if path.iscppfile(file) then %>
-$(OBJDIR)/<%= make.esc(path.getbasename(file)) %>.o: <%= make.esc(file) %>
+$(OBJDIR)/<%= _MAKE.esc(path.getbasename(file)) %>.o: <%= _MAKE.esc(file) %>
@echo $(notdir $<)
@<%= premake.tools[_OPTIONS.cc].make_file_rule(file) %>
diff --git a/src/actions/make/make_solution.tmpl b/src/actions/make/make_solution.tmpl
index 40473ff..3bd4a49 100644
--- a/src/actions/make/make_solution.tmpl
+++ b/src/actions/make/make_solution.tmpl
@@ -3,11 +3,11 @@
# Where {config_name} is one of: <%= table.implode(this.configurations, '"', '"', ', ') %>.
ifndef CONFIG
- CONFIG=<%= make.esc(this.configurations[1]) %>
+ CONFIG=<%= _MAKE.esc(this.configurations[1]) %>
endif
export CONFIG
-PROJECTS := <%= table.concat(make.esc(table.extract(this.projects, "name")), " ") %>
+PROJECTS := <%= table.concat(_MAKE.esc(table.extract(this.projects, "name")), " ") %>
.PHONY: all clean $(PROJECTS)
@@ -15,18 +15,18 @@ all: $(PROJECTS)
<% for _,prj in ipairs(this.projects) do %>
<% for cfg in premake.eachconfig(prj) do %>
-ifeq ($(CONFIG),<%= make.esc(cfg.name)%>)
- DEPENDENCIES := <%= table.concat(make.esc(table.extract(premake.getdependencies(cfg), "name")), " ") %>
+ifeq ($(CONFIG),<%= _MAKE.esc(cfg.name)%>)
+ DEPENDENCIES := <%= table.concat(_MAKE.esc(table.extract(premake.getdependencies(cfg), "name")), " ") %>
endif
<% end %>
-<%= make.esc(prj.name) %>: ${DEPENDENCIES}
+<%= _MAKE.esc(prj.name) %>: ${DEPENDENCIES}
@echo ==== Building <%= prj.name %> ====
- @${MAKE} --no-print-directory -C <%=make.esc(path.getrelative(this.location, prj.location))%> -f <%=make.esc(make.getmakefilename(prj, true))%>
+ @${MAKE} --no-print-directory -C <%=_MAKE.esc(path.getrelative(this.location, prj.location))%> -f <%=_MAKE.esc(_MAKE.getmakefilename(prj, true))%>
<% end %>
clean:
<% for _,prj in ipairs(this.projects) do %>
- @${MAKE} --no-print-directory -C <%=make.esc(path.getrelative(this.location, prj.location))%> -f <%=make.esc(make.getmakefilename(prj, true))%> clean
+ @${MAKE} --no-print-directory -C <%=_MAKE.esc(path.getrelative(this.location, prj.location))%> -f <%=_MAKE.esc(_MAKE.getmakefilename(prj, true))%> clean
<% end %>
diff --git a/src/actions/vstudio/_vstudio.lua b/src/actions/vstudio/_vstudio.lua
index a9e8fbd..ed004ba 100644
--- a/src/actions/vstudio/_vstudio.lua
+++ b/src/actions/vstudio/_vstudio.lua
@@ -4,14 +4,14 @@
-- Copyright (c) 2008 Jason Perkins and the Premake project
--
- vstudio = { }
+ _VS = { }
--
-- Configuration blocks used by each version.
--
- vstudio.vs2002 = {
+ _VS.vs2002 = {
"VCCLCompilerTool",
"VCCustomBuildTool",
"VCLinkerTool",
@@ -24,7 +24,7 @@
"VCWebDeploymentTool"
}
- vstudio.vs2003 = {
+ _VS.vs2003 = {
"VCCLCompilerTool",
"VCCustomBuildTool",
"VCLinkerTool",
@@ -40,7 +40,7 @@
"VCAuxiliaryManagedWrapperGeneratorTool"
}
- vstudio.vs2005 = {
+ _VS.vs2005 = {
"VCPreBuildEventTool",
"VCCustomBuildTool",
"VCXMLDataGeneratorTool",
@@ -61,14 +61,44 @@
"VCPostBuildEventTool"
}
- vstudio.vs2008 = vstudio.vs2005
+ _VS.vs2008 = _VS.vs2005
--
+-- Clean Visual Studio files
+--
+
+ function _VS.onclean(solutions, projects, targets)
+ for _,name in ipairs(solutions) do
+ os.remove(name .. ".suo")
+ os.remove(name .. ".ncb")
+ end
+
+ for _,name in ipairs(projects) do
+ os.remove(name .. ".csproj.user")
+ os.remove(name .. ".csproj.webinfo")
+
+ local files = os.matchfiles(name .. ".vcproj.*.user", name .. ".csproj.*.user")
+ for _, fname in ipairs(files) do
+ os.remove(fname)
+ end
+ end
+
+ for _,name in ipairs(targets) do
+ os.remove(name .. ".pdb")
+ os.remove(name .. ".idb")
+ os.remove(name .. ".ilk")
+ os.remove(name .. ".vshost.exe")
+ os.remove(name .. ".exe.manifest")
+ end
+ end
+
+
+--
-- Returns the architecture identifier for a project.
--
- function vstudio.arch(prj, version)
+ function _VS.arch(prj, version)
if (prj.language == "C#") then
if (version < 2005) then
return ".NET"
@@ -86,7 +116,7 @@
-- Return the action specific text for a boolean value.
--
- function vstudio.bool(value)
+ function _VS.bool(value)
if (_ACTION < "vs2005") then
return iif(value, "TRUE", "FALSE")
else
@@ -100,7 +130,7 @@
-- Return a configuration type index.
--
- function vstudio.cfgtype(cfg)
+ function _VS.cfgtype(cfg)
if (cfg.kind == "SharedLib") then
return 2
elseif (cfg.kind == "StaticLib") then
@@ -124,7 +154,7 @@
io.write(indent .. "\t" .. name .. '="' .. value .. '"\r\n')
end
- function vstudio.files(prj, fname, state, nestlevel)
+ function _VS.files(prj, fname, state, nestlevel)
local indent = string.rep("\t", nestlevel + 2)
if (state == "GroupStart") then
@@ -163,7 +193,7 @@
-- can't disable it if the NoImportLib flag is set, but I can hide it.
--
- function vstudio.importlibfile(cfg)
+ function _VS.importlibfile(cfg)
local fname = premake.gettargetfile(cfg, "implib", "StaticLib", "windows")
if (cfg.flags.NoImportLib) then
local objdir = premake.getobjdir(cfg)
@@ -179,7 +209,7 @@
-- Return the optimization code.
--
- function vstudio.optimization(cfg)
+ function _VS.optimization(cfg)
local result = 0
for _, value in ipairs(cfg.flags) do
if (value == "Optimize") then
@@ -199,7 +229,7 @@
-- Assemble the project file name.
--
- function vstudio.projectfile(prj)
+ function _VS.projectfile(prj)
local extension
if (prj.language == "C#") then
extension = ".csproj"
@@ -217,8 +247,8 @@
-- Returns the runtime code for a configuration.
--
- function vstudio.runtime(cfg)
- local debugbuild = (vstudio.optimization(cfg) == 0)
+ function _VS.runtime(cfg)
+ local debugbuild = (_VS.optimization(cfg) == 0)
if (cfg.flags.StaticRuntime) then
return iif(debugbuild, 1, 0)
else
@@ -232,12 +262,12 @@
-- Return the debugging symbols level for a configuration.
--
- function vstudio.symbols(cfg)
+ function _VS.symbols(cfg)
if (not cfg.flags.Symbols) then
return 0
else
-- Edit-and-continue does't work if optimizing or managed C++
- if (cfg.flags.NoEditAndContinue or vstudio.optimization(cfg) ~= 0 or cfg.flags.Managed) then
+ if (cfg.flags.NoEditAndContinue or _VS.optimization(cfg) ~= 0 or cfg.flags.Managed) then
return 3
else
return 4
@@ -251,7 +281,7 @@
-- Returns the Visual Studio tool ID for a given project type.
--
- function vstudio.tool(prj)
+ function _VS.tool(prj)
if (prj.language == "C#") then
return "FAE04EC0-301F-11D3-BF4B-00C04F79EFBC"
else
@@ -281,6 +311,8 @@
projecttemplates = {
{ ".vcproj", _TEMPLATES.vs200x_vcproj },
},
+
+ onclean = _VS.onclean,
}
@@ -303,6 +335,8 @@
projecttemplates = {
{ ".vcproj", _TEMPLATES.vs200x_vcproj },
},
+
+ onclean = _VS.onclean,
}
@@ -325,6 +359,8 @@
projecttemplates = {
{ ".vcproj", _TEMPLATES.vs200x_vcproj },
},
+
+ onclean = _VS.onclean,
}
@@ -347,4 +383,6 @@
projecttemplates = {
{ ".vcproj", _TEMPLATES.vs200x_vcproj },
},
+
+ onclean = _VS.onclean,
}
diff --git a/src/actions/vstudio/vs2002_solution.tmpl b/src/actions/vstudio/vs2002_solution.tmpl
index 617a389..b92e917 100644
--- a/src/actions/vstudio/vs2002_solution.tmpl
+++ b/src/actions/vstudio/vs2002_solution.tmpl
@@ -1,7 +1,7 @@
<% eol = "\r\n" %>
Microsoft Visual Studio Solution File, Format Version 7.00
<% for prj in premake.eachproject(this) do %>
-Project("{<%=vstudio.tool(prj)%>}") = "<%=prj.name%>", "<%=path.translate(path.getrelative(this.location, vstudio.projectfile(prj)))%>", "{<%=prj.uuid%>}"
+Project("{<%=_VS.tool(prj)%>}") = "<%=prj.name%>", "<%=path.translate(path.getrelative(this.location, _VS.projectfile(prj)))%>", "{<%=prj.uuid%>}"
EndProject
<% end %>
Global
@@ -22,8 +22,8 @@ Global
GlobalSection(ProjectConfiguration) = postSolution
<% for prj in premake.eachproject(this) do %>
<% for i,cfgname in ipairs(this.configurations) do %>
- {<%=prj.uuid%>}.<%=cfgname%>.ActiveCfg = <%=cfgname%>|<%=vstudio.arch(prj, 2002)%>
- {<%=prj.uuid%>}.<%=cfgname%>.Build.0 = <%=cfgname%>|<%=vstudio.arch(prj, 2002)%>
+ {<%=prj.uuid%>}.<%=cfgname%>.ActiveCfg = <%=cfgname%>|<%=_VS.arch(prj, 2002)%>
+ {<%=prj.uuid%>}.<%=cfgname%>.Build.0 = <%=cfgname%>|<%=_VS.arch(prj, 2002)%>
<% end %>
<% end %>
EndGlobalSection
diff --git a/src/actions/vstudio/vs2003_solution.tmpl b/src/actions/vstudio/vs2003_solution.tmpl
index a6d6c41..fa1bd78 100644
--- a/src/actions/vstudio/vs2003_solution.tmpl
+++ b/src/actions/vstudio/vs2003_solution.tmpl
@@ -1,7 +1,7 @@
<% eol = "\r\n" %>
Microsoft Visual Studio Solution File, Format Version 8.00
<% for prj in premake.eachproject(this) do %>
-Project("{<%=vstudio.tool(prj)%>}") = "<%=prj.name%>", "<%=path.translate(path.getrelative(this.location, vstudio.projectfile(prj)))%>", "{<%=prj.uuid%>}"
+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 %>
@@ -18,8 +18,8 @@ Global
GlobalSection(ProjectConfiguration) = postSolution
<% for prj in premake.eachproject(this) do %>
<% for i,cfgname in ipairs(this.configurations) do %>
- {<%=prj.uuid%>}.<%=cfgname%>.ActiveCfg = <%=cfgname%>|<%=vstudio.arch(prj, 2002)%>
- {<%=prj.uuid%>}.<%=cfgname%>.Build.0 = <%=cfgname%>|<%=vstudio.arch(prj, 2002)%>
+ {<%=prj.uuid%>}.<%=cfgname%>.ActiveCfg = <%=cfgname%>|<%=_VS.arch(prj, 2002)%>
+ {<%=prj.uuid%>}.<%=cfgname%>.Build.0 = <%=cfgname%>|<%=_VS.arch(prj, 2002)%>
<% end %>
<% end %>
EndGlobalSection
diff --git a/src/actions/vstudio/vs2005_solution.tmpl b/src/actions/vstudio/vs2005_solution.tmpl
index cba705c..8b0db7d 100644
--- a/src/actions/vstudio/vs2005_solution.tmpl
+++ b/src/actions/vstudio/vs2005_solution.tmpl
@@ -11,7 +11,7 @@ Microsoft Visual Studio Solution File, Format Version 10.00
<% 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 %>
-Project("{<%=vstudio.tool(prj)%>}") = "<%=prj.name%>", "<%=path.translate(path.getrelative(this.location, vstudio.projectfile(prj)),"\\")%>", "{<%=prj.uuid%>}"
+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 %>
@@ -33,17 +33,17 @@ Global
<% for prj in premake.eachproject(this) do %>
<% for _, cfgname in ipairs(this.configurations) do %>
<% if hasdotnet then %>
- {<%= prj.uuid %>}.<%= cfgname %>|Any CPU.ActiveCfg = <%= cfgname %>|<%= vstudio.arch(prj) %>
+ {<%= prj.uuid %>}.<%= cfgname %>|Any CPU.ActiveCfg = <%= cfgname %>|<%= _VS.arch(prj) %>
<% if (prj.language ~= "C" and prj.language ~= "C++") then %>
- {<%= prj.uuid %>}.<%= cfgname %>|Any CPU.Build.0 = <%= cfgname %>|<%= vstudio.arch(prj) %>
+ {<%= prj.uuid %>}.<%= cfgname %>|Any CPU.Build.0 = <%= cfgname %>|<%= _VS.arch(prj) %>
<% end %>
<% end; if (hasdotnet and hascpp) then %>
- {<%= prj.uuid %>}.<%= cfgname %>|Mixed Platforms.ActiveCfg = <%= cfgname %>|<%= vstudio.arch(prj) %>
- {<%= prj.uuid %>}.<%= cfgname %>|Mixed Platforms.Build.0 = <%= cfgname %>|<%= vstudio.arch(prj) %>
+ {<%= prj.uuid %>}.<%= cfgname %>|Mixed Platforms.ActiveCfg = <%= cfgname %>|<%= _VS.arch(prj) %>
+ {<%= prj.uuid %>}.<%= cfgname %>|Mixed Platforms.Build.0 = <%= cfgname %>|<%= _VS.arch(prj) %>
<% end; if (hascpp) then %>
- {<%= prj.uuid %>}.<%= cfgname %>|Win32.ActiveCfg = <%= cfgname %>|<%= vstudio.arch(prj) %>
+ {<%= prj.uuid %>}.<%= cfgname %>|Win32.ActiveCfg = <%= cfgname %>|<%= _VS.arch(prj) %>
<% if (prj.language == "C" or prj.language == "C++") then %>
- {<%= prj.uuid %>}.<%= cfgname %>|Win32.Build.0 = <%= cfgname %>|<%= vstudio.arch(prj) %>
+ {<%= prj.uuid %>}.<%= cfgname %>|Win32.Build.0 = <%= cfgname %>|<%= _VS.arch(prj) %>
<% end %>
<% end %>
<% end %>
diff --git a/src/actions/vstudio/vs200x_vcproj.tmpl b/src/actions/vstudio/vs200x_vcproj.tmpl
index 74b4984..a226f52 100644
--- a/src/actions/vstudio/vs200x_vcproj.tmpl
+++ b/src/actions/vstudio/vs200x_vcproj.tmpl
@@ -33,13 +33,13 @@
Name="<%= premake.esc(cfg.name) %>|Win32"
OutputDirectory="<%= premake.esc(path.translate(path.getdirectory(cfg.target), "\\")) %>"
IntermediateDirectory="<%= premake.esc(path.translate(premake.getobjdir(cfg)), "\\") %>"
- ConfigurationType="<%= vstudio.cfgtype(cfg) %>"
+ ConfigurationType="<%= _VS.cfgtype(cfg) %>"
CharacterSet="<%= iif(cfg.flags.Unicode, 1, 2) %>"
<% if cfg.flags.Managed then %>
ManagedExtensions="true"
<% end %>
>
-<% for _,block in ipairs(vstudio[_ACTION]) do %>
+<% for _,block in ipairs(_VS[_ACTION]) do %>
<% if (block == "VCALinkTool") then %>
<Tool
Name="VCALinkTool"
@@ -62,9 +62,9 @@
<% if #cfg.buildoptions > 0 then %>
AdditionalOptions="<%= table.concat(premake.esc(cfg.buildoptions), " ") %>"
<% end %>
- Optimization="<%= vstudio.optimization(cfg) %>"
+ Optimization="<%= _VS.optimization(cfg) %>"
<% if cfg.flags.NoFramePointer then %>
- OmitFramePointers="<%= vstudio.bool(true) %>"
+ OmitFramePointers="<%= _VS.bool(true) %>"
<% end %>
<% if #cfg.incdirs > 0 then %>
AdditionalIncludeDirectories="<%= table.concat(premake.esc(cfg.incdirs), ";") %>"
@@ -72,31 +72,31 @@
<% if #cfg.defines > 0 then %>
PreprocessorDefinitions="<%= table.concat(premake.esc(cfg.defines), ";") %>"
<% end %>
- <% if vstudio.optimization(cfg) == 0 and not cfg.flags.Managed then %>
- MinimalRebuild="<%= vstudio.bool(true) %>"
+ <% if _VS.optimization(cfg) == 0 and not cfg.flags.Managed then %>
+ MinimalRebuild="<%= _VS.bool(true) %>"
<% end %>
<% if cfg.flags.NoExceptions then %>
ExceptionHandling="<%= iif(_ACTION < "vs2005", "FALSE", 0) %>"
<% elseif cfg.flags.SEH and _ACTION > "vs2003" then %>
ExceptionHandling="2"
<% end %>
- <% if vstudio.optimization(cfg) == 0 and not cfg.flags.Managed then %>
+ <% if _VS.optimization(cfg) == 0 and not cfg.flags.Managed then %>
BasicRuntimeChecks="3"
<% end %>
- <% if vstudio.optimization(cfg) ~= 0 then %>
- StringPooling="<%= vstudio.bool(true) %>"
+ <% if _VS.optimization(cfg) ~= 0 then %>
+ StringPooling="<%= _VS.bool(true) %>"
<% end %>
- RuntimeLibrary="<%= vstudio.runtime(cfg) %>"
- EnableFunctionLevelLinking="<%= vstudio.bool(true) %>"
+ RuntimeLibrary="<%= _VS.runtime(cfg) %>"
+ EnableFunctionLevelLinking="<%= _VS.bool(true) %>"
<% if _ACTION < "vs2005" and not cfg.flags.NoRTTI then %>
- RuntimeTypeInfo="<%= vstudio.bool(true) %>"
+ RuntimeTypeInfo="<%= _VS.bool(true) %>"
<% elseif _ACTION > "vs2003" and cfg.flags.NoRTTI then %>
- RuntimeTypeInfo="<%= vstudio.bool(false) %>"
+ RuntimeTypeInfo="<%= _VS.bool(false) %>"
<% end %>
<% if cfg.flags.NativeWChar then %>
- TreatWChar_tAsBuiltInType="<%= vstudio.bool(true) %>"
+ TreatWChar_tAsBuiltInType="<%= _VS.bool(true) %>"
<% elseif cfg.flags.NoNativeWChar then %>
- TreatWChar_tAsBuiltInType="<%= vstudio.bool(false) %>"
+ TreatWChar_tAsBuiltInType="<%= _VS.bool(false) %>"
<% end %>
<% if not cfg.flags.NoPCH and cfg.pchheader then %>
UsePrecompiledHeader="<%= iif(_ACTION < "vs2005", 3, 2) %>"
@@ -106,13 +106,13 @@
<% end %>
WarningLevel="<%= iif(cfg.flags.ExtraWarnings, 4, 3) %>"
<% if cfg.flags.FatalWarnings then %>
- WarnAsError="<%= vstudio.bool(true) %>"
+ WarnAsError="<%= _VS.bool(true) %>"
<% end %>
<% if _ACTION < "vs2008" and not cfg.flags.Managed then %>
- Detect64BitPortabilityProblems="<%= vstudio.bool(not cfg.flags.No64BitChecks) %>"
+ Detect64BitPortabilityProblems="<%= _VS.bool(not cfg.flags.No64BitChecks) %>"
<% end %>
ProgramDataBaseFileName="$(OutDir)\$(ProjectName).pdb"
- DebugInformationFormat="<%= vstudio.symbols(cfg) %>"
+ DebugInformationFormat="<%= _VS.symbols(cfg) %>"
/>
<% elseif (block == "VCCustomBuildTool") then %>
<Tool
@@ -126,7 +126,7 @@
<% if cfg.kind ~= "StaticLib" then %>
Name="VCLinkerTool"
<% if cfg.flags.NoImportLib then %>
- IgnoreImportLibrary="<%= vstudio.bool(true) %>"
+ IgnoreImportLibrary="<%= _VS.bool(true) %>"
<% end %>
<% if #cfg.linkoptions > 0 then %>
AdditionalOptions="<%= table.concat(premake.esc(cfg.linkoptions), " ") %>"
@@ -135,20 +135,20 @@
AdditionalDependencies="<%= table.concat(premake.getlibraries(cfg), " ") %>"
<% end %>
OutputFile="$(OutDir)\<%= path.getname(cfg.target) %>"
- LinkIncremental="<%= iif(vstudio.optimization(cfg) == 0, 2, 1) %>"
+ LinkIncremental="<%= iif(_VS.optimization(cfg) == 0, 2, 1) %>"
AdditionalLibraryDirectories="<%= table.concat(premake.esc(cfg.libdirs) , ";") %>"
<% local deffile = premake.findfile(cfg, ".def"); if deffile then %>
ModuleDefinitionFile="<%= deffile %>"
<% end %>
<% if cfg.flags.NoManifest then %>
- GenerateManifest="<%= vstudio.bool(false) %>"
+ GenerateManifest="<%= _VS.bool(false) %>"
<% end %>
- GenerateDebugInformation="<%= vstudio.bool(vstudio.symbols(cfg) ~= 0) %>"
- <% if vstudio.symbols(cfg) ~= 0 then %>
+ GenerateDebugInformation="<%= _VS.bool(_VS.symbols(cfg) ~= 0) %>"
+ <% if _VS.symbols(cfg) ~= 0 then %>
ProgramDatabaseFile="$(OutDir)\$(ProjectName).pdb"
<% end %>
SubSystem="<%= iif(cfg.kind == "ConsoleApp", 1, 2) %>"
- <% if vstudio.optimization(cfg) ~= 0 then %>
+ <% if _VS.optimization(cfg) ~= 0 then %>
OptimizeReferences="2"
EnableCOMDATFolding="2"
<% end %>
@@ -156,7 +156,7 @@
EntryPointSymbol="mainCRTStartup"
<% end %>
<% if cfg.kind == "SharedLib" then %>
- ImportLibrary="<%= path.translate(vstudio.importlibfile(cfg), "\\") %>"
+ ImportLibrary="<%= path.translate(_VS.importlibfile(cfg), "\\") %>"
<% end %>
TargetMachine="1"
<% else %>
@@ -229,7 +229,7 @@
<References>
</References>
<Files>
- <% premake.walksources(this, this.files, vstudio.files) %>
+ <% premake.walksources(this, this.files, _VS.files) %>
</Files>
<Globals>
</Globals>
diff --git a/src/host/bytecode.c b/src/host/bytecode.c
index 421de1f..19be216 100644
--- a/src/host/bytecode.c
+++ b/src/host/bytecode.c
@@ -14,15 +14,15 @@ const char* builtin_bytecode[] = {
"\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\027\216\000\000\000\012\000\200\011\101\000\000\000\201\100\000\000\301\200\000\000\001\301\000\000\101\001\001\000\201\101\001\000\301\201\001\000\001\302\001\000\101\002\002\000\201\102\002\000\301\202\002\000\001\303\002\000\101\003\003\000\201\103\003\000\301\203\003\000\001\304\003\000\101\004\004\000\201\104\004\000\301\204\004\000\001\305\004\000\101\005\005\000\201\105\005\000\042\100\000\013\112\000\000\002\201\200\005\000\301\300\005\000\001\001\006\000\101\101\006\000\142\100\000\002\212\000\000\001\301\200\006\000\001\301\006\000\242\100\000\001\305\000\007\000\012\001\000\006\101\201\007\000\201\301\007\000\301\001\010\000\001\102\010\000\101\202\010\000\201\302\010\000\301\002\011\000\001\103\011\000\101\203\011\000\201\303\011\000\301\003\012\000\001\104\012\000\042\101\000\006\311\000\201\216\305\000\007\000\012\001\200\001\101\301\012\000\201\001\013\000\301\101\013\000\042\101\200\001\311\000\001\225\305\000\007\000\012\001\000\005\101\301\013\000\201\001\010\000\301\101\010\000\001\302\010\000\101\002\011\000\201\002\014\000\301\102\014\000\001\203\014\000\101\003\012\000\201\303\014\000\042\101\000\005\311\000\001\227\305\000\007\000\012\001\200\000\101\201\010\000\042\101\200\000\311\000\001\232\344\000\000\000\307\200\007\000\344\100\000\000\307\100\015\000\344\200\000\000\307\200\015\000\344\300\000\000\307\300\007\000\344\000\001\000\307\000\010\000\344\100\001\000\307\100\010\000\344\200\001\000\000\000\000\000\307\200\010\000\344\300\001\000\307\300\015\000\344\000\002\000\307\000\016\000\344\100\002\000\307\100\016\000\344\200\002\000\307\200\016\000\344\300\002\000\307\300\016\000\344\000\003\000\000\000\200\000\307\000\017\000\344\100\003\000\000\000\000\001\307\100\017\000\344\200\003\000\307\000\011\000\344\300\003\000\307\100\011\000\344\000\004\000\307\200\011\000\344\100\004\000\307\200\017\000\344\200\004\000\307\000\014\000\344\300\004\000\307\100\014\000\344\000\005\000\307\200\014\000\344\100\005\000\307\300\017\000\344\200\005\000\307\300\011\000\344\300\005\000\307\000\020\000\344\000\006\000\307\100\012\000\344\100\006\000\307\100\020\000\344\200\006\000\307\200\020\000\344\300\006\000\307\300\014\000\344\000\007\000\307\300\020\000\344\100\007\000\307\000\021\000\344\200\007\000\307\100\021\000\036\000\200\000\106\000\000\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\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\002\000\000\000\103\000\004\004\000\000\000\103\053\053\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\013\000\000\000\154\151\163\164\146\151\145\154\144\163\000\004\015\000\000\000\142\165\151\154\144\157\160\164\151\157\156\163\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\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\156\143\144\151\162\163\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\013\000\000\000\162\145\163\144\145\146\151\156\145\163\000\004\013\000\000\000\162\145\163\151\156\143\144\151\162\163\000\004\013\000\000\000\162\145\163\157\160\164\151\157\156\163\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\021\000\000\000\154\157\143\141\164\151\157\156\162\145\154\141\164\151\166\145\000\004\010\000\000\000\142\141\163\145\144\151\162\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\012\000\000\000\164\141\162\147\145\164\144\151\162\000\004\013\000\000\000\146\154\141\147\146\151\145\154\144\163\000\004\016\000\000\000\143\157\156\146\151\147\165\162\141\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\004\013\000\000\000\151\155\160\154\151\142\156\141\155\145\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\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\005\000\000\000\153\151\156\144\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\004\011\000\000\000\154\157\143\141\164\151\157\156\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\017\000\000\000\162\145\163\151\156\143\154\165\144\145\144\151\162\163\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\013\000\000\000\164\141\162\147\145\164\156\141\155\145\000\004\020\000\000\000\164\141\162\147\145\164\145\170\164\145\156\163\151\157\156\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\037\000\000\000\000\000\000\000\174\000\000\000\176\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\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\004\007\000\000\000\143\157\156\146\151\147\000\004\015\000\000\000\142\165\151\154\144\157\160\164\151\157\156\163\000\000\000\000\000\010\000\000\000\175\000\000\000\175\000\000\000\175\000\000\000\175\000\000\000\175\000\000\000\175\000\000\000\175\000\000\000\176\000\000\000\001\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\201\000\000\000\226\000\000\000\000\001\000\012\050\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\100\000\200\112\002\000\000\311\100\002\004\041\201\000\000\026\300\376\177\336\000\000\001\036\000\200\000\015\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\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\154\151\163\164\146\151\145\154\144\163\000\000\000\000\000\050\000\000\000\202\000\000\000\202\000\000\000\202\000\000\000\202\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\207\000\000\000\210\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\213\000\000\000\213\000\000\000\213\000\000\000\213\000\000\000\213\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\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\221\000\000\000\222\000\000\000\225\000\000\000\226\000\000\000\011\000\000\000\011\000\000\000\153\145\171\167\157\162\144\163\000\000\000\000\000\047\000\000\000\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\000\000\000\047\000\000\000\004\000\000\000\145\162\162\000\004\000\000\000\047\000\000\000\004\000\000\000\143\146\147\000\013\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\041\000\000\000\046\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\041\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\041\000\000\000\046\000\000\000\002\000\000\000\137\000\042\000\000\000\044\000\000\000\005\000\000\000\156\141\155\145\000\042\000\000\000\044\000\000\000\000\000\000\000\000\000\000\000\231\000\000\000\233\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\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\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\000\000\000\000\010\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\001\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\236\000\000\000\240\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\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\004\007\000\000\000\143\157\156\146\151\147\000\004\010\000\000\000\144\145\146\151\156\145\163\000\000\000\000\000\010\000\000\000\237\000\000\000\237\000\000\000\237\000\000\000\237\000\000\000\237\000\000\000\237\000\000\000\237\000\000\000\240\000\000\000\001\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\243\000\000\000\245\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\015\000\000\000\163\145\164\146\151\154\145\141\162\162\141\171\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\011\000\000\000\145\170\143\154\165\144\145\163\000\000\000\000\000\010\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\001\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\250\000\000\000\252\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\015\000\000\000\163\145\164\146\151\154\145\141\162\162\141\171\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\006\000\000\000\146\151\154\145\163\000\000\000\000\000\010\000\000\000\251\000\000\000\251\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\001\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\255\000\000\000\257\000\000\000\001\001\000\006\011\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\104\001\000\000\135\000\200\002\136\000\000\000\036\000\200\000\004\000\000\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\004\007\000\000\000\143\157\156\146\151\147\000\004\006\000\000\000\146\154\141\147\163\000\000\000\000\000\011\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\256\000\000\000\256\000\000\000\257\000\000\000\001\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\014\000\000\000\166\141\154\151\144\137\146\154\141\147\163\000\000\000\000\000\262\000\000\000\264\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\013\000\000\000\151\155\160\154\151\142\156\141\155\145\000\000\000\000\000\010\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\001\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\267\000\000\000\271\000\000\000\000\001\000\006\013\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\005\001\001\000\006\101\101\002\100\001\000\000\034\001\000\001\135\000\000\000\136\000\000\000\036\000\200\000\006\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\012\000\000\000\151\155\160\154\151\142\144\151\162\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\013\000\000\000\270\000\000\000\270\000\000\000\270\000\000\000\270\000\000\000\270\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\001\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\274\000\000\000\276\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\020\000\000\000\151\155\160\154\151\142\145\170\164\145\156\163\151\157\156\000\000\000\000\000\010\000\000\000\275\000\000\000\275\000\000\000\275\000\000\000\275\000\000\000\275\000\000\000\275\000\000\000\275\000\000\000\276\000\000\000\001\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\301\000\000\000\303\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\015\000\000\000\151\155\160\154\151\142\160\162\145\146\151\170\000\000\000\000\000\010\000\000\000\302\000\000\000\302\000\000\000\302\000\000\000\302\000\000\000\302\000\000\000\302\000\000\000\302\000\000\000\303\000\000\000\001\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\306\000\000\000\310\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\014\000\000\000\163\145\164\144\151\162\141\162\162\141\171\000\004\007\000\000\000\143\157\156\146\151\147\000\004\010\000\000\000\151\156\143\144\151\162\163\000\000\000\000\000\010\000\000\000\307\000\000\000\307\000\000\000\307\000\000\000\307\000\000\000\307\000\000\000\307\000\000\000\307\000\000\000\310\000\000\000\001\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\313\000\000\000\315\000\000\000\001\001\000\006\011\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\104\001\000\000\135\000\200\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\005\000\000\000\153\151\156\144\000\000\000\000\000\011\000\000\000\314\000\000\000\314\000\000\000\314\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\001\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\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\000\000\000\000\320\000\000\000\322\000\000\000\001\001\000\006\011\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\104\001\000\000\135\000\200\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\011\000\000\000\154\141\156\147\165\141\147\145\000\000\000\000\000\011\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\321\000\000\000\322\000\000\000\001\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\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\000\000\000\000\325\000\000\000\327\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\014\000\000\000\163\145\164\144\151\162\141\162\162\141\171\000\004\007\000\000\000\143\157\156\146\151\147\000\004\010\000\000\000\154\151\142\144\151\162\163\000\000\000\000\000\010\000\000\000\326\000\000\000\326\000\000\000\326\000\000\000\326\000\000\000\326\000\000\000\326\000\000\000\326\000\000\000\327\000\000\000\001\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\332\000\000\000\334\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\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\004\007\000\000\000\143\157\156\146\151\147\000\004\014\000\000\000\154\151\156\153\157\160\164\151\157\156\163\000\000\000\000\000\010\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\001\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\337\000\000\000\341\000\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\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\004\007\000\000\000\143\157\156\146\151\147\000\004\006\000\000\000\154\151\156\153\163\000\000\000\000\000\010\000\000\000\340\000\000\000\340\000\000\000\340\000\000\000\340\000\000\000\340\000\000\000\340\000\000\000\340\000\000\000\341\000\000\000\001\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\344\000\000\000\346\000\000\000\000\001\000\006\013\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\005\001\001\000\006\101\101\002\100\001\000\000\034\001\000\001\135\000\000\000\136\000\000\000\036\000\200\000\006\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\011\000\000\000\154\157\143\141\164\151\157\156\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\013\000\000\000\345\000\000\000\345\000\000\000\345\000\000\000\345\000\000\000\345\000\000\000\345\000\000\000\345\000\000\000\345\000\000\000\345\000\000\000\345\000\000\000\346\000\000\000\001\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\351\000\000\000\353\000\000\000\000\001\000\006\013\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\005\001\001\000\006\101\101\002\100\001\000\000\034\001\000\001\135\000\000\000\136\000\000\000\036\000\200\000\006\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\007\000\000\000\157\142\152\144\151\162\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\013\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\352\000\000\000\352\000\000\000\353\000\000\000\001\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\356\000\000\000\360\000\000\000\000\001\000\006\013\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\005\001\001\000\006\101\101\002\100\001\000\000\034\001\000\001\135\000\000\000\136\000\000\000\036\000\200\000\006\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\012\000\000\000\160\143\150\150\145\141\144\145\162\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\013\000\000\000\357\000\000\000\357\000\000\000\357\000\000\000\357\000\000\000\357\000\000\000\357\000\000\000\357\000\000\000\357\000\000\000\357\000\000\000\357\000\000\000\360\000\000\000\001\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\363\000\000\000\365\000\000\000\000\001\000\006\013\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\005\001\001\000\006\101\101\002\100\001\000\000\034\001\000\001\135\000\000\000\136\000\000\000\036\000\200\000\006\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\012\000\000\000\160\143\150\163\157\165\162\143\145\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\013\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\364\000\000\000\364\000\000\000\365\000\000\000\001\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\370\000\000\000\046\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\371\000\000\000\371\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\375\000\000\000\375\000\000\000\375\000\000\000\375\000\000\000\377\000\000\000\377\000\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\006\001\000\000\006\001\000\000\006\001\000\000\006\001\000\000\007\001\000\000\007\001\000\000\007\001\000\000\007\001\000\000\010\001\000\000\011\001\000\000\011\001\000\000\014\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\020\001\000\000\020\001\000\000\020\001\000\000\021\001\000\000\022\001\000\000\022\001\000\000\020\001\000\000\025\001\000\000\026\001\000\000\027\001\000\000\027\001\000\000\027\001\000\000\027\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\032\001\000\000\032\001\000\000\033\001\000\000\033\001\000\000\037\001\000\000\037\001\000\000\037\001\000\000\037\001\000\000\037\001\000\000\037\001\000\000\041\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\044\001\000\000\044\001\000\000\046\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\051\001\000\000\053\001\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\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\004\007\000\000\000\143\157\156\146\151\147\000\004\013\000\000\000\162\145\163\144\145\146\151\156\145\163\000\000\000\000\000\010\000\000\000\052\001\000\000\052\001\000\000\052\001\000\000\052\001\000\000\052\001\000\000\052\001\000\000\052\001\000\000\053\001\000\000\001\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\056\001\000\000\060\001\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\014\000\000\000\163\145\164\144\151\162\141\162\162\141\171\000\004\007\000\000\000\143\157\156\146\151\147\000\004\013\000\000\000\162\145\163\151\156\143\144\151\162\163\000\000\000\000\000\010\000\000\000\057\001\000\000\057\001\000\000\057\001\000\000\057\001\000\000\057\001\000\000\057\001\000\000\057\001\000\000\060\001\000\000\001\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\063\001\000\000\065\001\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\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\004\007\000\000\000\143\157\156\146\151\147\000\004\013\000\000\000\162\145\163\157\160\164\151\157\156\163\000\000\000\000\000\010\000\000\000\064\001\000\000\064\001\000\000\064\001\000\000\064\001\000\000\064\001\000\000\064\001\000\000\064\001\000\000\065\001\000\000\001\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\070\001\000\000\133\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\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\073\001\000\000\073\001\000\000\074\001\000\000\075\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\104\001\000\000\104\001\000\000\104\001\000\000\105\001\000\000\104\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\113\001\000\000\113\001\000\000\114\001\000\000\114\001\000\000\121\001\000\000\121\001\000\000\121\001\000\000\121\001\000\000\121\001\000\000\121\001\000\000\122\001\000\000\122\001\000\000\122\001\000\000\122\001\000\000\122\001\000\000\125\001\000\000\125\001\000\000\125\001\000\000\125\001\000\000\127\001\000\000\127\001\000\000\127\001\000\000\132\001\000\000\132\001\000\000\132\001\000\000\133\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\000\000\000\000\136\001\000\000\140\001\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\013\000\000\000\164\141\162\147\145\164\156\141\155\145\000\000\000\000\000\010\000\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\140\001\000\000\001\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\143\001\000\000\145\001\000\000\000\001\000\006\013\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\005\001\001\000\006\101\101\002\100\001\000\000\034\001\000\001\135\000\000\000\136\000\000\000\036\000\200\000\006\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\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\141\142\163\157\154\165\164\145\000\000\000\000\000\013\000\000\000\144\001\000\000\144\001\000\000\144\001\000\000\144\001\000\000\144\001\000\000\144\001\000\000\144\001\000\000\144\001\000\000\144\001\000\000\144\001\000\000\145\001\000\000\001\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\150\001\000\000\152\001\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\020\000\000\000\164\141\162\147\145\164\145\170\164\145\156\163\151\157\156\000\000\000\000\000\010\000\000\000\151\001\000\000\151\001\000\000\151\001\000\000\151\001\000\000\151\001\000\000\151\001\000\000\151\001\000\000\152\001\000\000\001\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\155\001\000\000\157\001\000\000\000\001\000\005\010\000\000\000\105\000\000\000\106\100\300\000\201\200\000\000\301\300\000\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\004\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\007\000\000\000\143\157\156\146\151\147\000\004\015\000\000\000\164\141\162\147\145\164\160\162\145\146\151\170\000\000\000\000\000\010\000\000\000\156\001\000\000\156\001\000\000\156\001\000\000\156\001\000\000\156\001\000\000\156\001\000\000\156\001\000\000\157\001\000\000\001\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\162\001\000\000\203\001\000\000\000\001\000\012\105\000\000\000\032\000\000\000\026\200\016\200\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\200\002\200\205\201\000\000\213\301\100\003\000\002\200\002\100\002\200\002\234\201\000\002\313\001\101\003\101\102\001\000\334\201\200\001\332\101\000\000\026\000\000\200\102\000\000\000\237\300\374\177\205\200\000\000\213\300\100\001\001\201\001\000\101\201\001\000\234\200\000\002\127\300\101\001\026\000\000\200\102\000\000\000\205\200\000\000\213\300\100\001\001\001\002\000\101\001\002\000\234\200\000\002\127\300\101\001\026\000\000\200\102\000\000\000\205\200\000\000\213\300\100\001\001\101\002\000\101\101\002\000\234\200\000\002\127\300\101\001\026\000\000\200\102\000\000\000\205\200\000\000\213\300\100\001\001\201\002\000\101\201\002\000\234\200\000\002\127\300\101\001\026\000\000\200\102\000\000\000\132\100\000\000\026\300\000\200\205\300\002\000\301\000\003\000\001\101\003\000\234\100\200\001\105\200\003\000\106\300\303\000\201\000\004\000\301\100\004\000\000\001\000\000\135\000\000\002\136\000\000\000\036\000\200\000\022\000\000\000\003\000\000\000\000\000\000\102\100\003\000\000\000\000\000\000\360\077\004\002\000\000\000\147\000\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\006\000\000\000\145\162\162\157\162\000\004\015\000\000\000\151\156\166\141\154\151\144\040\125\125\111\104\000\003\000\000\000\000\000\000\000\100\004\010\000\000\000\160\162\145\155\141\153\145\000\004\012\000\000\000\163\145\164\163\164\162\151\156\147\000\004\012\000\000\000\143\157\156\164\141\151\156\145\162\000\004\005\000\000\000\165\165\151\144\000\000\000\000\000\105\000\000\000\163\001\000\000\163\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\166\001\000\000\166\001\000\000\167\001\000\000\167\001\000\000\167\001\000\000\167\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\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\172\001\000\000\172\001\000\000\173\001\000\000\173\001\000\000\173\001\000\000\173\001\000\000\173\001\000\000\173\001\000\000\173\001\000\000\173\001\000\000\174\001\000\000\174\001\000\000\174\001\000\000\174\001\000\000\174\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\175\001\000\000\175\001\000\000\175\001\000\000\175\001\000\000\176\001\000\000\176\001\000\000\177\001\000\000\177\001\000\000\177\001\000\000\177\001\000\000\202\001\000\000\202\001\000\000\202\001\000\000\202\001\000\000\202\001\000\000\202\001\000\000\202\001\000\000\203\001\000\000\007\000\000\000\006\000\000\000\166\141\154\165\145\000\000\000\000\000\104\000\000\000\003\000\000\000\157\153\000\003\000\000\000\075\000\000\000\014\000\000\000\050\146\157\162\040\151\156\144\145\170\051\000\012\000\000\000\027\000\000\000\014\000\000\000\050\146\157\162\040\154\151\155\151\164\051\000\012\000\000\000\027\000\000\000\013\000\000\000\050\146\157\162\040\163\164\145\160\051\000\012\000\000\000\027\000\000\000\002\000\000\000\151\000\013\000\000\000\026\000\000\000\003\000\000\000\143\150\000\020\000\000\000\026\000\000\000\000\000\000\000\216\000\000\000\014\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\030\000\000\000\031\000\000\000\032\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\044\000\000\000\044\000\000\000\046\000\000\000\050\000\000\000\051\000\000\000\052\000\000\000\054\000\000\000\054\000\000\000\056\000\000\000\060\000\000\000\062\000\000\000\062\000\000\000\071\000\000\000\071\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\107\000\000\000\107\000\000\000\107\000\000\000\116\000\000\000\116\000\000\000\120\000\000\000\121\000\000\000\123\000\000\000\123\000\000\000\123\000\000\000\133\000\000\000\133\000\000\000\135\000\000\000\136\000\000\000\137\000\000\000\140\000\000\000\141\000\000\000\142\000\000\000\143\000\000\000\144\000\000\000\145\000\000\000\147\000\000\000\147\000\000\000\147\000\000\000\161\000\000\000\161\000\000\000\164\000\000\000\164\000\000\000\164\000\000\000\176\000\000\000\174\000\000\000\226\000\000\000\201\000\000\000\233\000\000\000\231\000\000\000\240\000\000\000\236\000\000\000\245\000\000\000\243\000\000\000\252\000\000\000\250\000\000\000\257\000\000\000\257\000\000\000\255\000\000\000\264\000\000\000\262\000\000\000\271\000\000\000\267\000\000\000\276\000\000\000\274\000\000\000\303\000\000\000\301\000\000\000\310\000\000\000\306\000\000\000\315\000\000\000\315\000\000\000\313\000\000\000\322\000\000\000\322\000\000\000\320\000\000\000\327\000\000\000\325\000\000\000\334\000\000\000\332\000\000\000\341\000\000\000\337\000\000\000\346\000\000\000\344\000\000\000\353\000\000\000\351\000\000\000\360\000\000\000\356\000\000\000\365\000\000\000\363\000\000\000\046\001\000\000\370\000\000\000\053\001\000\000\051\001\000\000\060\001\000\000\056\001\000\000\065\001\000\000\063\001\000\000\133\001\000\000\070\001\000\000\140\001\000\000\136\001\000\000\145\001\000\000\143\001\000\000\152\001\000\000\150\001\000\000\157\001\000\000\155\001\000\000\203\001\000\000\162\001\000\000\203\001\000\000\003\000\000\000\014\000\000\000\166\141\154\151\144\137\146\154\141\147\163\000\030\000\000\000\215\000\000\000\014\000\000\000\166\141\154\151\144\137\153\151\156\144\163\000\036\000\000\000\215\000\000\000\020\000\000\000\166\141\154\151\144\137\154\141\156\147\165\141\147\145\163\000\042\000\000\000\215\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\002\073\000\000\000\005\000\000\000\006\100\100\000\112\000\000\000\011\100\000\201\005\000\000\000\006\100\100\000\006\200\100\000\112\300\001\000\111\100\101\202\111\300\101\203\111\100\102\204\111\300\102\205\111\100\103\206\111\300\103\207\111\100\104\210\011\100\200\201\005\000\000\000\006\100\100\000\006\200\100\000\144\000\000\000\011\100\000\211\005\000\000\000\006\100\100\000\006\200\100\000\144\100\000\000\011\100\200\211\005\000\000\000\006\100\100\000\006\200\100\000\112\200\000\000\111\200\305\212\111\000\306\213\011\100\000\212\005\000\000\000\006\100\100\000\006\200\100\000\144\200\000\000\011\100\200\214\005\000\000\000\006\100\100\000\006\200\100\000\144\300\000\000\011\100\000\215\005\000\000\000\006\100\100\000\006\200\100\000\144\000\001\000\011\100\200\215\005\000\000\000\006\100\100\000\006\200\100\000\144\100\001\000\011\100\000\216\005\000\000\000\006\100\100\000\006\200\100\000\144\200\001\000\011\100\200\216\036\000\200\000\036\000\000\000\004\010\000\000\000\160\162\145\155\141\153\145\000\004\006\000\000\000\164\157\157\154\163\000\004\004\000\000\000\147\143\143\000\004\007\000\000\000\143\146\154\141\147\163\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\014\000\000\000\155\141\153\145\137\143\146\154\141\147\163\000\004\016\000\000\000\155\141\153\145\137\143\160\160\146\154\141\147\163\000\004\011\000\000\000\143\170\170\146\154\141\147\163\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\016\000\000\000\155\141\153\145\137\143\170\170\146\154\141\147\163\000\004\015\000\000\000\155\141\153\145\137\144\145\146\151\156\145\163\000\004\016\000\000\000\155\141\153\145\137\151\156\143\154\165\144\145\163\000\004\015\000\000\000\155\141\153\145\137\154\144\146\154\141\147\163\000\004\017\000\000\000\155\141\153\145\137\146\151\154\145\137\162\165\154\145\000\007\000\000\000\000\000\000\000\040\000\000\000\050\000\000\000\000\001\000\005\035\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\305\300\000\000\306\000\301\001\306\100\301\001\306\200\301\001\134\200\200\001\206\300\101\000\027\000\102\001\026\200\002\200\205\100\002\000\206\200\102\001\301\300\002\000\234\200\000\001\232\100\000\000\026\000\001\200\205\000\000\000\206\000\103\001\300\000\200\000\001\101\003\000\234\100\200\001\205\000\000\000\206\200\103\001\300\000\200\000\001\301\003\000\235\000\200\001\236\000\000\000\036\000\200\000\020\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\160\162\145\155\141\153\145\000\004\006\000\000\000\164\157\157\154\163\000\004\004\000\000\000\147\143\143\000\004\007\000\000\000\143\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\004\007\000\000\000\143\157\156\143\141\164\000\004\002\000\000\000\040\000\000\000\000\000\035\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\041\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\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\044\000\000\000\044\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\047\000\000\000\050\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\034\000\000\000\006\000\000\000\146\154\141\147\163\000\010\000\000\000\034\000\000\000\000\000\000\000\000\000\000\000\057\000\000\000\063\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\062\000\000\000\062\000\000\000\063\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\100\000\000\000\103\000\000\000\000\001\000\005\017\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\305\300\000\000\306\000\301\001\306\100\301\001\306\200\301\001\134\200\200\001\205\000\000\000\206\300\101\001\300\000\200\000\001\001\002\000\235\000\200\001\236\000\000\000\036\000\200\000\011\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\160\162\145\155\141\153\145\000\004\006\000\000\000\164\157\157\154\163\000\004\004\000\000\000\147\143\143\000\004\011\000\000\000\143\170\170\146\154\141\147\163\000\004\007\000\000\000\143\157\156\143\141\164\000\004\002\000\000\000\040\000\000\000\000\000\017\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\103\000\000\000\002\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\016\000\000\000\006\000\000\000\146\154\141\147\163\000\010\000\000\000\016\000\000\000\000\000\000\000\000\000\000\000\112\000\000\000\114\000\000\000\000\001\000\006\011\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\301\300\000\000\001\001\001\000\101\101\001\000\135\000\200\002\136\000\000\000\036\000\200\000\006\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\010\000\000\000\151\155\160\154\157\144\145\000\004\010\000\000\000\144\145\146\151\156\145\163\000\004\005\000\000\000\055\104\040\042\000\004\002\000\000\000\042\000\004\002\000\000\000\040\000\000\000\000\000\011\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\113\000\000\000\114\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\010\000\000\000\000\000\000\000\000\000\000\000\117\000\000\000\121\000\000\000\000\001\000\006\011\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\301\300\000\000\001\001\001\000\101\101\001\000\135\000\200\002\136\000\000\000\036\000\200\000\006\000\000\000\004\006\000\000\000\164\141\142\154\145\000\004\010\000\000\000\151\155\160\154\157\144\145\000\004\010\000\000\000\151\156\143\144\151\162\163\000\004\005\000\000\000\055\111\040\042\000\004\002\000\000\000\042\000\004\002\000\000\000\040\000\000\000\000\000\011\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\120\000\000\000\121\000\000\000\001\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\010\000\000\000\000\000\000\000\000\000\000\000\130\000\000\000\206\000\000\000\000\001\000\016\243\000\000\000\112\000\000\000\206\000\100\000\027\100\100\001\026\200\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\100\004\200\206\100\102\000\206\200\102\001\232\100\000\000\026\100\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\101\002\004\000\134\201\200\002\201\101\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\200\104\001\026\000\001\200\205\100\001\000\206\200\101\001\300\000\200\000\001\301\004\000\234\100\200\001\206\100\102\000\206\000\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\200\101\001\300\000\200\000\001\101\005\000\234\100\200\001\026\000\001\200\205\100\001\000\206\200\101\001\300\000\200\000\001\201\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\300\002\200\205\100\001\000\206\300\105\001\300\000\200\000\001\001\006\000\234\200\200\001\232\000\000\000\026\000\001\200\205\100\001\000\206\200\101\001\300\000\200\000\001\101\006\000\234\100\200\001\212\000\000\000\312\000\000\000\005\201\006\000\105\001\003\000\106\301\306\002\200\001\000\000\134\001\000\001\034\001\001\000\026\100\010\200\105\002\007\000\106\102\307\004\200\002\000\004\134\202\000\001\205\002\007\000\206\202\107\005\300\002\000\004\234\202\000\001\127\300\307\004\026\200\004\200\305\102\001\000\306\302\305\005\006\003\110\000\100\003\200\004\334\202\200\001\332\102\000\000\026\300\002\200\305\102\001\000\306\302\305\005\000\003\000\001\100\003\200\004\334\202\200\001\332\102\000\000\026\000\001\200\305\102\001\000\306\202\301\005\000\003\000\001\100\003\200\004\334\102\200\001\305\102\001\000\306\202\301\005\000\003\200\001\100\003\000\005\334\102\200\001\041\201\000\000\026\300\366\177\005\101\001\000\006\101\110\002\100\001\200\000\201\201\010\000\034\201\200\001\105\101\001\000\106\301\310\002\206\001\110\000\301\001\011\000\001\102\004\000\134\201\000\002\205\101\001\000\206\301\110\003\300\001\000\001\001\002\011\000\101\102\004\000\234\201\000\002\305\101\001\000\306\301\310\003\000\002\200\001\101\102\011\000\201\102\004\000\334\201\000\002\025\301\001\002\036\001\000\001\036\000\200\000\046\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\012\000\000\000\123\164\141\164\151\143\114\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\011\000\000\000\143\157\156\164\141\151\156\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\004\007\000\000\000\151\160\141\151\162\163\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\014\000\000\000\147\145\164\142\141\163\145\156\141\155\145\000\004\001\000\000\000\000\004\010\000\000\000\154\151\142\144\151\162\163\000\004\007\000\000\000\143\157\156\143\141\164\000\004\002\000\000\000\040\000\004\010\000\000\000\151\155\160\154\157\144\145\000\004\006\000\000\000\040\055\114\040\042\000\004\006\000\000\000\040\055\154\040\042\000\000\000\000\000\243\000\000\000\131\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\135\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\135\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\141\000\000\000\141\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\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\142\000\000\000\142\000\000\000\142\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\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\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\155\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\163\000\000\000\163\000\000\000\163\000\000\000\163\000\000\000\163\000\000\000\163\000\000\000\163\000\000\000\163\000\000\000\163\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\164\000\000\000\164\000\000\000\170\000\000\000\171\000\000\000\172\000\000\000\172\000\000\000\172\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\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\177\000\000\000\177\000\000\000\177\000\000\000\177\000\000\000\177\000\000\000\202\000\000\000\202\000\000\000\202\000\000\000\202\000\000\000\202\000\000\000\172\000\000\000\202\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\205\000\000\000\206\000\000\000\013\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\242\000\000\000\006\000\000\000\146\154\141\147\163\000\001\000\000\000\242\000\000\000\005\000\000\000\144\151\162\163\000\135\000\000\000\242\000\000\000\006\000\000\000\156\141\155\145\163\000\136\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\144\000\000\000\211\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\144\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\144\000\000\000\211\000\000\000\002\000\000\000\137\000\145\000\000\000\207\000\000\000\005\000\000\000\154\151\156\153\000\145\000\000\000\207\000\000\000\004\000\000\000\144\151\162\000\151\000\000\000\207\000\000\000\005\000\000\000\156\141\155\145\000\155\000\000\000\207\000\000\000\000\000\000\000\000\000\000\000\215\000\000\000\223\000\000\000\000\001\000\003\014\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\134\200\000\001\132\000\000\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\005\000\000\000\160\141\164\150\000\004\010\000\000\000\151\163\143\146\151\154\145\000\004\034\000\000\000\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\000\004\037\000\000\000\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\000\000\000\000\000\014\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\217\000\000\000\217\000\000\000\217\000\000\000\221\000\000\000\221\000\000\000\223\000\000\000\001\000\000\000\005\000\000\000\146\151\154\145\000\000\000\000\000\013\000\000\000\000\000\000\000\073\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\016\000\000\000\025\000\000\000\025\000\000\000\025\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\035\000\000\000\036\000\000\000\040\000\000\000\040\000\000\000\040\000\000\000\050\000\000\000\040\000\000\000\057\000\000\000\057\000\000\000\057\000\000\000\063\000\000\000\057\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\076\000\000\000\100\000\000\000\100\000\000\000\100\000\000\000\103\000\000\000\100\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\114\000\000\000\112\000\000\000\117\000\000\000\117\000\000\000\117\000\000\000\121\000\000\000\117\000\000\000\130\000\000\000\130\000\000\000\130\000\000\000\206\000\000\000\130\000\000\000\215\000\000\000\215\000\000\000\215\000\000\000\223\000\000\000\215\000\000\000\223\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\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\056\000\000\000\000\000\000\011\127\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\005\200\001\000\101\300\001\000\205\000\002\000\034\100\200\001\005\200\001\000\105\100\002\000\034\100\000\001\005\200\001\000\101\200\002\000\205\300\002\000\305\000\003\000\034\100\000\002\005\200\001\000\101\100\003\000\034\100\000\001\005\200\001\000\101\200\003\000\034\100\000\001\005\200\001\000\101\100\003\000\034\100\000\001\005\200\001\000\101\300\003\000\034\100\000\001\005\200\001\000\101\100\003\000\034\100\000\001\005\000\004\000\105\000\000\000\034\000\001\001\026\300\001\200\105\201\001\000\201\101\004\000\300\001\000\002\005\202\000\000\006\002\100\004\006\002\001\004\006\202\104\004\134\101\000\002\041\200\000\000\026\100\375\177\005\200\001\000\101\100\003\000\034\100\000\001\005\200\001\000\101\300\004\000\034\100\000\001\005\200\001\000\101\100\003\000\034\100\000\001\005\200\001\000\101\000\005\000\034\100\000\001\005\200\001\000\101\100\005\000\034\100\000\001\005\200\001\000\101\200\005\000\034\100\000\001\005\200\001\000\101\300\005\000\034\100\000\001\005\200\001\000\101\100\003\000\034\100\000\001\005\200\001\000\101\000\006\000\034\100\000\001\036\000\200\000\031\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\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\101\103\124\111\117\116\123\000\004\007\000\000\000\151\160\141\151\162\163\000\004\013\000\000\000\040\040\045\055\061\067\163\040\045\163\000\004\014\000\000\000\144\145\163\143\162\151\160\164\151\157\156\000\004\010\000\000\000\117\120\124\111\117\116\123\000\004\075\000\000\000\040\055\055\146\151\154\145\075\156\141\155\145\040\040\040\040\040\040\040\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\054\000\000\000\040\055\055\150\145\154\160\040\040\040\040\040\040\040\040\040\040\040\040\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\103\000\000\000\040\055\055\163\143\162\151\160\164\163\075\160\141\164\150\040\040\040\040\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\057\000\000\000\040\055\055\166\145\162\163\151\157\156\040\040\040\040\040\040\040\040\040\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\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\000\000\000\000\127\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\024\000\000\000\024\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\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\031\000\000\000\031\000\000\000\032\000\000\000\032\000\000\000\032\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\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\041\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\040\000\000\000\041\000\000\000\043\000\000\000\043\000\000\000\043\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\047\000\000\000\047\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\053\000\000\000\053\000\000\000\053\000\000\000\055\000\000\000\055\000\000\000\055\000\000\000\056\000\000\000\012\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\060\000\000\000\073\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\060\000\000\000\073\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\060\000\000\000\073\000\000\000\002\000\000\000\137\000\061\000\000\000\071\000\000\000\005\000\000\000\156\141\155\145\000\061\000\000\000\071\000\000\000\000\000\000\000\000\000\000\000\065\000\000\000\203\000\000\000\004\001\000\017\233\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\005\201\004\000\334\100\000\001\301\000\007\000\336\000\000\001\036\000\200\000\043\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\116\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\013\000\000\000\143\150\145\143\153\164\157\157\154\163\000\004\010\000\000\000\105\162\162\157\162\072\040\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\233\000\000\000\073\000\000\000\073\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\076\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\105\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\103\000\000\000\105\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\111\000\000\000\112\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\123\000\000\000\124\000\000\000\124\000\000\000\124\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\134\000\000\000\134\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\141\000\000\000\141\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\151\000\000\000\151\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\160\000\000\000\160\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\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\172\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\173\000\000\000\173\000\000\000\175\000\000\000\175\000\000\000\175\000\000\000\175\000\000\000\175\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\176\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\203\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\232\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\232\000\000\000\007\000\000\000\141\143\164\151\157\156\000\153\000\000\000\232\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\056\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\203\000\000\000\065\000\000\000\203\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",
- "\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\015\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\015\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\015\012\015\012\151\146\156\144\145\146\040\103\117\116\106\111\107\015\012\040\040\103\117\116\106\111\107\075\074\045\075\040\155\141\153\145\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\015\012\145\156\144\151\146\015\012\145\170\160\157\162\164\040\103\117\116\106\111\107\015\012\015\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\155\141\153\145\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\015\012\015\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\015\012\015\012\141\154\154\072\040\044\050\120\122\117\112\105\103\124\123\051\015\012\015\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\015\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\015\012\151\146\145\161\040\050\044\050\103\117\116\106\111\107\051\054\074\045\075\040\155\141\153\145\056\145\163\143\050\143\146\147\056\156\141\155\145\051\045\076\051\015\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\155\141\153\145\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\015\012\145\156\144\151\146\015\012\040\074\045\040\145\156\144\040\045\076\015\012\015\012\074\045\075\040\155\141\153\145\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\015\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\015\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\155\141\153\145\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\155\141\153\145\056\145\163\143\050\155\141\153\145\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\015\012\011\015\012\074\045\040\145\156\144\040\045\076\015\012\015\012\143\154\145\141\156\072\015\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\015\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\155\141\153\145\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\155\141\153\145\056\145\163\143\050\155\141\153\145\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\015\012\074\045\040\145\156\144\040\045\076\015\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\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\015\012\015\012\151\146\156\144\145\146\040\103\117\116\106\111\107\015\012\040\040\103\117\116\106\111\107\075\074\045\075\040\155\141\153\145\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\015\012\145\156\144\151\146\015\012\015\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\015\012\151\146\145\161\040\050\044\050\103\117\116\106\111\107\051\054\074\045\075\040\155\141\153\145\056\145\163\143\050\143\146\147\056\156\141\155\145\051\045\076\051\015\012\040\040\124\101\122\107\105\124\104\111\122\040\040\075\040\074\045\075\040\155\141\153\145\056\145\163\143\050\160\141\164\150\056\147\145\164\144\151\162\145\143\164\157\162\171\050\143\146\147\056\164\141\162\147\145\164\051\051\040\045\076\015\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\155\141\153\145\056\145\163\143\050\160\141\164\150\056\147\145\164\156\141\155\145\050\143\146\147\056\164\141\162\147\145\164\051\051\040\045\076\015\012\040\040\117\102\112\104\111\122\040\040\040\040\040\075\040\074\045\075\040\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\015\012\040\040\104\105\106\111\116\105\123\040\040\040\053\075\040\074\045\075\040\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\144\145\146\151\156\145\163\050\143\146\147\051\040\040\045\076\015\012\040\040\111\116\103\114\125\104\105\123\040\040\053\075\040\074\045\075\040\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\151\156\143\154\165\144\145\163\050\143\146\147\051\040\045\076\015\012\040\040\103\120\120\106\114\101\107\123\040\040\053\075\040\074\045\075\040\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\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\015\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\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\143\146\154\141\147\163\050\143\146\147\051\040\045\076\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\054\040\042\040\042\051\040\045\076\015\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\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\143\170\170\146\154\141\147\163\050\143\146\147\051\040\045\076\015\012\040\040\114\104\106\114\101\107\123\040\040\040\053\075\040\074\045\075\040\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\154\144\146\154\141\147\163\050\143\146\147\051\040\045\076\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\054\040\042\040\042\051\040\045\076\015\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\143\146\147\056\162\145\163\157\160\164\151\157\156\163\054\040\042\040\042\051\040\045\076\015\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\160\162\145\155\141\153\145\056\147\145\164\154\151\142\162\141\162\151\145\163\050\143\146\147\054\040\042\163\151\142\154\151\156\147\163\042\051\051\040\045\076\015\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\015\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\015\012\040\040\074\045\040\145\154\163\145\040\045\076\015\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\015\012\040\040\074\045\040\145\156\144\040\045\076\015\012\145\156\144\151\146\015\012\015\012\074\045\040\145\156\144\040\045\076\015\012\015\012\117\102\112\105\103\124\123\040\072\075\040\134\015\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\015\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\015\012\011\044\050\117\102\112\104\111\122\051\057\074\045\075\040\155\141\153\145\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\015\012\040\074\045\040\145\156\144\040\045\076\015\012\074\045\040\145\156\144\040\045\076\015\012\015\012\122\105\123\117\125\122\103\105\123\040\072\075\040\134\015\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\015\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\015\012\011\044\050\117\102\112\104\111\122\051\057\074\045\075\040\155\141\153\145\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\015\012\040\074\045\040\145\156\144\040\045\076\015\012\074\045\040\145\156\144\040\045\076\015\012\015\012\123\110\105\114\114\124\131\120\105\040\072\075\040\155\163\144\157\163\015\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\015\012\040\040\123\110\105\114\114\124\131\120\105\040\072\075\040\160\157\163\151\170\015\012\145\156\144\151\146\015\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\015\012\040\040\123\110\105\114\114\124\131\120\105\040\072\075\040\160\157\163\151\170\015\012\145\156\144\151\146\015\012\015\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\015\012\040\040\040\115\113\104\111\122\040\040\040\072\075\040\155\153\144\151\162\040\055\160\015\012\040\040\040\120\101\124\110\123\105\120\040\072\075\040\057\015\012\145\154\163\145\015\012\040\040\040\115\113\104\111\122\040\040\040\072\075\040\155\153\144\151\162\015\012\040\040\040\120\101\124\110\123\105\120\040\072\075\040\134\134\015\012\145\156\144\151\146\015\012\015\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\015\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\015\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\015\012\015\012\056\120\110\117\116\131\072\040\143\154\145\141\156\015\012\015\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\015\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\015\012\015\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\015\012\015\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\015\012\074\045\040\145\156\144\040\045\076\015\012\015\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\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\015\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\015\012\011\100\044\050\114\111\116\113\103\115\104\051\015\012\015\012\015\012\044\050\124\101\122\107\105\124\104\111\122\051\072\015\012\011\100\145\143\150\157\040\103\162\145\141\164\151\156\147\040\044\100\015\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\015\012\011\015\012\044\050\117\102\112\104\111\122\051\072\015\012\011\100\145\143\150\157\040\103\162\145\141\164\151\156\147\040\044\100\015\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\015\012\015\012\143\154\145\141\156\072\015\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\015\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\015\012\011\100\162\155\040\055\146\040\040\044\050\124\101\122\107\105\124\051\015\012\011\100\162\155\040\055\162\146\040\044\050\117\102\112\104\111\122\051\015\012\145\154\163\145\015\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\015\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\015\012\145\156\144\151\146\015\012\015\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\015\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\015\012\044\050\117\102\112\104\111\122\051\057\074\045\075\040\155\141\153\145\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\155\141\153\145\056\145\163\143\050\146\151\154\145\051\040\045\076\015\012\011\100\145\143\150\157\040\044\050\156\157\164\144\151\162\040\044\074\051\015\012\011\100\074\045\075\040\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\146\151\154\145\137\162\165\154\145\050\146\151\154\145\051\040\045\076\015\012\011\015\012\040\074\045\040\145\156\144\040\045\076\015\012\074\045\040\145\156\144\040\045\076\015\012\015\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\015\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\015\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\015\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\015\012\120\162\157\152\145\143\164\050\042\173\074\045\075\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\015\012\105\156\144\120\162\157\152\145\143\164\015\012\074\045\040\145\156\144\040\045\076\015\012\107\154\157\142\141\154\015\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\015\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\015\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\015\012\011\074\045\040\145\156\144\040\045\076\011\011\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\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\015\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\015\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\015\012\011\040\074\045\040\145\156\144\040\045\076\015\012\011\074\045\040\145\156\144\040\045\076\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\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\015\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\015\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\166\163\164\165\144\151\157\056\141\162\143\150\050\160\162\152\054\040\062\060\060\062\051\045\076\015\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\166\163\164\165\144\151\157\056\141\162\143\150\050\160\162\152\054\040\062\060\060\062\051\045\076\015\012\011\040\074\045\040\145\156\144\040\045\076\015\012\011\074\045\040\145\156\144\040\045\076\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\012\105\156\144\107\154\157\142\141\154\015\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\015\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\015\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\015\012\120\162\157\152\145\143\164\050\042\173\074\045\075\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\015\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\015\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\015\012\040\074\045\040\145\156\144\040\045\076\015\012\105\156\144\120\162\157\152\145\143\164\015\012\074\045\040\145\156\144\040\045\076\015\012\107\154\157\142\141\154\015\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\015\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\015\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\015\012\011\074\045\040\145\156\144\040\045\076\011\011\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\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\015\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\015\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\166\163\164\165\144\151\157\056\141\162\143\150\050\160\162\152\054\040\062\060\060\062\051\045\076\015\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\166\163\164\165\144\151\157\056\141\162\143\150\050\160\162\152\054\040\062\060\060\062\051\045\076\015\012\011\040\074\045\040\145\156\144\040\045\076\015\012\011\074\045\040\145\156\144\040\045\076\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\012\105\156\144\107\154\157\142\141\154\015\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\015\012\074\045\075\040\042\134\062\063\071\134\061\070\067\134\061\071\061\042\040\045\076\015\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\015\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\015\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\015\012\043\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\065\015\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\015\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\015\012\043\040\126\151\163\165\141\154\040\123\164\165\144\151\157\040\062\060\060\070\015\012\074\045\040\145\156\144\040\045\076\015\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\015\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\015\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\015\012\120\162\157\152\145\143\164\050\042\173\074\045\075\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\015\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\015\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\015\012\040\074\045\040\145\156\144\040\045\076\015\012\105\156\144\120\162\157\152\145\143\164\015\012\074\045\040\145\156\144\040\045\076\015\012\107\154\157\142\141\154\015\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\015\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\015\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\015\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\015\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\015\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\015\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\015\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\015\012\040\040\040\040\040\074\045\040\145\156\144\040\045\076\015\012\040\040\040\040\074\045\040\145\156\144\040\045\076\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\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\015\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\015\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\015\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\166\163\164\165\144\151\157\056\141\162\143\150\050\160\162\152\051\040\045\076\015\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\015\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\166\163\164\165\144\151\157\056\141\162\143\150\050\160\162\152\051\040\045\076\015\012\011\040\040\040\074\045\040\145\156\144\040\045\076\015\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\015\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\166\163\164\165\144\151\157\056\141\162\143\150\050\160\162\152\051\040\045\076\015\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\166\163\164\165\144\151\157\056\141\162\143\150\050\160\162\152\051\040\045\076\015\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\015\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\166\163\164\165\144\151\157\056\141\162\143\150\050\160\162\152\051\040\045\076\015\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\015\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\166\163\164\165\144\151\157\056\141\162\143\150\050\160\162\152\051\040\045\076\015\012\011\040\040\040\074\045\040\145\156\144\040\045\076\015\012\011\040\040\074\045\040\145\156\144\040\045\076\015\012\011\040\074\045\040\145\156\144\040\045\076\015\012\011\074\045\040\145\156\144\040\045\076\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\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\015\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\015\012\011\105\156\144\107\154\157\142\141\154\123\145\143\164\151\157\156\015\012\105\156\144\107\154\157\142\141\154\015\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\015\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\015\012\074\126\151\163\165\141\154\123\164\165\144\151\157\120\162\157\152\145\143\164\015\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\015\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\015\012\011\126\145\162\163\151\157\156\075\042\067\056\060\060\042\015\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\015\012\011\126\145\162\163\151\157\156\075\042\067\056\061\060\042\015\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\015\012\011\126\145\162\163\151\157\156\075\042\070\056\060\060\042\015\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\015\012\011\126\145\162\163\151\157\156\075\042\071\056\060\060\042\015\012\074\045\040\145\156\144\040\045\076\015\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\015\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\015\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\015\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\015\012\074\045\040\145\156\144\040\045\076\015\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\015\012\011\076\015\012\011\074\120\154\141\164\146\157\162\155\163\076\015\012\011\011\074\120\154\141\164\146\157\162\155\015\012\011\011\011\116\141\155\145\075\042\127\151\156\063\062\042\015\012\011\011\057\076\015\012\011\074\057\120\154\141\164\146\157\162\155\163\076\015\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\015\012\011\074\124\157\157\154\106\151\154\145\163\076\015\012\011\074\057\124\157\157\154\106\151\154\145\163\076\015\012\074\045\040\145\156\144\040\045\076\015\012\011\074\103\157\156\146\151\147\165\162\141\164\151\157\156\163\076\015\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\015\012\011\011\074\103\157\156\146\151\147\165\162\141\164\151\157\156\015\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\015\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\143\146\147\056\164\141\162\147\145\164\051\054\040\042\134\134\042\051\051\040\045\076\042\015\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\051\054\040\042\134\134\042\051\040\045\076\042\015\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\166\163\164\165\144\151\157\056\143\146\147\164\171\160\145\050\143\146\147\051\040\045\076\042\015\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\015\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\015\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\015\012\011\011\074\045\040\145\156\144\040\045\076\015\012\011\011\011\076\015\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\166\163\164\165\144\151\157\133\137\101\103\124\111\117\116\135\051\040\144\157\040\045\076\015\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\015\012\011\011\011\074\124\157\157\154\015\012\011\011\011\011\116\141\155\145\075\042\126\103\101\114\151\156\153\124\157\157\154\042\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\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\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\012\011\011\011\011\117\160\164\151\155\151\172\141\164\151\157\156\075\042\074\045\075\040\166\163\164\165\144\151\157\056\157\160\164\151\155\151\172\141\164\151\157\156\050\143\146\147\051\040\045\076\042\011\015\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\015\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\166\163\164\165\144\151\157\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\151\156\143\144\151\162\163\040\076\040\060\040\164\150\145\156\040\045\076\015\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\144\151\162\163\051\054\040\042\073\042\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\012\011\011\011\074\045\040\151\146\040\166\163\164\165\144\151\157\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\015\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\166\163\164\165\144\151\157\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\015\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\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\012\011\011\011\074\045\040\151\146\040\166\163\164\165\144\151\157\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\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\012\011\011\011\074\045\040\151\146\040\166\163\164\165\144\151\157\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\015\012\011\011\011\011\123\164\162\151\156\147\120\157\157\154\151\156\147\075\042\074\045\075\040\166\163\164\165\144\151\157\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\166\163\164\165\144\151\157\056\162\165\156\164\151\155\145\050\143\146\147\051\040\045\076\042\015\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\166\163\164\165\144\151\157\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\015\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\015\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\166\163\164\165\144\151\157\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\015\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\015\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\166\163\164\165\144\151\157\056\142\157\157\154\050\146\141\154\163\145\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\166\163\164\165\144\151\157\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\015\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\015\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\166\163\164\165\144\151\157\056\142\157\157\154\050\146\141\154\163\145\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\015\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\015\012\011\011\011\074\045\040\145\154\163\145\040\045\076\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\015\012\011\011\011\011\127\141\162\156\101\163\105\162\162\157\162\075\042\074\045\075\040\166\163\164\165\144\151\157\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\166\163\164\165\144\151\157\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\166\163\164\165\144\151\157\056\163\171\155\142\157\154\163\050\143\146\147\051\040\045\076\042\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\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\015\012\011\011\011\074\124\157\157\154\015\012\011\011\011\011\116\141\155\145\075\042\126\103\106\170\103\157\160\124\157\157\154\042\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\011\116\141\155\145\075\042\126\103\114\151\156\153\145\162\124\157\157\154\042\015\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\015\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\166\163\164\165\144\151\157\056\142\157\157\154\050\164\162\165\145\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\164\150\151\163\051\054\040\042\040\042\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\143\146\147\056\164\141\162\147\145\164\051\040\045\076\042\015\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\166\163\164\165\144\151\157\056\157\160\164\151\155\151\172\141\164\151\157\156\050\164\150\151\163\051\040\075\075\040\060\054\040\062\054\040\061\051\040\045\076\042\015\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\015\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\164\150\151\163\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\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\166\163\164\165\144\151\157\056\142\157\157\154\050\146\141\154\163\145\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\166\163\164\165\144\151\157\056\142\157\157\154\050\166\163\164\165\144\151\157\056\163\171\155\142\157\154\163\050\164\150\151\163\051\040\176\075\040\060\051\040\045\076\042\015\012\011\011\011\074\045\040\151\146\040\166\163\164\165\144\151\157\056\163\171\155\142\157\154\163\050\164\150\151\163\051\040\176\075\040\060\040\164\150\145\156\040\045\076\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\012\011\011\011\074\045\040\151\146\040\166\163\164\165\144\151\157\056\157\160\164\151\155\151\172\141\164\151\157\156\050\164\150\151\163\051\040\176\075\040\060\040\164\150\145\156\040\045\076\015\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\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\166\163\164\165\144\151\157\056\151\155\160\157\162\164\154\151\142\146\151\154\145\050\164\150\151\163\051\054\040\042\134\134\042\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\012\011\011\011\011\124\141\162\147\145\164\115\141\143\150\151\156\145\075\042\061\042\015\012\011\011\074\045\040\145\154\163\145\040\045\076\015\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\015\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\143\146\147\056\164\141\162\147\145\164\051\040\045\076\042\015\012\011\011\074\045\040\145\156\144\040\045\076\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\012\011\011\011\011\116\141\155\145\075\042\126\103\115\111\104\114\124\157\157\154\042\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\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\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\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\015\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\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\012\011\011\011\074\045\040\151\146\040\043\143\146\147\056\151\156\143\144\151\162\163\040\076\040\060\040\157\162\040\043\143\146\147\056\162\145\163\151\156\143\144\151\162\163\040\076\040\060\040\164\150\145\156\040\045\076\015\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\144\151\162\163\054\040\143\146\147\056\162\145\163\151\156\143\144\151\162\163\051\051\054\040\042\073\042\051\040\045\076\042\015\012\011\011\011\074\045\040\145\156\144\040\045\076\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\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\015\012\011\011\011\074\124\157\157\154\015\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\015\012\011\011\011\057\076\015\012\011\074\045\040\145\156\144\040\045\076\015\012\074\045\040\145\156\144\040\045\076\015\012\011\011\074\057\103\157\156\146\151\147\165\162\141\164\151\157\156\076\015\012\011\074\045\040\145\156\144\040\045\076\015\012\011\074\057\103\157\156\146\151\147\165\162\141\164\151\157\156\163\076\015\012\011\074\122\145\146\145\162\145\156\143\145\163\076\015\012\011\074\057\122\145\146\145\162\145\156\143\145\163\076\015\012\011\074\106\151\154\145\163\076\015\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\166\163\164\165\144\151\157\056\146\151\154\145\163\051\040\045\076\015\012\011\074\057\106\151\154\145\163\076\015\012\011\074\107\154\157\142\141\154\163\076\015\012\011\074\057\107\154\157\142\141\154\163\076\015\012\074\057\126\151\163\165\141\154\123\164\165\144\151\157\120\162\157\152\145\143\164\076\015\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\003\032\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\200\001\000\006\300\101\000\112\200\000\000\111\100\102\204\205\000\000\000\206\100\101\001\111\200\000\205\011\100\000\200\036\000\200\000\013\000\000\000\004\006\000\000\000\143\154\145\141\156\000\004\016\000\000\000\164\145\155\160\154\141\164\145\146\151\154\145\163\000\004\011\000\000\000\163\157\154\165\164\151\157\156\000\004\010\000\000\000\160\162\157\152\145\143\164\000\004\007\000\000\000\143\157\156\146\151\147\000\004\004\000\000\000\141\154\154\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\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\005\000\000\000\000\000\000\000\016\000\000\000\025\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\017\000\000\000\017\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\021\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\022\000\000\000\020\000\000\000\022\000\000\000\025\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\034\000\000\000\042\000\000\000\000\001\000\005\022\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\306\300\100\000\134\200\200\001\205\000\001\000\206\100\101\001\300\000\200\000\001\201\001\000\325\000\201\001\234\100\000\001\205\000\001\000\206\100\101\001\300\000\200\000\001\301\001\000\325\000\201\001\234\100\000\001\036\000\200\000\010\000\000\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\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\000\000\000\000\022\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\000\000\000\035\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\041\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\041\000\000\000\042\000\000\000\002\000\000\000\004\000\000\000\163\154\156\000\000\000\000\000\021\000\000\000\005\000\000\000\142\141\163\145\000\005\000\000\000\021\000\000\000\000\000\000\000\000\000\000\000\051\000\000\000\070\000\000\000\000\001\000\012\054\000\000\000\105\000\000\000\106\100\300\000\206\200\100\000\306\300\100\000\134\200\200\001\206\000\101\000\232\000\000\000\026\300\000\200\205\100\001\000\206\200\101\001\306\000\101\000\234\100\000\001\205\100\001\000\206\300\101\001\300\000\200\000\001\001\002\000\325\000\201\001\234\100\000\001\205\100\001\000\206\300\101\001\300\000\200\000\001\101\002\000\325\000\201\001\234\100\000\001\205\100\001\000\206\200\102\001\300\000\200\000\001\301\002\000\325\000\201\001\000\001\200\000\101\001\003\000\025\101\001\002\234\200\200\001\305\100\003\000\000\001\000\001\334\000\001\001\026\300\000\200\005\102\001\000\006\302\101\004\100\002\200\003\034\102\000\001\341\200\000\000\026\100\376\177\036\000\200\000\016\000\000\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\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\007\000\000\000\162\145\155\157\166\145\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\007\000\000\000\151\160\141\151\162\163\000\000\000\000\000\054\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\000\000\000\052\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\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\062\000\000\000\062\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\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\065\000\000\000\066\000\000\000\070\000\000\000\010\000\000\000\004\000\000\000\160\162\152\000\000\000\000\000\053\000\000\000\005\000\000\000\142\141\163\145\000\005\000\000\000\053\000\000\000\006\000\000\000\146\151\154\145\163\000\041\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\044\000\000\000\053\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\044\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\044\000\000\000\053\000\000\000\002\000\000\000\137\000\045\000\000\000\051\000\000\000\006\000\000\000\146\156\141\155\145\000\045\000\000\000\051\000\000\000\000\000\000\000\000\000\000\000\077\000\000\000\131\000\000\000\000\001\000\007\155\000\000\000\105\000\000\000\106\100\300\000\205\200\000\000\206\300\100\001\300\000\000\000\001\001\001\000\106\101\101\000\201\201\001\000\234\000\200\002\134\100\000\000\105\000\000\000\106\100\300\000\205\200\000\000\206\300\100\001\300\000\000\000\001\001\001\000\106\101\101\000\201\301\001\000\234\000\200\002\134\100\000\000\105\000\000\000\106\100\300\000\205\200\000\000\206\300\100\001\300\000\000\000\001\001\001\000\106\101\101\000\201\001\002\000\234\000\200\002\134\100\000\000\105\000\000\000\106\100\300\000\205\200\000\000\206\300\100\001\300\000\000\000\001\101\002\000\101\201\002\000\201\301\001\000\234\000\200\002\134\100\000\000\105\000\000\000\106\100\300\000\205\200\000\000\206\300\100\001\300\000\000\000\001\101\002\000\101\201\002\000\201\201\001\000\234\000\200\002\134\100\000\000\105\200\000\000\106\300\300\000\200\000\000\000\301\000\001\000\134\200\200\001\205\300\002\000\206\000\103\001\305\300\002\000\306\100\303\001\000\001\200\000\334\200\000\001\005\301\002\000\006\201\103\002\100\001\200\000\034\001\000\001\234\200\000\000\305\000\000\000\306\100\300\001\000\001\000\001\101\301\003\000\025\101\001\002\334\100\000\001\305\000\000\000\306\100\300\001\000\001\000\001\101\001\004\000\025\101\001\002\334\100\000\001\305\000\000\000\306\100\300\001\000\001\000\001\101\101\004\000\025\101\001\002\334\100\000\001\305\000\000\000\306\100\300\001\000\001\000\001\101\201\004\000\025\101\001\002\334\100\000\001\305\000\000\000\306\100\300\001\000\001\000\001\101\301\004\000\025\101\001\002\334\100\000\001\305\000\000\000\306\100\300\001\000\001\000\001\101\001\005\000\025\101\001\002\334\100\000\001\305\000\000\000\306\100\300\001\000\001\000\001\101\101\005\000\025\101\001\002\334\100\000\001\036\000\200\000\026\000\000\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\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\164\141\162\147\145\164\000\004\005\000\000\000\153\151\156\144\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\012\000\000\000\123\164\141\164\151\143\114\151\142\000\004\005\000\000\000\160\141\164\150\000\004\005\000\000\000\152\157\151\156\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\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\004\011\000\000\000\056\145\170\145\056\155\144\142\000\004\011\000\000\000\056\144\154\154\056\155\144\142\000\000\000\000\000\155\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\103\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\103\000\000\000\103\000\000\000\103\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\107\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\107\000\000\000\107\000\000\000\107\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\112\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\112\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\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\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\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\125\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\125\000\000\000\131\000\000\000\003\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\154\000\000\000\007\000\000\000\164\141\162\147\145\164\000\067\000\000\000\154\000\000\000\005\000\000\000\142\141\163\145\000\102\000\000\000\154\000\000\000\000\000\000\000\000\000\000\000\141\000\000\000\167\000\000\000\000\000\000\024\071\000\000\000\005\000\000\000\105\100\000\000\106\200\300\000\034\000\001\001\026\100\012\200\105\301\000\000\205\001\001\000\134\001\001\001\026\300\010\200\205\102\001\000\206\202\101\005\300\002\200\004\006\303\101\002\234\102\200\001\205\102\001\000\206\002\102\005\300\002\200\004\234\102\000\001\205\102\000\000\206\102\102\005\300\002\200\004\234\002\001\001\026\300\004\200\205\103\001\000\206\203\101\007\300\003\200\006\006\204\102\002\234\103\200\001\205\103\001\000\206\303\102\007\300\003\200\006\234\103\000\001\205\103\000\000\206\003\103\007\300\003\200\006\234\003\001\001\026\300\000\200\205\104\001\000\206\104\103\011\300\004\200\010\234\104\000\001\241\103\000\000\026\100\376\177\241\102\000\000\026\100\372\177\141\201\000\000\026\100\366\177\041\200\000\000\026\300\364\177\005\200\003\000\105\300\003\000\034\200\000\001\027\000\104\000\026\100\000\200\005\300\003\000\034\100\200\000\036\000\200\000\021\000\000\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\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\006\000\000\000\143\154\145\141\156\000\004\016\000\000\000\164\145\155\160\154\141\164\145\146\151\154\145\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\011\000\000\000\163\157\154\165\164\151\157\156\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\160\162\157\152\145\143\164\000\004\013\000\000\000\145\141\143\150\143\157\156\146\151\147\000\004\007\000\000\000\143\157\156\146\151\147\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\071\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\146\000\000\000\146\000\000\000\146\000\000\000\146\000\000\000\150\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\152\000\000\000\152\000\000\000\152\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\155\000\000\000\155\000\000\000\155\000\000\000\155\000\000\000\154\000\000\000\155\000\000\000\150\000\000\000\156\000\000\000\144\000\000\000\157\000\000\000\143\000\000\000\160\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\167\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\004\000\000\000\061\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\004\000\000\000\061\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\061\000\000\000\002\000\000\000\137\000\005\000\000\000\057\000\000\000\007\000\000\000\141\143\164\151\157\156\000\005\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\010\000\000\000\057\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\010\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\010\000\000\000\057\000\000\000\002\000\000\000\137\000\011\000\000\000\055\000\000\000\004\000\000\000\163\154\156\000\011\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\026\000\000\000\055\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\026\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\026\000\000\000\055\000\000\000\004\000\000\000\160\162\152\000\027\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\044\000\000\000\053\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\044\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\044\000\000\000\053\000\000\000\004\000\000\000\143\146\147\000\045\000\000\000\051\000\000\000\000\000\000\000\032\000\000\000\010\000\000\000\010\000\000\000\016\000\000\000\025\000\000\000\016\000\000\000\034\000\000\000\042\000\000\000\034\000\000\000\051\000\000\000\070\000\000\000\051\000\000\000\077\000\000\000\131\000\000\000\077\000\000\000\141\000\000\000\167\000\000\000\141\000\000\000\176\000\000\000\176\000\000\000\176\000\000\000\177\000\000\000\200\000\000\000\200\000\000\000\200\000\000\000\201\000\000\000\201\000\000\000\000\000\000\000\000\000\000\000",
+ "\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\155\141\153\145\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\155\141\153\145\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\155\141\153\145\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\155\141\153\145\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\155\141\153\145\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\155\141\153\145\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\155\141\153\145\056\145\163\143\050\155\141\153\145\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\155\141\153\145\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\155\141\153\145\056\145\163\143\050\155\141\153\145\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\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\155\141\153\145\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\155\141\153\145\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\155\141\153\145\056\145\163\143\050\160\141\164\150\056\147\145\164\144\151\162\145\143\164\157\162\171\050\143\146\147\056\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\155\141\153\145\056\145\163\143\050\160\141\164\150\056\147\145\164\156\141\155\145\050\143\146\147\056\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\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\012\040\040\104\105\106\111\116\105\123\040\040\040\053\075\040\074\045\075\040\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\144\145\146\151\156\145\163\050\143\146\147\051\040\040\045\076\012\040\040\111\116\103\114\125\104\105\123\040\040\053\075\040\074\045\075\040\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\151\156\143\154\165\144\145\163\050\143\146\147\051\040\045\076\012\040\040\103\120\120\106\114\101\107\123\040\040\053\075\040\074\045\075\040\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\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\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\143\146\154\141\147\163\050\143\146\147\051\040\045\076\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\146\147\056\142\165\151\154\144\157\160\164\151\157\156\163\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\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\143\170\170\146\154\141\147\163\050\143\146\147\051\040\045\076\012\040\040\114\104\106\114\101\107\123\040\040\040\053\075\040\074\045\075\040\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\154\144\146\154\141\147\163\050\143\146\147\051\040\045\076\040\074\045\075\040\164\141\142\154\145\056\143\157\156\143\141\164\050\143\146\147\056\154\151\156\153\157\160\164\151\157\156\163\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\143\146\147\056\162\145\163\157\160\164\151\157\156\163\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\160\162\145\155\141\153\145\056\147\145\164\154\151\142\162\141\162\151\145\163\050\143\146\147\054\040\042\163\151\142\154\151\156\147\163\042\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\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\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\155\141\153\145\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\155\141\153\145\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\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\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\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\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\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\044\050\117\102\112\104\111\122\051\057\074\045\075\040\155\141\153\145\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\155\141\153\145\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\074\045\075\040\160\162\145\155\141\153\145\056\164\157\157\154\163\133\137\117\120\124\111\117\116\123\056\143\143\135\056\155\141\153\145\137\146\151\154\145\137\162\165\154\145\050\146\151\154\145\051\040\045\076\012\011\012\040\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\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\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\143\146\147\056\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\051\054\040\042\134\134\042\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\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\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\166\163\164\165\144\151\157\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\115\151\156\151\155\141\154\122\145\142\165\151\154\144\075\042\074\045\075\040\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\143\146\147\056\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\056\142\157\157\154\050\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\166\163\164\165\144\151\157\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\143\146\147\056\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\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\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\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\144\151\162\163\040\076\040\060\040\157\162\040\043\143\146\147\056\162\145\163\151\156\143\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\144\151\162\163\054\040\143\146\147\056\162\145\163\151\156\143\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\166\163\164\165\144\151\157\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\106\100\300\000\212\200\000\000\211\000\301\201\344\100\000\000\000\000\000\000\211\300\200\202\111\200\000\201\036\000\200\000\006\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\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\035\000\000\000\122\000\000\000\001\000\000\027\250\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\000\034\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\000\030\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\100\022\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\106\305\304\007\201\005\005\000\234\004\200\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\106\305\304\007\201\105\005\000\234\004\200\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\106\305\304\007\201\205\005\000\234\004\200\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\005\000\101\005\006\000\201\105\005\000\234\004\200\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\005\000\101\005\006\000\201\005\005\000\234\004\200\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\300\354\177\041\102\000\000\026\000\347\177\341\200\000\000\026\000\343\177\305\100\006\000\005\001\002\000\006\201\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\303\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\004\307\003\134\104\200\001\141\103\000\000\026\100\376\177\041\202\000\000\026\200\373\177\005\102\007\000\106\202\307\003\034\202\000\001\027\300\107\004\026\000\001\200\006\202\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\100\007\000\005\201\007\000\334\200\000\001\027\300\307\001\026\100\000\200\305\200\007\000\334\100\200\000\036\000\200\000\040\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\005\000\000\000\153\151\156\144\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\012\000\000\000\123\164\141\164\151\143\114\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\250\000\000\000\036\000\000\000\037\000\000\000\040\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\045\000\000\000\045\000\000\000\045\000\000\000\045\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\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\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\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\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\000\000\000\060\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\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\065\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\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\071\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\073\000\000\000\056\000\000\000\073\000\000\000\047\000\000\000\074\000\000\000\044\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\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\104\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\105\000\000\000\104\000\000\000\105\000\000\000\102\000\000\000\106\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\101\000\000\000\113\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\122\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\247\000\000\000\011\000\000\000\160\162\157\152\145\143\164\163\000\002\000\000\000\247\000\000\000\010\000\000\000\164\141\162\147\145\164\163\000\003\000\000\000\247\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\172\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\006\000\000\000\172\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\172\000\000\000\002\000\000\000\137\000\007\000\000\000\170\000\000\000\004\000\000\000\163\154\156\000\007\000\000\000\170\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\170\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\024\000\000\000\170\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\170\000\000\000\004\000\000\000\160\162\152\000\025\000\000\000\166\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\166\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\051\000\000\000\166\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\166\000\000\000\004\000\000\000\143\146\147\000\052\000\000\000\164\000\000\000\007\000\000\000\164\141\162\147\145\164\000\057\000\000\000\164\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\176\000\000\000\240\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\176\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\176\000\000\000\240\000\000\000\002\000\000\000\137\000\177\000\000\000\236\000\000\000\007\000\000\000\141\143\164\151\157\156\000\177\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\202\000\000\000\224\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\202\000\000\000\224\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\202\000\000\000\224\000\000\000\002\000\000\000\137\000\203\000\000\000\222\000\000\000\004\000\000\000\163\154\156\000\203\000\000\000\222\000\000\000\020\000\000\000\050\146\157\162\040\147\145\156\145\162\141\164\157\162\051\000\213\000\000\000\222\000\000\000\014\000\000\000\050\146\157\162\040\163\164\141\164\145\051\000\213\000\000\000\222\000\000\000\016\000\000\000\050\146\157\162\040\143\157\156\164\162\157\154\051\000\213\000\000\000\222\000\000\000\004\000\000\000\160\162\152\000\214\000\000\000\220\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\032\000\000\000\033\000\000\000\122\000\000\000\122\000\000\000\122\000\000\000\123\000\000\000\123\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",
"\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\070\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\006\100\101\000\112\300\001\000\111\000\302\203\111\200\302\204\212\000\000\002\301\000\003\000\001\101\003\000\101\201\003\000\201\301\003\000\242\100\000\002\111\200\200\205\212\000\000\001\301\100\004\000\001\201\004\000\242\100\000\001\111\200\000\210\212\200\000\000\312\000\200\000\001\101\005\000\342\100\200\000\211\300\000\212\312\000\200\000\001\301\005\000\342\100\200\000\211\300\000\213\111\200\200\211\212\000\200\000\312\000\000\001\044\301\000\000\105\101\006\000\106\201\306\002\342\100\000\001\242\100\200\000\111\200\000\214\212\000\200\000\312\000\000\001\044\001\001\000\105\101\006\000\106\001\307\002\342\100\000\001\242\100\200\000\111\200\200\215\011\100\000\203\036\000\200\000\035\000\000\000\004\005\000\000\000\155\141\153\145\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\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\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\005\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\005\000\000\000\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\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\042\000\000\000\063\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\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\046\000\000\000\046\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\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\051\000\000\000\050\000\000\000\051\000\000\000\045\000\000\000\053\000\000\000\056\000\000\000\056\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\061\000\000\000\063\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\072\000\000\000\100\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\005\000\000\000\155\141\153\145\000\004\004\000\000\000\145\163\143\000\000\000\000\000\022\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\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\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\125\000\000\000\125\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\005\000\000\000\155\141\153\145\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\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\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\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\200\000\135\000\200\001\136\000\000\000\036\000\200\000\002\000\000\000\004\005\000\000\000\155\141\153\145\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\070\000\000\000\007\000\000\000\007\000\000\000\016\000\000\000\031\000\000\000\016\000\000\000\042\000\000\000\063\000\000\000\042\000\000\000\072\000\000\000\100\000\000\000\072\000\000\000\107\000\000\000\107\000\000\000\107\000\000\000\110\000\000\000\111\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\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\115\000\000\000\117\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\122\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\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\133\000\000\000\133\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\346\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\044\300\000\000\144\000\001\000\205\000\000\000\344\100\001\000\000\000\000\000\000\000\200\000\211\300\000\216\205\000\000\000\344\200\001\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\206\000\111\001\312\200\001\000\311\200\311\222\311\000\312\223\012\001\000\002\101\201\012\000\201\301\012\000\301\001\013\000\001\102\013\000\042\101\000\002\311\000\201\224\012\001\000\001\101\301\013\000\201\001\014\000\042\101\000\001\311\000\001\227\012\001\200\000\112\001\000\001\201\201\014\000\305\301\014\000\306\001\315\003\142\101\000\001\042\101\200\000\311\000\201\230\012\001\200\000\112\001\000\001\201\201\015\000\305\301\014\000\306\301\315\003\142\101\000\001\042\101\200\000\311\000\201\232\211\300\200\200\205\300\010\000\206\000\111\001\312\200\001\000\311\000\316\222\311\100\316\223\012\001\000\002\101\201\012\000\201\301\012\000\301\001\013\000\001\102\013\000\042\101\000\002\311\000\201\224\012\001\000\001\101\301\013\000\201\001\014\000\042\101\000\001\311\000\001\227\012\001\200\000\112\001\000\001\201\201\014\000\305\301\014\000\306\201\316\003\142\101\000\001\042\101\200\000\311\000\201\230\012\001\200\000\112\001\000\001\201\201\015\000\305\301\014\000\306\301\315\003\142\101\000\001\042\101\200\000\311\000\201\232\211\300\000\206\205\300\010\000\206\000\111\001\312\200\001\000\311\300\316\222\311\000\317\223\012\001\000\002\101\201\012\000\201\301\012\000\301\001\013\000\001\102\013\000\042\101\000\002\311\000\201\224\012\001\000\001\101\301\013\000\201\001\014\000\042\101\000\001\311\000\001\227\012\001\200\000\112\001\000\001\201\201\014\000\305\301\014\000\306\101\317\003\142\101\000\001\042\101\200\000\311\000\201\230\012\001\200\000\112\001\000\001\201\201\015\000\305\301\014\000\306\301\315\003\142\101\000\001\042\101\200\000\311\000\201\232\211\300\000\210\205\300\010\000\206\000\111\001\312\200\001\000\311\200\317\222\311\300\317\223\012\001\000\002\101\201\012\000\201\301\012\000\301\001\013\000\001\102\013\000\042\101\000\002\311\000\201\224\012\001\000\001\101\301\013\000\201\001\014\000\042\101\000\001\311\000\001\227\012\001\200\000\112\001\000\001\201\201\014\000\305\301\014\000\306\101\317\003\142\101\000\001\042\101\200\000\311\000\201\230\012\001\200\000\112\001\000\001\201\201\015\000\305\301\014\000\306\301\315\003\142\101\000\001\042\101\200\000\311\000\201\232\211\300\000\214\036\000\200\000\100\000\000\000\004\010\000\000\000\166\163\164\165\144\151\157\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\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\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\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\014\000\000\000\000\000\000\000\107\000\000\000\121\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\110\000\000\000\110\000\000\000\110\000\000\000\111\000\000\000\111\000\000\000\112\000\000\000\112\000\000\000\112\000\000\000\114\000\000\000\114\000\000\000\115\000\000\000\117\000\000\000\117\000\000\000\121\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\131\000\000\000\137\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\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\135\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\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\147\000\000\000\157\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\150\000\000\000\150\000\000\000\150\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\153\000\000\000\153\000\000\000\153\000\000\000\155\000\000\000\155\000\000\000\157\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\167\000\000\000\171\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\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\171\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\173\000\000\000\175\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\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\174\000\000\000\175\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\177\000\000\000\235\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\200\000\000\000\200\000\000\000\200\000\000\000\200\000\000\000\200\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\204\000\000\000\204\000\000\000\204\000\000\000\204\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\206\000\000\000\206\000\000\000\206\000\000\000\206\000\000\000\206\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\214\000\000\000\214\000\000\000\214\000\000\000\214\000\000\000\215\000\000\000\215\000\000\000\215\000\000\000\215\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\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\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\222\000\000\000\222\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\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\230\000\000\000\230\000\000\000\230\000\000\000\230\000\000\000\220\000\000\000\230\000\000\000\233\000\000\000\233\000\000\000\233\000\000\000\233\000\000\000\235\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\246\000\000\000\256\000\000\000\000\001\000\007\033\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\301\200\000\000\001\301\000\000\101\001\001\000\134\200\200\002\206\100\101\000\206\200\101\001\232\000\000\000\026\100\003\200\205\000\000\000\206\300\101\001\300\000\000\000\234\200\000\001\305\000\002\000\306\100\302\001\000\001\000\001\105\001\002\000\106\201\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\013\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\012\000\000\000\123\164\141\164\151\143\114\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\033\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\247\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\252\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\252\000\000\000\254\000\000\000\256\000\000\000\003\000\000\000\004\000\000\000\143\146\147\000\000\000\000\000\032\000\000\000\006\000\000\000\146\156\141\155\145\000\007\000\000\000\032\000\000\000\007\000\000\000\157\142\152\144\151\162\000\017\000\000\000\030\000\000\000\000\000\000\000\000\000\000\000\266\000\000\000\302\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\267\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\272\000\000\000\272\000\000\000\273\000\000\000\273\000\000\000\274\000\000\000\274\000\000\000\275\000\000\000\275\000\000\000\276\000\000\000\270\000\000\000\277\000\000\000\301\000\000\000\302\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\312\000\000\000\324\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\314\000\000\000\314\000\000\000\314\000\000\000\315\000\000\000\315\000\000\000\317\000\000\000\322\000\000\000\322\000\000\000\322\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\324\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\334\000\000\000\343\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\010\000\000\000\166\163\164\165\144\151\157\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\335\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\335\000\000\000\336\000\000\000\336\000\000\000\336\000\000\000\336\000\000\000\337\000\000\000\337\000\000\000\337\000\000\000\337\000\000\000\337\000\000\000\337\000\000\000\337\000\000\000\341\000\000\000\341\000\000\000\341\000\000\000\341\000\000\000\341\000\000\000\341\000\000\000\343\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\353\000\000\000\366\000\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\010\000\000\000\166\163\164\165\144\151\157\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\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\360\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\360\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\361\000\000\000\363\000\000\000\363\000\000\000\366\000\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\376\000\000\000\004\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\377\000\000\000\377\000\000\000\377\000\000\000\000\001\000\000\000\001\000\000\000\001\000\000\002\001\000\000\002\001\000\000\004\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\346\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\121\000\000\000\107\000\000\000\131\000\000\000\137\000\000\000\131\000\000\000\147\000\000\000\157\000\000\000\147\000\000\000\171\000\000\000\175\000\000\000\177\000\000\000\235\000\000\000\235\000\000\000\235\000\000\000\177\000\000\000\246\000\000\000\256\000\000\000\246\000\000\000\266\000\000\000\302\000\000\000\266\000\000\000\312\000\000\000\324\000\000\000\312\000\000\000\334\000\000\000\343\000\000\000\334\000\000\000\353\000\000\000\366\000\000\000\353\000\000\000\376\000\000\000\004\001\000\000\376\000\000\000\015\001\000\000\015\001\000\000\015\001\000\000\016\001\000\000\017\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\023\001\000\000\023\001\000\000\023\001\000\000\023\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\031\001\000\000\031\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\043\001\000\000\043\001\000\000\043\001\000\000\044\001\000\000\045\001\000\000\047\001\000\000\047\001\000\000\047\001\000\000\047\001\000\000\047\001\000\000\047\001\000\000\047\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\051\001\000\000\053\001\000\000\053\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\057\001\000\000\057\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\060\001\000\000\061\001\000\000\061\001\000\000\062\001\000\000\071\001\000\000\071\001\000\000\071\001\000\000\072\001\000\000\073\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\075\001\000\000\077\001\000\000\077\001\000\000\077\001\000\000\077\001\000\000\077\001\000\000\101\001\000\000\101\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\106\001\000\000\106\001\000\000\106\001\000\000\106\001\000\000\107\001\000\000\107\001\000\000\110\001\000\000\117\001\000\000\117\001\000\000\117\001\000\000\120\001\000\000\121\001\000\000\123\001\000\000\123\001\000\000\123\001\000\000\123\001\000\000\123\001\000\000\123\001\000\000\123\001\000\000\125\001\000\000\125\001\000\000\125\001\000\000\125\001\000\000\125\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\131\001\000\000\131\001\000\000\133\001\000\000\133\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\136\001\000\000\136\001\000\000\002\000\000\000\007\000\000\000\157\165\164\160\165\164\000\105\000\000\000\345\000\000\000\007\000\000\000\141\164\164\162\151\142\000\106\000\000\000\345\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\206\100\111\001\312\300\001\000\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\211\300\200\200\205\000\011\000\206\100\111\001\312\300\001\000\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\211\300\000\206\205\000\011\000\206\100\111\001\312\300\001\000\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\211\300\000\210\205\000\011\000\206\100\111\001\312\300\001\000\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\211\300\000\214\036\000\200\000\101\000\000\000\004\010\000\000\000\166\163\164\165\144\151\157\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\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\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\033\000\000\000\105\000\000\000\106\100\300\000\200\000\000\000\301\200\000\000\001\301\000\000\101\001\001\000\134\200\200\002\206\100\101\000\206\200\101\001\232\000\000\000\026\100\003\200\205\000\000\000\206\300\101\001\300\000\000\000\234\200\000\001\305\000\002\000\306\100\302\001\000\001\000\001\105\001\002\000\106\201\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\013\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\012\000\000\000\123\164\141\164\151\143\114\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\033\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\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\032\000\000\000\006\000\000\000\146\156\141\155\145\000\007\000\000\000\032\000\000\000\007\000\000\000\157\142\152\144\151\162\000\017\000\000\000\030\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\010\000\000\000\166\163\164\165\144\151\157\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\010\000\000\000\166\163\164\165\144\151\157\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\053\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\057\001\000\000\057\001\000\000\061\001\000\000\061\001\000\000\061\001\000\000\061\001\000\000\061\001\000\000\063\001\000\000\063\001\000\000\064\001\000\000\064\001\000\000\064\001\000\000\064\001\000\000\065\001\000\000\065\001\000\000\067\001\000\000\067\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\073\001\000\000\073\001\000\000\073\001\000\000\074\001\000\000\103\001\000\000\103\001\000\000\103\001\000\000\104\001\000\000\105\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\107\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\111\001\000\000\113\001\000\000\113\001\000\000\114\001\000\000\114\001\000\000\114\001\000\000\114\001\000\000\115\001\000\000\115\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\121\001\000\000\121\001\000\000\123\001\000\000\123\001\000\000\123\001\000\000\124\001\000\000\133\001\000\000\133\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\154\001\000\000\163\001\000\000\163\001\000\000\163\001\000\000\164\001\000\000\165\001\000\000\167\001\000\000\167\001\000\000\167\001\000\000\167\001\000\000\167\001\000\000\167\001\000\000\167\001\000\000\171\001\000\000\171\001\000\000\171\001\000\000\171\001\000\000\171\001\000\000\173\001\000\000\173\001\000\000\174\001\000\000\174\001\000\000\174\001\000\000\174\001\000\000\175\001\000\000\175\001\000\000\177\001\000\000\177\001\000\000\200\001\000\000\200\001\000\000\200\001\000\000\200\001\000\000\201\001\000\000\201\001\000\000\203\001\000\000\203\001\000\000\203\001\000\000\204\001\000\000\204\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",
};
int builtin_sizes[] = {
@@ -38,14 +38,14 @@ int builtin_sizes[] = {
11023,
4582,
4199,
- 1251,
- 3251,
- 1432,
- 1278,
- 2524,
- 8218,
- 4342,
+ 1219,
+ 3146,
+ 1398,
+ 1248,
+ 2469,
+ 7975,
+ 3255,
2871,
- 8230,
+ 9870,
0
};