aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/3rdparty/LuaJIT-2.0.5/src/buildvm.libbin33996 -> 33996 bytes
-rw-r--r--src/3rdparty/LuaJIT-2.0.5/src/minilua.libbin33996 -> 33996 bytes
-rw-r--r--src/3rdparty/buildvm/buildvm-post.bat17
-rw-r--r--src/3rdparty/buildvm/buildvm.exebin121856 -> 0 bytes
-rw-r--r--src/3rdparty/minilua/minilua-post.bat6
-rw-r--r--src/3rdparty/minilua/minilua.exebin209920 -> 0 bytes
-rw-r--r--src/libjin-lua/scripts/ai/state_machine.lua25
-rw-r--r--src/libjin-lua/scripts/ai/state_machine.lua.h496
-rw-r--r--src/libjin-lua/scripts/log.lua10
-rw-r--r--src/libjin-lua/scripts/log.lua.h220
-rw-r--r--src/libjin-lua/scripts/utils/json.lua22
-rw-r--r--src/libjin-lua/scripts/utils/json.lua.h1037
-rw-r--r--src/libjin-lua/scripts/utils/xml.lua17
-rw-r--r--src/libjin-lua/scripts/utils/xml.lua.h525
14 files changed, 1063 insertions, 1312 deletions
diff --git a/src/3rdparty/LuaJIT-2.0.5/src/buildvm.lib b/src/3rdparty/LuaJIT-2.0.5/src/buildvm.lib
index d4372fd..c7be727 100644
--- a/src/3rdparty/LuaJIT-2.0.5/src/buildvm.lib
+++ b/src/3rdparty/LuaJIT-2.0.5/src/buildvm.lib
Binary files differ
diff --git a/src/3rdparty/LuaJIT-2.0.5/src/minilua.lib b/src/3rdparty/LuaJIT-2.0.5/src/minilua.lib
index a3cce18..e2b3ac3 100644
--- a/src/3rdparty/LuaJIT-2.0.5/src/minilua.lib
+++ b/src/3rdparty/LuaJIT-2.0.5/src/minilua.lib
Binary files differ
diff --git a/src/3rdparty/buildvm/buildvm-post.bat b/src/3rdparty/buildvm/buildvm-post.bat
deleted file mode 100644
index f9127f2..0000000
--- a/src/3rdparty/buildvm/buildvm-post.bat
+++ /dev/null
@@ -1,17 +0,0 @@
-set buildvm=%1
-set outdir=%2
-
-if not exist %outdir% mkdir -p %outdir%
-
-set src=..\LuaJIT-2.0.5\src
-
-set sources=%src%\lib_base.c %src%\lib_math.c %src%\lib_bit.c %src%\lib_string.c %src%\lib_table.c %src%\lib_io.c %src%\lib_os.c %src%\lib_package.c %src%\lib_debug.c %src%\lib_jit.c %src%\lib_ffi.c
-
-%buildvm% -m peobj -o %outdir%\lj_vm.obj %sources%
-%buildvm% -m bcdef -o %outdir%\lj_bcdef.h %sources%
-%buildvm% -m ffdef -o %outdir%\lj_ffdef.h %sources%
-%buildvm% -m libdef -o %outdir%\lj_libdef.h %sources%
-%buildvm% -m recdef -o %outdir%\lj_recdef.h %sources%
-%buildvm% -m vmdef -o %outdir%\vmdef.lua %sources%
-%buildvm% -m folddef -o %outdir%\lj_folddef.h %src%\lj_opt_fold.c
-
diff --git a/src/3rdparty/buildvm/buildvm.exe b/src/3rdparty/buildvm/buildvm.exe
deleted file mode 100644
index 17f8033..0000000
--- a/src/3rdparty/buildvm/buildvm.exe
+++ /dev/null
Binary files differ
diff --git a/src/3rdparty/minilua/minilua-post.bat b/src/3rdparty/minilua/minilua-post.bat
deleted file mode 100644
index 0e0406f..0000000
--- a/src/3rdparty/minilua/minilua-post.bat
+++ /dev/null
@@ -1,6 +0,0 @@
-set minilua=%1
-set outdir=%2
-set luajit=..\LuaJIT-2.0.5
-
-if not exist %outdir% mkdir -p %outdir%
-%minilua% %luajit%\dynasm\dynasm.lua -LN -D WIN -D JIT -D FFI -o %outdir%\buildvm_arch.h %luajit%\src\vm_x86.dasc
diff --git a/src/3rdparty/minilua/minilua.exe b/src/3rdparty/minilua/minilua.exe
deleted file mode 100644
index 71e31bc..0000000
--- a/src/3rdparty/minilua/minilua.exe
+++ /dev/null
Binary files differ
diff --git a/src/libjin-lua/scripts/ai/state_machine.lua b/src/libjin-lua/scripts/ai/state_machine.lua
index cf76b8e..98ad208 100644
--- a/src/libjin-lua/scripts/ai/state_machine.lua
+++ b/src/libjin-lua/scripts/ai/state_machine.lua
@@ -1,30 +1,7 @@
jin.ai = jin.ai or {}
---[[
+-- https://github.com/kyleconroy/lua-state-machine
-https://github.com/kyleconroy/lua-state-machine
-
-Copyright (c) 2012 Kyle Conroy
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-]]
local machine = {}
machine.__index = machine
diff --git a/src/libjin-lua/scripts/ai/state_machine.lua.h b/src/libjin-lua/scripts/ai/state_machine.lua.h
index 67dc959..b1faee2 100644
--- a/src/libjin-lua/scripts/ai/state_machine.lua.h
+++ b/src/libjin-lua/scripts/ai/state_machine.lua.h
@@ -1,281 +1,227 @@
/*Auto generated, don't modify by hand.*/
static char state_machine_lua[] = {
106,105,110,46,97,105,32,61,32,106,105,110,46,97,105,32,111,114,32,123,
-125,32,13,10,13,10,45,45,91,91,13,10,13,10,104,116,116,112,115,58,
-47,47,103,105,116,104,117,98,46,99,111,109,47,107,121,108,101,99,111,110,
-114,111,121,47,108,117,97,45,115,116,97,116,101,45,109,97,99,104,105,110,
-101,13,10,13,10,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,
-48,49,50,32,75,121,108,101,32,67,111,110,114,111,121,13,10,13,10,80,
-101,114,109,105,115,115,105,111,110,32,105,115,32,104,101,114,101,98,121,32,
-103,114,97,110,116,101,100,44,32,102,114,101,101,32,111,102,32,99,104,97,
-114,103,101,44,32,116,111,32,97,110,121,32,112,101,114,115,111,110,32,111,
-98,116,97,105,110,105,110,103,32,97,32,99,111,112,121,13,10,111,102,32,
-116,104,105,115,32,115,111,102,116,119,97,114,101,32,97,110,100,32,97,115,
-115,111,99,105,97,116,101,100,32,100,111,99,117,109,101,110,116,97,116,105,
-111,110,32,102,105,108,101,115,32,40,116,104,101,32,34,83,111,102,116,119,
-97,114,101,34,41,44,32,116,111,32,100,101,97,108,13,10,105,110,32,116,
-104,101,32,83,111,102,116,119,97,114,101,32,119,105,116,104,111,117,116,32,
-114,101,115,116,114,105,99,116,105,111,110,44,32,105,110,99,108,117,100,105,
-110,103,32,119,105,116,104,111,117,116,32,108,105,109,105,116,97,116,105,111,
-110,32,116,104,101,32,114,105,103,104,116,115,13,10,116,111,32,117,115,101,
-44,32,99,111,112,121,44,32,109,111,100,105,102,121,44,32,109,101,114,103,
-101,44,32,112,117,98,108,105,115,104,44,32,100,105,115,116,114,105,98,117,
-116,101,44,32,115,117,98,108,105,99,101,110,115,101,44,32,97,110,100,47,
-111,114,32,115,101,108,108,13,10,99,111,112,105,101,115,32,111,102,32,116,
-104,101,32,83,111,102,116,119,97,114,101,44,32,97,110,100,32,116,111,32,
-112,101,114,109,105,116,32,112,101,114,115,111,110,115,32,116,111,32,119,104,
-111,109,32,116,104,101,32,83,111,102,116,119,97,114,101,32,105,115,13,10,
-102,117,114,110,105,115,104,101,100,32,116,111,32,100,111,32,115,111,44,32,
-115,117,98,106,101,99,116,32,116,111,32,116,104,101,32,102,111,108,108,111,
-119,105,110,103,32,99,111,110,100,105,116,105,111,110,115,58,13,10,13,10,
-84,104,101,32,97,98,111,118,101,32,99,111,112,121,114,105,103,104,116,32,
-110,111,116,105,99,101,32,97,110,100,32,116,104,105,115,32,112,101,114,109,
-105,115,115,105,111,110,32,110,111,116,105,99,101,32,115,104,97,108,108,32,
-98,101,32,105,110,99,108,117,100,101,100,32,105,110,32,97,108,108,13,10,
-99,111,112,105,101,115,32,111,114,32,115,117,98,115,116,97,110,116,105,97,
-108,32,112,111,114,116,105,111,110,115,32,111,102,32,116,104,101,32,83,111,
-102,116,119,97,114,101,46,13,10,13,10,84,72,69,32,83,79,70,84,87,
-65,82,69,32,73,83,32,80,82,79,86,73,68,69,68,32,34,65,83,32,
-73,83,34,44,32,87,73,84,72,79,85,84,32,87,65,82,82,65,78,84,
-89,32,79,70,32,65,78,89,32,75,73,78,68,44,32,69,88,80,82,69,
-83,83,32,79,82,13,10,73,77,80,76,73,69,68,44,32,73,78,67,76,
-85,68,73,78,71,32,66,85,84,32,78,79,84,32,76,73,77,73,84,69,
-68,32,84,79,32,84,72,69,32,87,65,82,82,65,78,84,73,69,83,32,
-79,70,32,77,69,82,67,72,65,78,84,65,66,73,76,73,84,89,44,13,
-10,70,73,84,78,69,83,83,32,70,79,82,32,65,32,80,65,82,84,73,
-67,85,76,65,82,32,80,85,82,80,79,83,69,32,65,78,68,32,78,79,
-78,73,78,70,82,73,78,71,69,77,69,78,84,46,32,73,78,32,78,79,
-32,69,86,69,78,84,32,83,72,65,76,76,32,84,72,69,13,10,65,85,
-84,72,79,82,83,32,79,82,32,67,79,80,89,82,73,71,72,84,32,72,
-79,76,68,69,82,83,32,66,69,32,76,73,65,66,76,69,32,70,79,82,
-32,65,78,89,32,67,76,65,73,77,44,32,68,65,77,65,71,69,83,32,
-79,82,32,79,84,72,69,82,13,10,76,73,65,66,73,76,73,84,89,44,
-32,87,72,69,84,72,69,82,32,73,78,32,65,78,32,65,67,84,73,79,
-78,32,79,70,32,67,79,78,84,82,65,67,84,44,32,84,79,82,84,32,
-79,82,32,79,84,72,69,82,87,73,83,69,44,32,65,82,73,83,73,78,
-71,32,70,82,79,77,44,13,10,79,85,84,32,79,70,32,79,82,32,73,
-78,32,67,79,78,78,69,67,84,73,79,78,32,87,73,84,72,32,84,72,
-69,32,83,79,70,84,87,65,82,69,32,79,82,32,84,72,69,32,85,83,
-69,32,79,82,32,79,84,72,69,82,32,68,69,65,76,73,78,71,83,32,
-73,78,32,84,72,69,13,10,83,79,70,84,87,65,82,69,46,13,10,13,
-10,93,93,13,10,108,111,99,97,108,32,109,97,99,104,105,110,101,32,61,
-32,123,125,13,10,109,97,99,104,105,110,101,46,95,95,105,110,100,101,120,
-32,61,32,109,97,99,104,105,110,101,13,10,13,10,108,111,99,97,108,32,
-78,79,78,69,32,61,32,34,110,111,110,101,34,13,10,108,111,99,97,108,
-32,65,83,89,78,67,32,61,32,34,97,115,121,110,99,34,13,10,13,10,
-108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,99,97,108,108,95,
-104,97,110,100,108,101,114,40,104,97,110,100,108,101,114,44,32,112,97,114,
-97,109,115,41,13,10,32,32,32,32,105,102,32,104,97,110,100,108,101,114,
-32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,
-110,32,104,97,110,100,108,101,114,40,117,110,112,97,99,107,40,112,97,114,
-97,109,115,41,41,13,10,32,32,32,32,101,110,100,13,10,101,110,100,13,
-10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,99,114,
-101,97,116,101,95,116,114,97,110,115,105,116,105,111,110,40,110,97,109,101,
-41,13,10,32,32,32,32,108,111,99,97,108,32,99,97,110,44,32,116,111,
-44,32,102,114,111,109,44,32,112,97,114,97,109,115,13,10,13,10,32,32,
-32,32,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,116,114,97,
-110,115,105,116,105,111,110,40,115,101,108,102,44,32,46,46,46,41,13,10,
-32,32,32,32,32,32,32,32,105,102,32,115,101,108,102,46,97,115,121,110,
-99,83,116,97,116,101,32,61,61,32,78,79,78,69,32,116,104,101,110,13,
-10,32,32,32,32,32,32,32,32,32,32,32,32,99,97,110,44,32,116,111,
-32,61,32,115,101,108,102,58,99,97,110,40,110,97,109,101,41,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,102,114,111,109,32,61,32,115,101,
-108,102,46,99,117,114,114,101,110,116,13,10,32,32,32,32,32,32,32,32,
-32,32,32,32,112,97,114,97,109,115,32,61,32,123,32,115,101,108,102,44,
-32,110,97,109,101,44,32,102,114,111,109,44,32,116,111,44,32,46,46,46,
-125,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,
-110,111,116,32,99,97,110,32,116,104,101,110,32,114,101,116,117,114,110,32,
-102,97,108,115,101,32,101,110,100,13,10,32,32,32,32,32,32,32,32,32,
-32,32,32,115,101,108,102,46,99,117,114,114,101,110,116,84,114,97,110,115,
-105,116,105,111,110,105,110,103,69,118,101,110,116,32,61,32,110,97,109,101,
-13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,
-108,32,98,101,102,111,114,101,82,101,116,117,114,110,32,61,32,99,97,108,
-108,95,104,97,110,100,108,101,114,40,115,101,108,102,91,34,111,110,98,101,
-102,111,114,101,34,32,46,46,32,110,97,109,101,93,44,32,112,97,114,97,
-109,115,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,
-97,108,32,108,101,97,118,101,82,101,116,117,114,110,32,61,32,99,97,108,
-108,95,104,97,110,100,108,101,114,40,115,101,108,102,91,34,111,110,108,101,
-97,118,101,34,32,46,46,32,102,114,111,109,93,44,32,112,97,114,97,109,
-115,41,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,
-32,98,101,102,111,114,101,82,101,116,117,114,110,32,61,61,32,102,97,108,
-115,101,32,111,114,32,108,101,97,118,101,82,101,116,117,114,110,32,61,61,
-32,102,97,108,115,101,32,116,104,101,110,13,10,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,
-101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,
-13,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,102,46,97,
-115,121,110,99,83,116,97,116,101,32,61,32,110,97,109,101,32,46,46,32,
-34,87,97,105,116,105,110,103,79,110,76,101,97,118,101,34,13,10,13,10,
-32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,108,101,97,118,101,
-82,101,116,117,114,110,32,126,61,32,65,83,89,78,67,32,116,104,101,110,
-13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,
-97,110,115,105,116,105,111,110,40,115,101,108,102,44,32,46,46,46,41,13,
-10,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,
-32,32,32,32,32,32,32,32,32,32,13,10,32,32,32,32,32,32,32,32,
-32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,13,10,32,32,32,
-32,32,32,32,32,101,108,115,101,105,102,32,115,101,108,102,46,97,115,121,
-110,99,83,116,97,116,101,32,61,61,32,110,97,109,101,32,46,46,32,34,
-87,97,105,116,105,110,103,79,110,76,101,97,118,101,34,32,116,104,101,110,
-13,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,102,46,99,
-117,114,114,101,110,116,32,61,32,116,111,13,10,13,10,32,32,32,32,32,
-32,32,32,32,32,32,32,108,111,99,97,108,32,101,110,116,101,114,82,101,
-116,117,114,110,32,61,32,99,97,108,108,95,104,97,110,100,108,101,114,40,
-115,101,108,102,91,34,111,110,101,110,116,101,114,34,32,46,46,32,116,111,
-93,32,111,114,32,115,101,108,102,91,34,111,110,34,32,46,46,32,116,111,
-93,44,32,112,97,114,97,109,115,41,13,10,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,115,101,108,102,46,97,115,121,110,99,83,116,97,116,
-101,32,61,32,110,97,109,101,32,46,46,32,34,87,97,105,116,105,110,103,
-79,110,69,110,116,101,114,34,13,10,13,10,32,32,32,32,32,32,32,32,
-32,32,32,32,105,102,32,101,110,116,101,114,82,101,116,117,114,110,32,126,
-61,32,65,83,89,78,67,32,116,104,101,110,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,
-40,115,101,108,102,44,32,46,46,46,41,13,10,32,32,32,32,32,32,32,
-32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,32,32,
-32,32,13,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,
-114,110,32,116,114,117,101,13,10,32,32,32,32,32,32,32,32,101,108,115,
-101,105,102,32,115,101,108,102,46,97,115,121,110,99,83,116,97,116,101,32,
-61,61,32,110,97,109,101,32,46,46,32,34,87,97,105,116,105,110,103,79,
-110,69,110,116,101,114,34,32,116,104,101,110,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,99,97,108,108,95,104,97,110,100,108,101,114,40,115,
-101,108,102,91,34,111,110,97,102,116,101,114,34,32,46,46,32,110,97,109,
-101,93,32,111,114,32,115,101,108,102,91,34,111,110,34,32,46,46,32,110,
-97,109,101,93,44,32,112,97,114,97,109,115,41,13,10,32,32,32,32,32,
-32,32,32,32,32,32,32,99,97,108,108,95,104,97,110,100,108,101,114,40,
-115,101,108,102,91,34,111,110,115,116,97,116,101,99,104,97,110,103,101,34,
-93,44,32,112,97,114,97,109,115,41,13,10,32,32,32,32,32,32,32,32,
-32,32,32,32,115,101,108,102,46,97,115,121,110,99,83,116,97,116,101,32,
-61,32,78,79,78,69,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
-115,101,108,102,46,99,117,114,114,101,110,116,84,114,97,110,115,105,116,105,
-111,110,105,110,103,69,118,101,110,116,32,61,32,110,105,108,13,10,32,32,
-32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,
-101,13,10,32,32,32,32,32,32,32,32,101,108,115,101,13,10,32,32,32,
-32,32,32,32,32,9,105,102,32,115,116,114,105,110,103,46,102,105,110,100,
-40,115,101,108,102,46,97,115,121,110,99,83,116,97,116,101,44,32,34,87,
-97,105,116,105,110,103,79,110,76,101,97,118,101,34,41,32,111,114,32,115,
-116,114,105,110,103,46,102,105,110,100,40,115,101,108,102,46,97,115,121,110,
-99,83,116,97,116,101,44,32,34,87,97,105,116,105,110,103,79,110,69,110,
-116,101,114,34,41,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,
-9,9,115,101,108,102,46,97,115,121,110,99,83,116,97,116,101,32,61,32,
-78,79,78,69,13,10,32,32,32,32,32,32,32,32,9,9,116,114,97,110,
-115,105,116,105,111,110,40,115,101,108,102,44,32,46,46,46,41,13,10,32,
-32,32,32,32,32,32,32,9,9,114,101,116,117,114,110,32,116,114,117,101,
-13,10,32,32,32,32,32,32,32,32,9,101,110,100,13,10,32,32,32,32,
-32,32,32,32,101,110,100,13,10,13,10,32,32,32,32,32,32,32,32,115,
-101,108,102,46,99,117,114,114,101,110,116,84,114,97,110,115,105,116,105,111,
-110,105,110,103,69,118,101,110,116,32,61,32,110,105,108,13,10,32,32,32,
-32,32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,13,10,32,
-32,32,32,101,110,100,13,10,13,10,32,32,32,32,114,101,116,117,114,110,
-32,116,114,97,110,115,105,116,105,111,110,13,10,101,110,100,13,10,13,10,
-108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,97,100,100,95,116,
-111,95,109,97,112,40,109,97,112,44,32,101,118,101,110,116,41,13,10,32,
-32,32,32,105,102,32,116,121,112,101,40,101,118,101,110,116,46,102,114,111,
-109,41,32,61,61,32,39,115,116,114,105,110,103,39,32,116,104,101,110,13,
-10,32,32,32,32,32,32,32,32,109,97,112,91,101,118,101,110,116,46,102,
-114,111,109,93,32,61,32,101,118,101,110,116,46,116,111,13,10,32,32,32,
-32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,102,111,114,32,95,
-44,32,102,114,111,109,32,105,110,32,105,112,97,105,114,115,40,101,118,101,
-110,116,46,102,114,111,109,41,32,100,111,13,10,32,32,32,32,32,32,32,
-32,32,32,32,32,109,97,112,91,102,114,111,109,93,32,61,32,101,118,101,
-110,116,46,116,111,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,
-32,32,32,32,101,110,100,13,10,101,110,100,13,10,13,10,102,117,110,99,
-116,105,111,110,32,109,97,99,104,105,110,101,46,99,114,101,97,116,101,40,
-111,112,116,105,111,110,115,41,13,10,32,32,32,32,97,115,115,101,114,116,
-40,111,112,116,105,111,110,115,46,101,118,101,110,116,115,41,13,10,13,10,
-32,32,32,32,108,111,99,97,108,32,102,115,109,32,61,32,123,125,13,10,
-32,32,32,32,115,101,116,109,101,116,97,116,97,98,108,101,40,102,115,109,
-44,32,109,97,99,104,105,110,101,41,13,10,13,10,32,32,32,32,102,115,
-109,46,111,112,116,105,111,110,115,32,61,32,111,112,116,105,111,110,115,13,
-10,32,32,32,32,102,115,109,46,99,117,114,114,101,110,116,32,61,32,111,
-112,116,105,111,110,115,46,105,110,105,116,105,97,108,32,111,114,32,39,110,
-111,110,101,39,13,10,32,32,32,32,102,115,109,46,97,115,121,110,99,83,
-116,97,116,101,32,61,32,78,79,78,69,13,10,32,32,32,32,102,115,109,
-46,101,118,101,110,116,115,32,61,32,123,125,13,10,13,10,32,32,32,32,
-102,111,114,32,95,44,32,101,118,101,110,116,32,105,110,32,105,112,97,105,
-114,115,40,111,112,116,105,111,110,115,46,101,118,101,110,116,115,32,111,114,
-32,123,125,41,32,100,111,13,10,32,32,32,32,32,32,32,32,108,111,99,
-97,108,32,110,97,109,101,32,61,32,101,118,101,110,116,46,110,97,109,101,
-13,10,32,32,32,32,32,32,32,32,102,115,109,91,110,97,109,101,93,32,
-61,32,102,115,109,91,110,97,109,101,93,32,111,114,32,99,114,101,97,116,
-101,95,116,114,97,110,115,105,116,105,111,110,40,110,97,109,101,41,13,10,
-32,32,32,32,32,32,32,32,102,115,109,46,101,118,101,110,116,115,91,110,
-97,109,101,93,32,61,32,102,115,109,46,101,118,101,110,116,115,91,110,97,
-109,101,93,32,111,114,32,123,32,109,97,112,32,61,32,123,125,32,125,13,
-10,32,32,32,32,32,32,32,32,97,100,100,95,116,111,95,109,97,112,40,
-102,115,109,46,101,118,101,110,116,115,91,110,97,109,101,93,46,109,97,112,
-44,32,101,118,101,110,116,41,13,10,32,32,32,32,101,110,100,13,10,32,
-32,32,32,13,10,32,32,32,32,102,111,114,32,110,97,109,101,44,32,99,
-97,108,108,98,97,99,107,32,105,110,32,112,97,105,114,115,40,111,112,116,
-105,111,110,115,46,99,97,108,108,98,97,99,107,115,32,111,114,32,123,125,
-41,32,100,111,13,10,32,32,32,32,32,32,32,32,102,115,109,91,110,97,
-109,101,93,32,61,32,99,97,108,108,98,97,99,107,13,10,32,32,32,32,
-101,110,100,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,102,115,
-109,13,10,101,110,100,13,10,13,10,102,117,110,99,116,105,111,110,32,109,
-97,99,104,105,110,101,58,105,115,40,115,116,97,116,101,41,13,10,32,32,
-32,32,114,101,116,117,114,110,32,115,101,108,102,46,99,117,114,114,101,110,
-116,32,61,61,32,115,116,97,116,101,13,10,101,110,100,13,10,13,10,102,
-117,110,99,116,105,111,110,32,109,97,99,104,105,110,101,58,99,97,110,40,
-101,41,13,10,32,32,32,32,108,111,99,97,108,32,101,118,101,110,116,32,
-61,32,115,101,108,102,46,101,118,101,110,116,115,91,101,93,13,10,32,32,
-32,32,108,111,99,97,108,32,116,111,32,61,32,101,118,101,110,116,32,97,
-110,100,32,101,118,101,110,116,46,109,97,112,91,115,101,108,102,46,99,117,
-114,114,101,110,116,93,32,111,114,32,101,118,101,110,116,46,109,97,112,91,
-39,42,39,93,13,10,32,32,32,32,114,101,116,117,114,110,32,116,111,32,
-126,61,32,110,105,108,44,32,116,111,13,10,101,110,100,13,10,13,10,102,
-117,110,99,116,105,111,110,32,109,97,99,104,105,110,101,58,99,97,110,110,
-111,116,40,101,41,13,10,32,32,32,32,114,101,116,117,114,110,32,110,111,
-116,32,115,101,108,102,58,99,97,110,40,101,41,13,10,101,110,100,13,10,
-13,10,102,117,110,99,116,105,111,110,32,109,97,99,104,105,110,101,58,116,
-111,100,111,116,40,102,105,108,101,110,97,109,101,41,13,10,32,32,32,32,
-108,111,99,97,108,32,100,111,116,102,105,108,101,32,61,32,105,111,46,111,
-112,101,110,40,102,105,108,101,110,97,109,101,44,39,119,39,41,13,10,32,
-32,32,32,100,111,116,102,105,108,101,58,119,114,105,116,101,40,39,100,105,
-103,114,97,112,104,32,123,92,110,39,41,13,10,32,32,32,32,108,111,99,
-97,108,32,116,114,97,110,115,105,116,105,111,110,32,61,32,102,117,110,99,
-116,105,111,110,40,101,118,101,110,116,44,102,114,111,109,44,116,111,41,13,
-10,32,32,32,32,32,32,32,32,100,111,116,102,105,108,101,58,119,114,105,
-116,101,40,115,116,114,105,110,103,46,102,111,114,109,97,116,40,39,37,115,
-32,45,62,32,37,115,32,91,108,97,98,101,108,61,37,115,93,59,92,110,
-39,44,102,114,111,109,44,116,111,44,101,118,101,110,116,41,41,13,10,32,
-32,32,32,101,110,100,13,10,32,32,32,32,102,111,114,32,95,44,32,101,
-118,101,110,116,32,105,110,32,112,97,105,114,115,40,115,101,108,102,46,111,
-112,116,105,111,110,115,46,101,118,101,110,116,115,41,32,100,111,13,10,32,
-32,32,32,32,32,32,32,105,102,32,116,121,112,101,40,101,118,101,110,116,
-46,102,114,111,109,41,32,61,61,32,39,116,97,98,108,101,39,32,116,104,
-101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,
-95,44,32,102,114,111,109,32,105,110,32,105,112,97,105,114,115,40,101,118,
-101,110,116,46,102,114,111,109,41,32,100,111,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,
-40,101,118,101,110,116,46,110,97,109,101,44,102,114,111,109,44,101,118,101,
-110,116,46,116,111,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
-101,110,100,13,10,32,32,32,32,32,32,32,32,101,108,115,101,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,
-110,40,101,118,101,110,116,46,110,97,109,101,44,101,118,101,110,116,46,102,
-114,111,109,44,101,118,101,110,116,46,116,111,41,13,10,32,32,32,32,32,
-32,32,32,101,110,100,13,10,32,32,32,32,101,110,100,13,10,32,32,32,
-32,100,111,116,102,105,108,101,58,119,114,105,116,101,40,39,125,92,110,39,
-41,13,10,32,32,32,32,100,111,116,102,105,108,101,58,99,108,111,115,101,
-40,41,13,10,101,110,100,13,10,13,10,102,117,110,99,116,105,111,110,32,
-109,97,99,104,105,110,101,58,116,114,97,110,115,105,116,105,111,110,40,101,
-118,101,110,116,41,13,10,32,32,32,32,105,102,32,115,101,108,102,46,99,
+125,32,13,10,13,10,45,45,32,104,116,116,112,115,58,47,47,103,105,116,
+104,117,98,46,99,111,109,47,107,121,108,101,99,111,110,114,111,121,47,108,
+117,97,45,115,116,97,116,101,45,109,97,99,104,105,110,101,13,10,13,10,
+108,111,99,97,108,32,109,97,99,104,105,110,101,32,61,32,123,125,13,10,
+109,97,99,104,105,110,101,46,95,95,105,110,100,101,120,32,61,32,109,97,
+99,104,105,110,101,13,10,13,10,108,111,99,97,108,32,78,79,78,69,32,
+61,32,34,110,111,110,101,34,13,10,108,111,99,97,108,32,65,83,89,78,
+67,32,61,32,34,97,115,121,110,99,34,13,10,13,10,108,111,99,97,108,
+32,102,117,110,99,116,105,111,110,32,99,97,108,108,95,104,97,110,100,108,
+101,114,40,104,97,110,100,108,101,114,44,32,112,97,114,97,109,115,41,13,
+10,32,32,32,32,105,102,32,104,97,110,100,108,101,114,32,116,104,101,110,
+13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,104,97,110,
+100,108,101,114,40,117,110,112,97,99,107,40,112,97,114,97,109,115,41,41,
+13,10,32,32,32,32,101,110,100,13,10,101,110,100,13,10,13,10,108,111,
+99,97,108,32,102,117,110,99,116,105,111,110,32,99,114,101,97,116,101,95,
+116,114,97,110,115,105,116,105,111,110,40,110,97,109,101,41,13,10,32,32,
+32,32,108,111,99,97,108,32,99,97,110,44,32,116,111,44,32,102,114,111,
+109,44,32,112,97,114,97,109,115,13,10,13,10,32,32,32,32,108,111,99,
+97,108,32,102,117,110,99,116,105,111,110,32,116,114,97,110,115,105,116,105,
+111,110,40,115,101,108,102,44,32,46,46,46,41,13,10,32,32,32,32,32,
+32,32,32,105,102,32,115,101,108,102,46,97,115,121,110,99,83,116,97,116,
+101,32,61,61,32,78,79,78,69,32,116,104,101,110,13,10,32,32,32,32,
+32,32,32,32,32,32,32,32,99,97,110,44,32,116,111,32,61,32,115,101,
+108,102,58,99,97,110,40,110,97,109,101,41,13,10,32,32,32,32,32,32,
+32,32,32,32,32,32,102,114,111,109,32,61,32,115,101,108,102,46,99,117,
+114,114,101,110,116,13,10,32,32,32,32,32,32,32,32,32,32,32,32,112,
+97,114,97,109,115,32,61,32,123,32,115,101,108,102,44,32,110,97,109,101,
+44,32,102,114,111,109,44,32,116,111,44,32,46,46,46,125,13,10,13,10,
+32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,110,111,116,32,99,
+97,110,32,116,104,101,110,32,114,101,116,117,114,110,32,102,97,108,115,101,
+32,101,110,100,13,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,
+108,102,46,99,117,114,114,101,110,116,84,114,97,110,115,105,116,105,111,110,
+105,110,103,69,118,101,110,116,32,61,32,110,97,109,101,13,10,13,10,32,
+32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,32,98,101,102,
+111,114,101,82,101,116,117,114,110,32,61,32,99,97,108,108,95,104,97,110,
+100,108,101,114,40,115,101,108,102,91,34,111,110,98,101,102,111,114,101,34,
+32,46,46,32,110,97,109,101,93,44,32,112,97,114,97,109,115,41,13,10,
+32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,32,108,101,
+97,118,101,82,101,116,117,114,110,32,61,32,99,97,108,108,95,104,97,110,
+100,108,101,114,40,115,101,108,102,91,34,111,110,108,101,97,118,101,34,32,
+46,46,32,102,114,111,109,93,44,32,112,97,114,97,109,115,41,13,10,13,
+10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,98,101,102,111,
+114,101,82,101,116,117,114,110,32,61,61,32,102,97,108,115,101,32,111,114,
+32,108,101,97,118,101,82,101,116,117,114,110,32,61,61,32,102,97,108,115,
+101,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,114,101,116,117,114,110,32,102,97,108,115,101,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,13,10,32,32,32,
+32,32,32,32,32,32,32,32,32,115,101,108,102,46,97,115,121,110,99,83,
+116,97,116,101,32,61,32,110,97,109,101,32,46,46,32,34,87,97,105,116,
+105,110,103,79,110,76,101,97,118,101,34,13,10,13,10,32,32,32,32,32,
+32,32,32,32,32,32,32,105,102,32,108,101,97,118,101,82,101,116,117,114,
+110,32,126,61,32,65,83,89,78,67,32,116,104,101,110,13,10,32,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,116,114,97,110,115,105,116,
+105,111,110,40,115,101,108,102,44,32,46,46,46,41,13,10,32,32,32,32,
+32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,
+32,32,32,32,32,13,10,32,32,32,32,32,32,32,32,32,32,32,32,114,
+101,116,117,114,110,32,116,114,117,101,13,10,32,32,32,32,32,32,32,32,
+101,108,115,101,105,102,32,115,101,108,102,46,97,115,121,110,99,83,116,97,
+116,101,32,61,61,32,110,97,109,101,32,46,46,32,34,87,97,105,116,105,
+110,103,79,110,76,101,97,118,101,34,32,116,104,101,110,13,10,32,32,32,
+32,32,32,32,32,32,32,32,32,115,101,108,102,46,99,117,114,114,101,110,
+116,32,61,32,116,111,13,10,13,10,32,32,32,32,32,32,32,32,32,32,
+32,32,108,111,99,97,108,32,101,110,116,101,114,82,101,116,117,114,110,32,
+61,32,99,97,108,108,95,104,97,110,100,108,101,114,40,115,101,108,102,91,
+34,111,110,101,110,116,101,114,34,32,46,46,32,116,111,93,32,111,114,32,
+115,101,108,102,91,34,111,110,34,32,46,46,32,116,111,93,44,32,112,97,
+114,97,109,115,41,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,
+32,115,101,108,102,46,97,115,121,110,99,83,116,97,116,101,32,61,32,110,
+97,109,101,32,46,46,32,34,87,97,105,116,105,110,103,79,110,69,110,116,
+101,114,34,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,
+102,32,101,110,116,101,114,82,101,116,117,114,110,32,126,61,32,65,83,89,
+78,67,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,40,115,101,108,102,
+44,32,46,46,46,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
+101,110,100,13,10,32,32,32,32,32,32,32,32,32,32,32,32,13,10,32,
+32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,116,114,
+117,101,13,10,32,32,32,32,32,32,32,32,101,108,115,101,105,102,32,115,
+101,108,102,46,97,115,121,110,99,83,116,97,116,101,32,61,61,32,110,97,
+109,101,32,46,46,32,34,87,97,105,116,105,110,103,79,110,69,110,116,101,
+114,34,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,
+32,99,97,108,108,95,104,97,110,100,108,101,114,40,115,101,108,102,91,34,
+111,110,97,102,116,101,114,34,32,46,46,32,110,97,109,101,93,32,111,114,
+32,115,101,108,102,91,34,111,110,34,32,46,46,32,110,97,109,101,93,44,
+32,112,97,114,97,109,115,41,13,10,32,32,32,32,32,32,32,32,32,32,
+32,32,99,97,108,108,95,104,97,110,100,108,101,114,40,115,101,108,102,91,
+34,111,110,115,116,97,116,101,99,104,97,110,103,101,34,93,44,32,112,97,
+114,97,109,115,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,115,
+101,108,102,46,97,115,121,110,99,83,116,97,116,101,32,61,32,78,79,78,
+69,13,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,102,46,
+99,117,114,114,101,110,116,84,114,97,110,115,105,116,105,111,110,105,110,103,
+69,118,101,110,116,32,61,32,110,105,108,13,10,32,32,32,32,32,32,32,
+32,32,32,32,32,114,101,116,117,114,110,32,116,114,117,101,13,10,32,32,
+32,32,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,
+9,105,102,32,115,116,114,105,110,103,46,102,105,110,100,40,115,101,108,102,
+46,97,115,121,110,99,83,116,97,116,101,44,32,34,87,97,105,116,105,110,
+103,79,110,76,101,97,118,101,34,41,32,111,114,32,115,116,114,105,110,103,
+46,102,105,110,100,40,115,101,108,102,46,97,115,121,110,99,83,116,97,116,
+101,44,32,34,87,97,105,116,105,110,103,79,110,69,110,116,101,114,34,41,
+32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,9,9,115,101,108,
+102,46,97,115,121,110,99,83,116,97,116,101,32,61,32,78,79,78,69,13,
+10,32,32,32,32,32,32,32,32,9,9,116,114,97,110,115,105,116,105,111,
+110,40,115,101,108,102,44,32,46,46,46,41,13,10,32,32,32,32,32,32,
+32,32,9,9,114,101,116,117,114,110,32,116,114,117,101,13,10,32,32,32,
+32,32,32,32,32,9,101,110,100,13,10,32,32,32,32,32,32,32,32,101,
+110,100,13,10,13,10,32,32,32,32,32,32,32,32,115,101,108,102,46,99,
117,114,114,101,110,116,84,114,97,110,115,105,116,105,111,110,105,110,103,69,
-118,101,110,116,32,61,61,32,101,118,101,110,116,32,116,104,101,110,13,10,
-32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,101,108,102,91,
-115,101,108,102,46,99,117,114,114,101,110,116,84,114,97,110,115,105,116,105,
-111,110,105,110,103,69,118,101,110,116,93,40,115,101,108,102,41,13,10,32,
-32,32,32,101,110,100,13,10,101,110,100,13,10,13,10,102,117,110,99,116,
-105,111,110,32,109,97,99,104,105,110,101,58,99,97,110,99,101,108,84,114,
-97,110,115,105,116,105,111,110,40,101,118,101,110,116,41,13,10,32,32,32,
-32,105,102,32,115,101,108,102,46,99,117,114,114,101,110,116,84,114,97,110,
-115,105,116,105,111,110,105,110,103,69,118,101,110,116,32,61,61,32,101,118,
-101,110,116,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,115,101,
-108,102,46,97,115,121,110,99,83,116,97,116,101,32,61,32,78,79,78,69,
-13,10,32,32,32,32,32,32,32,32,115,101,108,102,46,99,117,114,114,101,
-110,116,84,114,97,110,115,105,116,105,111,110,105,110,103,69,118,101,110,116,
-32,61,32,110,105,108,13,10,32,32,32,32,101,110,100,13,10,101,110,100,
-13,10,13,10,109,97,99,104,105,110,101,46,78,79,78,69,32,61,32,78,
-79,78,69,13,10,109,97,99,104,105,110,101,46,65,83,89,78,67,32,61,
-32,65,83,89,78,67,13,10,13,10,45,45,32,69,120,112,111,114,116,32,
-116,111,32,74,105,110,46,32,13,10,13,10,106,105,110,46,97,105,46,110,
-101,119,83,116,97,116,101,77,97,99,104,105,110,101,32,61,32,109,97,99,
-104,105,110,101,46,99,114,101,97,116,101,13,10
+118,101,110,116,32,61,32,110,105,108,13,10,32,32,32,32,32,32,32,32,
+114,101,116,117,114,110,32,102,97,108,115,101,13,10,32,32,32,32,101,110,
+100,13,10,13,10,32,32,32,32,114,101,116,117,114,110,32,116,114,97,110,
+115,105,116,105,111,110,13,10,101,110,100,13,10,13,10,108,111,99,97,108,
+32,102,117,110,99,116,105,111,110,32,97,100,100,95,116,111,95,109,97,112,
+40,109,97,112,44,32,101,118,101,110,116,41,13,10,32,32,32,32,105,102,
+32,116,121,112,101,40,101,118,101,110,116,46,102,114,111,109,41,32,61,61,
+32,39,115,116,114,105,110,103,39,32,116,104,101,110,13,10,32,32,32,32,
+32,32,32,32,109,97,112,91,101,118,101,110,116,46,102,114,111,109,93,32,
+61,32,101,118,101,110,116,46,116,111,13,10,32,32,32,32,101,108,115,101,
+13,10,32,32,32,32,32,32,32,32,102,111,114,32,95,44,32,102,114,111,
+109,32,105,110,32,105,112,97,105,114,115,40,101,118,101,110,116,46,102,114,
+111,109,41,32,100,111,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
+109,97,112,91,102,114,111,109,93,32,61,32,101,118,101,110,116,46,116,111,
+13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,101,
+110,100,13,10,101,110,100,13,10,13,10,102,117,110,99,116,105,111,110,32,
+109,97,99,104,105,110,101,46,99,114,101,97,116,101,40,111,112,116,105,111,
+110,115,41,13,10,32,32,32,32,97,115,115,101,114,116,40,111,112,116,105,
+111,110,115,46,101,118,101,110,116,115,41,13,10,13,10,32,32,32,32,108,
+111,99,97,108,32,102,115,109,32,61,32,123,125,13,10,32,32,32,32,115,
+101,116,109,101,116,97,116,97,98,108,101,40,102,115,109,44,32,109,97,99,
+104,105,110,101,41,13,10,13,10,32,32,32,32,102,115,109,46,111,112,116,
+105,111,110,115,32,61,32,111,112,116,105,111,110,115,13,10,32,32,32,32,
+102,115,109,46,99,117,114,114,101,110,116,32,61,32,111,112,116,105,111,110,
+115,46,105,110,105,116,105,97,108,32,111,114,32,39,110,111,110,101,39,13,
+10,32,32,32,32,102,115,109,46,97,115,121,110,99,83,116,97,116,101,32,
+61,32,78,79,78,69,13,10,32,32,32,32,102,115,109,46,101,118,101,110,
+116,115,32,61,32,123,125,13,10,13,10,32,32,32,32,102,111,114,32,95,
+44,32,101,118,101,110,116,32,105,110,32,105,112,97,105,114,115,40,111,112,
+116,105,111,110,115,46,101,118,101,110,116,115,32,111,114,32,123,125,41,32,
+100,111,13,10,32,32,32,32,32,32,32,32,108,111,99,97,108,32,110,97,
+109,101,32,61,32,101,118,101,110,116,46,110,97,109,101,13,10,32,32,32,
+32,32,32,32,32,102,115,109,91,110,97,109,101,93,32,61,32,102,115,109,
+91,110,97,109,101,93,32,111,114,32,99,114,101,97,116,101,95,116,114,97,
+110,115,105,116,105,111,110,40,110,97,109,101,41,13,10,32,32,32,32,32,
+32,32,32,102,115,109,46,101,118,101,110,116,115,91,110,97,109,101,93,32,
+61,32,102,115,109,46,101,118,101,110,116,115,91,110,97,109,101,93,32,111,
+114,32,123,32,109,97,112,32,61,32,123,125,32,125,13,10,32,32,32,32,
+32,32,32,32,97,100,100,95,116,111,95,109,97,112,40,102,115,109,46,101,
+118,101,110,116,115,91,110,97,109,101,93,46,109,97,112,44,32,101,118,101,
+110,116,41,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,13,10,
+32,32,32,32,102,111,114,32,110,97,109,101,44,32,99,97,108,108,98,97,
+99,107,32,105,110,32,112,97,105,114,115,40,111,112,116,105,111,110,115,46,
+99,97,108,108,98,97,99,107,115,32,111,114,32,123,125,41,32,100,111,13,
+10,32,32,32,32,32,32,32,32,102,115,109,91,110,97,109,101,93,32,61,
+32,99,97,108,108,98,97,99,107,13,10,32,32,32,32,101,110,100,13,10,
+13,10,32,32,32,32,114,101,116,117,114,110,32,102,115,109,13,10,101,110,
+100,13,10,13,10,102,117,110,99,116,105,111,110,32,109,97,99,104,105,110,
+101,58,105,115,40,115,116,97,116,101,41,13,10,32,32,32,32,114,101,116,
+117,114,110,32,115,101,108,102,46,99,117,114,114,101,110,116,32,61,61,32,
+115,116,97,116,101,13,10,101,110,100,13,10,13,10,102,117,110,99,116,105,
+111,110,32,109,97,99,104,105,110,101,58,99,97,110,40,101,41,13,10,32,
+32,32,32,108,111,99,97,108,32,101,118,101,110,116,32,61,32,115,101,108,
+102,46,101,118,101,110,116,115,91,101,93,13,10,32,32,32,32,108,111,99,
+97,108,32,116,111,32,61,32,101,118,101,110,116,32,97,110,100,32,101,118,
+101,110,116,46,109,97,112,91,115,101,108,102,46,99,117,114,114,101,110,116,
+93,32,111,114,32,101,118,101,110,116,46,109,97,112,91,39,42,39,93,13,
+10,32,32,32,32,114,101,116,117,114,110,32,116,111,32,126,61,32,110,105,
+108,44,32,116,111,13,10,101,110,100,13,10,13,10,102,117,110,99,116,105,
+111,110,32,109,97,99,104,105,110,101,58,99,97,110,110,111,116,40,101,41,
+13,10,32,32,32,32,114,101,116,117,114,110,32,110,111,116,32,115,101,108,
+102,58,99,97,110,40,101,41,13,10,101,110,100,13,10,13,10,102,117,110,
+99,116,105,111,110,32,109,97,99,104,105,110,101,58,116,111,100,111,116,40,
+102,105,108,101,110,97,109,101,41,13,10,32,32,32,32,108,111,99,97,108,
+32,100,111,116,102,105,108,101,32,61,32,105,111,46,111,112,101,110,40,102,
+105,108,101,110,97,109,101,44,39,119,39,41,13,10,32,32,32,32,100,111,
+116,102,105,108,101,58,119,114,105,116,101,40,39,100,105,103,114,97,112,104,
+32,123,92,110,39,41,13,10,32,32,32,32,108,111,99,97,108,32,116,114,
+97,110,115,105,116,105,111,110,32,61,32,102,117,110,99,116,105,111,110,40,
+101,118,101,110,116,44,102,114,111,109,44,116,111,41,13,10,32,32,32,32,
+32,32,32,32,100,111,116,102,105,108,101,58,119,114,105,116,101,40,115,116,
+114,105,110,103,46,102,111,114,109,97,116,40,39,37,115,32,45,62,32,37,
+115,32,91,108,97,98,101,108,61,37,115,93,59,92,110,39,44,102,114,111,
+109,44,116,111,44,101,118,101,110,116,41,41,13,10,32,32,32,32,101,110,
+100,13,10,32,32,32,32,102,111,114,32,95,44,32,101,118,101,110,116,32,
+105,110,32,112,97,105,114,115,40,115,101,108,102,46,111,112,116,105,111,110,
+115,46,101,118,101,110,116,115,41,32,100,111,13,10,32,32,32,32,32,32,
+32,32,105,102,32,116,121,112,101,40,101,118,101,110,116,46,102,114,111,109,
+41,32,61,61,32,39,116,97,98,108,101,39,32,116,104,101,110,13,10,32,
+32,32,32,32,32,32,32,32,32,32,32,102,111,114,32,95,44,32,102,114,
+111,109,32,105,110,32,105,112,97,105,114,115,40,101,118,101,110,116,46,102,
+114,111,109,41,32,100,111,13,10,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,40,101,118,101,110,
+116,46,110,97,109,101,44,102,114,111,109,44,101,118,101,110,116,46,116,111,
+41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,
+32,32,32,32,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,
+32,32,32,32,32,32,116,114,97,110,115,105,116,105,111,110,40,101,118,101,
+110,116,46,110,97,109,101,44,101,118,101,110,116,46,102,114,111,109,44,101,
+118,101,110,116,46,116,111,41,13,10,32,32,32,32,32,32,32,32,101,110,
+100,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,100,111,116,102,
+105,108,101,58,119,114,105,116,101,40,39,125,92,110,39,41,13,10,32,32,
+32,32,100,111,116,102,105,108,101,58,99,108,111,115,101,40,41,13,10,101,
+110,100,13,10,13,10,102,117,110,99,116,105,111,110,32,109,97,99,104,105,
+110,101,58,116,114,97,110,115,105,116,105,111,110,40,101,118,101,110,116,41,
+13,10,32,32,32,32,105,102,32,115,101,108,102,46,99,117,114,114,101,110,
+116,84,114,97,110,115,105,116,105,111,110,105,110,103,69,118,101,110,116,32,
+61,61,32,101,118,101,110,116,32,116,104,101,110,13,10,32,32,32,32,32,
+32,32,32,114,101,116,117,114,110,32,115,101,108,102,91,115,101,108,102,46,
+99,117,114,114,101,110,116,84,114,97,110,115,105,116,105,111,110,105,110,103,
+69,118,101,110,116,93,40,115,101,108,102,41,13,10,32,32,32,32,101,110,
+100,13,10,101,110,100,13,10,13,10,102,117,110,99,116,105,111,110,32,109,
+97,99,104,105,110,101,58,99,97,110,99,101,108,84,114,97,110,115,105,116,
+105,111,110,40,101,118,101,110,116,41,13,10,32,32,32,32,105,102,32,115,
+101,108,102,46,99,117,114,114,101,110,116,84,114,97,110,115,105,116,105,111,
+110,105,110,103,69,118,101,110,116,32,61,61,32,101,118,101,110,116,32,116,
+104,101,110,13,10,32,32,32,32,32,32,32,32,115,101,108,102,46,97,115,
+121,110,99,83,116,97,116,101,32,61,32,78,79,78,69,13,10,32,32,32,
+32,32,32,32,32,115,101,108,102,46,99,117,114,114,101,110,116,84,114,97,
+110,115,105,116,105,111,110,105,110,103,69,118,101,110,116,32,61,32,110,105,
+108,13,10,32,32,32,32,101,110,100,13,10,101,110,100,13,10,13,10,109,
+97,99,104,105,110,101,46,78,79,78,69,32,61,32,78,79,78,69,13,10,
+109,97,99,104,105,110,101,46,65,83,89,78,67,32,61,32,65,83,89,78,
+67,13,10,13,10,45,45,32,69,120,112,111,114,116,32,116,111,32,74,105,
+110,46,32,13,10,13,10,106,105,110,46,97,105,46,110,101,119,83,116,97,
+116,101,77,97,99,104,105,110,101,32,61,32,109,97,99,104,105,110,101,46,
+99,114,101,97,116,101,13,10
};
diff --git a/src/libjin-lua/scripts/log.lua b/src/libjin-lua/scripts/log.lua
index 40298cf..bfab84b 100644
--- a/src/libjin-lua/scripts/log.lua
+++ b/src/libjin-lua/scripts/log.lua
@@ -1,13 +1,5 @@
---
+
-- https://github.com/rxi/log.lua
---
--- log.lua
---
--- Copyright (c) 2016 rxi
---
--- This library is free software; you can redistribute it and/or modify it
--- under the terms of the MIT license. See LICENSE for details.
---
local log = { _version = "0.1.0" }
diff --git a/src/libjin-lua/scripts/log.lua.h b/src/libjin-lua/scripts/log.lua.h
index e7d3d16..1462a7c 100644
--- a/src/libjin-lua/scripts/log.lua.h
+++ b/src/libjin-lua/scripts/log.lua.h
@@ -1,129 +1,119 @@
/*Auto generated, don't modify by hand.*/
static char log_lua[] = {
-45,45,13,10,45,45,32,104,116,116,112,115,58,47,47,103,105,116,104,117,
-98,46,99,111,109,47,114,120,105,47,108,111,103,46,108,117,97,13,10,45,
-45,32,13,10,45,45,32,108,111,103,46,108,117,97,13,10,45,45,13,10,
-45,45,32,67,111,112,121,114,105,103,104,116,32,40,99,41,32,50,48,49,
-54,32,114,120,105,13,10,45,45,13,10,45,45,32,84,104,105,115,32,108,
-105,98,114,97,114,121,32,105,115,32,102,114,101,101,32,115,111,102,116,119,
-97,114,101,59,32,121,111,117,32,99,97,110,32,114,101,100,105,115,116,114,
-105,98,117,116,101,32,105,116,32,97,110,100,47,111,114,32,109,111,100,105,
-102,121,32,105,116,13,10,45,45,32,117,110,100,101,114,32,116,104,101,32,
-116,101,114,109,115,32,111,102,32,116,104,101,32,77,73,84,32,108,105,99,
-101,110,115,101,46,32,83,101,101,32,76,73,67,69,78,83,69,32,102,111,
-114,32,100,101,116,97,105,108,115,46,13,10,45,45,13,10,13,10,108,111,
-99,97,108,32,108,111,103,32,61,32,123,32,95,118,101,114,115,105,111,110,
-32,61,32,34,48,46,49,46,48,34,32,125,13,10,13,10,108,111,103,46,
-117,115,101,99,111,108,111,114,32,61,32,102,97,108,115,101,13,10,108,111,
-103,46,111,117,116,102,105,108,101,32,61,32,110,105,108,13,10,108,111,103,
-46,108,101,118,101,108,32,61,32,34,116,114,97,99,101,34,13,10,13,10,
-13,10,108,111,99,97,108,32,109,111,100,101,115,32,61,32,123,13,10,32,
-32,32,32,123,32,110,97,109,101,32,61,32,34,116,114,97,99,101,34,44,
-32,99,111,108,111,114,32,61,32,34,92,50,55,91,51,52,109,34,44,32,
-125,44,13,10,32,32,32,32,123,32,110,97,109,101,32,61,32,34,100,101,
-98,117,103,34,44,32,99,111,108,111,114,32,61,32,34,92,50,55,91,51,
-54,109,34,44,32,125,44,13,10,32,32,32,32,123,32,110,97,109,101,32,
-61,32,34,105,110,102,111,34,44,32,32,32,32,99,111,108,111,114,32,61,
-32,34,92,50,55,91,51,50,109,34,44,32,125,44,13,10,32,32,32,32,
-123,32,110,97,109,101,32,61,32,34,119,97,114,110,34,44,32,32,32,32,
-99,111,108,111,114,32,61,32,34,92,50,55,91,51,51,109,34,44,32,125,
-44,13,10,32,32,32,32,123,32,110,97,109,101,32,61,32,34,101,114,114,
-111,114,34,44,32,99,111,108,111,114,32,61,32,34,92,50,55,91,51,49,
-109,34,44,32,125,44,13,10,32,32,32,32,123,32,110,97,109,101,32,61,
-32,34,102,97,116,97,108,34,44,32,99,111,108,111,114,32,61,32,34,92,
-50,55,91,51,53,109,34,44,32,125,44,13,10,125,13,10,13,10,13,10,
-108,111,99,97,108,32,108,101,118,101,108,115,32,61,32,123,125,13,10,102,
-111,114,32,105,44,32,118,32,105,110,32,105,112,97,105,114,115,40,109,111,
-100,101,115,41,32,100,111,13,10,32,32,32,32,108,101,118,101,108,115,91,
-118,46,110,97,109,101,93,32,61,32,105,13,10,101,110,100,13,10,13,10,
-13,10,108,111,99,97,108,32,114,111,117,110,100,32,61,32,102,117,110,99,
-116,105,111,110,40,120,44,32,105,110,99,114,101,109,101,110,116,41,13,10,
-32,32,32,32,105,110,99,114,101,109,101,110,116,32,61,32,105,110,99,114,
-101,109,101,110,116,32,111,114,32,49,13,10,32,32,32,32,120,32,61,32,
-120,32,47,32,105,110,99,114,101,109,101,110,116,13,10,32,32,32,32,114,
-101,116,117,114,110,32,40,120,32,62,32,48,32,97,110,100,32,109,97,116,
-104,46,102,108,111,111,114,40,120,32,43,32,46,53,41,32,111,114,32,109,
-97,116,104,46,99,101,105,108,40,120,32,45,32,46,53,41,41,32,42,32,
-105,110,99,114,101,109,101,110,116,13,10,101,110,100,13,10,13,10,13,10,
-108,111,99,97,108,32,95,116,111,115,116,114,105,110,103,32,61,32,116,111,
-115,116,114,105,110,103,13,10,13,10,108,111,99,97,108,32,116,111,115,116,
-114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,46,46,46,41,
-13,10,32,32,32,32,108,111,99,97,108,32,116,32,61,32,123,125,13,10,
-32,32,32,32,102,111,114,32,105,32,61,32,49,44,32,115,101,108,101,99,
-116,40,39,35,39,44,32,46,46,46,41,32,100,111,13,10,32,32,32,32,
-32,32,32,32,108,111,99,97,108,32,120,32,61,32,115,101,108,101,99,116,
-40,105,44,32,46,46,46,41,13,10,32,32,32,32,32,32,32,32,105,102,
-32,116,121,112,101,40,120,41,32,61,61,32,34,110,117,109,98,101,114,34,
-32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,120,
-32,61,32,114,111,117,110,100,40,120,44,32,46,48,49,41,13,10,32,32,
-32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,116,
-91,35,116,32,43,32,49,93,32,61,32,95,116,111,115,116,114,105,110,103,
-40,120,41,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,101,
-116,117,114,110,32,116,97,98,108,101,46,99,111,110,99,97,116,40,116,44,
-32,34,32,34,41,13,10,101,110,100,13,10,13,10,13,10,102,111,114,32,
-105,44,32,120,32,105,110,32,105,112,97,105,114,115,40,109,111,100,101,115,
-41,32,100,111,13,10,32,32,32,32,108,111,99,97,108,32,110,97,109,101,
-117,112,112,101,114,32,61,32,120,46,110,97,109,101,58,117,112,112,101,114,
-40,41,13,10,32,32,32,32,108,111,103,91,120,46,110,97,109,101,93,32,
-61,32,102,117,110,99,116,105,111,110,40,46,46,46,41,13,10,32,32,32,
-32,32,32,32,32,13,10,32,32,32,32,32,32,32,32,45,45,32,82,101,
-116,117,114,110,32,101,97,114,108,121,32,105,102,32,119,101,39,114,101,32,
-98,101,108,111,119,32,116,104,101,32,108,111,103,32,108,101,118,101,108,13,
-10,32,32,32,32,32,32,32,32,105,102,32,105,32,60,32,108,101,118,101,
-108,115,91,108,111,103,46,108,101,118,101,108,93,32,116,104,101,110,13,10,
-32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,13,10,
-32,32,32,32,32,32,32,32,101,110,100,13,10,13,10,32,32,32,32,32,
-32,32,32,108,111,99,97,108,32,109,115,103,32,61,32,116,111,115,116,114,
-105,110,103,40,46,46,46,41,13,10,32,32,32,32,32,32,32,32,108,111,
-99,97,108,32,105,110,102,111,32,61,32,100,101,98,117,103,46,103,101,116,
-105,110,102,111,40,50,44,32,34,83,108,34,41,13,10,32,32,32,32,32,
-32,32,32,108,111,99,97,108,32,108,105,110,101,105,110,102,111,32,61,32,
-105,110,102,111,46,115,104,111,114,116,95,115,114,99,32,46,46,32,34,58,
-34,32,46,46,32,105,110,102,111,46,99,117,114,114,101,110,116,108,105,110,
-101,13,10,13,10,32,32,32,32,32,32,32,32,45,45,32,79,117,116,112,
-117,116,32,116,111,32,99,111,110,115,111,108,101,13,10,32,32,32,32,32,
-32,32,32,112,114,105,110,116,40,115,116,114,105,110,103,46,102,111,114,109,
-97,116,40,34,37,115,91,37,45,54,115,37,115,93,37,115,32,37,115,58,
-32,37,115,34,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,
+13,10,45,45,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,
+99,111,109,47,114,120,105,47,108,111,103,46,108,117,97,13,10,13,10,108,
+111,99,97,108,32,108,111,103,32,61,32,123,32,95,118,101,114,115,105,111,
+110,32,61,32,34,48,46,49,46,48,34,32,125,13,10,13,10,108,111,103,
+46,117,115,101,99,111,108,111,114,32,61,32,102,97,108,115,101,13,10,108,
+111,103,46,111,117,116,102,105,108,101,32,61,32,110,105,108,13,10,108,111,
+103,46,108,101,118,101,108,32,61,32,34,116,114,97,99,101,34,13,10,13,
+10,13,10,108,111,99,97,108,32,109,111,100,101,115,32,61,32,123,13,10,
+32,32,32,32,123,32,110,97,109,101,32,61,32,34,116,114,97,99,101,34,
+44,32,99,111,108,111,114,32,61,32,34,92,50,55,91,51,52,109,34,44,
+32,125,44,13,10,32,32,32,32,123,32,110,97,109,101,32,61,32,34,100,
+101,98,117,103,34,44,32,99,111,108,111,114,32,61,32,34,92,50,55,91,
+51,54,109,34,44,32,125,44,13,10,32,32,32,32,123,32,110,97,109,101,
+32,61,32,34,105,110,102,111,34,44,32,32,32,32,99,111,108,111,114,32,
+61,32,34,92,50,55,91,51,50,109,34,44,32,125,44,13,10,32,32,32,
+32,123,32,110,97,109,101,32,61,32,34,119,97,114,110,34,44,32,32,32,
+32,99,111,108,111,114,32,61,32,34,92,50,55,91,51,51,109,34,44,32,
+125,44,13,10,32,32,32,32,123,32,110,97,109,101,32,61,32,34,101,114,
+114,111,114,34,44,32,99,111,108,111,114,32,61,32,34,92,50,55,91,51,
+49,109,34,44,32,125,44,13,10,32,32,32,32,123,32,110,97,109,101,32,
+61,32,34,102,97,116,97,108,34,44,32,99,111,108,111,114,32,61,32,34,
+92,50,55,91,51,53,109,34,44,32,125,44,13,10,125,13,10,13,10,13,
+10,108,111,99,97,108,32,108,101,118,101,108,115,32,61,32,123,125,13,10,
+102,111,114,32,105,44,32,118,32,105,110,32,105,112,97,105,114,115,40,109,
+111,100,101,115,41,32,100,111,13,10,32,32,32,32,108,101,118,101,108,115,
+91,118,46,110,97,109,101,93,32,61,32,105,13,10,101,110,100,13,10,13,
+10,13,10,108,111,99,97,108,32,114,111,117,110,100,32,61,32,102,117,110,
+99,116,105,111,110,40,120,44,32,105,110,99,114,101,109,101,110,116,41,13,
+10,32,32,32,32,105,110,99,114,101,109,101,110,116,32,61,32,105,110,99,
+114,101,109,101,110,116,32,111,114,32,49,13,10,32,32,32,32,120,32,61,
+32,120,32,47,32,105,110,99,114,101,109,101,110,116,13,10,32,32,32,32,
+114,101,116,117,114,110,32,40,120,32,62,32,48,32,97,110,100,32,109,97,
+116,104,46,102,108,111,111,114,40,120,32,43,32,46,53,41,32,111,114,32,
+109,97,116,104,46,99,101,105,108,40,120,32,45,32,46,53,41,41,32,42,
+32,105,110,99,114,101,109,101,110,116,13,10,101,110,100,13,10,13,10,13,
+10,108,111,99,97,108,32,95,116,111,115,116,114,105,110,103,32,61,32,116,
+111,115,116,114,105,110,103,13,10,13,10,108,111,99,97,108,32,116,111,115,
+116,114,105,110,103,32,61,32,102,117,110,99,116,105,111,110,40,46,46,46,
+41,13,10,32,32,32,32,108,111,99,97,108,32,116,32,61,32,123,125,13,
+10,32,32,32,32,102,111,114,32,105,32,61,32,49,44,32,115,101,108,101,
+99,116,40,39,35,39,44,32,46,46,46,41,32,100,111,13,10,32,32,32,
+32,32,32,32,32,108,111,99,97,108,32,120,32,61,32,115,101,108,101,99,
+116,40,105,44,32,46,46,46,41,13,10,32,32,32,32,32,32,32,32,105,
+102,32,116,121,112,101,40,120,41,32,61,61,32,34,110,117,109,98,101,114,
+34,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
+120,32,61,32,114,111,117,110,100,40,120,44,32,46,48,49,41,13,10,32,
+32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,
+116,91,35,116,32,43,32,49,93,32,61,32,95,116,111,115,116,114,105,110,
+103,40,120,41,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,
+101,116,117,114,110,32,116,97,98,108,101,46,99,111,110,99,97,116,40,116,
+44,32,34,32,34,41,13,10,101,110,100,13,10,13,10,13,10,102,111,114,
+32,105,44,32,120,32,105,110,32,105,112,97,105,114,115,40,109,111,100,101,
+115,41,32,100,111,13,10,32,32,32,32,108,111,99,97,108,32,110,97,109,
+101,117,112,112,101,114,32,61,32,120,46,110,97,109,101,58,117,112,112,101,
+114,40,41,13,10,32,32,32,32,108,111,103,91,120,46,110,97,109,101,93,
+32,61,32,102,117,110,99,116,105,111,110,40,46,46,46,41,13,10,32,32,
+32,32,32,32,32,32,13,10,32,32,32,32,32,32,32,32,45,45,32,82,
+101,116,117,114,110,32,101,97,114,108,121,32,105,102,32,119,101,39,114,101,
+32,98,101,108,111,119,32,116,104,101,32,108,111,103,32,108,101,118,101,108,
+13,10,32,32,32,32,32,32,32,32,105,102,32,105,32,60,32,108,101,118,
+101,108,115,91,108,111,103,46,108,101,118,101,108,93,32,116,104,101,110,13,
+10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,13,
+10,32,32,32,32,32,32,32,32,101,110,100,13,10,13,10,32,32,32,32,
+32,32,32,32,108,111,99,97,108,32,109,115,103,32,61,32,116,111,115,116,
+114,105,110,103,40,46,46,46,41,13,10,32,32,32,32,32,32,32,32,108,
+111,99,97,108,32,105,110,102,111,32,61,32,100,101,98,117,103,46,103,101,
+116,105,110,102,111,40,50,44,32,34,83,108,34,41,13,10,32,32,32,32,
+32,32,32,32,108,111,99,97,108,32,108,105,110,101,105,110,102,111,32,61,
+32,105,110,102,111,46,115,104,111,114,116,95,115,114,99,32,46,46,32,34,
+58,34,32,46,46,32,105,110,102,111,46,99,117,114,114,101,110,116,108,105,
+110,101,13,10,13,10,32,32,32,32,32,32,32,32,45,45,32,79,117,116,
+112,117,116,32,116,111,32,99,111,110,115,111,108,101,13,10,32,32,32,32,
+32,32,32,32,112,114,105,110,116,40,115,116,114,105,110,103,46,102,111,114,
+109,97,116,40,34,37,115,91,37,45,54,115,37,115,93,37,115,32,37,115,
+58,32,37,115,34,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,103,46,117,
-115,101,99,111,108,111,114,32,97,110,100,32,120,46,99,111,108,111,114,32,
-111,114,32,34,34,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,103,46,
+117,115,101,99,111,108,111,114,32,97,110,100,32,120,46,99,111,108,111,114,
+32,111,114,32,34,34,44,13,10,32,32,32,32,32,32,32,32,32,32,32,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,
-117,112,112,101,114,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,97,109,
+101,117,112,112,101,114,44,13,10,32,32,32,32,32,32,32,32,32,32,32,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,115,46,100,
-97,116,101,40,34,37,72,58,37,77,58,37,83,34,41,44,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,111,115,46,
+100,97,116,101,40,34,37,72,58,37,77,58,37,83,34,41,44,13,10,32,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,108,111,103,46,117,115,101,99,111,108,111,114,32,97,
-110,100,32,34,92,50,55,91,48,109,34,32,111,114,32,34,34,44,13,10,
+32,32,32,32,32,32,32,108,111,103,46,117,115,101,99,111,108,111,114,32,
+97,110,100,32,34,92,50,55,91,48,109,34,32,111,114,32,34,34,44,13,
+10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,32,32,32,32,108,105,110,101,105,110,102,111,44,13,10,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,108,105,110,101,105,110,102,111,44,13,10,32,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,32,32,32,109,115,103,41,41,13,10,13,10,32,32,32,
+32,32,32,32,32,45,45,32,79,117,116,112,117,116,32,116,111,32,108,111,
+103,32,102,105,108,101,13,10,32,32,32,32,32,32,32,32,105,102,32,108,
+111,103,46,111,117,116,102,105,108,101,32,116,104,101,110,13,10,32,32,32,
+32,32,32,32,32,32,32,32,32,108,111,99,97,108,32,102,112,32,61,32,
+105,111,46,111,112,101,110,40,108,111,103,46,111,117,116,102,105,108,101,44,
+32,34,97,34,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,
+111,99,97,108,32,115,116,114,32,61,32,115,116,114,105,110,103,46,102,111,
+114,109,97,116,40,34,91,37,45,54,115,37,115,93,32,37,115,58,32,37,
+115,92,110,34,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,109,115,103,41,41,13,10,13,10,32,32,32,32,
-32,32,32,32,45,45,32,79,117,116,112,117,116,32,116,111,32,108,111,103,
-32,102,105,108,101,13,10,32,32,32,32,32,32,32,32,105,102,32,108,111,
-103,46,111,117,116,102,105,108,101,32,116,104,101,110,13,10,32,32,32,32,
-32,32,32,32,32,32,32,32,108,111,99,97,108,32,102,112,32,61,32,105,
-111,46,111,112,101,110,40,108,111,103,46,111,117,116,102,105,108,101,44,32,
-34,97,34,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,
-99,97,108,32,115,116,114,32,61,32,115,116,114,105,110,103,46,102,111,114,
-109,97,116,40,34,91,37,45,54,115,37,115,93,32,37,115,58,32,37,115,
-92,110,34,44,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,110,97,109,101,117,112,112,101,114,44,
-32,111,115,46,100,97,116,101,40,41,44,32,108,105,110,101,105,110,102,111,
-44,32,109,115,103,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
-102,112,58,119,114,105,116,101,40,115,116,114,41,13,10,32,32,32,32,32,
-32,32,32,32,32,32,32,102,112,58,99,108,111,115,101,40,41,13,10,32,
-32,32,32,32,32,32,32,101,110,100,13,10,13,10,32,32,32,32,101,110,
-100,13,10,101,110,100,13,10,13,10,45,45,32,69,120,112,111,114,116,32,
-116,111,32,74,105,110,46,32,13,10,13,10,106,105,110,46,108,111,103,32,
-61,32,108,111,103,13,10
+32,32,32,32,32,32,32,32,32,32,32,110,97,109,101,117,112,112,101,114,
+44,32,111,115,46,100,97,116,101,40,41,44,32,108,105,110,101,105,110,102,
+111,44,32,109,115,103,41,13,10,32,32,32,32,32,32,32,32,32,32,32,
+32,102,112,58,119,114,105,116,101,40,115,116,114,41,13,10,32,32,32,32,
+32,32,32,32,32,32,32,32,102,112,58,99,108,111,115,101,40,41,13,10,
+32,32,32,32,32,32,32,32,101,110,100,13,10,13,10,32,32,32,32,101,
+110,100,13,10,101,110,100,13,10,13,10,45,45,32,69,120,112,111,114,116,
+32,116,111,32,74,105,110,46,32,13,10,13,10,106,105,110,46,108,111,103,
+32,61,32,108,111,103,13,10
};
diff --git a/src/libjin-lua/scripts/utils/json.lua b/src/libjin-lua/scripts/utils/json.lua
index 7bbaa7c..5127da9 100644
--- a/src/libjin-lua/scripts/utils/json.lua
+++ b/src/libjin-lua/scripts/utils/json.lua
@@ -4,28 +4,6 @@ jin.utils = jin.utils or {}
--
-- https://github.com/rxi/json.lua
--
--- json.lua
---
--- Copyright (c) 2018 rxi
---
--- Permission is hereby granted, free of charge, to any person obtaining a copy of
--- this software and associated documentation files (the "Software"), to deal in
--- the Software without restriction, including without limitation the rights to
--- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
--- of the Software, and to permit persons to whom the Software is furnished to do
--- so, subject to the following conditions:
---
--- The above copyright notice and this permission notice shall be included in all
--- copies or substantial portions of the Software.
---
--- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
--- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
--- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
--- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
--- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
--- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
--- SOFTWARE.
---
local json = { _version = "0.1.1" }
diff --git a/src/libjin-lua/scripts/utils/json.lua.h b/src/libjin-lua/scripts/utils/json.lua.h
index e630488..550f3f1 100644
--- a/src/libjin-lua/scripts/utils/json.lua.h
+++ b/src/libjin-lua/scripts/utils/json.lua.h
@@ -3,576 +3,519 @@ static char json_lua[] = {
13,10,106,105,110,46,117,116,105,108,115,32,61,32,106,105,110,46,117,116,
105,108,115,32,111,114,32,123,125,13,10,13,10,45,45,13,10,45,45,32,
104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,114,
-120,105,47,106,115,111,110,46,108,117,97,13,10,45,45,13,10,45,45,32,
-106,115,111,110,46,108,117,97,13,10,45,45,13,10,45,45,32,67,111,112,
-121,114,105,103,104,116,32,40,99,41,32,50,48,49,56,32,114,120,105,13,
-10,45,45,13,10,45,45,32,80,101,114,109,105,115,115,105,111,110,32,105,
-115,32,104,101,114,101,98,121,32,103,114,97,110,116,101,100,44,32,102,114,
-101,101,32,111,102,32,99,104,97,114,103,101,44,32,116,111,32,97,110,121,
-32,112,101,114,115,111,110,32,111,98,116,97,105,110,105,110,103,32,97,32,
-99,111,112,121,32,111,102,13,10,45,45,32,116,104,105,115,32,115,111,102,
-116,119,97,114,101,32,97,110,100,32,97,115,115,111,99,105,97,116,101,100,
-32,100,111,99,117,109,101,110,116,97,116,105,111,110,32,102,105,108,101,115,
-32,40,116,104,101,32,34,83,111,102,116,119,97,114,101,34,41,44,32,116,
-111,32,100,101,97,108,32,105,110,13,10,45,45,32,116,104,101,32,83,111,
-102,116,119,97,114,101,32,119,105,116,104,111,117,116,32,114,101,115,116,114,
-105,99,116,105,111,110,44,32,105,110,99,108,117,100,105,110,103,32,119,105,
-116,104,111,117,116,32,108,105,109,105,116,97,116,105,111,110,32,116,104,101,
-32,114,105,103,104,116,115,32,116,111,13,10,45,45,32,117,115,101,44,32,
-99,111,112,121,44,32,109,111,100,105,102,121,44,32,109,101,114,103,101,44,
-32,112,117,98,108,105,115,104,44,32,100,105,115,116,114,105,98,117,116,101,
-44,32,115,117,98,108,105,99,101,110,115,101,44,32,97,110,100,47,111,114,
-32,115,101,108,108,32,99,111,112,105,101,115,13,10,45,45,32,111,102,32,
-116,104,101,32,83,111,102,116,119,97,114,101,44,32,97,110,100,32,116,111,
-32,112,101,114,109,105,116,32,112,101,114,115,111,110,115,32,116,111,32,119,
-104,111,109,32,116,104,101,32,83,111,102,116,119,97,114,101,32,105,115,32,
-102,117,114,110,105,115,104,101,100,32,116,111,32,100,111,13,10,45,45,32,
-115,111,44,32,115,117,98,106,101,99,116,32,116,111,32,116,104,101,32,102,
-111,108,108,111,119,105,110,103,32,99,111,110,100,105,116,105,111,110,115,58,
-13,10,45,45,13,10,45,45,32,84,104,101,32,97,98,111,118,101,32,99,
-111,112,121,114,105,103,104,116,32,110,111,116,105,99,101,32,97,110,100,32,
-116,104,105,115,32,112,101,114,109,105,115,115,105,111,110,32,110,111,116,105,
-99,101,32,115,104,97,108,108,32,98,101,32,105,110,99,108,117,100,101,100,
-32,105,110,32,97,108,108,13,10,45,45,32,99,111,112,105,101,115,32,111,
-114,32,115,117,98,115,116,97,110,116,105,97,108,32,112,111,114,116,105,111,
-110,115,32,111,102,32,116,104,101,32,83,111,102,116,119,97,114,101,46,13,
-10,45,45,13,10,45,45,32,84,72,69,32,83,79,70,84,87,65,82,69,
-32,73,83,32,80,82,79,86,73,68,69,68,32,34,65,83,32,73,83,34,
-44,32,87,73,84,72,79,85,84,32,87,65,82,82,65,78,84,89,32,79,
-70,32,65,78,89,32,75,73,78,68,44,32,69,88,80,82,69,83,83,32,
-79,82,13,10,45,45,32,73,77,80,76,73,69,68,44,32,73,78,67,76,
-85,68,73,78,71,32,66,85,84,32,78,79,84,32,76,73,77,73,84,69,
-68,32,84,79,32,84,72,69,32,87,65,82,82,65,78,84,73,69,83,32,
-79,70,32,77,69,82,67,72,65,78,84,65,66,73,76,73,84,89,44,13,
-10,45,45,32,70,73,84,78,69,83,83,32,70,79,82,32,65,32,80,65,
-82,84,73,67,85,76,65,82,32,80,85,82,80,79,83,69,32,65,78,68,
-32,78,79,78,73,78,70,82,73,78,71,69,77,69,78,84,46,32,73,78,
-32,78,79,32,69,86,69,78,84,32,83,72,65,76,76,32,84,72,69,13,
-10,45,45,32,65,85,84,72,79,82,83,32,79,82,32,67,79,80,89,82,
-73,71,72,84,32,72,79,76,68,69,82,83,32,66,69,32,76,73,65,66,
-76,69,32,70,79,82,32,65,78,89,32,67,76,65,73,77,44,32,68,65,
-77,65,71,69,83,32,79,82,32,79,84,72,69,82,13,10,45,45,32,76,
-73,65,66,73,76,73,84,89,44,32,87,72,69,84,72,69,82,32,73,78,
-32,65,78,32,65,67,84,73,79,78,32,79,70,32,67,79,78,84,82,65,
-67,84,44,32,84,79,82,84,32,79,82,32,79,84,72,69,82,87,73,83,
-69,44,32,65,82,73,83,73,78,71,32,70,82,79,77,44,13,10,45,45,
-32,79,85,84,32,79,70,32,79,82,32,73,78,32,67,79,78,78,69,67,
-84,73,79,78,32,87,73,84,72,32,84,72,69,32,83,79,70,84,87,65,
-82,69,32,79,82,32,84,72,69,32,85,83,69,32,79,82,32,79,84,72,
-69,82,32,68,69,65,76,73,78,71,83,32,73,78,32,84,72,69,13,10,
-45,45,32,83,79,70,84,87,65,82,69,46,13,10,45,45,13,10,13,10,
-108,111,99,97,108,32,106,115,111,110,32,61,32,123,32,95,118,101,114,115,
-105,111,110,32,61,32,34,48,46,49,46,49,34,32,125,13,10,13,10,45,
+120,105,47,106,115,111,110,46,108,117,97,13,10,45,45,13,10,13,10,108,
+111,99,97,108,32,106,115,111,110,32,61,32,123,32,95,118,101,114,115,105,
+111,110,32,61,32,34,48,46,49,46,49,34,32,125,13,10,13,10,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,
-45,45,32,69,110,99,111,100,101,13,10,45,45,45,45,45,45,45,45,45,
+45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,45,
+45,32,69,110,99,111,100,101,13,10,45,45,45,45,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,13,10,13,10,108,111,99,97,108,32,
-101,110,99,111,100,101,13,10,13,10,108,111,99,97,108,32,101,115,99,97,
-112,101,95,99,104,97,114,95,109,97,112,32,61,32,123,13,10,32,32,32,
-32,91,32,34,92,92,34,32,93,32,61,32,34,92,92,92,92,34,44,13,
-10,32,32,32,32,91,32,34,92,34,34,32,93,32,61,32,34,92,92,92,
-34,34,44,13,10,32,32,32,32,91,32,34,92,98,34,32,93,32,61,32,
-34,92,92,98,34,44,13,10,32,32,32,32,91,32,34,92,102,34,32,93,
-32,61,32,34,92,92,102,34,44,13,10,32,32,32,32,91,32,34,92,110,
-34,32,93,32,61,32,34,92,92,110,34,44,13,10,32,32,32,32,91,32,
-34,92,114,34,32,93,32,61,32,34,92,92,114,34,44,13,10,32,32,32,
-32,91,32,34,92,116,34,32,93,32,61,32,34,92,92,116,34,44,13,10,
-125,13,10,13,10,108,111,99,97,108,32,101,115,99,97,112,101,95,99,104,
-97,114,95,109,97,112,95,105,110,118,32,61,32,123,32,91,32,34,92,92,
-47,34,32,93,32,61,32,34,47,34,32,125,13,10,102,111,114,32,107,44,
-32,118,32,105,110,32,112,97,105,114,115,40,101,115,99,97,112,101,95,99,
-104,97,114,95,109,97,112,41,32,100,111,13,10,32,32,32,32,101,115,99,
-97,112,101,95,99,104,97,114,95,109,97,112,95,105,110,118,91,118,93,32,
-61,32,107,13,10,101,110,100,13,10,13,10,13,10,108,111,99,97,108,32,
-102,117,110,99,116,105,111,110,32,101,115,99,97,112,101,95,99,104,97,114,
-40,99,41,13,10,32,32,32,32,114,101,116,117,114,110,32,101,115,99,97,
-112,101,95,99,104,97,114,95,109,97,112,91,99,93,32,111,114,32,115,116,
-114,105,110,103,46,102,111,114,109,97,116,40,34,92,92,117,37,48,52,120,
-34,44,32,99,58,98,121,116,101,40,41,41,13,10,101,110,100,13,10,13,
-10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,101,110,
-99,111,100,101,95,110,105,108,40,118,97,108,41,13,10,32,32,32,32,114,
-101,116,117,114,110,32,34,110,117,108,108,34,13,10,101,110,100,13,10,13,
-10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,101,110,
-99,111,100,101,95,116,97,98,108,101,40,118,97,108,44,32,115,116,97,99,
-107,41,13,10,32,32,32,32,108,111,99,97,108,32,114,101,115,32,61,32,
-123,125,13,10,32,32,32,32,115,116,97,99,107,32,61,32,115,116,97,99,
-107,32,111,114,32,123,125,13,10,13,10,32,32,32,32,45,45,32,67,105,
-114,99,117,108,97,114,32,114,101,102,101,114,101,110,99,101,63,13,10,32,
-32,32,32,105,102,32,115,116,97,99,107,91,118,97,108,93,32,116,104,101,
-110,32,101,114,114,111,114,40,34,99,105,114,99,117,108,97,114,32,114,101,
-102,101,114,101,110,99,101,34,41,32,101,110,100,13,10,13,10,32,32,32,
-32,115,116,97,99,107,91,118,97,108,93,32,61,32,116,114,117,101,13,10,
-13,10,32,32,32,32,105,102,32,118,97,108,91,49,93,32,126,61,32,110,
-105,108,32,111,114,32,110,101,120,116,40,118,97,108,41,32,61,61,32,110,
-105,108,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,45,45,32,
-84,114,101,97,116,32,97,115,32,97,114,114,97,121,32,45,45,32,99,104,
-101,99,107,32,107,101,121,115,32,97,114,101,32,118,97,108,105,100,32,97,
-110,100,32,105,116,32,105,115,32,110,111,116,32,115,112,97,114,115,101,13,
-10,32,32,32,32,32,32,32,32,108,111,99,97,108,32,110,32,61,32,48,
-13,10,32,32,32,32,32,32,32,32,102,111,114,32,107,32,105,110,32,112,
-97,105,114,115,40,118,97,108,41,32,100,111,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,105,102,32,116,121,112,101,40,107,41,32,126,61,32,
-34,110,117,109,98,101,114,34,32,116,104,101,110,13,10,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,40,34,105,110,
-118,97,108,105,100,32,116,97,98,108,101,58,32,109,105,120,101,100,32,111,
-114,32,105,110,118,97,108,105,100,32,107,101,121,32,116,121,112,101,115,34,
-41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,
-32,32,32,32,32,32,32,32,32,32,32,32,110,32,61,32,110,32,43,32,
-49,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,
-32,32,32,32,105,102,32,110,32,126,61,32,35,118,97,108,32,116,104,101,
-110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,
-40,34,105,110,118,97,108,105,100,32,116,97,98,108,101,58,32,115,112,97,
-114,115,101,32,97,114,114,97,121,34,41,13,10,32,32,32,32,32,32,32,
-32,101,110,100,13,10,32,32,32,32,32,32,32,32,45,45,32,69,110,99,
-111,100,101,13,10,32,32,32,32,32,32,32,32,102,111,114,32,105,44,32,
-118,32,105,110,32,105,112,97,105,114,115,40,118,97,108,41,32,100,111,13,
-10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,108,101,46,105,
-110,115,101,114,116,40,114,101,115,44,32,101,110,99,111,100,101,40,118,44,
-32,115,116,97,99,107,41,41,13,10,32,32,32,32,32,32,32,32,101,110,
-100,13,10,32,32,32,32,32,32,32,32,115,116,97,99,107,91,118,97,108,
-93,32,61,32,110,105,108,13,10,32,32,32,32,32,32,32,32,114,101,116,
-117,114,110,32,34,91,34,32,46,46,32,116,97,98,108,101,46,99,111,110,
-99,97,116,40,114,101,115,44,32,34,44,34,41,32,46,46,32,34,93,34,
-13,10,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,
-32,32,45,45,32,84,114,101,97,116,32,97,115,32,97,110,32,111,98,106,
-101,99,116,13,10,32,32,32,32,32,32,32,32,102,111,114,32,107,44,32,
-118,32,105,110,32,112,97,105,114,115,40,118,97,108,41,32,100,111,13,10,
-32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,116,121,112,101,40,
-107,41,32,126,61,32,34,115,116,114,105,110,103,34,32,116,104,101,110,13,
-10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,114,114,
-111,114,40,34,105,110,118,97,108,105,100,32,116,97,98,108,101,58,32,109,
-105,120,101,100,32,111,114,32,105,110,118,97,108,105,100,32,107,101,121,32,
-116,121,112,101,115,34,41,13,10,32,32,32,32,32,32,32,32,32,32,32,
-32,101,110,100,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,
-98,108,101,46,105,110,115,101,114,116,40,114,101,115,44,32,101,110,99,111,
-100,101,40,107,44,32,115,116,97,99,107,41,32,46,46,32,34,58,34,32,
-46,46,32,101,110,99,111,100,101,40,118,44,32,115,116,97,99,107,41,41,
+45,45,45,45,45,45,45,45,45,13,10,13,10,108,111,99,97,108,32,101,
+110,99,111,100,101,13,10,13,10,108,111,99,97,108,32,101,115,99,97,112,
+101,95,99,104,97,114,95,109,97,112,32,61,32,123,13,10,32,32,32,32,
+91,32,34,92,92,34,32,93,32,61,32,34,92,92,92,92,34,44,13,10,
+32,32,32,32,91,32,34,92,34,34,32,93,32,61,32,34,92,92,92,34,
+34,44,13,10,32,32,32,32,91,32,34,92,98,34,32,93,32,61,32,34,
+92,92,98,34,44,13,10,32,32,32,32,91,32,34,92,102,34,32,93,32,
+61,32,34,92,92,102,34,44,13,10,32,32,32,32,91,32,34,92,110,34,
+32,93,32,61,32,34,92,92,110,34,44,13,10,32,32,32,32,91,32,34,
+92,114,34,32,93,32,61,32,34,92,92,114,34,44,13,10,32,32,32,32,
+91,32,34,92,116,34,32,93,32,61,32,34,92,92,116,34,44,13,10,125,
+13,10,13,10,108,111,99,97,108,32,101,115,99,97,112,101,95,99,104,97,
+114,95,109,97,112,95,105,110,118,32,61,32,123,32,91,32,34,92,92,47,
+34,32,93,32,61,32,34,47,34,32,125,13,10,102,111,114,32,107,44,32,
+118,32,105,110,32,112,97,105,114,115,40,101,115,99,97,112,101,95,99,104,
+97,114,95,109,97,112,41,32,100,111,13,10,32,32,32,32,101,115,99,97,
+112,101,95,99,104,97,114,95,109,97,112,95,105,110,118,91,118,93,32,61,
+32,107,13,10,101,110,100,13,10,13,10,13,10,108,111,99,97,108,32,102,
+117,110,99,116,105,111,110,32,101,115,99,97,112,101,95,99,104,97,114,40,
+99,41,13,10,32,32,32,32,114,101,116,117,114,110,32,101,115,99,97,112,
+101,95,99,104,97,114,95,109,97,112,91,99,93,32,111,114,32,115,116,114,
+105,110,103,46,102,111,114,109,97,116,40,34,92,92,117,37,48,52,120,34,
+44,32,99,58,98,121,116,101,40,41,41,13,10,101,110,100,13,10,13,10,
+13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,101,110,99,
+111,100,101,95,110,105,108,40,118,97,108,41,13,10,32,32,32,32,114,101,
+116,117,114,110,32,34,110,117,108,108,34,13,10,101,110,100,13,10,13,10,
+13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,101,110,99,
+111,100,101,95,116,97,98,108,101,40,118,97,108,44,32,115,116,97,99,107,
+41,13,10,32,32,32,32,108,111,99,97,108,32,114,101,115,32,61,32,123,
+125,13,10,32,32,32,32,115,116,97,99,107,32,61,32,115,116,97,99,107,
+32,111,114,32,123,125,13,10,13,10,32,32,32,32,45,45,32,67,105,114,
+99,117,108,97,114,32,114,101,102,101,114,101,110,99,101,63,13,10,32,32,
+32,32,105,102,32,115,116,97,99,107,91,118,97,108,93,32,116,104,101,110,
+32,101,114,114,111,114,40,34,99,105,114,99,117,108,97,114,32,114,101,102,
+101,114,101,110,99,101,34,41,32,101,110,100,13,10,13,10,32,32,32,32,
+115,116,97,99,107,91,118,97,108,93,32,61,32,116,114,117,101,13,10,13,
+10,32,32,32,32,105,102,32,118,97,108,91,49,93,32,126,61,32,110,105,
+108,32,111,114,32,110,101,120,116,40,118,97,108,41,32,61,61,32,110,105,
+108,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,45,45,32,84,
+114,101,97,116,32,97,115,32,97,114,114,97,121,32,45,45,32,99,104,101,
+99,107,32,107,101,121,115,32,97,114,101,32,118,97,108,105,100,32,97,110,
+100,32,105,116,32,105,115,32,110,111,116,32,115,112,97,114,115,101,13,10,
+32,32,32,32,32,32,32,32,108,111,99,97,108,32,110,32,61,32,48,13,
+10,32,32,32,32,32,32,32,32,102,111,114,32,107,32,105,110,32,112,97,
+105,114,115,40,118,97,108,41,32,100,111,13,10,32,32,32,32,32,32,32,
+32,32,32,32,32,105,102,32,116,121,112,101,40,107,41,32,126,61,32,34,
+110,117,109,98,101,114,34,32,116,104,101,110,13,10,32,32,32,32,32,32,
+32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,40,34,105,110,118,
+97,108,105,100,32,116,97,98,108,101,58,32,109,105,120,101,100,32,111,114,
+32,105,110,118,97,108,105,100,32,107,101,121,32,116,121,112,101,115,34,41,
+13,10,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,
+32,32,32,32,32,32,32,32,32,32,32,110,32,61,32,110,32,43,32,49,
13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,
-32,32,32,115,116,97,99,107,91,118,97,108,93,32,61,32,110,105,108,13,
-10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,123,34,32,
-46,46,32,116,97,98,108,101,46,99,111,110,99,97,116,40,114,101,115,44,
-32,34,44,34,41,32,46,46,32,34,125,34,13,10,32,32,32,32,101,110,
-100,13,10,101,110,100,13,10,13,10,13,10,108,111,99,97,108,32,102,117,
-110,99,116,105,111,110,32,101,110,99,111,100,101,95,115,116,114,105,110,103,
-40,118,97,108,41,13,10,32,32,32,32,114,101,116,117,114,110,32,39,34,
-39,32,46,46,32,118,97,108,58,103,115,117,98,40,39,91,37,122,92,49,
-45,92,51,49,92,92,34,93,39,44,32,101,115,99,97,112,101,95,99,104,
-97,114,41,32,46,46,32,39,34,39,13,10,101,110,100,13,10,13,10,13,
-10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,101,110,99,111,
-100,101,95,110,117,109,98,101,114,40,118,97,108,41,13,10,32,32,32,32,
-45,45,32,67,104,101,99,107,32,102,111,114,32,78,97,78,44,32,45,105,
-110,102,32,97,110,100,32,105,110,102,13,10,32,32,32,32,105,102,32,118,
-97,108,32,126,61,32,118,97,108,32,111,114,32,118,97,108,32,60,61,32,
-45,109,97,116,104,46,104,117,103,101,32,111,114,32,118,97,108,32,62,61,
-32,109,97,116,104,46,104,117,103,101,32,116,104,101,110,13,10,32,32,32,
-32,32,32,32,32,101,114,114,111,114,40,34,117,110,101,120,112,101,99,116,
-101,100,32,110,117,109,98,101,114,32,118,97,108,117,101,32,39,34,32,46,
-46,32,116,111,115,116,114,105,110,103,40,118,97,108,41,32,46,46,32,34,
-39,34,41,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,101,
-116,117,114,110,32,115,116,114,105,110,103,46,102,111,114,109,97,116,40,34,
-37,46,49,52,103,34,44,32,118,97,108,41,13,10,101,110,100,13,10,13,
-10,13,10,108,111,99,97,108,32,116,121,112,101,95,102,117,110,99,95,109,
-97,112,32,61,32,123,13,10,32,32,32,32,91,32,34,110,105,108,34,32,
-32,32,32,32,32,32,32,32,93,32,61,32,101,110,99,111,100,101,95,110,
-105,108,44,13,10,32,32,32,32,91,32,34,116,97,98,108,101,34,32,32,
-32,32,32,93,32,61,32,101,110,99,111,100,101,95,116,97,98,108,101,44,
-13,10,32,32,32,32,91,32,34,115,116,114,105,110,103,34,32,32,32,32,
-93,32,61,32,101,110,99,111,100,101,95,115,116,114,105,110,103,44,13,10,
-32,32,32,32,91,32,34,110,117,109,98,101,114,34,32,32,32,32,93,32,
-61,32,101,110,99,111,100,101,95,110,117,109,98,101,114,44,13,10,32,32,
-32,32,91,32,34,98,111,111,108,101,97,110,34,32,93,32,61,32,116,111,
-115,116,114,105,110,103,44,13,10,125,13,10,13,10,13,10,101,110,99,111,
-100,101,32,61,32,102,117,110,99,116,105,111,110,40,118,97,108,44,32,115,
-116,97,99,107,41,13,10,32,32,32,32,108,111,99,97,108,32,116,32,61,
-32,116,121,112,101,40,118,97,108,41,13,10,32,32,32,32,108,111,99,97,
-108,32,102,32,61,32,116,121,112,101,95,102,117,110,99,95,109,97,112,91,
-116,93,13,10,32,32,32,32,105,102,32,102,32,116,104,101,110,13,10,32,
-32,32,32,32,32,32,32,114,101,116,117,114,110,32,102,40,118,97,108,44,
-32,115,116,97,99,107,41,13,10,32,32,32,32,101,110,100,13,10,32,32,
-32,32,101,114,114,111,114,40,34,117,110,101,120,112,101,99,116,101,100,32,
-116,121,112,101,32,39,34,32,46,46,32,116,32,46,46,32,34,39,34,41,
-13,10,101,110,100,13,10,13,10,13,10,102,117,110,99,116,105,111,110,32,
-106,115,111,110,46,101,110,99,111,100,101,40,118,97,108,41,13,10,32,32,
-32,32,114,101,116,117,114,110,32,40,32,101,110,99,111,100,101,40,118,97,
-108,41,32,41,13,10,101,110,100,13,10,13,10,13,10,45,45,45,45,45,
+32,32,32,105,102,32,110,32,126,61,32,35,118,97,108,32,116,104,101,110,
+13,10,32,32,32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,40,
+34,105,110,118,97,108,105,100,32,116,97,98,108,101,58,32,115,112,97,114,
+115,101,32,97,114,114,97,121,34,41,13,10,32,32,32,32,32,32,32,32,
+101,110,100,13,10,32,32,32,32,32,32,32,32,45,45,32,69,110,99,111,
+100,101,13,10,32,32,32,32,32,32,32,32,102,111,114,32,105,44,32,118,
+32,105,110,32,105,112,97,105,114,115,40,118,97,108,41,32,100,111,13,10,
+32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,108,101,46,105,110,
+115,101,114,116,40,114,101,115,44,32,101,110,99,111,100,101,40,118,44,32,
+115,116,97,99,107,41,41,13,10,32,32,32,32,32,32,32,32,101,110,100,
+13,10,32,32,32,32,32,32,32,32,115,116,97,99,107,91,118,97,108,93,
+32,61,32,110,105,108,13,10,32,32,32,32,32,32,32,32,114,101,116,117,
+114,110,32,34,91,34,32,46,46,32,116,97,98,108,101,46,99,111,110,99,
+97,116,40,114,101,115,44,32,34,44,34,41,32,46,46,32,34,93,34,13,
+10,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,
+32,45,45,32,84,114,101,97,116,32,97,115,32,97,110,32,111,98,106,101,
+99,116,13,10,32,32,32,32,32,32,32,32,102,111,114,32,107,44,32,118,
+32,105,110,32,112,97,105,114,115,40,118,97,108,41,32,100,111,13,10,32,
+32,32,32,32,32,32,32,32,32,32,32,105,102,32,116,121,112,101,40,107,
+41,32,126,61,32,34,115,116,114,105,110,103,34,32,116,104,101,110,13,10,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,114,114,111,
+114,40,34,105,110,118,97,108,105,100,32,116,97,98,108,101,58,32,109,105,
+120,101,100,32,111,114,32,105,110,118,97,108,105,100,32,107,101,121,32,116,
+121,112,101,115,34,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
+101,110,100,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,
+108,101,46,105,110,115,101,114,116,40,114,101,115,44,32,101,110,99,111,100,
+101,40,107,44,32,115,116,97,99,107,41,32,46,46,32,34,58,34,32,46,
+46,32,101,110,99,111,100,101,40,118,44,32,115,116,97,99,107,41,41,13,
+10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,
+32,32,115,116,97,99,107,91,118,97,108,93,32,61,32,110,105,108,13,10,
+32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,34,123,34,32,46,
+46,32,116,97,98,108,101,46,99,111,110,99,97,116,40,114,101,115,44,32,
+34,44,34,41,32,46,46,32,34,125,34,13,10,32,32,32,32,101,110,100,
+13,10,101,110,100,13,10,13,10,13,10,108,111,99,97,108,32,102,117,110,
+99,116,105,111,110,32,101,110,99,111,100,101,95,115,116,114,105,110,103,40,
+118,97,108,41,13,10,32,32,32,32,114,101,116,117,114,110,32,39,34,39,
+32,46,46,32,118,97,108,58,103,115,117,98,40,39,91,37,122,92,49,45,
+92,51,49,92,92,34,93,39,44,32,101,115,99,97,112,101,95,99,104,97,
+114,41,32,46,46,32,39,34,39,13,10,101,110,100,13,10,13,10,13,10,
+108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,101,110,99,111,100,
+101,95,110,117,109,98,101,114,40,118,97,108,41,13,10,32,32,32,32,45,
+45,32,67,104,101,99,107,32,102,111,114,32,78,97,78,44,32,45,105,110,
+102,32,97,110,100,32,105,110,102,13,10,32,32,32,32,105,102,32,118,97,
+108,32,126,61,32,118,97,108,32,111,114,32,118,97,108,32,60,61,32,45,
+109,97,116,104,46,104,117,103,101,32,111,114,32,118,97,108,32,62,61,32,
+109,97,116,104,46,104,117,103,101,32,116,104,101,110,13,10,32,32,32,32,
+32,32,32,32,101,114,114,111,114,40,34,117,110,101,120,112,101,99,116,101,
+100,32,110,117,109,98,101,114,32,118,97,108,117,101,32,39,34,32,46,46,
+32,116,111,115,116,114,105,110,103,40,118,97,108,41,32,46,46,32,34,39,
+34,41,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,101,116,
+117,114,110,32,115,116,114,105,110,103,46,102,111,114,109,97,116,40,34,37,
+46,49,52,103,34,44,32,118,97,108,41,13,10,101,110,100,13,10,13,10,
+13,10,108,111,99,97,108,32,116,121,112,101,95,102,117,110,99,95,109,97,
+112,32,61,32,123,13,10,32,32,32,32,91,32,34,110,105,108,34,32,32,
+32,32,32,32,32,32,32,93,32,61,32,101,110,99,111,100,101,95,110,105,
+108,44,13,10,32,32,32,32,91,32,34,116,97,98,108,101,34,32,32,32,
+32,32,93,32,61,32,101,110,99,111,100,101,95,116,97,98,108,101,44,13,
+10,32,32,32,32,91,32,34,115,116,114,105,110,103,34,32,32,32,32,93,
+32,61,32,101,110,99,111,100,101,95,115,116,114,105,110,103,44,13,10,32,
+32,32,32,91,32,34,110,117,109,98,101,114,34,32,32,32,32,93,32,61,
+32,101,110,99,111,100,101,95,110,117,109,98,101,114,44,13,10,32,32,32,
+32,91,32,34,98,111,111,108,101,97,110,34,32,93,32,61,32,116,111,115,
+116,114,105,110,103,44,13,10,125,13,10,13,10,13,10,101,110,99,111,100,
+101,32,61,32,102,117,110,99,116,105,111,110,40,118,97,108,44,32,115,116,
+97,99,107,41,13,10,32,32,32,32,108,111,99,97,108,32,116,32,61,32,
+116,121,112,101,40,118,97,108,41,13,10,32,32,32,32,108,111,99,97,108,
+32,102,32,61,32,116,121,112,101,95,102,117,110,99,95,109,97,112,91,116,
+93,13,10,32,32,32,32,105,102,32,102,32,116,104,101,110,13,10,32,32,
+32,32,32,32,32,32,114,101,116,117,114,110,32,102,40,118,97,108,44,32,
+115,116,97,99,107,41,13,10,32,32,32,32,101,110,100,13,10,32,32,32,
+32,101,114,114,111,114,40,34,117,110,101,120,112,101,99,116,101,100,32,116,
+121,112,101,32,39,34,32,46,46,32,116,32,46,46,32,34,39,34,41,13,
+10,101,110,100,13,10,13,10,13,10,102,117,110,99,116,105,111,110,32,106,
+115,111,110,46,101,110,99,111,100,101,40,118,97,108,41,13,10,32,32,32,
+32,114,101,116,117,114,110,32,40,32,101,110,99,111,100,101,40,118,97,108,
+41,32,41,13,10,101,110,100,13,10,13,10,13,10,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,45,45,32,68,
-101,99,111,100,101,13,10,45,45,45,45,45,45,45,45,45,45,45,45,45,
+45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,45,45,32,68,101,
+99,111,100,101,13,10,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,13,10,13,10,108,111,99,97,108,32,112,97,114,115,
-101,13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,
-99,114,101,97,116,101,95,115,101,116,40,46,46,46,41,13,10,32,32,32,
-32,108,111,99,97,108,32,114,101,115,32,61,32,123,125,13,10,32,32,32,
-32,102,111,114,32,105,32,61,32,49,44,32,115,101,108,101,99,116,40,34,
-35,34,44,32,46,46,46,41,32,100,111,13,10,32,32,32,32,32,32,32,
-32,114,101,115,91,32,115,101,108,101,99,116,40,105,44,32,46,46,46,41,
-32,93,32,61,32,116,114,117,101,13,10,32,32,32,32,101,110,100,13,10,
-32,32,32,32,114,101,116,117,114,110,32,114,101,115,13,10,101,110,100,13,
-10,13,10,108,111,99,97,108,32,115,112,97,99,101,95,99,104,97,114,115,
-32,32,32,32,32,61,32,99,114,101,97,116,101,95,115,101,116,40,34,32,
-34,44,32,34,92,116,34,44,32,34,92,114,34,44,32,34,92,110,34,41,
-13,10,108,111,99,97,108,32,100,101,108,105,109,95,99,104,97,114,115,32,
-32,32,32,32,61,32,99,114,101,97,116,101,95,115,101,116,40,34,32,34,
-44,32,34,92,116,34,44,32,34,92,114,34,44,32,34,92,110,34,44,32,
-34,93,34,44,32,34,125,34,44,32,34,44,34,41,13,10,108,111,99,97,
-108,32,101,115,99,97,112,101,95,99,104,97,114,115,32,32,32,32,61,32,
-99,114,101,97,116,101,95,115,101,116,40,34,92,92,34,44,32,34,47,34,
-44,32,39,34,39,44,32,34,98,34,44,32,34,102,34,44,32,34,110,34,
-44,32,34,114,34,44,32,34,116,34,44,32,34,117,34,41,13,10,108,111,
-99,97,108,32,108,105,116,101,114,97,108,115,32,32,32,32,32,32,32,32,
-32,32,32,32,61,32,99,114,101,97,116,101,95,115,101,116,40,34,116,114,
-117,101,34,44,32,34,102,97,108,115,101,34,44,32,34,110,117,108,108,34,
-41,13,10,13,10,108,111,99,97,108,32,108,105,116,101,114,97,108,95,109,
-97,112,32,61,32,123,13,10,32,32,32,32,91,32,34,116,114,117,101,34,
-32,32,32,32,93,32,61,32,116,114,117,101,44,13,10,32,32,32,32,91,
-32,34,102,97,108,115,101,34,32,93,32,61,32,102,97,108,115,101,44,13,
-10,32,32,32,32,91,32,34,110,117,108,108,34,32,32,32,32,93,32,61,
-32,110,105,108,44,13,10,125,13,10,13,10,13,10,108,111,99,97,108,32,
-102,117,110,99,116,105,111,110,32,110,101,120,116,95,99,104,97,114,40,115,
-116,114,44,32,105,100,120,44,32,115,101,116,44,32,110,101,103,97,116,101,
-41,13,10,32,32,32,32,102,111,114,32,105,32,61,32,105,100,120,44,32,
-35,115,116,114,32,100,111,13,10,32,32,32,32,32,32,32,32,105,102,32,
-115,101,116,91,115,116,114,58,115,117,98,40,105,44,32,105,41,93,32,126,
-61,32,110,101,103,97,116,101,32,116,104,101,110,13,10,32,32,32,32,32,
-32,32,32,32,32,32,32,114,101,116,117,114,110,32,105,13,10,32,32,32,
-32,32,32,32,32,101,110,100,13,10,32,32,32,32,101,110,100,13,10,32,
-32,32,32,114,101,116,117,114,110,32,35,115,116,114,32,43,32,49,13,10,
-101,110,100,13,10,13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,
-105,111,110,32,100,101,99,111,100,101,95,101,114,114,111,114,40,115,116,114,
-44,32,105,100,120,44,32,109,115,103,41,13,10,32,32,32,32,108,111,99,
-97,108,32,108,105,110,101,95,99,111,117,110,116,32,61,32,49,13,10,32,
-32,32,32,108,111,99,97,108,32,99,111,108,95,99,111,117,110,116,32,61,
-32,49,13,10,32,32,32,32,102,111,114,32,105,32,61,32,49,44,32,105,
-100,120,32,45,32,49,32,100,111,13,10,32,32,32,32,32,32,32,32,99,
-111,108,95,99,111,117,110,116,32,61,32,99,111,108,95,99,111,117,110,116,
-32,43,32,49,13,10,32,32,32,32,32,32,32,32,105,102,32,115,116,114,
-58,115,117,98,40,105,44,32,105,41,32,61,61,32,34,92,110,34,32,116,
-104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,105,110,
-101,95,99,111,117,110,116,32,61,32,108,105,110,101,95,99,111,117,110,116,
-32,43,32,49,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,
-108,95,99,111,117,110,116,32,61,32,49,13,10,32,32,32,32,32,32,32,
-32,101,110,100,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,101,
-114,114,111,114,40,32,115,116,114,105,110,103,46,102,111,114,109,97,116,40,
-34,37,115,32,97,116,32,108,105,110,101,32,37,100,32,99,111,108,32,37,
-100,34,44,32,109,115,103,44,32,108,105,110,101,95,99,111,117,110,116,44,
-32,99,111,108,95,99,111,117,110,116,41,32,41,13,10,101,110,100,13,10,
+45,45,45,45,45,13,10,13,10,108,111,99,97,108,32,112,97,114,115,101,
13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,99,
-111,100,101,112,111,105,110,116,95,116,111,95,117,116,102,56,40,110,41,13,
-10,32,32,32,32,45,45,32,104,116,116,112,58,47,47,115,99,114,105,112,
-116,115,46,115,105,108,46,111,114,103,47,99,109,115,47,115,99,114,105,112,
-116,115,47,112,97,103,101,46,112,104,112,63,115,105,116,101,95,105,100,61,
-110,114,115,105,38,105,100,61,105,119,115,45,97,112,112,101,110,100,105,120,
-97,13,10,32,32,32,32,108,111,99,97,108,32,102,32,61,32,109,97,116,
-104,46,102,108,111,111,114,13,10,32,32,32,32,105,102,32,110,32,60,61,
-32,48,120,55,102,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,
-114,101,116,117,114,110,32,115,116,114,105,110,103,46,99,104,97,114,40,110,
+114,101,97,116,101,95,115,101,116,40,46,46,46,41,13,10,32,32,32,32,
+108,111,99,97,108,32,114,101,115,32,61,32,123,125,13,10,32,32,32,32,
+102,111,114,32,105,32,61,32,49,44,32,115,101,108,101,99,116,40,34,35,
+34,44,32,46,46,46,41,32,100,111,13,10,32,32,32,32,32,32,32,32,
+114,101,115,91,32,115,101,108,101,99,116,40,105,44,32,46,46,46,41,32,
+93,32,61,32,116,114,117,101,13,10,32,32,32,32,101,110,100,13,10,32,
+32,32,32,114,101,116,117,114,110,32,114,101,115,13,10,101,110,100,13,10,
+13,10,108,111,99,97,108,32,115,112,97,99,101,95,99,104,97,114,115,32,
+32,32,32,32,61,32,99,114,101,97,116,101,95,115,101,116,40,34,32,34,
+44,32,34,92,116,34,44,32,34,92,114,34,44,32,34,92,110,34,41,13,
+10,108,111,99,97,108,32,100,101,108,105,109,95,99,104,97,114,115,32,32,
+32,32,32,61,32,99,114,101,97,116,101,95,115,101,116,40,34,32,34,44,
+32,34,92,116,34,44,32,34,92,114,34,44,32,34,92,110,34,44,32,34,
+93,34,44,32,34,125,34,44,32,34,44,34,41,13,10,108,111,99,97,108,
+32,101,115,99,97,112,101,95,99,104,97,114,115,32,32,32,32,61,32,99,
+114,101,97,116,101,95,115,101,116,40,34,92,92,34,44,32,34,47,34,44,
+32,39,34,39,44,32,34,98,34,44,32,34,102,34,44,32,34,110,34,44,
+32,34,114,34,44,32,34,116,34,44,32,34,117,34,41,13,10,108,111,99,
+97,108,32,108,105,116,101,114,97,108,115,32,32,32,32,32,32,32,32,32,
+32,32,32,61,32,99,114,101,97,116,101,95,115,101,116,40,34,116,114,117,
+101,34,44,32,34,102,97,108,115,101,34,44,32,34,110,117,108,108,34,41,
+13,10,13,10,108,111,99,97,108,32,108,105,116,101,114,97,108,95,109,97,
+112,32,61,32,123,13,10,32,32,32,32,91,32,34,116,114,117,101,34,32,
+32,32,32,93,32,61,32,116,114,117,101,44,13,10,32,32,32,32,91,32,
+34,102,97,108,115,101,34,32,93,32,61,32,102,97,108,115,101,44,13,10,
+32,32,32,32,91,32,34,110,117,108,108,34,32,32,32,32,93,32,61,32,
+110,105,108,44,13,10,125,13,10,13,10,13,10,108,111,99,97,108,32,102,
+117,110,99,116,105,111,110,32,110,101,120,116,95,99,104,97,114,40,115,116,
+114,44,32,105,100,120,44,32,115,101,116,44,32,110,101,103,97,116,101,41,
+13,10,32,32,32,32,102,111,114,32,105,32,61,32,105,100,120,44,32,35,
+115,116,114,32,100,111,13,10,32,32,32,32,32,32,32,32,105,102,32,115,
+101,116,91,115,116,114,58,115,117,98,40,105,44,32,105,41,93,32,126,61,
+32,110,101,103,97,116,101,32,116,104,101,110,13,10,32,32,32,32,32,32,
+32,32,32,32,32,32,114,101,116,117,114,110,32,105,13,10,32,32,32,32,
+32,32,32,32,101,110,100,13,10,32,32,32,32,101,110,100,13,10,32,32,
+32,32,114,101,116,117,114,110,32,35,115,116,114,32,43,32,49,13,10,101,
+110,100,13,10,13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,
+111,110,32,100,101,99,111,100,101,95,101,114,114,111,114,40,115,116,114,44,
+32,105,100,120,44,32,109,115,103,41,13,10,32,32,32,32,108,111,99,97,
+108,32,108,105,110,101,95,99,111,117,110,116,32,61,32,49,13,10,32,32,
+32,32,108,111,99,97,108,32,99,111,108,95,99,111,117,110,116,32,61,32,
+49,13,10,32,32,32,32,102,111,114,32,105,32,61,32,49,44,32,105,100,
+120,32,45,32,49,32,100,111,13,10,32,32,32,32,32,32,32,32,99,111,
+108,95,99,111,117,110,116,32,61,32,99,111,108,95,99,111,117,110,116,32,
+43,32,49,13,10,32,32,32,32,32,32,32,32,105,102,32,115,116,114,58,
+115,117,98,40,105,44,32,105,41,32,61,61,32,34,92,110,34,32,116,104,
+101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,105,110,101,
+95,99,111,117,110,116,32,61,32,108,105,110,101,95,99,111,117,110,116,32,
+43,32,49,13,10,32,32,32,32,32,32,32,32,32,32,32,32,99,111,108,
+95,99,111,117,110,116,32,61,32,49,13,10,32,32,32,32,32,32,32,32,
+101,110,100,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,101,114,
+114,111,114,40,32,115,116,114,105,110,103,46,102,111,114,109,97,116,40,34,
+37,115,32,97,116,32,108,105,110,101,32,37,100,32,99,111,108,32,37,100,
+34,44,32,109,115,103,44,32,108,105,110,101,95,99,111,117,110,116,44,32,
+99,111,108,95,99,111,117,110,116,41,32,41,13,10,101,110,100,13,10,13,
+10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,99,111,
+100,101,112,111,105,110,116,95,116,111,95,117,116,102,56,40,110,41,13,10,
+32,32,32,32,45,45,32,104,116,116,112,58,47,47,115,99,114,105,112,116,
+115,46,115,105,108,46,111,114,103,47,99,109,115,47,115,99,114,105,112,116,
+115,47,112,97,103,101,46,112,104,112,63,115,105,116,101,95,105,100,61,110,
+114,115,105,38,105,100,61,105,119,115,45,97,112,112,101,110,100,105,120,97,
+13,10,32,32,32,32,108,111,99,97,108,32,102,32,61,32,109,97,116,104,
+46,102,108,111,111,114,13,10,32,32,32,32,105,102,32,110,32,60,61,32,
+48,120,55,102,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,114,
+101,116,117,114,110,32,115,116,114,105,110,103,46,99,104,97,114,40,110,41,
+13,10,32,32,32,32,101,108,115,101,105,102,32,110,32,60,61,32,48,120,
+55,102,102,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,114,101,
+116,117,114,110,32,115,116,114,105,110,103,46,99,104,97,114,40,102,40,110,
+32,47,32,54,52,41,32,43,32,49,57,50,44,32,110,32,37,32,54,52,
+32,43,32,49,50,56,41,13,10,32,32,32,32,101,108,115,101,105,102,32,
+110,32,60,61,32,48,120,102,102,102,102,32,116,104,101,110,13,10,32,32,
+32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,
+99,104,97,114,40,102,40,110,32,47,32,52,48,57,54,41,32,43,32,50,
+50,52,44,32,102,40,110,32,37,32,52,48,57,54,32,47,32,54,52,41,
+32,43,32,49,50,56,44,32,110,32,37,32,54,52,32,43,32,49,50,56,
41,13,10,32,32,32,32,101,108,115,101,105,102,32,110,32,60,61,32,48,
-120,55,102,102,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,114,
-101,116,117,114,110,32,115,116,114,105,110,103,46,99,104,97,114,40,102,40,
-110,32,47,32,54,52,41,32,43,32,49,57,50,44,32,110,32,37,32,54,
-52,32,43,32,49,50,56,41,13,10,32,32,32,32,101,108,115,101,105,102,
-32,110,32,60,61,32,48,120,102,102,102,102,32,116,104,101,110,13,10,32,
-32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,
-46,99,104,97,114,40,102,40,110,32,47,32,52,48,57,54,41,32,43,32,
-50,50,52,44,32,102,40,110,32,37,32,52,48,57,54,32,47,32,54,52,
-41,32,43,32,49,50,56,44,32,110,32,37,32,54,52,32,43,32,49,50,
-56,41,13,10,32,32,32,32,101,108,115,101,105,102,32,110,32,60,61,32,
-48,120,49,48,102,102,102,102,32,116,104,101,110,13,10,32,32,32,32,32,
-32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,99,104,97,
-114,40,102,40,110,32,47,32,50,54,50,49,52,52,41,32,43,32,50,52,
-48,44,32,102,40,110,32,37,32,50,54,50,49,52,52,32,47,32,52,48,
-57,54,41,32,43,32,49,50,56,44,13,10,32,32,32,32,32,32,32,32,
+120,49,48,102,102,102,102,32,116,104,101,110,13,10,32,32,32,32,32,32,
+32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,99,104,97,114,
+40,102,40,110,32,47,32,50,54,50,49,52,52,41,32,43,32,50,52,48,
+44,32,102,40,110,32,37,32,50,54,50,49,52,52,32,47,32,52,48,57,
+54,41,32,43,32,49,50,56,44,13,10,32,32,32,32,32,32,32,32,32,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,40,110,
-32,37,32,52,48,57,54,32,47,32,54,52,41,32,43,32,49,50,56,44,
-32,110,32,37,32,54,52,32,43,32,49,50,56,41,13,10,32,32,32,32,
-101,110,100,13,10,32,32,32,32,101,114,114,111,114,40,32,115,116,114,105,
-110,103,46,102,111,114,109,97,116,40,34,105,110,118,97,108,105,100,32,117,
-110,105,99,111,100,101,32,99,111,100,101,112,111,105,110,116,32,39,37,120,
-39,34,44,32,110,41,32,41,13,10,101,110,100,13,10,13,10,13,10,108,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,102,40,110,32,
+37,32,52,48,57,54,32,47,32,54,52,41,32,43,32,49,50,56,44,32,
+110,32,37,32,54,52,32,43,32,49,50,56,41,13,10,32,32,32,32,101,
+110,100,13,10,32,32,32,32,101,114,114,111,114,40,32,115,116,114,105,110,
+103,46,102,111,114,109,97,116,40,34,105,110,118,97,108,105,100,32,117,110,
+105,99,111,100,101,32,99,111,100,101,112,111,105,110,116,32,39,37,120,39,
+34,44,32,110,41,32,41,13,10,101,110,100,13,10,13,10,13,10,108,111,
+99,97,108,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,95,117,
+110,105,99,111,100,101,95,101,115,99,97,112,101,40,115,41,13,10,32,32,
+32,32,108,111,99,97,108,32,110,49,32,61,32,116,111,110,117,109,98,101,
+114,40,32,115,58,115,117,98,40,51,44,32,54,41,44,32,32,32,32,49,
+54,32,41,13,10,32,32,32,32,108,111,99,97,108,32,110,50,32,61,32,
+116,111,110,117,109,98,101,114,40,32,115,58,115,117,98,40,57,44,32,49,
+50,41,44,32,49,54,32,41,13,10,32,32,32,32,45,45,32,83,117,114,
+114,111,103,97,116,101,32,112,97,105,114,63,13,10,32,32,32,32,105,102,
+32,110,50,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,114,101,
+116,117,114,110,32,99,111,100,101,112,111,105,110,116,95,116,111,95,117,116,
+102,56,40,40,110,49,32,45,32,48,120,100,56,48,48,41,32,42,32,48,
+120,52,48,48,32,43,32,40,110,50,32,45,32,48,120,100,99,48,48,41,
+32,43,32,48,120,49,48,48,48,48,41,13,10,32,32,32,32,101,108,115,
+101,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,111,
+100,101,112,111,105,110,116,95,116,111,95,117,116,102,56,40,110,49,41,13,
+10,32,32,32,32,101,110,100,13,10,101,110,100,13,10,13,10,13,10,108,
111,99,97,108,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,95,
-117,110,105,99,111,100,101,95,101,115,99,97,112,101,40,115,41,13,10,32,
-32,32,32,108,111,99,97,108,32,110,49,32,61,32,116,111,110,117,109,98,
-101,114,40,32,115,58,115,117,98,40,51,44,32,54,41,44,32,32,32,32,
-49,54,32,41,13,10,32,32,32,32,108,111,99,97,108,32,110,50,32,61,
-32,116,111,110,117,109,98,101,114,40,32,115,58,115,117,98,40,57,44,32,
-49,50,41,44,32,49,54,32,41,13,10,32,32,32,32,45,45,32,83,117,
-114,114,111,103,97,116,101,32,112,97,105,114,63,13,10,32,32,32,32,105,
-102,32,110,50,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,114,
-101,116,117,114,110,32,99,111,100,101,112,111,105,110,116,95,116,111,95,117,
-116,102,56,40,40,110,49,32,45,32,48,120,100,56,48,48,41,32,42,32,
-48,120,52,48,48,32,43,32,40,110,50,32,45,32,48,120,100,99,48,48,
-41,32,43,32,48,120,49,48,48,48,48,41,13,10,32,32,32,32,101,108,
-115,101,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,99,
-111,100,101,112,111,105,110,116,95,116,111,95,117,116,102,56,40,110,49,41,
-13,10,32,32,32,32,101,110,100,13,10,101,110,100,13,10,13,10,13,10,
-108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,
-95,115,116,114,105,110,103,40,115,116,114,44,32,105,41,13,10,32,32,32,
-32,108,111,99,97,108,32,104,97,115,95,117,110,105,99,111,100,101,95,101,
-115,99,97,112,101,32,61,32,102,97,108,115,101,13,10,32,32,32,32,108,
-111,99,97,108,32,104,97,115,95,115,117,114,114,111,103,97,116,101,95,101,
-115,99,97,112,101,32,61,32,102,97,108,115,101,13,10,32,32,32,32,108,
-111,99,97,108,32,104,97,115,95,101,115,99,97,112,101,32,61,32,102,97,
-108,115,101,13,10,32,32,32,32,108,111,99,97,108,32,108,97,115,116,13,
-10,32,32,32,32,102,111,114,32,106,32,61,32,105,32,43,32,49,44,32,
-35,115,116,114,32,100,111,13,10,32,32,32,32,32,32,32,32,108,111,99,
-97,108,32,120,32,61,32,115,116,114,58,98,121,116,101,40,106,41,13,10,
-13,10,32,32,32,32,32,32,32,32,105,102,32,120,32,60,32,51,50,32,
-116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,
-99,111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,106,44,32,34,
-99,111,110,116,114,111,108,32,99,104,97,114,97,99,116,101,114,32,105,110,
-32,115,116,114,105,110,103,34,41,13,10,32,32,32,32,32,32,32,32,101,
-110,100,13,10,13,10,32,32,32,32,32,32,32,32,105,102,32,108,97,115,
-116,32,61,61,32,57,50,32,116,104,101,110,32,45,45,32,34,92,92,34,
-32,40,101,115,99,97,112,101,32,99,104,97,114,41,13,10,32,32,32,32,
-32,32,32,32,32,32,32,32,105,102,32,120,32,61,61,32,49,49,55,32,
-116,104,101,110,32,45,45,32,34,117,34,32,40,117,110,105,99,111,100,101,
-32,101,115,99,97,112,101,32,115,101,113,117,101,110,99,101,41,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,
-32,104,101,120,32,61,32,115,116,114,58,115,117,98,40,106,32,43,32,49,
-44,32,106,32,43,32,53,41,13,10,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,105,102,32,110,111,116,32,104,101,120,58,102,105,110,
-100,40,34,37,120,37,120,37,120,37,120,34,41,32,116,104,101,110,13,10,
+115,116,114,105,110,103,40,115,116,114,44,32,105,41,13,10,32,32,32,32,
+108,111,99,97,108,32,104,97,115,95,117,110,105,99,111,100,101,95,101,115,
+99,97,112,101,32,61,32,102,97,108,115,101,13,10,32,32,32,32,108,111,
+99,97,108,32,104,97,115,95,115,117,114,114,111,103,97,116,101,95,101,115,
+99,97,112,101,32,61,32,102,97,108,115,101,13,10,32,32,32,32,108,111,
+99,97,108,32,104,97,115,95,101,115,99,97,112,101,32,61,32,102,97,108,
+115,101,13,10,32,32,32,32,108,111,99,97,108,32,108,97,115,116,13,10,
+32,32,32,32,102,111,114,32,106,32,61,32,105,32,43,32,49,44,32,35,
+115,116,114,32,100,111,13,10,32,32,32,32,32,32,32,32,108,111,99,97,
+108,32,120,32,61,32,115,116,114,58,98,121,116,101,40,106,41,13,10,13,
+10,32,32,32,32,32,32,32,32,105,102,32,120,32,60,32,51,50,32,116,
+104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,99,
+111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,106,44,32,34,99,
+111,110,116,114,111,108,32,99,104,97,114,97,99,116,101,114,32,105,110,32,
+115,116,114,105,110,103,34,41,13,10,32,32,32,32,32,32,32,32,101,110,
+100,13,10,13,10,32,32,32,32,32,32,32,32,105,102,32,108,97,115,116,
+32,61,61,32,57,50,32,116,104,101,110,32,45,45,32,34,92,92,34,32,
+40,101,115,99,97,112,101,32,99,104,97,114,41,13,10,32,32,32,32,32,
+32,32,32,32,32,32,32,105,102,32,120,32,61,61,32,49,49,55,32,116,
+104,101,110,32,45,45,32,34,117,34,32,40,117,110,105,99,111,100,101,32,
+101,115,99,97,112,101,32,115,101,113,117,101,110,99,101,41,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,32,
+104,101,120,32,61,32,115,116,114,58,115,117,98,40,106,32,43,32,49,44,
+32,106,32,43,32,53,41,13,10,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,105,102,32,110,111,116,32,104,101,120,58,102,105,110,100,
+40,34,37,120,37,120,37,120,37,120,34,41,32,116,104,101,110,13,10,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,
+101,99,111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,106,44,32,
+34,105,110,118,97,108,105,100,32,117,110,105,99,111,100,101,32,101,115,99,
+97,112,101,32,105,110,32,115,116,114,105,110,103,34,41,13,10,32,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,104,101,120,
+58,102,105,110,100,40,34,94,91,100,68,93,91,56,57,97,65,98,66,93,
+34,41,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,32,32,32,32,104,97,115,95,115,117,114,114,111,103,97,
+116,101,95,101,115,99,97,112,101,32,61,32,116,114,117,101,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,13,10,
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-100,101,99,111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,106,44,
-32,34,105,110,118,97,108,105,100,32,117,110,105,99,111,100,101,32,101,115,
-99,97,112,101,32,105,110,32,115,116,114,105,110,103,34,41,13,10,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,104,101,
-120,58,102,105,110,100,40,34,94,91,100,68,93,91,56,57,97,65,98,66,
-93,34,41,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,104,97,115,95,115,117,114,114,111,103,
-97,116,101,95,101,115,99,97,112,101,32,61,32,116,114,117,101,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,108,115,101,13,
-10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,104,97,115,95,117,110,105,99,111,100,101,95,101,115,99,97,112,101,32,
-61,32,116,114,117,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,32,32,32,
-32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,108,111,99,97,108,32,99,32,61,32,115,116,114,105,110,103,46,
-99,104,97,114,40,120,41,13,10,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,105,102,32,110,111,116,32,101,115,99,97,112,101,95,99,
-104,97,114,115,91,99,93,32,116,104,101,110,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,99,111,100,101,
-95,101,114,114,111,114,40,115,116,114,44,32,106,44,32,34,105,110,118,97,
-108,105,100,32,101,115,99,97,112,101,32,99,104,97,114,32,39,34,32,46,
-46,32,99,32,46,46,32,34,39,32,105,110,32,115,116,114,105,110,103,34,
-41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,
-110,100,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-104,97,115,95,101,115,99,97,112,101,32,61,32,116,114,117,101,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,
-32,32,32,32,32,32,32,32,108,97,115,116,32,61,32,110,105,108,13,10,
-13,10,32,32,32,32,32,32,32,32,101,108,115,101,105,102,32,120,32,61,
-61,32,51,52,32,116,104,101,110,32,45,45,32,39,34,39,32,40,101,110,
-100,32,111,102,32,115,116,114,105,110,103,41,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,108,111,99,97,108,32,115,32,61,32,115,116,114,58,
-115,117,98,40,105,32,43,32,49,44,32,106,32,45,32,49,41,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,105,102,32,104,97,115,95,115,117,
-114,114,111,103,97,116,101,95,101,115,99,97,112,101,32,116,104,101,110,13,
-10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,32,61,
-32,115,58,103,115,117,98,40,34,92,92,117,91,100,68,93,91,56,57,97,
-65,98,66,93,46,46,92,92,117,46,46,46,46,34,44,32,112,97,114,115,
-101,95,117,110,105,99,111,100,101,95,101,115,99,97,112,101,41,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,
-32,32,32,32,32,32,32,32,105,102,32,104,97,115,95,117,110,105,99,111,
-100,101,95,101,115,99,97,112,101,32,116,104,101,110,13,10,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,115,32,61,32,115,58,103,115,
-117,98,40,34,92,92,117,46,46,46,46,34,44,32,112,97,114,115,101,95,
-117,110,105,99,111,100,101,95,101,115,99,97,112,101,41,13,10,32,32,32,
-32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,105,102,32,104,97,115,95,101,115,99,97,112,101,32,
-116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,115,32,61,32,115,58,103,115,117,98,40,34,92,92,46,34,44,32,
-101,115,99,97,112,101,95,99,104,97,114,95,109,97,112,95,105,110,118,41,
-13,10,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,44,
-32,106,32,43,32,49,13,10,13,10,32,32,32,32,32,32,32,32,101,108,
-115,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,97,115,116,
-32,61,32,120,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,
-32,32,32,101,110,100,13,10,32,32,32,32,100,101,99,111,100,101,95,101,
-114,114,111,114,40,115,116,114,44,32,105,44,32,34,101,120,112,101,99,116,
-101,100,32,99,108,111,115,105,110,103,32,113,117,111,116,101,32,102,111,114,
-32,115,116,114,105,110,103,34,41,13,10,101,110,100,13,10,13,10,13,10,
-108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,
-95,110,117,109,98,101,114,40,115,116,114,44,32,105,41,13,10,32,32,32,
-32,108,111,99,97,108,32,120,32,61,32,110,101,120,116,95,99,104,97,114,
-40,115,116,114,44,32,105,44,32,100,101,108,105,109,95,99,104,97,114,115,
-41,13,10,32,32,32,32,108,111,99,97,108,32,115,32,61,32,115,116,114,
-58,115,117,98,40,105,44,32,120,32,45,32,49,41,13,10,32,32,32,32,
-108,111,99,97,108,32,110,32,61,32,116,111,110,117,109,98,101,114,40,115,
-41,13,10,32,32,32,32,105,102,32,110,111,116,32,110,32,116,104,101,110,
-13,10,32,32,32,32,32,32,32,32,100,101,99,111,100,101,95,101,114,114,
-111,114,40,115,116,114,44,32,105,44,32,34,105,110,118,97,108,105,100,32,
-110,117,109,98,101,114,32,39,34,32,46,46,32,115,32,46,46,32,34,39,
-34,41,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,101,116,
-117,114,110,32,110,44,32,120,13,10,101,110,100,13,10,13,10,13,10,108,
+104,97,115,95,117,110,105,99,111,100,101,95,101,115,99,97,112,101,32,61,
+32,116,114,117,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
+101,108,115,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
+32,32,108,111,99,97,108,32,99,32,61,32,115,116,114,105,110,103,46,99,
+104,97,114,40,120,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,105,102,32,110,111,116,32,101,115,99,97,112,101,95,99,104,
+97,114,115,91,99,93,32,116,104,101,110,13,10,32,32,32,32,32,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,100,101,99,111,100,101,95,
+101,114,114,111,114,40,115,116,114,44,32,106,44,32,34,105,110,118,97,108,
+105,100,32,101,115,99,97,112,101,32,99,104,97,114,32,39,34,32,46,46,
+32,99,32,46,46,32,34,39,32,105,110,32,115,116,114,105,110,103,34,41,
+13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,110,
+100,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,104,
+97,115,95,101,115,99,97,112,101,32,61,32,116,114,117,101,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,
+32,32,32,32,32,32,32,108,97,115,116,32,61,32,110,105,108,13,10,13,
+10,32,32,32,32,32,32,32,32,101,108,115,101,105,102,32,120,32,61,61,
+32,51,52,32,116,104,101,110,32,45,45,32,39,34,39,32,40,101,110,100,
+32,111,102,32,115,116,114,105,110,103,41,13,10,32,32,32,32,32,32,32,
+32,32,32,32,32,108,111,99,97,108,32,115,32,61,32,115,116,114,58,115,
+117,98,40,105,32,43,32,49,44,32,106,32,45,32,49,41,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,105,102,32,104,97,115,95,115,117,114,
+114,111,103,97,116,101,95,101,115,99,97,112,101,32,116,104,101,110,13,10,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,32,61,32,
+115,58,103,115,117,98,40,34,92,92,117,91,100,68,93,91,56,57,97,65,
+98,66,93,46,46,92,92,117,46,46,46,46,34,44,32,112,97,114,115,101,
+95,117,110,105,99,111,100,101,95,101,115,99,97,112,101,41,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,
+32,32,32,32,32,32,32,105,102,32,104,97,115,95,117,110,105,99,111,100,
+101,95,101,115,99,97,112,101,32,116,104,101,110,13,10,32,32,32,32,32,
+32,32,32,32,32,32,32,32,32,32,32,115,32,61,32,115,58,103,115,117,
+98,40,34,92,92,117,46,46,46,46,34,44,32,112,97,114,115,101,95,117,
+110,105,99,111,100,101,95,101,115,99,97,112,101,41,13,10,32,32,32,32,
+32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,
+32,32,32,32,32,105,102,32,104,97,115,95,101,115,99,97,112,101,32,116,
+104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
+32,115,32,61,32,115,58,103,115,117,98,40,34,92,92,46,34,44,32,101,
+115,99,97,112,101,95,99,104,97,114,95,109,97,112,95,105,110,118,41,13,
+10,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,44,32,
+106,32,43,32,49,13,10,13,10,32,32,32,32,32,32,32,32,101,108,115,
+101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,97,115,116,32,
+61,32,120,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,
+32,32,101,110,100,13,10,32,32,32,32,100,101,99,111,100,101,95,101,114,
+114,111,114,40,115,116,114,44,32,105,44,32,34,101,120,112,101,99,116,101,
+100,32,99,108,111,115,105,110,103,32,113,117,111,116,101,32,102,111,114,32,
+115,116,114,105,110,103,34,41,13,10,101,110,100,13,10,13,10,13,10,108,
111,99,97,108,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,95,
-108,105,116,101,114,97,108,40,115,116,114,44,32,105,41,13,10,32,32,32,
-32,108,111,99,97,108,32,120,32,61,32,110,101,120,116,95,99,104,97,114,
-40,115,116,114,44,32,105,44,32,100,101,108,105,109,95,99,104,97,114,115,
-41,13,10,32,32,32,32,108,111,99,97,108,32,119,111,114,100,32,61,32,
-115,116,114,58,115,117,98,40,105,44,32,120,32,45,32,49,41,13,10,32,
-32,32,32,105,102,32,110,111,116,32,108,105,116,101,114,97,108,115,91,119,
-111,114,100,93,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,100,
-101,99,111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,105,44,32,
-34,105,110,118,97,108,105,100,32,108,105,116,101,114,97,108,32,39,34,32,
-46,46,32,119,111,114,100,32,46,46,32,34,39,34,41,13,10,32,32,32,
-32,101,110,100,13,10,32,32,32,32,114,101,116,117,114,110,32,108,105,116,
-101,114,97,108,95,109,97,112,91,119,111,114,100,93,44,32,120,13,10,101,
-110,100,13,10,13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,
-111,110,32,112,97,114,115,101,95,97,114,114,97,121,40,115,116,114,44,32,
-105,41,13,10,32,32,32,32,108,111,99,97,108,32,114,101,115,32,61,32,
-123,125,13,10,32,32,32,32,108,111,99,97,108,32,110,32,61,32,49,13,
-10,32,32,32,32,105,32,61,32,105,32,43,32,49,13,10,32,32,32,32,
-119,104,105,108,101,32,49,32,100,111,13,10,32,32,32,32,32,32,32,32,
-108,111,99,97,108,32,120,13,10,32,32,32,32,32,32,32,32,105,32,61,
-32,110,101,120,116,95,99,104,97,114,40,115,116,114,44,32,105,44,32,115,
-112,97,99,101,95,99,104,97,114,115,44,32,116,114,117,101,41,13,10,32,
-32,32,32,32,32,32,32,45,45,32,69,109,112,116,121,32,47,32,101,110,
-100,32,111,102,32,97,114,114,97,121,63,13,10,32,32,32,32,32,32,32,
-32,105,102,32,115,116,114,58,115,117,98,40,105,44,32,105,41,32,61,61,
-32,34,93,34,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,
-32,32,32,105,32,61,32,105,32,43,32,49,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,98,114,101,97,107,13,10,32,32,32,32,32,32,32,
-32,101,110,100,13,10,32,32,32,32,32,32,32,32,45,45,32,82,101,97,
-100,32,116,111,107,101,110,13,10,32,32,32,32,32,32,32,32,120,44,32,
-105,32,61,32,112,97,114,115,101,40,115,116,114,44,32,105,41,13,10,32,
-32,32,32,32,32,32,32,114,101,115,91,110,93,32,61,32,120,13,10,32,
-32,32,32,32,32,32,32,110,32,61,32,110,32,43,32,49,13,10,32,32,
-32,32,32,32,32,32,45,45,32,78,101,120,116,32,116,111,107,101,110,13,
-10,32,32,32,32,32,32,32,32,105,32,61,32,110,101,120,116,95,99,104,
-97,114,40,115,116,114,44,32,105,44,32,115,112,97,99,101,95,99,104,97,
-114,115,44,32,116,114,117,101,41,13,10,32,32,32,32,32,32,32,32,108,
-111,99,97,108,32,99,104,114,32,61,32,115,116,114,58,115,117,98,40,105,
-44,32,105,41,13,10,32,32,32,32,32,32,32,32,105,32,61,32,105,32,
-43,32,49,13,10,32,32,32,32,32,32,32,32,105,102,32,99,104,114,32,
-61,61,32,34,93,34,32,116,104,101,110,32,98,114,101,97,107,32,101,110,
-100,13,10,32,32,32,32,32,32,32,32,105,102,32,99,104,114,32,126,61,
-32,34,44,34,32,116,104,101,110,32,100,101,99,111,100,101,95,101,114,114,
-111,114,40,115,116,114,44,32,105,44,32,34,101,120,112,101,99,116,101,100,
-32,39,93,39,32,111,114,32,39,44,39,34,41,32,101,110,100,13,10,32,
-32,32,32,101,110,100,13,10,32,32,32,32,114,101,116,117,114,110,32,114,
-101,115,44,32,105,13,10,101,110,100,13,10,13,10,13,10,108,111,99,97,
-108,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,95,111,98,106,
-101,99,116,40,115,116,114,44,32,105,41,13,10,32,32,32,32,108,111,99,
-97,108,32,114,101,115,32,61,32,123,125,13,10,32,32,32,32,105,32,61,
-32,105,32,43,32,49,13,10,32,32,32,32,119,104,105,108,101,32,49,32,
-100,111,13,10,32,32,32,32,32,32,32,32,108,111,99,97,108,32,107,101,
-121,44,32,118,97,108,13,10,32,32,32,32,32,32,32,32,105,32,61,32,
+110,117,109,98,101,114,40,115,116,114,44,32,105,41,13,10,32,32,32,32,
+108,111,99,97,108,32,120,32,61,32,110,101,120,116,95,99,104,97,114,40,
+115,116,114,44,32,105,44,32,100,101,108,105,109,95,99,104,97,114,115,41,
+13,10,32,32,32,32,108,111,99,97,108,32,115,32,61,32,115,116,114,58,
+115,117,98,40,105,44,32,120,32,45,32,49,41,13,10,32,32,32,32,108,
+111,99,97,108,32,110,32,61,32,116,111,110,117,109,98,101,114,40,115,41,
+13,10,32,32,32,32,105,102,32,110,111,116,32,110,32,116,104,101,110,13,
+10,32,32,32,32,32,32,32,32,100,101,99,111,100,101,95,101,114,114,111,
+114,40,115,116,114,44,32,105,44,32,34,105,110,118,97,108,105,100,32,110,
+117,109,98,101,114,32,39,34,32,46,46,32,115,32,46,46,32,34,39,34,
+41,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,101,116,117,
+114,110,32,110,44,32,120,13,10,101,110,100,13,10,13,10,13,10,108,111,
+99,97,108,32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,95,108,
+105,116,101,114,97,108,40,115,116,114,44,32,105,41,13,10,32,32,32,32,
+108,111,99,97,108,32,120,32,61,32,110,101,120,116,95,99,104,97,114,40,
+115,116,114,44,32,105,44,32,100,101,108,105,109,95,99,104,97,114,115,41,
+13,10,32,32,32,32,108,111,99,97,108,32,119,111,114,100,32,61,32,115,
+116,114,58,115,117,98,40,105,44,32,120,32,45,32,49,41,13,10,32,32,
+32,32,105,102,32,110,111,116,32,108,105,116,101,114,97,108,115,91,119,111,
+114,100,93,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,100,101,
+99,111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,105,44,32,34,
+105,110,118,97,108,105,100,32,108,105,116,101,114,97,108,32,39,34,32,46,
+46,32,119,111,114,100,32,46,46,32,34,39,34,41,13,10,32,32,32,32,
+101,110,100,13,10,32,32,32,32,114,101,116,117,114,110,32,108,105,116,101,
+114,97,108,95,109,97,112,91,119,111,114,100,93,44,32,120,13,10,101,110,
+100,13,10,13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,
+110,32,112,97,114,115,101,95,97,114,114,97,121,40,115,116,114,44,32,105,
+41,13,10,32,32,32,32,108,111,99,97,108,32,114,101,115,32,61,32,123,
+125,13,10,32,32,32,32,108,111,99,97,108,32,110,32,61,32,49,13,10,
+32,32,32,32,105,32,61,32,105,32,43,32,49,13,10,32,32,32,32,119,
+104,105,108,101,32,49,32,100,111,13,10,32,32,32,32,32,32,32,32,108,
+111,99,97,108,32,120,13,10,32,32,32,32,32,32,32,32,105,32,61,32,
110,101,120,116,95,99,104,97,114,40,115,116,114,44,32,105,44,32,115,112,
97,99,101,95,99,104,97,114,115,44,32,116,114,117,101,41,13,10,32,32,
32,32,32,32,32,32,45,45,32,69,109,112,116,121,32,47,32,101,110,100,
-32,111,102,32,111,98,106,101,99,116,63,13,10,32,32,32,32,32,32,32,
-32,105,102,32,115,116,114,58,115,117,98,40,105,44,32,105,41,32,61,61,
-32,34,125,34,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,
-32,32,32,105,32,61,32,105,32,43,32,49,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,98,114,101,97,107,13,10,32,32,32,32,32,32,32,
-32,101,110,100,13,10,32,32,32,32,32,32,32,32,45,45,32,82,101,97,
-100,32,107,101,121,13,10,32,32,32,32,32,32,32,32,105,102,32,115,116,
-114,58,115,117,98,40,105,44,32,105,41,32,126,61,32,39,34,39,32,116,
-104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,99,
-111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,105,44,32,34,101,
-120,112,101,99,116,101,100,32,115,116,114,105,110,103,32,102,111,114,32,107,
-101,121,34,41,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,
-32,32,32,32,32,32,32,107,101,121,44,32,105,32,61,32,112,97,114,115,
-101,40,115,116,114,44,32,105,41,13,10,32,32,32,32,32,32,32,32,45,
-45,32,82,101,97,100,32,39,58,39,32,100,101,108,105,109,105,116,101,114,
-13,10,32,32,32,32,32,32,32,32,105,32,61,32,110,101,120,116,95,99,
-104,97,114,40,115,116,114,44,32,105,44,32,115,112,97,99,101,95,99,104,
-97,114,115,44,32,116,114,117,101,41,13,10,32,32,32,32,32,32,32,32,
-105,102,32,115,116,114,58,115,117,98,40,105,44,32,105,41,32,126,61,32,
-34,58,34,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,
-32,32,100,101,99,111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,
-105,44,32,34,101,120,112,101,99,116,101,100,32,39,58,39,32,97,102,116,
-101,114,32,107,101,121,34,41,13,10,32,32,32,32,32,32,32,32,101,110,
-100,13,10,32,32,32,32,32,32,32,32,105,32,61,32,110,101,120,116,95,
-99,104,97,114,40,115,116,114,44,32,105,32,43,32,49,44,32,115,112,97,
+32,111,102,32,97,114,114,97,121,63,13,10,32,32,32,32,32,32,32,32,
+105,102,32,115,116,114,58,115,117,98,40,105,44,32,105,41,32,61,61,32,
+34,93,34,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,
+32,32,105,32,61,32,105,32,43,32,49,13,10,32,32,32,32,32,32,32,
+32,32,32,32,32,98,114,101,97,107,13,10,32,32,32,32,32,32,32,32,
+101,110,100,13,10,32,32,32,32,32,32,32,32,45,45,32,82,101,97,100,
+32,116,111,107,101,110,13,10,32,32,32,32,32,32,32,32,120,44,32,105,
+32,61,32,112,97,114,115,101,40,115,116,114,44,32,105,41,13,10,32,32,
+32,32,32,32,32,32,114,101,115,91,110,93,32,61,32,120,13,10,32,32,
+32,32,32,32,32,32,110,32,61,32,110,32,43,32,49,13,10,32,32,32,
+32,32,32,32,32,45,45,32,78,101,120,116,32,116,111,107,101,110,13,10,
+32,32,32,32,32,32,32,32,105,32,61,32,110,101,120,116,95,99,104,97,
+114,40,115,116,114,44,32,105,44,32,115,112,97,99,101,95,99,104,97,114,
+115,44,32,116,114,117,101,41,13,10,32,32,32,32,32,32,32,32,108,111,
+99,97,108,32,99,104,114,32,61,32,115,116,114,58,115,117,98,40,105,44,
+32,105,41,13,10,32,32,32,32,32,32,32,32,105,32,61,32,105,32,43,
+32,49,13,10,32,32,32,32,32,32,32,32,105,102,32,99,104,114,32,61,
+61,32,34,93,34,32,116,104,101,110,32,98,114,101,97,107,32,101,110,100,
+13,10,32,32,32,32,32,32,32,32,105,102,32,99,104,114,32,126,61,32,
+34,44,34,32,116,104,101,110,32,100,101,99,111,100,101,95,101,114,114,111,
+114,40,115,116,114,44,32,105,44,32,34,101,120,112,101,99,116,101,100,32,
+39,93,39,32,111,114,32,39,44,39,34,41,32,101,110,100,13,10,32,32,
+32,32,101,110,100,13,10,32,32,32,32,114,101,116,117,114,110,32,114,101,
+115,44,32,105,13,10,101,110,100,13,10,13,10,13,10,108,111,99,97,108,
+32,102,117,110,99,116,105,111,110,32,112,97,114,115,101,95,111,98,106,101,
+99,116,40,115,116,114,44,32,105,41,13,10,32,32,32,32,108,111,99,97,
+108,32,114,101,115,32,61,32,123,125,13,10,32,32,32,32,105,32,61,32,
+105,32,43,32,49,13,10,32,32,32,32,119,104,105,108,101,32,49,32,100,
+111,13,10,32,32,32,32,32,32,32,32,108,111,99,97,108,32,107,101,121,
+44,32,118,97,108,13,10,32,32,32,32,32,32,32,32,105,32,61,32,110,
+101,120,116,95,99,104,97,114,40,115,116,114,44,32,105,44,32,115,112,97,
99,101,95,99,104,97,114,115,44,32,116,114,117,101,41,13,10,32,32,32,
-32,32,32,32,32,45,45,32,82,101,97,100,32,118,97,108,117,101,13,10,
-32,32,32,32,32,32,32,32,118,97,108,44,32,105,32,61,32,112,97,114,
-115,101,40,115,116,114,44,32,105,41,13,10,32,32,32,32,32,32,32,32,
-45,45,32,83,101,116,13,10,32,32,32,32,32,32,32,32,114,101,115,91,
-107,101,121,93,32,61,32,118,97,108,13,10,32,32,32,32,32,32,32,32,
-45,45,32,78,101,120,116,32,116,111,107,101,110,13,10,32,32,32,32,32,
-32,32,32,105,32,61,32,110,101,120,116,95,99,104,97,114,40,115,116,114,
-44,32,105,44,32,115,112,97,99,101,95,99,104,97,114,115,44,32,116,114,
-117,101,41,13,10,32,32,32,32,32,32,32,32,108,111,99,97,108,32,99,
-104,114,32,61,32,115,116,114,58,115,117,98,40,105,44,32,105,41,13,10,
-32,32,32,32,32,32,32,32,105,32,61,32,105,32,43,32,49,13,10,32,
-32,32,32,32,32,32,32,105,102,32,99,104,114,32,61,61,32,34,125,34,
-32,116,104,101,110,32,98,114,101,97,107,32,101,110,100,13,10,32,32,32,
-32,32,32,32,32,105,102,32,99,104,114,32,126,61,32,34,44,34,32,116,
-104,101,110,32,100,101,99,111,100,101,95,101,114,114,111,114,40,115,116,114,
-44,32,105,44,32,34,101,120,112,101,99,116,101,100,32,39,125,39,32,111,
-114,32,39,44,39,34,41,32,101,110,100,13,10,32,32,32,32,101,110,100,
-13,10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,44,32,105,13,
-10,101,110,100,13,10,13,10,13,10,108,111,99,97,108,32,99,104,97,114,
-95,102,117,110,99,95,109,97,112,32,61,32,123,13,10,32,32,32,32,91,
-32,39,34,39,32,93,32,61,32,112,97,114,115,101,95,115,116,114,105,110,
-103,44,13,10,32,32,32,32,91,32,34,48,34,32,93,32,61,32,112,97,
+32,32,32,32,32,45,45,32,69,109,112,116,121,32,47,32,101,110,100,32,
+111,102,32,111,98,106,101,99,116,63,13,10,32,32,32,32,32,32,32,32,
+105,102,32,115,116,114,58,115,117,98,40,105,44,32,105,41,32,61,61,32,
+34,125,34,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,
+32,32,105,32,61,32,105,32,43,32,49,13,10,32,32,32,32,32,32,32,
+32,32,32,32,32,98,114,101,97,107,13,10,32,32,32,32,32,32,32,32,
+101,110,100,13,10,32,32,32,32,32,32,32,32,45,45,32,82,101,97,100,
+32,107,101,121,13,10,32,32,32,32,32,32,32,32,105,102,32,115,116,114,
+58,115,117,98,40,105,44,32,105,41,32,126,61,32,39,34,39,32,116,104,
+101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,100,101,99,111,
+100,101,95,101,114,114,111,114,40,115,116,114,44,32,105,44,32,34,101,120,
+112,101,99,116,101,100,32,115,116,114,105,110,103,32,102,111,114,32,107,101,
+121,34,41,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,
+32,32,32,32,32,32,107,101,121,44,32,105,32,61,32,112,97,114,115,101,
+40,115,116,114,44,32,105,41,13,10,32,32,32,32,32,32,32,32,45,45,
+32,82,101,97,100,32,39,58,39,32,100,101,108,105,109,105,116,101,114,13,
+10,32,32,32,32,32,32,32,32,105,32,61,32,110,101,120,116,95,99,104,
+97,114,40,115,116,114,44,32,105,44,32,115,112,97,99,101,95,99,104,97,
+114,115,44,32,116,114,117,101,41,13,10,32,32,32,32,32,32,32,32,105,
+102,32,115,116,114,58,115,117,98,40,105,44,32,105,41,32,126,61,32,34,
+58,34,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,
+32,100,101,99,111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,105,
+44,32,34,101,120,112,101,99,116,101,100,32,39,58,39,32,97,102,116,101,
+114,32,107,101,121,34,41,13,10,32,32,32,32,32,32,32,32,101,110,100,
+13,10,32,32,32,32,32,32,32,32,105,32,61,32,110,101,120,116,95,99,
+104,97,114,40,115,116,114,44,32,105,32,43,32,49,44,32,115,112,97,99,
+101,95,99,104,97,114,115,44,32,116,114,117,101,41,13,10,32,32,32,32,
+32,32,32,32,45,45,32,82,101,97,100,32,118,97,108,117,101,13,10,32,
+32,32,32,32,32,32,32,118,97,108,44,32,105,32,61,32,112,97,114,115,
+101,40,115,116,114,44,32,105,41,13,10,32,32,32,32,32,32,32,32,45,
+45,32,83,101,116,13,10,32,32,32,32,32,32,32,32,114,101,115,91,107,
+101,121,93,32,61,32,118,97,108,13,10,32,32,32,32,32,32,32,32,45,
+45,32,78,101,120,116,32,116,111,107,101,110,13,10,32,32,32,32,32,32,
+32,32,105,32,61,32,110,101,120,116,95,99,104,97,114,40,115,116,114,44,
+32,105,44,32,115,112,97,99,101,95,99,104,97,114,115,44,32,116,114,117,
+101,41,13,10,32,32,32,32,32,32,32,32,108,111,99,97,108,32,99,104,
+114,32,61,32,115,116,114,58,115,117,98,40,105,44,32,105,41,13,10,32,
+32,32,32,32,32,32,32,105,32,61,32,105,32,43,32,49,13,10,32,32,
+32,32,32,32,32,32,105,102,32,99,104,114,32,61,61,32,34,125,34,32,
+116,104,101,110,32,98,114,101,97,107,32,101,110,100,13,10,32,32,32,32,
+32,32,32,32,105,102,32,99,104,114,32,126,61,32,34,44,34,32,116,104,
+101,110,32,100,101,99,111,100,101,95,101,114,114,111,114,40,115,116,114,44,
+32,105,44,32,34,101,120,112,101,99,116,101,100,32,39,125,39,32,111,114,
+32,39,44,39,34,41,32,101,110,100,13,10,32,32,32,32,101,110,100,13,
+10,32,32,32,32,114,101,116,117,114,110,32,114,101,115,44,32,105,13,10,
+101,110,100,13,10,13,10,13,10,108,111,99,97,108,32,99,104,97,114,95,
+102,117,110,99,95,109,97,112,32,61,32,123,13,10,32,32,32,32,91,32,
+39,34,39,32,93,32,61,32,112,97,114,115,101,95,115,116,114,105,110,103,
+44,13,10,32,32,32,32,91,32,34,48,34,32,93,32,61,32,112,97,114,
+115,101,95,110,117,109,98,101,114,44,13,10,32,32,32,32,91,32,34,49,
+34,32,93,32,61,32,112,97,114,115,101,95,110,117,109,98,101,114,44,13,
+10,32,32,32,32,91,32,34,50,34,32,93,32,61,32,112,97,114,115,101,
+95,110,117,109,98,101,114,44,13,10,32,32,32,32,91,32,34,51,34,32,
+93,32,61,32,112,97,114,115,101,95,110,117,109,98,101,114,44,13,10,32,
+32,32,32,91,32,34,52,34,32,93,32,61,32,112,97,114,115,101,95,110,
+117,109,98,101,114,44,13,10,32,32,32,32,91,32,34,53,34,32,93,32,
+61,32,112,97,114,115,101,95,110,117,109,98,101,114,44,13,10,32,32,32,
+32,91,32,34,54,34,32,93,32,61,32,112,97,114,115,101,95,110,117,109,
+98,101,114,44,13,10,32,32,32,32,91,32,34,55,34,32,93,32,61,32,
+112,97,114,115,101,95,110,117,109,98,101,114,44,13,10,32,32,32,32,91,
+32,34,56,34,32,93,32,61,32,112,97,114,115,101,95,110,117,109,98,101,
+114,44,13,10,32,32,32,32,91,32,34,57,34,32,93,32,61,32,112,97,
114,115,101,95,110,117,109,98,101,114,44,13,10,32,32,32,32,91,32,34,
-49,34,32,93,32,61,32,112,97,114,115,101,95,110,117,109,98,101,114,44,
-13,10,32,32,32,32,91,32,34,50,34,32,93,32,61,32,112,97,114,115,
-101,95,110,117,109,98,101,114,44,13,10,32,32,32,32,91,32,34,51,34,
-32,93,32,61,32,112,97,114,115,101,95,110,117,109,98,101,114,44,13,10,
-32,32,32,32,91,32,34,52,34,32,93,32,61,32,112,97,114,115,101,95,
-110,117,109,98,101,114,44,13,10,32,32,32,32,91,32,34,53,34,32,93,
-32,61,32,112,97,114,115,101,95,110,117,109,98,101,114,44,13,10,32,32,
-32,32,91,32,34,54,34,32,93,32,61,32,112,97,114,115,101,95,110,117,
-109,98,101,114,44,13,10,32,32,32,32,91,32,34,55,34,32,93,32,61,
-32,112,97,114,115,101,95,110,117,109,98,101,114,44,13,10,32,32,32,32,
-91,32,34,56,34,32,93,32,61,32,112,97,114,115,101,95,110,117,109,98,
-101,114,44,13,10,32,32,32,32,91,32,34,57,34,32,93,32,61,32,112,
-97,114,115,101,95,110,117,109,98,101,114,44,13,10,32,32,32,32,91,32,
-34,45,34,32,93,32,61,32,112,97,114,115,101,95,110,117,109,98,101,114,
-44,13,10,32,32,32,32,91,32,34,116,34,32,93,32,61,32,112,97,114,
-115,101,95,108,105,116,101,114,97,108,44,13,10,32,32,32,32,91,32,34,
-102,34,32,93,32,61,32,112,97,114,115,101,95,108,105,116,101,114,97,108,
-44,13,10,32,32,32,32,91,32,34,110,34,32,93,32,61,32,112,97,114,
-115,101,95,108,105,116,101,114,97,108,44,13,10,32,32,32,32,91,32,34,
-91,34,32,93,32,61,32,112,97,114,115,101,95,97,114,114,97,121,44,13,
-10,32,32,32,32,91,32,34,123,34,32,93,32,61,32,112,97,114,115,101,
-95,111,98,106,101,99,116,44,13,10,125,13,10,13,10,13,10,112,97,114,
-115,101,32,61,32,102,117,110,99,116,105,111,110,40,115,116,114,44,32,105,
-100,120,41,13,10,32,32,32,32,108,111,99,97,108,32,99,104,114,32,61,
-32,115,116,114,58,115,117,98,40,105,100,120,44,32,105,100,120,41,13,10,
-32,32,32,32,108,111,99,97,108,32,102,32,61,32,99,104,97,114,95,102,
-117,110,99,95,109,97,112,91,99,104,114,93,13,10,32,32,32,32,105,102,
-32,102,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,114,101,116,
-117,114,110,32,102,40,115,116,114,44,32,105,100,120,41,13,10,32,32,32,
-32,101,110,100,13,10,32,32,32,32,100,101,99,111,100,101,95,101,114,114,
-111,114,40,115,116,114,44,32,105,100,120,44,32,34,117,110,101,120,112,101,
-99,116,101,100,32,99,104,97,114,97,99,116,101,114,32,39,34,32,46,46,
-32,99,104,114,32,46,46,32,34,39,34,41,13,10,101,110,100,13,10,13,
-10,13,10,102,117,110,99,116,105,111,110,32,106,115,111,110,46,100,101,99,
-111,100,101,40,115,116,114,41,13,10,32,32,32,32,105,102,32,116,121,112,
-101,40,115,116,114,41,32,126,61,32,34,115,116,114,105,110,103,34,32,116,
-104,101,110,13,10,32,32,32,32,32,32,32,32,101,114,114,111,114,40,34,
-101,120,112,101,99,116,101,100,32,97,114,103,117,109,101,110,116,32,111,102,
-32,116,121,112,101,32,115,116,114,105,110,103,44,32,103,111,116,32,34,32,
-46,46,32,116,121,112,101,40,115,116,114,41,41,13,10,32,32,32,32,101,
-110,100,13,10,32,32,32,32,108,111,99,97,108,32,114,101,115,44,32,105,
-100,120,32,61,32,112,97,114,115,101,40,115,116,114,44,32,110,101,120,116,
-95,99,104,97,114,40,115,116,114,44,32,49,44,32,115,112,97,99,101,95,
-99,104,97,114,115,44,32,116,114,117,101,41,41,13,10,32,32,32,32,105,
-100,120,32,61,32,110,101,120,116,95,99,104,97,114,40,115,116,114,44,32,
-105,100,120,44,32,115,112,97,99,101,95,99,104,97,114,115,44,32,116,114,
-117,101,41,13,10,32,32,32,32,105,102,32,105,100,120,32,60,61,32,35,
-115,116,114,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,100,101,
-99,111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,105,100,120,44,
-32,34,116,114,97,105,108,105,110,103,32,103,97,114,98,97,103,101,34,41,
-13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,101,116,117,114,
-110,32,114,101,115,13,10,101,110,100,13,10,13,10,45,45,32,69,120,112,
-111,114,116,32,116,111,32,74,105,110,46,13,10,13,10,106,105,110,46,117,
-116,105,108,115,46,106,115,111,110,32,61,32,106,115,111,110,13,10
+45,34,32,93,32,61,32,112,97,114,115,101,95,110,117,109,98,101,114,44,
+13,10,32,32,32,32,91,32,34,116,34,32,93,32,61,32,112,97,114,115,
+101,95,108,105,116,101,114,97,108,44,13,10,32,32,32,32,91,32,34,102,
+34,32,93,32,61,32,112,97,114,115,101,95,108,105,116,101,114,97,108,44,
+13,10,32,32,32,32,91,32,34,110,34,32,93,32,61,32,112,97,114,115,
+101,95,108,105,116,101,114,97,108,44,13,10,32,32,32,32,91,32,34,91,
+34,32,93,32,61,32,112,97,114,115,101,95,97,114,114,97,121,44,13,10,
+32,32,32,32,91,32,34,123,34,32,93,32,61,32,112,97,114,115,101,95,
+111,98,106,101,99,116,44,13,10,125,13,10,13,10,13,10,112,97,114,115,
+101,32,61,32,102,117,110,99,116,105,111,110,40,115,116,114,44,32,105,100,
+120,41,13,10,32,32,32,32,108,111,99,97,108,32,99,104,114,32,61,32,
+115,116,114,58,115,117,98,40,105,100,120,44,32,105,100,120,41,13,10,32,
+32,32,32,108,111,99,97,108,32,102,32,61,32,99,104,97,114,95,102,117,
+110,99,95,109,97,112,91,99,104,114,93,13,10,32,32,32,32,105,102,32,
+102,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,114,101,116,117,
+114,110,32,102,40,115,116,114,44,32,105,100,120,41,13,10,32,32,32,32,
+101,110,100,13,10,32,32,32,32,100,101,99,111,100,101,95,101,114,114,111,
+114,40,115,116,114,44,32,105,100,120,44,32,34,117,110,101,120,112,101,99,
+116,101,100,32,99,104,97,114,97,99,116,101,114,32,39,34,32,46,46,32,
+99,104,114,32,46,46,32,34,39,34,41,13,10,101,110,100,13,10,13,10,
+13,10,102,117,110,99,116,105,111,110,32,106,115,111,110,46,100,101,99,111,
+100,101,40,115,116,114,41,13,10,32,32,32,32,105,102,32,116,121,112,101,
+40,115,116,114,41,32,126,61,32,34,115,116,114,105,110,103,34,32,116,104,
+101,110,13,10,32,32,32,32,32,32,32,32,101,114,114,111,114,40,34,101,
+120,112,101,99,116,101,100,32,97,114,103,117,109,101,110,116,32,111,102,32,
+116,121,112,101,32,115,116,114,105,110,103,44,32,103,111,116,32,34,32,46,
+46,32,116,121,112,101,40,115,116,114,41,41,13,10,32,32,32,32,101,110,
+100,13,10,32,32,32,32,108,111,99,97,108,32,114,101,115,44,32,105,100,
+120,32,61,32,112,97,114,115,101,40,115,116,114,44,32,110,101,120,116,95,
+99,104,97,114,40,115,116,114,44,32,49,44,32,115,112,97,99,101,95,99,
+104,97,114,115,44,32,116,114,117,101,41,41,13,10,32,32,32,32,105,100,
+120,32,61,32,110,101,120,116,95,99,104,97,114,40,115,116,114,44,32,105,
+100,120,44,32,115,112,97,99,101,95,99,104,97,114,115,44,32,116,114,117,
+101,41,13,10,32,32,32,32,105,102,32,105,100,120,32,60,61,32,35,115,
+116,114,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,100,101,99,
+111,100,101,95,101,114,114,111,114,40,115,116,114,44,32,105,100,120,44,32,
+34,116,114,97,105,108,105,110,103,32,103,97,114,98,97,103,101,34,41,13,
+10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,101,116,117,114,110,
+32,114,101,115,13,10,101,110,100,13,10,13,10,45,45,32,69,120,112,111,
+114,116,32,116,111,32,74,105,110,46,13,10,13,10,106,105,110,46,117,116,
+105,108,115,46,106,115,111,110,32,61,32,106,115,111,110,13,10
};
diff --git a/src/libjin-lua/scripts/utils/xml.lua b/src/libjin-lua/scripts/utils/xml.lua
index e4ff786..8bd6973 100644
--- a/src/libjin-lua/scripts/utils/xml.lua
+++ b/src/libjin-lua/scripts/utils/xml.lua
@@ -1,24 +1,7 @@
jin.utils = jin.utils or {}
----------------------------------------------------------------------------------
----------------------------------------------------------------------------------
-- https://github.com/Cluain/Lua-Simple-XML-Parser
---
--- xml.lua - XML parser for use with the Corona SDK.
---
--- version: 1.2
---
--- CHANGELOG:
---
--- 1.2 - Created new structure for returned table
--- 1.1 - Fixed base directory issue with the loadFile() function.
---
--- NOTE: This is a modified version of Alexander Makeev's Lua-only XML parser
--- found here: http://lua-users.org/wiki/LuaXml
---
----------------------------------------------------------------------------------
----------------------------------------------------------------------------------
local XmlParser = {}
diff --git a/src/libjin-lua/scripts/utils/xml.lua.h b/src/libjin-lua/scripts/utils/xml.lua.h
index 585335d..2f650a9 100644
--- a/src/libjin-lua/scripts/utils/xml.lua.h
+++ b/src/libjin-lua/scripts/utils/xml.lua.h
@@ -1,290 +1,255 @@
/*Auto generated, don't modify by hand.*/
static char xml_lua[] = {
13,10,106,105,110,46,117,116,105,108,115,32,61,32,106,105,110,46,117,116,
-105,108,115,32,111,114,32,123,125,13,10,13,10,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,45,
-45,32,104,116,116,112,115,58,47,47,103,105,116,104,117,98,46,99,111,109,
-47,67,108,117,97,105,110,47,76,117,97,45,83,105,109,112,108,101,45,88,
-77,76,45,80,97,114,115,101,114,13,10,45,45,13,10,45,45,32,120,109,
-108,46,108,117,97,32,45,32,88,77,76,32,112,97,114,115,101,114,32,102,
-111,114,32,117,115,101,32,119,105,116,104,32,116,104,101,32,67,111,114,111,
-110,97,32,83,68,75,46,13,10,45,45,13,10,45,45,32,118,101,114,115,
-105,111,110,58,32,49,46,50,13,10,45,45,13,10,45,45,32,67,72,65,
-78,71,69,76,79,71,58,13,10,45,45,13,10,45,45,32,49,46,50,32,
-45,32,67,114,101,97,116,101,100,32,110,101,119,32,115,116,114,117,99,116,
-117,114,101,32,102,111,114,32,114,101,116,117,114,110,101,100,32,116,97,98,
-108,101,13,10,45,45,32,49,46,49,32,45,32,70,105,120,101,100,32,98,
-97,115,101,32,100,105,114,101,99,116,111,114,121,32,105,115,115,117,101,32,
-119,105,116,104,32,116,104,101,32,108,111,97,100,70,105,108,101,40,41,32,
-102,117,110,99,116,105,111,110,46,13,10,45,45,13,10,45,45,32,78,79,
-84,69,58,32,84,104,105,115,32,105,115,32,97,32,109,111,100,105,102,105,
-101,100,32,118,101,114,115,105,111,110,32,111,102,32,65,108,101,120,97,110,
-100,101,114,32,77,97,107,101,101,118,39,115,32,76,117,97,45,111,110,108,
-121,32,88,77,76,32,112,97,114,115,101,114,13,10,45,45,32,102,111,117,
-110,100,32,104,101,114,101,58,32,104,116,116,112,58,47,47,108,117,97,45,
-117,115,101,114,115,46,111,114,103,47,119,105,107,105,47,76,117,97,88,109,
-108,13,10,45,45,13,10,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,13,10,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
-45,45,45,45,45,45,45,45,45,45,45,13,10,13,10,108,111,99,97,108,
-32,88,109,108,80,97,114,115,101,114,32,61,32,123,125,13,10,13,10,102,
-117,110,99,116,105,111,110,32,88,109,108,80,97,114,115,101,114,46,116,111,
-88,109,108,83,116,114,105,110,103,40,118,97,108,117,101,41,13,10,32,32,
+105,108,115,32,111,114,32,123,125,13,10,13,10,45,45,32,104,116,116,112,
+115,58,47,47,103,105,116,104,117,98,46,99,111,109,47,67,108,117,97,105,
+110,47,76,117,97,45,83,105,109,112,108,101,45,88,77,76,45,80,97,114,
+115,101,114,13,10,13,10,108,111,99,97,108,32,88,109,108,80,97,114,115,
+101,114,32,61,32,123,125,13,10,13,10,102,117,110,99,116,105,111,110,32,
+88,109,108,80,97,114,115,101,114,46,116,111,88,109,108,83,116,114,105,110,
+103,40,118,97,108,117,101,41,13,10,32,32,32,32,118,97,108,117,101,32,
+61,32,115,116,114,105,110,103,46,103,115,117,98,40,118,97,108,117,101,44,
+32,34,38,34,44,32,34,38,97,109,112,59,34,41,59,32,45,45,32,39,
+38,39,32,45,62,32,34,38,97,109,112,59,34,13,10,32,32,32,32,118,
+97,108,117,101,32,61,32,115,116,114,105,110,103,46,103,115,117,98,40,118,
+97,108,117,101,44,32,34,60,34,44,32,34,38,108,116,59,34,41,59,32,
+45,45,32,39,60,39,32,45,62,32,34,38,108,116,59,34,13,10,32,32,
32,32,118,97,108,117,101,32,61,32,115,116,114,105,110,103,46,103,115,117,
-98,40,118,97,108,117,101,44,32,34,38,34,44,32,34,38,97,109,112,59,
-34,41,59,32,45,45,32,39,38,39,32,45,62,32,34,38,97,109,112,59,
-34,13,10,32,32,32,32,118,97,108,117,101,32,61,32,115,116,114,105,110,
-103,46,103,115,117,98,40,118,97,108,117,101,44,32,34,60,34,44,32,34,
-38,108,116,59,34,41,59,32,45,45,32,39,60,39,32,45,62,32,34,38,
-108,116,59,34,13,10,32,32,32,32,118,97,108,117,101,32,61,32,115,116,
-114,105,110,103,46,103,115,117,98,40,118,97,108,117,101,44,32,34,62,34,
-44,32,34,38,103,116,59,34,41,59,32,45,45,32,39,62,39,32,45,62,
-32,34,38,103,116,59,34,13,10,32,32,32,32,118,97,108,117,101,32,61,
+98,40,118,97,108,117,101,44,32,34,62,34,44,32,34,38,103,116,59,34,
+41,59,32,45,45,32,39,62,39,32,45,62,32,34,38,103,116,59,34,13,
+10,32,32,32,32,118,97,108,117,101,32,61,32,115,116,114,105,110,103,46,
+103,115,117,98,40,118,97,108,117,101,44,32,34,92,34,34,44,32,34,38,
+113,117,111,116,59,34,41,59,32,45,45,32,39,34,39,32,45,62,32,34,
+38,113,117,111,116,59,34,13,10,32,32,32,32,118,97,108,117,101,32,61,
32,115,116,114,105,110,103,46,103,115,117,98,40,118,97,108,117,101,44,32,
-34,92,34,34,44,32,34,38,113,117,111,116,59,34,41,59,32,45,45,32,
-39,34,39,32,45,62,32,34,38,113,117,111,116,59,34,13,10,32,32,32,
-32,118,97,108,117,101,32,61,32,115,116,114,105,110,103,46,103,115,117,98,
-40,118,97,108,117,101,44,32,34,40,91,94,37,119,37,38,37,59,37,112,
-37,92,116,37,32,93,41,34,44,13,10,32,32,32,32,32,32,32,32,102,
-117,110,99,116,105,111,110,40,99,41,13,10,32,32,32,32,32,32,32,32,
-32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,46,102,111,
-114,109,97,116,40,34,38,35,120,37,88,59,34,44,32,115,116,114,105,110,
-103,46,98,121,116,101,40,99,41,41,13,10,32,32,32,32,32,32,32,32,
-101,110,100,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,97,
-108,117,101,59,13,10,101,110,100,13,10,13,10,102,117,110,99,116,105,111,
-110,32,88,109,108,80,97,114,115,101,114,46,102,114,111,109,88,109,108,83,
-116,114,105,110,103,40,118,97,108,117,101,41,13,10,32,32,32,32,118,97,
-108,117,101,32,61,32,115,116,114,105,110,103,46,103,115,117,98,40,118,97,
-108,117,101,44,32,34,38,35,120,40,91,37,120,93,43,41,37,59,34,44,
-13,10,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,40,104,
-41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,114,
-110,32,115,116,114,105,110,103,46,99,104,97,114,40,116,111,110,117,109,98,
-101,114,40,104,44,32,49,54,41,41,13,10,32,32,32,32,32,32,32,32,
-101,110,100,41,59,13,10,32,32,32,32,118,97,108,117,101,32,61,32,115,
-116,114,105,110,103,46,103,115,117,98,40,118,97,108,117,101,44,32,34,38,
-35,40,91,48,45,57,93,43,41,37,59,34,44,13,10,32,32,32,32,32,
-32,32,32,102,117,110,99,116,105,111,110,40,104,41,13,10,32,32,32,32,
-32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,
-103,46,99,104,97,114,40,116,111,110,117,109,98,101,114,40,104,44,32,49,
-48,41,41,13,10,32,32,32,32,32,32,32,32,101,110,100,41,59,13,10,
-32,32,32,32,118,97,108,117,101,32,61,32,115,116,114,105,110,103,46,103,
-115,117,98,40,118,97,108,117,101,44,32,34,38,113,117,111,116,59,34,44,
-32,34,92,34,34,41,59,13,10,32,32,32,32,118,97,108,117,101,32,61,
+34,40,91,94,37,119,37,38,37,59,37,112,37,92,116,37,32,93,41,34,
+44,13,10,32,32,32,32,32,32,32,32,102,117,110,99,116,105,111,110,40,
+99,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,116,117,
+114,110,32,115,116,114,105,110,103,46,102,111,114,109,97,116,40,34,38,35,
+120,37,88,59,34,44,32,115,116,114,105,110,103,46,98,121,116,101,40,99,
+41,41,13,10,32,32,32,32,32,32,32,32,101,110,100,41,59,13,10,32,
+32,32,32,114,101,116,117,114,110,32,118,97,108,117,101,59,13,10,101,110,
+100,13,10,13,10,102,117,110,99,116,105,111,110,32,88,109,108,80,97,114,
+115,101,114,46,102,114,111,109,88,109,108,83,116,114,105,110,103,40,118,97,
+108,117,101,41,13,10,32,32,32,32,118,97,108,117,101,32,61,32,115,116,
+114,105,110,103,46,103,115,117,98,40,118,97,108,117,101,44,32,34,38,35,
+120,40,91,37,120,93,43,41,37,59,34,44,13,10,32,32,32,32,32,32,
+32,32,102,117,110,99,116,105,111,110,40,104,41,13,10,32,32,32,32,32,
+32,32,32,32,32,32,32,114,101,116,117,114,110,32,115,116,114,105,110,103,
+46,99,104,97,114,40,116,111,110,117,109,98,101,114,40,104,44,32,49,54,
+41,41,13,10,32,32,32,32,32,32,32,32,101,110,100,41,59,13,10,32,
+32,32,32,118,97,108,117,101,32,61,32,115,116,114,105,110,103,46,103,115,
+117,98,40,118,97,108,117,101,44,32,34,38,35,40,91,48,45,57,93,43,
+41,37,59,34,44,13,10,32,32,32,32,32,32,32,32,102,117,110,99,116,
+105,111,110,40,104,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
+114,101,116,117,114,110,32,115,116,114,105,110,103,46,99,104,97,114,40,116,
+111,110,117,109,98,101,114,40,104,44,32,49,48,41,41,13,10,32,32,32,
+32,32,32,32,32,101,110,100,41,59,13,10,32,32,32,32,118,97,108,117,
+101,32,61,32,115,116,114,105,110,103,46,103,115,117,98,40,118,97,108,117,
+101,44,32,34,38,113,117,111,116,59,34,44,32,34,92,34,34,41,59,13,
+10,32,32,32,32,118,97,108,117,101,32,61,32,115,116,114,105,110,103,46,
+103,115,117,98,40,118,97,108,117,101,44,32,34,38,97,112,111,115,59,34,
+44,32,34,39,34,41,59,13,10,32,32,32,32,118,97,108,117,101,32,61,
32,115,116,114,105,110,103,46,103,115,117,98,40,118,97,108,117,101,44,32,
-34,38,97,112,111,115,59,34,44,32,34,39,34,41,59,13,10,32,32,32,
-32,118,97,108,117,101,32,61,32,115,116,114,105,110,103,46,103,115,117,98,
-40,118,97,108,117,101,44,32,34,38,103,116,59,34,44,32,34,62,34,41,
-59,13,10,32,32,32,32,118,97,108,117,101,32,61,32,115,116,114,105,110,
-103,46,103,115,117,98,40,118,97,108,117,101,44,32,34,38,108,116,59,34,
-44,32,34,60,34,41,59,13,10,32,32,32,32,118,97,108,117,101,32,61,
-32,115,116,114,105,110,103,46,103,115,117,98,40,118,97,108,117,101,44,32,
-34,38,97,109,112,59,34,44,32,34,38,34,41,59,13,10,32,32,32,32,
-114,101,116,117,114,110,32,118,97,108,117,101,59,13,10,101,110,100,13,10,
-13,10,102,117,110,99,116,105,111,110,32,88,109,108,80,97,114,115,101,114,
-46,112,97,114,115,101,65,114,103,115,40,110,111,100,101,44,32,115,41,13,
-10,32,32,32,32,115,116,114,105,110,103,46,103,115,117,98,40,115,44,32,
-34,40,37,119,43,41,61,40,91,92,34,39,93,41,40,46,45,41,37,50,
-34,44,32,102,117,110,99,116,105,111,110,40,119,44,32,95,44,32,97,41,
-13,10,32,32,32,32,32,32,32,32,110,111,100,101,58,97,100,100,80,114,
-111,112,101,114,116,121,40,119,44,32,88,109,108,80,97,114,115,101,114,46,
-102,114,111,109,88,109,108,83,116,114,105,110,103,40,97,41,41,13,10,32,
-32,32,32,101,110,100,41,13,10,101,110,100,13,10,32,32,32,32,13,10,
-108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,110,101,119,78,111,
-100,101,40,110,97,109,101,41,13,10,32,32,32,32,108,111,99,97,108,32,
-110,111,100,101,32,61,32,123,125,13,10,32,32,32,32,110,111,100,101,46,
-95,95,95,118,97,108,117,101,32,61,32,110,105,108,13,10,32,32,32,32,
-110,111,100,101,46,95,95,95,110,97,109,101,32,61,32,110,97,109,101,13,
-10,32,32,32,32,110,111,100,101,46,95,95,95,99,104,105,108,100,114,101,
-110,32,61,32,123,125,13,10,32,32,32,32,110,111,100,101,46,95,95,95,
-112,114,111,112,115,32,61,32,123,125,13,10,13,10,32,32,32,32,102,117,
-110,99,116,105,111,110,32,110,111,100,101,58,118,97,108,117,101,40,41,32,
-114,101,116,117,114,110,32,115,101,108,102,46,95,95,95,118,97,108,117,101,
-32,101,110,100,13,10,32,32,32,32,102,117,110,99,116,105,111,110,32,110,
-111,100,101,58,115,101,116,86,97,108,117,101,40,118,97,108,41,32,115,101,
-108,102,46,95,95,95,118,97,108,117,101,32,61,32,118,97,108,32,101,110,
-100,13,10,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,100,101,
-58,110,97,109,101,40,41,32,114,101,116,117,114,110,32,115,101,108,102,46,
-95,95,95,110,97,109,101,32,101,110,100,13,10,32,32,32,32,102,117,110,
-99,116,105,111,110,32,110,111,100,101,58,115,101,116,78,97,109,101,40,110,
-97,109,101,41,32,115,101,108,102,46,95,95,95,110,97,109,101,32,61,32,
-110,97,109,101,32,101,110,100,13,10,32,32,32,32,102,117,110,99,116,105,
-111,110,32,110,111,100,101,58,99,104,105,108,100,114,101,110,40,41,32,114,
-101,116,117,114,110,32,115,101,108,102,46,95,95,95,99,104,105,108,100,114,
-101,110,32,101,110,100,13,10,32,32,32,32,102,117,110,99,116,105,111,110,
-32,110,111,100,101,58,110,117,109,67,104,105,108,100,114,101,110,40,41,32,
-114,101,116,117,114,110,32,35,115,101,108,102,46,95,95,95,99,104,105,108,
-100,114,101,110,32,101,110,100,13,10,32,32,32,32,102,117,110,99,116,105,
-111,110,32,110,111,100,101,58,97,100,100,67,104,105,108,100,40,99,104,105,
-108,100,41,13,10,32,32,32,32,32,32,32,32,105,102,32,115,101,108,102,
-91,99,104,105,108,100,58,110,97,109,101,40,41,93,32,126,61,32,110,105,
-108,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
-105,102,32,116,121,112,101,40,115,101,108,102,91,99,104,105,108,100,58,110,
-97,109,101,40,41,93,46,110,97,109,101,41,32,61,61,32,34,102,117,110,
-99,116,105,111,110,34,32,116,104,101,110,13,10,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,108,111,99,97,108,32,116,101,109,112,84,
-97,98,108,101,32,61,32,123,125,13,10,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,116,97,98,108,101,46,105,110,115,101,114,116,40,
-116,101,109,112,84,97,98,108,101,44,32,115,101,108,102,91,99,104,105,108,
-100,58,110,97,109,101,40,41,93,41,13,10,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,32,115,101,108,102,91,99,104,105,108,100,58,110,
-97,109,101,40,41,93,32,61,32,116,101,109,112,84,97,98,108,101,13,10,
-32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,
-32,32,32,32,32,32,32,32,32,116,97,98,108,101,46,105,110,115,101,114,
-116,40,115,101,108,102,91,99,104,105,108,100,58,110,97,109,101,40,41,93,
-44,32,99,104,105,108,100,41,13,10,32,32,32,32,32,32,32,32,101,108,
-115,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,102,
-91,99,104,105,108,100,58,110,97,109,101,40,41,93,32,61,32,99,104,105,
-108,100,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,
-32,32,32,32,32,116,97,98,108,101,46,105,110,115,101,114,116,40,115,101,
-108,102,46,95,95,95,99,104,105,108,100,114,101,110,44,32,99,104,105,108,
-100,41,13,10,32,32,32,32,101,110,100,13,10,13,10,32,32,32,32,102,
-117,110,99,116,105,111,110,32,110,111,100,101,58,112,114,111,112,101,114,116,
-105,101,115,40,41,32,114,101,116,117,114,110,32,115,101,108,102,46,95,95,
-95,112,114,111,112,115,32,101,110,100,13,10,32,32,32,32,102,117,110,99,
-116,105,111,110,32,110,111,100,101,58,110,117,109,80,114,111,112,101,114,116,
-105,101,115,40,41,32,114,101,116,117,114,110,32,35,115,101,108,102,46,95,
-95,95,112,114,111,112,115,32,101,110,100,13,10,32,32,32,32,102,117,110,
-99,116,105,111,110,32,110,111,100,101,58,97,100,100,80,114,111,112,101,114,
-116,121,40,110,97,109,101,44,32,118,97,108,117,101,41,13,10,32,32,32,
-32,32,32,32,32,108,111,99,97,108,32,108,78,97,109,101,32,61,32,34,
-64,34,32,46,46,32,110,97,109,101,13,10,32,32,32,32,32,32,32,32,
-105,102,32,115,101,108,102,91,108,78,97,109,101,93,32,126,61,32,110,105,
-108,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
-105,102,32,116,121,112,101,40,115,101,108,102,91,108,78,97,109,101,93,41,
-32,61,61,32,34,115,116,114,105,110,103,34,32,116,104,101,110,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,
-32,116,101,109,112,84,97,98,108,101,32,61,32,123,125,13,10,32,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,108,101,46,105,
-110,115,101,114,116,40,116,101,109,112,84,97,98,108,101,44,32,115,101,108,
-102,91,108,78,97,109,101,93,41,13,10,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,115,101,108,102,91,108,78,97,109,101,93,32,61,
+34,38,103,116,59,34,44,32,34,62,34,41,59,13,10,32,32,32,32,118,
+97,108,117,101,32,61,32,115,116,114,105,110,103,46,103,115,117,98,40,118,
+97,108,117,101,44,32,34,38,108,116,59,34,44,32,34,60,34,41,59,13,
+10,32,32,32,32,118,97,108,117,101,32,61,32,115,116,114,105,110,103,46,
+103,115,117,98,40,118,97,108,117,101,44,32,34,38,97,109,112,59,34,44,
+32,34,38,34,41,59,13,10,32,32,32,32,114,101,116,117,114,110,32,118,
+97,108,117,101,59,13,10,101,110,100,13,10,13,10,102,117,110,99,116,105,
+111,110,32,88,109,108,80,97,114,115,101,114,46,112,97,114,115,101,65,114,
+103,115,40,110,111,100,101,44,32,115,41,13,10,32,32,32,32,115,116,114,
+105,110,103,46,103,115,117,98,40,115,44,32,34,40,37,119,43,41,61,40,
+91,92,34,39,93,41,40,46,45,41,37,50,34,44,32,102,117,110,99,116,
+105,111,110,40,119,44,32,95,44,32,97,41,13,10,32,32,32,32,32,32,
+32,32,110,111,100,101,58,97,100,100,80,114,111,112,101,114,116,121,40,119,
+44,32,88,109,108,80,97,114,115,101,114,46,102,114,111,109,88,109,108,83,
+116,114,105,110,103,40,97,41,41,13,10,32,32,32,32,101,110,100,41,13,
+10,101,110,100,13,10,32,32,32,32,13,10,108,111,99,97,108,32,102,117,
+110,99,116,105,111,110,32,110,101,119,78,111,100,101,40,110,97,109,101,41,
+13,10,32,32,32,32,108,111,99,97,108,32,110,111,100,101,32,61,32,123,
+125,13,10,32,32,32,32,110,111,100,101,46,95,95,95,118,97,108,117,101,
+32,61,32,110,105,108,13,10,32,32,32,32,110,111,100,101,46,95,95,95,
+110,97,109,101,32,61,32,110,97,109,101,13,10,32,32,32,32,110,111,100,
+101,46,95,95,95,99,104,105,108,100,114,101,110,32,61,32,123,125,13,10,
+32,32,32,32,110,111,100,101,46,95,95,95,112,114,111,112,115,32,61,32,
+123,125,13,10,13,10,32,32,32,32,102,117,110,99,116,105,111,110,32,110,
+111,100,101,58,118,97,108,117,101,40,41,32,114,101,116,117,114,110,32,115,
+101,108,102,46,95,95,95,118,97,108,117,101,32,101,110,100,13,10,32,32,
+32,32,102,117,110,99,116,105,111,110,32,110,111,100,101,58,115,101,116,86,
+97,108,117,101,40,118,97,108,41,32,115,101,108,102,46,95,95,95,118,97,
+108,117,101,32,61,32,118,97,108,32,101,110,100,13,10,32,32,32,32,102,
+117,110,99,116,105,111,110,32,110,111,100,101,58,110,97,109,101,40,41,32,
+114,101,116,117,114,110,32,115,101,108,102,46,95,95,95,110,97,109,101,32,
+101,110,100,13,10,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,
+100,101,58,115,101,116,78,97,109,101,40,110,97,109,101,41,32,115,101,108,
+102,46,95,95,95,110,97,109,101,32,61,32,110,97,109,101,32,101,110,100,
+13,10,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,100,101,58,
+99,104,105,108,100,114,101,110,40,41,32,114,101,116,117,114,110,32,115,101,
+108,102,46,95,95,95,99,104,105,108,100,114,101,110,32,101,110,100,13,10,
+32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,100,101,58,110,117,
+109,67,104,105,108,100,114,101,110,40,41,32,114,101,116,117,114,110,32,35,
+115,101,108,102,46,95,95,95,99,104,105,108,100,114,101,110,32,101,110,100,
+13,10,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,100,101,58,
+97,100,100,67,104,105,108,100,40,99,104,105,108,100,41,13,10,32,32,32,
+32,32,32,32,32,105,102,32,115,101,108,102,91,99,104,105,108,100,58,110,
+97,109,101,40,41,93,32,126,61,32,110,105,108,32,116,104,101,110,13,10,
+32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,116,121,112,101,40,
+115,101,108,102,91,99,104,105,108,100,58,110,97,109,101,40,41,93,46,110,
+97,109,101,41,32,61,61,32,34,102,117,110,99,116,105,111,110,34,32,116,
+104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
+32,108,111,99,97,108,32,116,101,109,112,84,97,98,108,101,32,61,32,123,
+125,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,116,
+97,98,108,101,46,105,110,115,101,114,116,40,116,101,109,112,84,97,98,108,
+101,44,32,115,101,108,102,91,99,104,105,108,100,58,110,97,109,101,40,41,
+93,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
+115,101,108,102,91,99,104,105,108,100,58,110,97,109,101,40,41,93,32,61,
32,116,101,109,112,84,97,98,108,101,13,10,32,32,32,32,32,32,32,32,
32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,32,32,32,
-32,116,97,98,108,101,46,105,110,115,101,114,116,40,115,101,108,102,91,108,
-78,97,109,101,93,44,32,118,97,108,117,101,41,13,10,32,32,32,32,32,
-32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,32,32,32,
-32,115,101,108,102,91,108,78,97,109,101,93,32,61,32,118,97,108,117,101,
-13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,
-32,32,32,116,97,98,108,101,46,105,110,115,101,114,116,40,115,101,108,102,
-46,95,95,95,112,114,111,112,115,44,32,123,32,110,97,109,101,32,61,32,
-110,97,109,101,44,32,118,97,108,117,101,32,61,32,115,101,108,102,91,110,
-97,109,101,93,32,125,41,13,10,32,32,32,32,101,110,100,13,10,13,10,
-32,32,32,32,114,101,116,117,114,110,32,110,111,100,101,13,10,101,110,100,
-13,10,13,10,102,117,110,99,116,105,111,110,32,88,109,108,80,97,114,115,
-101,114,46,112,97,114,115,101,88,109,108,84,101,120,116,40,120,109,108,84,
-101,120,116,41,13,10,32,32,32,32,108,111,99,97,108,32,115,116,97,99,
-107,32,61,32,123,125,13,10,32,32,32,32,108,111,99,97,108,32,116,111,
-112,32,61,32,110,101,119,78,111,100,101,40,41,13,10,32,32,32,32,116,
-97,98,108,101,46,105,110,115,101,114,116,40,115,116,97,99,107,44,32,116,
-111,112,41,13,10,32,32,32,32,108,111,99,97,108,32,110,105,44,32,99,
-44,32,108,97,98,101,108,44,32,120,97,114,103,44,32,101,109,112,116,121,
-13,10,32,32,32,32,108,111,99,97,108,32,105,44,32,106,32,61,32,49,
-44,32,49,13,10,32,32,32,32,119,104,105,108,101,32,116,114,117,101,32,
-100,111,13,10,32,32,32,32,32,32,32,32,110,105,44,32,106,44,32,99,
-44,32,108,97,98,101,108,44,32,120,97,114,103,44,32,101,109,112,116,121,
-32,61,32,115,116,114,105,110,103,46,102,105,110,100,40,120,109,108,84,101,
-120,116,44,32,34,60,40,37,47,63,41,40,91,37,119,95,58,93,43,41,
-40,46,45,41,40,37,47,63,41,62,34,44,32,105,41,13,10,32,32,32,
-32,32,32,32,32,105,102,32,110,111,116,32,110,105,32,116,104,101,110,32,
-98,114,101,97,107,32,101,110,100,13,10,32,32,32,32,32,32,32,32,108,
-111,99,97,108,32,116,101,120,116,32,61,32,115,116,114,105,110,103,46,115,
-117,98,40,120,109,108,84,101,120,116,44,32,105,44,32,110,105,32,45,32,
-49,41,59,13,10,32,32,32,32,32,32,32,32,105,102,32,110,111,116,32,
-115,116,114,105,110,103,46,102,105,110,100,40,116,101,120,116,44,32,34,94,
-37,115,42,36,34,41,32,116,104,101,110,13,10,32,32,32,32,32,32,32,
-32,32,32,32,32,108,111,99,97,108,32,108,86,97,108,32,61,32,40,116,
-111,112,58,118,97,108,117,101,40,41,32,111,114,32,34,34,41,32,46,46,
-32,88,109,108,80,97,114,115,101,114,46,102,114,111,109,88,109,108,83,116,
-114,105,110,103,40,116,101,120,116,41,13,10,32,32,32,32,32,32,32,32,
-32,32,32,32,115,116,97,99,107,91,35,115,116,97,99,107,93,58,115,101,
-116,86,97,108,117,101,40,108,86,97,108,41,13,10,32,32,32,32,32,32,
-32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,105,102,32,101,109,
-112,116,121,32,61,61,32,34,47,34,32,116,104,101,110,32,45,45,32,101,
-109,112,116,121,32,101,108,101,109,101,110,116,32,116,97,103,13,10,32,32,
-32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,32,108,78,111,100,
-101,32,61,32,110,101,119,78,111,100,101,40,108,97,98,101,108,41,13,10,
-32,32,32,32,32,32,32,32,32,32,32,32,88,109,108,80,97,114,115,101,
-114,46,112,97,114,115,101,65,114,103,115,40,108,78,111,100,101,44,32,120,
-97,114,103,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,111,
-112,58,97,100,100,67,104,105,108,100,40,108,78,111,100,101,41,13,10,32,
-32,32,32,32,32,32,32,101,108,115,101,105,102,32,99,32,61,61,32,34,
-34,32,116,104,101,110,32,45,45,32,115,116,97,114,116,32,116,97,103,13,
-10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,32,108,
-78,111,100,101,32,61,32,110,101,119,78,111,100,101,40,108,97,98,101,108,
-41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,88,109,108,80,97,
-114,115,101,114,46,112,97,114,115,101,65,114,103,115,40,108,78,111,100,101,
-44,32,120,97,114,103,41,13,10,32,32,32,32,32,32,32,32,32,32,32,
-32,116,97,98,108,101,46,105,110,115,101,114,116,40,115,116,97,99,107,44,
-32,108,78,111,100,101,41,13,10,9,116,111,112,32,61,32,108,78,111,100,
-101,13,10,32,32,32,32,32,32,32,32,101,108,115,101,32,45,45,32,101,
-110,100,32,116,97,103,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
-108,111,99,97,108,32,116,111,99,108,111,115,101,32,61,32,116,97,98,108,
-101,46,114,101,109,111,118,101,40,115,116,97,99,107,41,32,45,45,32,114,
-101,109,111,118,101,32,116,111,112,13,10,13,10,32,32,32,32,32,32,32,
-32,32,32,32,32,116,111,112,32,61,32,115,116,97,99,107,91,35,115,116,
-97,99,107,93,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,
-32,35,115,116,97,99,107,32,60,32,49,32,116,104,101,110,13,10,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,114,114,111,114,40,
-34,88,109,108,80,97,114,115,101,114,46,32,110,111,116,104,105,110,103,32,
-116,111,32,99,108,111,115,101,32,119,105,116,104,32,34,32,46,46,32,108,
-97,98,101,108,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,101,
-110,100,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,116,
-111,99,108,111,115,101,58,110,97,109,101,40,41,32,126,61,32,108,97,98,
-101,108,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,101,114,114,111,114,40,34,88,109,108,80,97,114,115,101,
-114,46,32,116,114,121,105,110,103,32,116,111,32,99,108,111,115,101,32,34,
-32,46,46,32,116,111,99,108,111,115,101,46,110,97,109,101,32,46,46,32,
-34,32,119,105,116,104,32,34,32,46,46,32,108,97,98,101,108,41,13,10,
-32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,
-32,32,32,32,32,32,32,32,32,116,111,112,58,97,100,100,67,104,105,108,
-100,40,116,111,99,108,111,115,101,41,13,10,32,32,32,32,32,32,32,32,
-101,110,100,13,10,32,32,32,32,32,32,32,32,105,32,61,32,106,32,43,
-32,49,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,108,111,99,
-97,108,32,116,101,120,116,32,61,32,115,116,114,105,110,103,46,115,117,98,
-40,120,109,108,84,101,120,116,44,32,105,41,59,13,10,32,32,32,32,105,
-102,32,35,115,116,97,99,107,32,62,32,49,32,116,104,101,110,13,10,32,
-32,32,32,32,32,32,32,101,114,114,111,114,40,34,88,109,108,80,97,114,
-115,101,114,46,32,117,110,99,108,111,115,101,100,32,34,32,46,46,32,115,
-116,97,99,107,91,35,115,116,97,99,107,93,58,110,97,109,101,40,41,41,
-13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,101,116,117,114,
-110,32,116,111,112,13,10,101,110,100,13,10,13,10,102,117,110,99,116,105,
-111,110,32,88,109,108,80,97,114,115,101,114,46,108,111,97,100,70,105,108,
-101,40,120,109,108,70,105,108,101,110,97,109,101,44,32,98,97,115,101,41,
-13,10,32,32,32,32,105,102,32,110,111,116,32,98,97,115,101,32,116,104,
-101,110,13,10,32,32,32,32,32,32,32,32,98,97,115,101,32,61,32,115,
-121,115,116,101,109,46,82,101,115,111,117,114,99,101,68,105,114,101,99,116,
-111,114,121,13,10,32,32,32,32,101,110,100,13,10,13,10,32,32,32,32,
-108,111,99,97,108,32,112,97,116,104,32,61,32,115,121,115,116,101,109,46,
-112,97,116,104,70,111,114,70,105,108,101,40,120,109,108,70,105,108,101,110,
-97,109,101,44,32,98,97,115,101,41,13,10,32,32,32,32,108,111,99,97,
-108,32,104,70,105,108,101,44,32,101,114,114,32,61,32,105,111,46,111,112,
-101,110,40,112,97,116,104,44,32,34,114,34,41,59,13,10,13,10,32,32,
-32,32,105,102,32,104,70,105,108,101,32,97,110,100,32,110,111,116,32,101,
-114,114,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,108,111,99,
-97,108,32,120,109,108,84,101,120,116,32,61,32,104,70,105,108,101,58,114,
-101,97,100,40,34,42,97,34,41,59,32,45,45,32,114,101,97,100,32,102,
-105,108,101,32,99,111,110,116,101,110,116,13,10,32,32,32,32,32,32,32,
-32,105,111,46,99,108,111,115,101,40,104,70,105,108,101,41,59,13,10,32,
-32,32,32,32,32,32,32,114,101,116,117,114,110,32,88,109,108,80,97,114,
-115,101,114,46,112,97,114,115,101,88,109,108,84,101,120,116,40,120,109,108,
-84,101,120,116,41,44,32,110,105,108,59,13,10,32,32,32,32,101,108,115,
-101,13,10,32,32,32,32,32,32,32,32,112,114,105,110,116,40,101,114,114,
-41,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,32,110,105,
-108,13,10,32,32,32,32,101,110,100,13,10,101,110,100,13,10,13,10,45,
-45,32,69,120,112,111,114,116,32,116,111,32,74,105,110,46,32,13,10,13,
-10,106,105,110,46,117,116,105,108,115,46,120,109,108,32,61,32,88,109,108,
-80,97,114,115,101,114,13,10
+32,116,97,98,108,101,46,105,110,115,101,114,116,40,115,101,108,102,91,99,
+104,105,108,100,58,110,97,109,101,40,41,93,44,32,99,104,105,108,100,41,
+13,10,32,32,32,32,32,32,32,32,101,108,115,101,13,10,32,32,32,32,
+32,32,32,32,32,32,32,32,115,101,108,102,91,99,104,105,108,100,58,110,
+97,109,101,40,41,93,32,61,32,99,104,105,108,100,13,10,32,32,32,32,
+32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,116,97,98,
+108,101,46,105,110,115,101,114,116,40,115,101,108,102,46,95,95,95,99,104,
+105,108,100,114,101,110,44,32,99,104,105,108,100,41,13,10,32,32,32,32,
+101,110,100,13,10,13,10,32,32,32,32,102,117,110,99,116,105,111,110,32,
+110,111,100,101,58,112,114,111,112,101,114,116,105,101,115,40,41,32,114,101,
+116,117,114,110,32,115,101,108,102,46,95,95,95,112,114,111,112,115,32,101,
+110,100,13,10,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,100,
+101,58,110,117,109,80,114,111,112,101,114,116,105,101,115,40,41,32,114,101,
+116,117,114,110,32,35,115,101,108,102,46,95,95,95,112,114,111,112,115,32,
+101,110,100,13,10,32,32,32,32,102,117,110,99,116,105,111,110,32,110,111,
+100,101,58,97,100,100,80,114,111,112,101,114,116,121,40,110,97,109,101,44,
+32,118,97,108,117,101,41,13,10,32,32,32,32,32,32,32,32,108,111,99,
+97,108,32,108,78,97,109,101,32,61,32,34,64,34,32,46,46,32,110,97,
+109,101,13,10,32,32,32,32,32,32,32,32,105,102,32,115,101,108,102,91,
+108,78,97,109,101,93,32,126,61,32,110,105,108,32,116,104,101,110,13,10,
+32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,116,121,112,101,40,
+115,101,108,102,91,108,78,97,109,101,93,41,32,61,61,32,34,115,116,114,
+105,110,103,34,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,32,32,108,111,99,97,108,32,116,101,109,112,84,97,98,
+108,101,32,61,32,123,125,13,10,32,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,116,97,98,108,101,46,105,110,115,101,114,116,40,116,101,
+109,112,84,97,98,108,101,44,32,115,101,108,102,91,108,78,97,109,101,93,
+41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,115,
+101,108,102,91,108,78,97,109,101,93,32,61,32,116,101,109,112,84,97,98,
+108,101,13,10,32,32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,
+10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,108,101,46,105,
+110,115,101,114,116,40,115,101,108,102,91,108,78,97,109,101,93,44,32,118,
+97,108,117,101,41,13,10,32,32,32,32,32,32,32,32,101,108,115,101,13,
+10,32,32,32,32,32,32,32,32,32,32,32,32,115,101,108,102,91,108,78,
+97,109,101,93,32,61,32,118,97,108,117,101,13,10,32,32,32,32,32,32,
+32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,116,97,98,108,101,
+46,105,110,115,101,114,116,40,115,101,108,102,46,95,95,95,112,114,111,112,
+115,44,32,123,32,110,97,109,101,32,61,32,110,97,109,101,44,32,118,97,
+108,117,101,32,61,32,115,101,108,102,91,110,97,109,101,93,32,125,41,13,
+10,32,32,32,32,101,110,100,13,10,13,10,32,32,32,32,114,101,116,117,
+114,110,32,110,111,100,101,13,10,101,110,100,13,10,13,10,102,117,110,99,
+116,105,111,110,32,88,109,108,80,97,114,115,101,114,46,112,97,114,115,101,
+88,109,108,84,101,120,116,40,120,109,108,84,101,120,116,41,13,10,32,32,
+32,32,108,111,99,97,108,32,115,116,97,99,107,32,61,32,123,125,13,10,
+32,32,32,32,108,111,99,97,108,32,116,111,112,32,61,32,110,101,119,78,
+111,100,101,40,41,13,10,32,32,32,32,116,97,98,108,101,46,105,110,115,
+101,114,116,40,115,116,97,99,107,44,32,116,111,112,41,13,10,32,32,32,
+32,108,111,99,97,108,32,110,105,44,32,99,44,32,108,97,98,101,108,44,
+32,120,97,114,103,44,32,101,109,112,116,121,13,10,32,32,32,32,108,111,
+99,97,108,32,105,44,32,106,32,61,32,49,44,32,49,13,10,32,32,32,
+32,119,104,105,108,101,32,116,114,117,101,32,100,111,13,10,32,32,32,32,
+32,32,32,32,110,105,44,32,106,44,32,99,44,32,108,97,98,101,108,44,
+32,120,97,114,103,44,32,101,109,112,116,121,32,61,32,115,116,114,105,110,
+103,46,102,105,110,100,40,120,109,108,84,101,120,116,44,32,34,60,40,37,
+47,63,41,40,91,37,119,95,58,93,43,41,40,46,45,41,40,37,47,63,
+41,62,34,44,32,105,41,13,10,32,32,32,32,32,32,32,32,105,102,32,
+110,111,116,32,110,105,32,116,104,101,110,32,98,114,101,97,107,32,101,110,
+100,13,10,32,32,32,32,32,32,32,32,108,111,99,97,108,32,116,101,120,
+116,32,61,32,115,116,114,105,110,103,46,115,117,98,40,120,109,108,84,101,
+120,116,44,32,105,44,32,110,105,32,45,32,49,41,59,13,10,32,32,32,
+32,32,32,32,32,105,102,32,110,111,116,32,115,116,114,105,110,103,46,102,
+105,110,100,40,116,101,120,116,44,32,34,94,37,115,42,36,34,41,32,116,
+104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,
+97,108,32,108,86,97,108,32,61,32,40,116,111,112,58,118,97,108,117,101,
+40,41,32,111,114,32,34,34,41,32,46,46,32,88,109,108,80,97,114,115,
+101,114,46,102,114,111,109,88,109,108,83,116,114,105,110,103,40,116,101,120,
+116,41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,115,116,97,99,
+107,91,35,115,116,97,99,107,93,58,115,101,116,86,97,108,117,101,40,108,
+86,97,108,41,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,
+32,32,32,32,32,32,32,105,102,32,101,109,112,116,121,32,61,61,32,34,
+47,34,32,116,104,101,110,32,45,45,32,101,109,112,116,121,32,101,108,101,
+109,101,110,116,32,116,97,103,13,10,32,32,32,32,32,32,32,32,32,32,
+32,32,108,111,99,97,108,32,108,78,111,100,101,32,61,32,110,101,119,78,
+111,100,101,40,108,97,98,101,108,41,13,10,32,32,32,32,32,32,32,32,
+32,32,32,32,88,109,108,80,97,114,115,101,114,46,112,97,114,115,101,65,
+114,103,115,40,108,78,111,100,101,44,32,120,97,114,103,41,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,116,111,112,58,97,100,100,67,104,105,
+108,100,40,108,78,111,100,101,41,13,10,32,32,32,32,32,32,32,32,101,
+108,115,101,105,102,32,99,32,61,61,32,34,34,32,116,104,101,110,32,45,
+45,32,115,116,97,114,116,32,116,97,103,13,10,32,32,32,32,32,32,32,
+32,32,32,32,32,108,111,99,97,108,32,108,78,111,100,101,32,61,32,110,
+101,119,78,111,100,101,40,108,97,98,101,108,41,13,10,32,32,32,32,32,
+32,32,32,32,32,32,32,88,109,108,80,97,114,115,101,114,46,112,97,114,
+115,101,65,114,103,115,40,108,78,111,100,101,44,32,120,97,114,103,41,13,
+10,32,32,32,32,32,32,32,32,32,32,32,32,116,97,98,108,101,46,105,
+110,115,101,114,116,40,115,116,97,99,107,44,32,108,78,111,100,101,41,13,
+10,9,116,111,112,32,61,32,108,78,111,100,101,13,10,32,32,32,32,32,
+32,32,32,101,108,115,101,32,45,45,32,101,110,100,32,116,97,103,13,10,
+32,32,32,32,32,32,32,32,32,32,32,32,108,111,99,97,108,32,116,111,
+99,108,111,115,101,32,61,32,116,97,98,108,101,46,114,101,109,111,118,101,
+40,115,116,97,99,107,41,32,45,45,32,114,101,109,111,118,101,32,116,111,
+112,13,10,13,10,32,32,32,32,32,32,32,32,32,32,32,32,116,111,112,
+32,61,32,115,116,97,99,107,91,35,115,116,97,99,107,93,13,10,32,32,
+32,32,32,32,32,32,32,32,32,32,105,102,32,35,115,116,97,99,107,32,
+60,32,49,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,32,101,114,114,111,114,40,34,88,109,108,80,97,114,115,
+101,114,46,32,110,111,116,104,105,110,103,32,116,111,32,99,108,111,115,101,
+32,119,105,116,104,32,34,32,46,46,32,108,97,98,101,108,41,13,10,32,
+32,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,
+32,32,32,32,32,32,32,32,105,102,32,116,111,99,108,111,115,101,58,110,
+97,109,101,40,41,32,126,61,32,108,97,98,101,108,32,116,104,101,110,13,
+10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,101,114,114,
+111,114,40,34,88,109,108,80,97,114,115,101,114,46,32,116,114,121,105,110,
+103,32,116,111,32,99,108,111,115,101,32,34,32,46,46,32,116,111,99,108,
+111,115,101,46,110,97,109,101,32,46,46,32,34,32,119,105,116,104,32,34,
+32,46,46,32,108,97,98,101,108,41,13,10,32,32,32,32,32,32,32,32,
+32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,32,32,32,
+32,116,111,112,58,97,100,100,67,104,105,108,100,40,116,111,99,108,111,115,
+101,41,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,
+32,32,32,32,32,105,32,61,32,106,32,43,32,49,13,10,32,32,32,32,
+101,110,100,13,10,32,32,32,32,108,111,99,97,108,32,116,101,120,116,32,
+61,32,115,116,114,105,110,103,46,115,117,98,40,120,109,108,84,101,120,116,
+44,32,105,41,59,13,10,32,32,32,32,105,102,32,35,115,116,97,99,107,
+32,62,32,49,32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,101,
+114,114,111,114,40,34,88,109,108,80,97,114,115,101,114,46,32,117,110,99,
+108,111,115,101,100,32,34,32,46,46,32,115,116,97,99,107,91,35,115,116,
+97,99,107,93,58,110,97,109,101,40,41,41,13,10,32,32,32,32,101,110,
+100,13,10,32,32,32,32,114,101,116,117,114,110,32,116,111,112,13,10,101,
+110,100,13,10,13,10,102,117,110,99,116,105,111,110,32,88,109,108,80,97,
+114,115,101,114,46,108,111,97,100,70,105,108,101,40,120,109,108,70,105,108,
+101,110,97,109,101,44,32,98,97,115,101,41,13,10,32,32,32,32,105,102,
+32,110,111,116,32,98,97,115,101,32,116,104,101,110,13,10,32,32,32,32,
+32,32,32,32,98,97,115,101,32,61,32,115,121,115,116,101,109,46,82,101,
+115,111,117,114,99,101,68,105,114,101,99,116,111,114,121,13,10,32,32,32,
+32,101,110,100,13,10,13,10,32,32,32,32,108,111,99,97,108,32,112,97,
+116,104,32,61,32,115,121,115,116,101,109,46,112,97,116,104,70,111,114,70,
+105,108,101,40,120,109,108,70,105,108,101,110,97,109,101,44,32,98,97,115,
+101,41,13,10,32,32,32,32,108,111,99,97,108,32,104,70,105,108,101,44,
+32,101,114,114,32,61,32,105,111,46,111,112,101,110,40,112,97,116,104,44,
+32,34,114,34,41,59,13,10,13,10,32,32,32,32,105,102,32,104,70,105,
+108,101,32,97,110,100,32,110,111,116,32,101,114,114,32,116,104,101,110,13,
+10,32,32,32,32,32,32,32,32,108,111,99,97,108,32,120,109,108,84,101,
+120,116,32,61,32,104,70,105,108,101,58,114,101,97,100,40,34,42,97,34,
+41,59,32,45,45,32,114,101,97,100,32,102,105,108,101,32,99,111,110,116,
+101,110,116,13,10,32,32,32,32,32,32,32,32,105,111,46,99,108,111,115,
+101,40,104,70,105,108,101,41,59,13,10,32,32,32,32,32,32,32,32,114,
+101,116,117,114,110,32,88,109,108,80,97,114,115,101,114,46,112,97,114,115,
+101,88,109,108,84,101,120,116,40,120,109,108,84,101,120,116,41,44,32,110,
+105,108,59,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,
+32,32,32,112,114,105,110,116,40,101,114,114,41,13,10,32,32,32,32,32,
+32,32,32,114,101,116,117,114,110,32,110,105,108,13,10,32,32,32,32,101,
+110,100,13,10,101,110,100,13,10,13,10,45,45,32,69,120,112,111,114,116,
+32,116,111,32,74,105,110,46,32,13,10,13,10,106,105,110,46,117,116,105,
+108,115,46,120,109,108,32,61,32,88,109,108,80,97,114,115,101,114,13,10
};