aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-12-29 23:27:16 +0800
committerchai <chaifix@163.com>2018-12-29 23:27:16 +0800
commitcca2e32c4abe70c0c16dbdeaef7e760a5ffa3ea8 (patch)
tree3b043e357cb6835195df19b6de94a35f61d45b76
parent9e13e3febeda9e7a0587fcb56422b9d6a8330c91 (diff)
*blend mode
-rw-r--r--bin/SDL2.dllbin771072 -> 771072 bytes
-rw-r--r--bin/cembed.exebin11264 -> 11264 bytes
-rw-r--r--bin/game/main.lua15
-rw-r--r--bin/jin.exebin591872 -> 570368 bytes
-rw-r--r--bin/lua51.dllbin364544 -> 364544 bytes
-rw-r--r--res/font.pngbin0 -> 7626 bytes
-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/libjin-lua/modules/graphics/je_lua_graphics.cpp14
-rw-r--r--src/libjin-lua/scripts/app.lua2
-rw-r--r--src/libjin-lua/scripts/app.lua.h207
-rw-r--r--src/libjin-lua/scripts/graphics/graphics.lua7
-rw-r--r--src/libjin-lua/scripts/graphics/graphics.lua.h311
-rw-r--r--src/libjin-lua/scripts/physics/physics.lua.h1979
-rw-r--r--src/libjin/graphics/je_gl.cpp22
-rw-r--r--src/libjin/graphics/je_gl.h9
-rw-r--r--src/libjin/graphics/je_window.cpp10
17 files changed, 1285 insertions, 1291 deletions
diff --git a/bin/SDL2.dll b/bin/SDL2.dll
index afd2655..f83ce4a 100644
--- a/bin/SDL2.dll
+++ b/bin/SDL2.dll
Binary files differ
diff --git a/bin/cembed.exe b/bin/cembed.exe
index de4d262..34378b3 100644
--- a/bin/cembed.exe
+++ b/bin/cembed.exe
Binary files differ
diff --git a/bin/game/main.lua b/bin/game/main.lua
index aa490e5..a6d19bf 100644
--- a/bin/game/main.lua
+++ b/bin/game/main.lua
@@ -314,7 +314,7 @@ function jin.core.onUpdate(dt)
end
function jin.core.onDraw()
- jin.graphics.setClearColor(0xff, 0, 0, 0xff)
+ jin.graphics.setClearColor(0, 0, 0, 0xff)
jin.graphics.clear()
jin.graphics.setColor(255, 255, 255, 255)
@@ -325,7 +325,7 @@ function jin.core.onDraw()
jin.graphics.setClearColor(0, 0, 0, 0)
jin.graphics.clear()
jin.graphics.useShader(jin.graphics.Shaders.Shape)
- jin.graphics.setColor(255, 0, 255, 255)
+ jin.graphics.setColor(255, 0, 255, 100)
jin.graphics.rect(jin.graphics.RenderMode.FILL, 30, 50, 100, 200)
jin.graphics.setColor(255, 255, 255, 255)
jin.graphics.unuseShader()
@@ -344,18 +344,21 @@ function jin.core.onDraw()
jin.graphics.rect(jin.graphics.RenderMode.FILL, 300, 300, 100, 50)
jin.graphics.unuseShader()
- jin.graphics.setColor(100, 100, 100, 255)
+ jin.graphics.setColor(100, 100, 100, 100)
jin.graphics.useShader(jin.graphics.Shaders.Shape)
- jin.graphics.rect(jin.graphics.RenderMode.FILL, 440, 0, 140, 120)
+ jin.graphics.rect(jin.graphics.RenderMode.FILL, 440, 0, 140, 150)
jin.graphics.unuseShader()
jin.graphics.setColor(255, 255, 255, 255)
jin.graphics.useShader(jin.graphics.Shaders.Font)
- jin.graphics.print(jin.graphics.getStatsStr(), 450, 10)
+ jin.graphics.print("Status\n----------------\n" .. jin.graphics.getStatsStr(), 450, 10)
jin.graphics.unuseShader()
jin.graphics.unbindCanvas(screen)
jin.graphics.useShader(rgbsplit)
- jin.graphics.draw(screen, 0, 0)
+ local mode = jin.graphics.getBlendMode()
+ jin.graphics.setBlendMode(jin.graphics.BlendMode.PREMULTIPLIEDALPHA)
+ jin.graphics.draw(screen, 0, 0)
+ jin.graphics.setBlendMode(mode)
jin.graphics.unuseShader()
jin.graphics.print("after canvas", 10, 340)
end
diff --git a/bin/jin.exe b/bin/jin.exe
index bedba09..6219b31 100644
--- a/bin/jin.exe
+++ b/bin/jin.exe
Binary files differ
diff --git a/bin/lua51.dll b/bin/lua51.dll
index 890c4ad..b2d8dda 100644
--- a/bin/lua51.dll
+++ b/bin/lua51.dll
Binary files differ
diff --git a/res/font.png b/res/font.png
new file mode 100644
index 0000000..15c98a5
--- /dev/null
+++ b/res/font.png
Binary files differ
diff --git a/src/3rdparty/LuaJIT-2.0.5/src/buildvm.lib b/src/3rdparty/LuaJIT-2.0.5/src/buildvm.lib
index c7be727..d4372fd 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 e2b3ac3..a3cce18 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/libjin-lua/modules/graphics/je_lua_graphics.cpp b/src/libjin-lua/modules/graphics/je_lua_graphics.cpp
index fe3b3d8..a77f1ad 100644
--- a/src/libjin-lua/modules/graphics/je_lua_graphics.cpp
+++ b/src/libjin-lua/modules/graphics/je_lua_graphics.cpp
@@ -565,10 +565,18 @@ namespace JinEngine
return 0;
}
- LUA_IMPLEMENT int l_setBlend(lua_State* L)
+ LUA_IMPLEMENT int l_setBlendMode(lua_State* L)
{
+ int mode = luax_checkinteger(L, 1);
+ gl.setBlendMode(static_cast<OpenGL::BlendMode>(mode));
+ return 0;
+ }
- return 0;
+ LUA_IMPLEMENT int l_getBlendMode(lua_State* L)
+ {
+ int mode = static_cast<int>(gl.getBlendMode());
+ luax_pushinteger(L, mode);
+ return 1;
}
LUA_IMPLEMENT int l_point(lua_State* L)
@@ -1059,6 +1067,8 @@ namespace JinEngine
{ "setColor", l_setColor },
{ "getColor", l_getColor },
{ "present", l_present },
+ { "setBlendMode", l_setBlendMode },
+ { "getBlendMode", l_getBlendMode },
/* canvas */
{ "bindCanvas", l_bindCanvas },
{ "unbindCanvas", l_unbindCanvas },
diff --git a/src/libjin-lua/scripts/app.lua b/src/libjin-lua/scripts/app.lua
index 393719c..6ea9ee1 100644
--- a/src/libjin-lua/scripts/app.lua
+++ b/src/libjin-lua/scripts/app.lua
@@ -45,6 +45,8 @@ function jin.core.run()
jin.time.step()
dt = jin.time.getDelta()
call(jin.core.onUpdate, dt)
+ -- Screen is always cleared with full black
+ jin.graphics.setClearColor(0, 0, 0, 0xff)
jin.graphics.clear()
call(jin.core.onDraw)
jin.graphics.present()
diff --git a/src/libjin-lua/scripts/app.lua.h b/src/libjin-lua/scripts/app.lua.h
index 4bc2d9b..21f6d2e 100644
--- a/src/libjin-lua/scripts/app.lua.h
+++ b/src/libjin-lua/scripts/app.lua.h
@@ -81,128 +81,133 @@ static char app_lua[] = {
32,100,116,32,61,32,106,105,110,46,116,105,109,101,46,103,101,116,68,101,
108,116,97,40,41,13,10,32,32,32,32,32,32,32,32,99,97,108,108,40,
106,105,110,46,99,111,114,101,46,111,110,85,112,100,97,116,101,44,32,100,
-116,41,13,10,32,32,32,32,32,32,32,32,106,105,110,46,103,114,97,112,
-104,105,99,115,46,99,108,101,97,114,40,41,32,32,32,32,32,32,32,32,
-13,10,32,32,32,32,32,32,32,32,99,97,108,108,40,106,105,110,46,99,
-111,114,101,46,111,110,68,114,97,119,41,13,10,32,32,32,32,32,32,32,
-32,106,105,110,46,103,114,97,112,104,105,99,115,46,112,114,101,115,101,110,
-116,40,41,13,10,32,32,32,32,32,32,32,32,106,105,110,46,116,105,109,
-101,46,115,108,101,101,112,40,48,46,48,48,49,41,13,10,32,32,32,32,
-101,110,100,13,10,32,32,32,32,99,97,108,108,40,106,105,110,46,99,111,
-114,101,46,111,110,81,117,105,116,41,13,10,101,110,100,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,
+116,41,13,10,32,32,32,32,32,32,32,32,45,45,32,83,99,114,101,101,
+110,32,105,115,32,97,108,119,97,121,115,32,99,108,101,97,114,101,100,32,
+119,105,116,104,32,102,117,108,108,32,98,108,97,99,107,13,10,32,32,32,
+32,32,32,32,32,106,105,110,46,103,114,97,112,104,105,99,115,46,115,101,
+116,67,108,101,97,114,67,111,108,111,114,40,48,44,32,48,44,32,48,44,
+32,48,120,102,102,41,13,10,32,32,32,32,32,32,32,32,106,105,110,46,
+103,114,97,112,104,105,99,115,46,99,108,101,97,114,40,41,32,32,32,32,
+32,32,32,32,13,10,32,32,32,32,32,32,32,32,99,97,108,108,40,106,
+105,110,46,99,111,114,101,46,111,110,68,114,97,119,41,13,10,32,32,32,
+32,32,32,32,32,106,105,110,46,103,114,97,112,104,105,99,115,46,112,114,
+101,115,101,110,116,40,41,13,10,32,32,32,32,32,32,32,32,106,105,110,
+46,116,105,109,101,46,115,108,101,101,112,40,48,46,48,48,49,41,13,10,
+32,32,32,32,101,110,100,13,10,32,32,32,32,99,97,108,108,40,106,105,
+110,46,99,111,114,101,46,111,110,81,117,105,116,41,13,10,101,110,100,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,13,10,45,45,
+32,66,111,111,116,32,103,97,109,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,13,10,13,10,45,45,32,68,105,115,112,108,97,121,32,
+101,114,114,111,114,32,109,101,115,115,97,103,101,46,13,10,108,111,99,97,
+108,32,102,117,110,99,116,105,111,110,32,111,110,69,114,114,111,114,40,109,
+115,103,41,32,13,10,32,32,32,32,108,111,99,97,108,32,101,114,114,32,
+61,32,34,69,114,114,111,114,32,111,99,99,117,114,114,101,100,58,92,110,
+34,32,46,46,32,109,115,103,32,46,46,32,34,92,110,34,32,46,46,32,
+100,101,98,117,103,46,116,114,97,99,101,98,97,99,107,40,41,13,10,32,
+32,32,32,106,105,110,46,108,111,103,46,101,114,114,111,114,40,101,114,114,
+41,13,10,32,32,32,32,106,105,110,46,103,114,97,112,104,105,99,115,46,
+115,104,111,119,87,105,110,100,111,119,40,41,13,10,32,32,32,32,106,105,
+110,46,103,114,97,112,104,105,99,115,46,114,101,115,101,116,40,41,13,10,
+32,32,32,32,106,105,110,46,103,114,97,112,104,105,99,115,46,115,101,116,
+67,108,101,97,114,67,111,108,111,114,40,49,48,48,44,32,49,48,48,44,
+32,49,48,48,44,32,50,53,53,41,13,10,32,32,32,32,106,105,110,46,
+103,114,97,112,104,105,99,115,46,99,108,101,97,114,40,41,13,10,32,32,
+32,32,106,105,110,46,103,114,97,112,104,105,99,115,46,112,114,105,110,116,
+40,101,114,114,44,32,53,44,32,53,41,13,10,32,32,32,32,106,105,110,
+46,103,114,97,112,104,105,99,115,46,112,114,101,115,101,110,116,40,41,13,
+10,32,32,32,32,119,104,105,108,101,32,106,105,110,46,99,111,114,101,46,
+114,117,110,110,105,110,103,40,41,32,100,111,32,13,10,32,32,32,32,32,
+32,32,32,102,111,114,32,95,44,32,101,32,105,110,32,112,97,105,114,115,
+40,106,105,110,46,101,118,101,110,116,46,112,111,108,108,40,41,41,32,100,
+111,32,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,101,
+46,116,121,112,101,32,61,61,32,34,81,117,105,116,34,32,116,104,101,110,
+32,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,106,
+105,110,46,99,111,114,101,46,115,116,111,112,40,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,110,100,13,10,32,32,32,32,32,32,32,32,106,105,110,46,116,105,
+109,101,46,115,108,101,101,112,40,48,46,48,48,49,41,13,10,32,32,32,
+32,101,110,100,13,10,101,110,100,13,10,13,10,45,45,32,78,111,32,103,
+97,109,101,32,115,99,114,101,101,110,46,13,10,108,111,99,97,108,32,102,
+117,110,99,116,105,111,110,32,110,111,71,97,109,101,40,41,13,10,32,32,
+32,32,106,105,110,46,103,114,97,112,104,105,99,115,46,115,104,111,119,87,
+105,110,100,111,119,40,41,13,10,32,32,32,32,106,105,110,46,103,114,97,
+112,104,105,99,115,46,114,101,115,101,116,40,41,13,10,32,32,32,32,106,
+105,110,46,103,114,97,112,104,105,99,115,46,115,101,116,67,108,101,97,114,
+67,111,108,111,114,40,49,48,48,44,32,49,48,48,44,32,49,48,48,44,
+32,50,53,53,41,13,10,32,32,32,32,106,105,110,46,103,114,97,112,104,
+105,99,115,46,99,108,101,97,114,40,41,13,10,32,32,32,32,106,105,110,
+46,103,114,97,112,104,105,99,115,46,112,114,105,110,116,40,34,78,111,32,
+71,97,109,101,34,44,32,53,44,32,53,41,32,13,10,32,32,32,32,106,
+105,110,46,103,114,97,112,104,105,99,115,46,112,114,101,115,101,110,116,40,
+41,13,10,32,32,32,32,119,104,105,108,101,32,106,105,110,46,99,111,114,
+101,46,114,117,110,110,105,110,103,40,41,32,100,111,32,13,10,32,32,32,
+32,32,32,32,32,102,111,114,32,95,44,32,101,32,105,110,32,112,97,105,
+114,115,40,106,105,110,46,101,118,101,110,116,46,112,111,108,108,40,41,41,
+32,100,111,32,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,
+32,101,46,116,121,112,101,32,61,61,32,34,81,117,105,116,34,32,116,104,
+101,110,32,13,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
+32,106,105,110,46,99,111,114,101,46,115,116,111,112,40,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,110,100,13,10,32,32,32,32,32,32,32,32,106,105,110,46,
+116,105,109,101,46,115,108,101,101,112,40,48,46,48,48,49,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,98,111,111,116,40,41,32,13,10,32,
+32,32,32,105,102,32,106,105,110,46,102,105,108,101,115,121,115,116,101,109,
+46,101,120,105,115,116,40,34,109,97,105,110,46,108,117,97,34,41,32,116,
+104,101,110,32,13,10,32,32,32,32,32,32,32,32,99,97,108,108,40,102,
+117,110,99,116,105,111,110,40,41,32,13,10,32,32,32,32,32,32,32,32,
+32,32,32,32,114,101,113,117,105,114,101,34,109,97,105,110,34,32,13,10,
+32,32,32,32,32,32,32,32,32,32,32,32,106,105,110,46,99,111,114,101,
+46,114,117,110,40,41,13,10,32,32,32,32,32,32,32,32,101,110,100,41,
+13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,
+110,111,71,97,109,101,40,41,13,10,32,32,32,32,101,110,100,13,10,101,
+110,100,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,13,10,45,45,32,66,111,111,
-116,32,103,97,109,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,13,
+10,45,45,32,73,110,105,116,105,97,108,105,122,101,32,115,117,98,32,115,
+121,115,116,101,109,115,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,13,10,13,10,45,45,32,68,105,115,112,108,97,121,32,101,114,114,111,
-114,32,109,101,115,115,97,103,101,46,13,10,108,111,99,97,108,32,102,117,
-110,99,116,105,111,110,32,111,110,69,114,114,111,114,40,109,115,103,41,32,
-13,10,32,32,32,32,108,111,99,97,108,32,101,114,114,32,61,32,34,69,
-114,114,111,114,32,111,99,99,117,114,114,101,100,58,92,110,34,32,46,46,
-32,109,115,103,32,46,46,32,34,92,110,34,32,46,46,32,100,101,98,117,
-103,46,116,114,97,99,101,98,97,99,107,40,41,13,10,32,32,32,32,106,
-105,110,46,108,111,103,46,101,114,114,111,114,40,101,114,114,41,13,10,32,
-32,32,32,106,105,110,46,103,114,97,112,104,105,99,115,46,115,104,111,119,
-87,105,110,100,111,119,40,41,13,10,32,32,32,32,106,105,110,46,103,114,
-97,112,104,105,99,115,46,114,101,115,101,116,40,41,13,10,32,32,32,32,
-106,105,110,46,103,114,97,112,104,105,99,115,46,115,101,116,67,108,101,97,
-114,67,111,108,111,114,40,49,48,48,44,32,49,48,48,44,32,49,48,48,
-44,32,50,53,53,41,13,10,32,32,32,32,106,105,110,46,103,114,97,112,
-104,105,99,115,46,99,108,101,97,114,40,41,13,10,32,32,32,32,106,105,
-110,46,103,114,97,112,104,105,99,115,46,112,114,105,110,116,40,101,114,114,
-44,32,53,44,32,53,41,13,10,32,32,32,32,106,105,110,46,103,114,97,
-112,104,105,99,115,46,112,114,101,115,101,110,116,40,41,13,10,32,32,32,
-32,119,104,105,108,101,32,106,105,110,46,99,111,114,101,46,114,117,110,110,
-105,110,103,40,41,32,100,111,32,13,10,32,32,32,32,32,32,32,32,102,
-111,114,32,95,44,32,101,32,105,110,32,112,97,105,114,115,40,106,105,110,
-46,101,118,101,110,116,46,112,111,108,108,40,41,41,32,100,111,32,13,10,
-32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,101,46,116,121,112,
-101,32,61,61,32,34,81,117,105,116,34,32,116,104,101,110,32,13,10,32,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,106,105,110,46,99,
-111,114,101,46,115,116,111,112,40,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,110,100,
-13,10,32,32,32,32,32,32,32,32,106,105,110,46,116,105,109,101,46,115,
-108,101,101,112,40,48,46,48,48,49,41,13,10,32,32,32,32,101,110,100,
-13,10,101,110,100,13,10,13,10,45,45,32,78,111,32,103,97,109,101,32,
-115,99,114,101,101,110,46,13,10,108,111,99,97,108,32,102,117,110,99,116,
-105,111,110,32,110,111,71,97,109,101,40,41,13,10,32,32,32,32,106,105,
-110,46,103,114,97,112,104,105,99,115,46,115,104,111,119,87,105,110,100,111,
-119,40,41,13,10,32,32,32,32,106,105,110,46,103,114,97,112,104,105,99,
-115,46,114,101,115,101,116,40,41,13,10,32,32,32,32,106,105,110,46,103,
-114,97,112,104,105,99,115,46,115,101,116,67,108,101,97,114,67,111,108,111,
-114,40,49,48,48,44,32,49,48,48,44,32,49,48,48,44,32,50,53,53,
-41,13,10,32,32,32,32,106,105,110,46,103,114,97,112,104,105,99,115,46,
-99,108,101,97,114,40,41,13,10,32,32,32,32,106,105,110,46,103,114,97,
-112,104,105,99,115,46,112,114,105,110,116,40,34,78,111,32,71,97,109,101,
-34,44,32,53,44,32,53,41,32,13,10,32,32,32,32,106,105,110,46,103,
-114,97,112,104,105,99,115,46,112,114,101,115,101,110,116,40,41,13,10,32,
-32,32,32,119,104,105,108,101,32,106,105,110,46,99,111,114,101,46,114,117,
-110,110,105,110,103,40,41,32,100,111,32,13,10,32,32,32,32,32,32,32,
-32,102,111,114,32,95,44,32,101,32,105,110,32,112,97,105,114,115,40,106,
-105,110,46,101,118,101,110,116,46,112,111,108,108,40,41,41,32,100,111,32,
-13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,102,32,101,46,116,
-121,112,101,32,61,61,32,34,81,117,105,116,34,32,116,104,101,110,32,13,
-10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,106,105,110,
-46,99,111,114,101,46,115,116,111,112,40,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,
-110,100,13,10,32,32,32,32,32,32,32,32,106,105,110,46,116,105,109,101,
-46,115,108,101,101,112,40,48,46,48,48,49,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,98,111,111,116,40,41,32,13,10,32,32,32,32,105,
-102,32,106,105,110,46,102,105,108,101,115,121,115,116,101,109,46,101,120,105,
-115,116,40,34,109,97,105,110,46,108,117,97,34,41,32,116,104,101,110,32,
-13,10,32,32,32,32,32,32,32,32,99,97,108,108,40,102,117,110,99,116,
-105,111,110,40,41,32,13,10,32,32,32,32,32,32,32,32,32,32,32,32,
-114,101,113,117,105,114,101,34,109,97,105,110,34,32,13,10,32,32,32,32,
-32,32,32,32,32,32,32,32,106,105,110,46,99,111,114,101,46,114,117,110,
-40,41,13,10,32,32,32,32,32,32,32,32,101,110,100,41,13,10,32,32,
-32,32,101,108,115,101,13,10,32,32,32,32,32,32,32,32,110,111,71,97,
-109,101,40,41,13,10,32,32,32,32,101,110,100,13,10,101,110,100,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,13,10,45,45,32,
-73,110,105,116,105,97,108,105,122,101,32,115,117,98,32,115,121,115,116,101,
-109,115,13,10,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
+45,13,10,13,10,106,105,110,46,97,117,100,105,111,46,105,110,105,116,40,
+41,13,10,13,10,106,105,110,46,103,114,97,112,104,105,99,115,46,105,110,
+105,116,40,106,105,110,46,99,111,110,102,105,103,41,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,13,10,13,
-10,106,105,110,46,97,117,100,105,111,46,105,110,105,116,40,41,13,10,13,
-10,106,105,110,46,103,114,97,112,104,105,99,115,46,105,110,105,116,40,106,
-105,110,46,99,111,110,102,105,103,41,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,13,10,45,45,32,83,116,97,114,
+116,32,103,97,109,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,13,10,45,45,32,83,116,97,114,116,32,103,97,
-109,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,13,10,13,10,120,112,99,97,108,108,40,98,111,111,116,44,32,111,110,
+69,114,114,111,114,41,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,13,10,13,
-10,120,112,99,97,108,108,40,98,111,111,116,44,32,111,110,69,114,114,111,
-114,41,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,13,
-10,45,45,32,68,101,115,116,114,111,121,32,115,117,98,45,115,121,115,116,
-101,109,115,13,10,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,115,116,114,111,121,32,115,117,98,45,
+115,121,115,116,101,109,115,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,13,10,
-13,10,106,105,110,46,103,114,97,112,104,105,99,115,46,100,101,115,116,114,
-111,121,40,41,13,10,13,10,106,105,110,46,97,117,100,105,111,46,100,101,
-115,116,114,111,121,40,41,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,13,10,13,10,106,105,110,46,103,114,97,112,104,105,99,115,46,100,
+101,115,116,114,111,121,40,41,13,10,13,10,106,105,110,46,97,117,100,105,
+111,46,100,101,115,116,114,111,121,40,41,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,13,10,45,45,32,81,117,105,116,32,103,97,109,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,13,10,45,45,32,81,117,105,116,32,103,97,
+109,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,13,10,13,10,106,105,110,
-46,99,111,114,101,46,113,117,105,116,40,41,13,10
+45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,13,10,13,
+10,106,105,110,46,99,111,114,101,46,113,117,105,116,40,41,13,10
};
diff --git a/src/libjin-lua/scripts/graphics/graphics.lua b/src/libjin-lua/scripts/graphics/graphics.lua
index 9460f2b..70272ca 100644
--- a/src/libjin-lua/scripts/graphics/graphics.lua
+++ b/src/libjin-lua/scripts/graphics/graphics.lua
@@ -26,6 +26,13 @@ jg.SpriteMode = {
ANIMATED = 3
}
+jg.BlendMode = {
+ DEFAULT = 1,
+ ALPHA = 1,
+ ADDITIVE = 2,
+ PREMULTIPLIEDALPHA = 3
+}
+
-- Built in shaders.
jg.Shaders = nil
local function compileBuiltInShaders()
diff --git a/src/libjin-lua/scripts/graphics/graphics.lua.h b/src/libjin-lua/scripts/graphics/graphics.lua.h
index 31f15b6..185ed9c 100644
--- a/src/libjin-lua/scripts/graphics/graphics.lua.h
+++ b/src/libjin-lua/scripts/graphics/graphics.lua.h
@@ -20,165 +20,170 @@ static char graphics_lua[] = {
112,114,105,116,101,77,111,100,101,32,61,32,123,13,10,32,32,32,32,83,
73,78,71,76,69,32,61,32,49,44,13,10,32,32,32,32,82,65,78,68,
79,77,32,61,32,50,44,13,10,32,32,32,32,65,78,73,77,65,84,69,
-68,32,61,32,51,13,10,125,13,10,13,10,45,45,32,66,117,105,108,116,
-32,105,110,32,115,104,97,100,101,114,115,46,13,10,106,103,46,83,104,97,
-100,101,114,115,32,61,32,110,105,108,13,10,108,111,99,97,108,32,102,117,
-110,99,116,105,111,110,32,99,111,109,112,105,108,101,66,117,105,108,116,73,
-110,83,104,97,100,101,114,115,40,41,32,13,10,32,32,32,32,105,102,32,
-106,103,46,83,104,97,100,101,114,115,32,126,61,32,110,105,108,32,116,104,
-101,110,32,13,10,32,32,32,32,32,32,32,32,114,101,116,117,114,110,13,
-10,32,32,32,32,101,110,100,13,10,32,32,32,32,106,103,46,83,104,97,
-100,101,114,115,32,61,32,123,125,13,10,9,106,103,46,83,104,97,100,101,
-114,115,46,70,111,110,116,32,61,32,106,103,46,110,101,119,83,104,97,100,
-101,114,91,91,13,10,9,9,35,86,69,82,84,69,88,95,83,72,65,68,
-69,82,13,10,9,9,86,101,114,116,101,120,32,118,101,114,116,40,86,101,
+68,32,61,32,51,13,10,125,13,10,13,10,106,103,46,66,108,101,110,100,
+77,111,100,101,32,61,32,123,13,10,32,32,32,32,68,69,70,65,85,76,
+84,32,61,32,49,44,13,10,32,32,32,32,65,76,80,72,65,32,61,32,
+49,44,32,13,10,32,32,32,32,65,68,68,73,84,73,86,69,32,61,32,
+50,44,13,10,32,32,32,32,80,82,69,77,85,76,84,73,80,76,73,69,
+68,65,76,80,72,65,32,61,32,51,13,10,125,13,10,13,10,45,45,32,
+66,117,105,108,116,32,105,110,32,115,104,97,100,101,114,115,46,13,10,106,
+103,46,83,104,97,100,101,114,115,32,61,32,110,105,108,13,10,108,111,99,
+97,108,32,102,117,110,99,116,105,111,110,32,99,111,109,112,105,108,101,66,
+117,105,108,116,73,110,83,104,97,100,101,114,115,40,41,32,13,10,32,32,
+32,32,105,102,32,106,103,46,83,104,97,100,101,114,115,32,126,61,32,110,
+105,108,32,116,104,101,110,32,13,10,32,32,32,32,32,32,32,32,114,101,
+116,117,114,110,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,106,
+103,46,83,104,97,100,101,114,115,32,61,32,123,125,13,10,9,106,103,46,
+83,104,97,100,101,114,115,46,70,111,110,116,32,61,32,106,103,46,110,101,
+119,83,104,97,100,101,114,91,91,13,10,9,9,35,86,69,82,84,69,88,
+95,83,72,65,68,69,82,13,10,9,9,86,101,114,116,101,120,32,118,101,
+114,116,40,86,101,114,116,101,120,32,118,41,13,10,9,9,123,13,10,9,
+9,9,114,101,116,117,114,110,32,118,59,13,10,9,9,125,13,10,9,9,
+35,69,78,68,95,86,69,82,84,69,88,95,83,72,65,68,69,82,13,10,
+9,9,35,70,82,65,71,77,69,78,84,95,83,72,65,68,69,82,13,10,
+9,9,67,111,108,111,114,32,102,114,97,103,40,67,111,108,111,114,32,99,
+111,108,44,32,84,101,120,116,117,114,101,32,116,101,120,44,32,86,101,114,
+116,101,120,32,118,41,13,10,9,9,123,13,10,9,9,9,114,101,116,117,
+114,110,32,67,111,108,111,114,40,99,111,108,46,114,103,98,44,32,116,101,
+120,101,108,40,116,101,120,44,32,118,46,117,118,41,46,97,41,59,13,10,
+9,9,125,13,10,9,9,35,69,78,68,95,70,82,65,71,77,69,78,84,
+95,83,72,65,68,69,82,13,10,9,93,93,13,10,9,106,103,46,83,104,
+97,100,101,114,115,46,84,101,120,116,117,114,101,32,61,32,106,103,46,110,
+101,119,83,104,97,100,101,114,91,91,13,10,9,9,35,86,69,82,84,69,
+88,95,83,72,65,68,69,82,13,10,9,9,86,101,114,116,101,120,32,118,
+101,114,116,40,86,101,114,116,101,120,32,118,41,13,10,9,9,123,13,10,
+9,9,9,114,101,116,117,114,110,32,118,59,13,10,9,9,125,13,10,9,
+9,35,69,78,68,95,86,69,82,84,69,88,95,83,72,65,68,69,82,13,
+10,9,9,35,70,82,65,71,77,69,78,84,95,83,72,65,68,69,82,13,
+10,9,9,67,111,108,111,114,32,102,114,97,103,40,67,111,108,111,114,32,
+99,111,108,44,32,84,101,120,116,117,114,101,32,116,101,120,44,32,86,101,
+114,116,101,120,32,118,41,13,10,9,9,123,13,10,9,9,9,114,101,116,
+117,114,110,32,99,111,108,32,42,32,116,101,120,101,108,40,116,101,120,44,
+32,118,46,117,118,41,59,13,10,9,9,125,13,10,9,9,35,69,78,68,
+95,70,82,65,71,77,69,78,84,95,83,72,65,68,69,82,13,10,9,93,
+93,13,10,9,106,103,46,83,104,97,100,101,114,115,46,83,112,114,105,116,
+101,32,61,32,106,103,46,110,101,119,83,104,97,100,101,114,91,91,13,10,
+9,9,35,86,69,82,84,69,88,95,83,72,65,68,69,82,13,10,9,9,
+86,101,114,116,101,120,32,118,101,114,116,40,86,101,114,116,101,120,32,118,
+41,13,10,9,9,123,13,10,9,9,9,114,101,116,117,114,110,32,118,59,
+13,10,9,9,125,13,10,9,9,35,69,78,68,95,86,69,82,84,69,88,
+95,83,72,65,68,69,82,13,10,9,9,35,70,82,65,71,77,69,78,84,
+95,83,72,65,68,69,82,13,10,9,9,67,111,108,111,114,32,102,114,97,
+103,40,67,111,108,111,114,32,99,111,108,44,32,84,101,120,116,117,114,101,
+32,116,101,120,44,32,86,101,114,116,101,120,32,118,41,13,10,9,9,123,
+13,10,9,9,9,114,101,116,117,114,110,32,99,111,108,32,42,32,116,101,
+120,101,108,40,116,101,120,44,32,118,46,117,118,41,59,13,10,9,9,125,
+13,10,9,9,35,69,78,68,95,70,82,65,71,77,69,78,84,95,83,72,
+65,68,69,82,13,10,9,93,93,13,10,9,106,103,46,83,104,97,100,101,
+114,115,46,83,112,114,105,116,101,66,97,116,99,104,32,61,32,106,103,46,
+110,101,119,83,104,97,100,101,114,91,91,13,10,9,9,35,86,69,82,84,
+69,88,95,83,72,65,68,69,82,13,10,9,9,86,101,114,116,101,120,32,
+118,101,114,116,40,86,101,114,116,101,120,32,118,41,13,10,9,9,123,13,
+10,9,9,9,114,101,116,117,114,110,32,118,59,13,10,9,9,125,13,10,
+9,9,35,69,78,68,95,86,69,82,84,69,88,95,83,72,65,68,69,82,
+13,10,9,9,35,70,82,65,71,77,69,78,84,95,83,72,65,68,69,82,
+13,10,9,9,67,111,108,111,114,32,102,114,97,103,40,67,111,108,111,114,
+32,99,111,108,44,32,84,101,120,116,117,114,101,32,116,101,120,44,32,86,
+101,114,116,101,120,32,118,41,13,10,9,9,123,13,10,9,9,9,114,101,
+116,117,114,110,32,99,111,108,32,42,32,116,101,120,101,108,40,116,101,120,
+44,32,118,46,117,118,41,59,13,10,9,9,125,13,10,9,9,35,69,78,
+68,95,70,82,65,71,77,69,78,84,95,83,72,65,68,69,82,13,10,9,
+93,93,13,10,32,32,32,32,106,103,46,83,104,97,100,101,114,115,46,83,
+104,97,112,101,32,61,32,106,103,46,110,101,119,83,104,97,100,101,114,91,
+91,13,10,32,32,32,32,32,32,32,32,35,86,69,82,84,69,88,95,83,
+72,65,68,69,82,13,10,9,32,32,32,32,86,101,114,116,101,120,32,118,
+101,114,116,40,86,101,114,116,101,120,32,118,41,13,10,9,32,32,32,32,
+123,13,10,9,9,32,32,32,32,114,101,116,117,114,110,32,118,59,13,10,
+9,32,32,32,32,125,13,10,9,32,32,32,32,35,69,78,68,95,86,69,
+82,84,69,88,95,83,72,65,68,69,82,13,10,9,32,32,32,32,35,70,
+82,65,71,77,69,78,84,95,83,72,65,68,69,82,13,10,9,32,32,32,
+32,67,111,108,111,114,32,102,114,97,103,40,67,111,108,111,114,32,99,111,
+108,44,32,84,101,120,116,117,114,101,32,116,101,120,44,32,86,101,114,116,
+101,120,32,118,41,13,10,9,32,32,32,32,123,13,10,9,9,32,32,32,
+32,114,101,116,117,114,110,32,99,111,108,59,13,10,9,32,32,32,32,125,
+13,10,9,32,32,32,32,35,69,78,68,95,70,82,65,71,77,69,78,84,
+95,83,72,65,68,69,82,13,10,32,32,32,32,93,93,13,10,32,32,32,
+32,106,103,46,83,104,97,100,101,114,115,46,77,101,115,104,32,61,32,106,
+103,46,110,101,119,83,104,97,100,101,114,91,91,32,13,10,32,32,32,32,
+32,32,32,9,35,86,69,82,84,69,88,95,83,72,65,68,69,82,13,10,
+32,32,32,32,32,32,32,32,105,110,32,86,101,99,52,32,99,111,108,111,
+114,59,13,10,9,9,86,101,114,116,101,120,32,118,101,114,116,40,86,101,
114,116,101,120,32,118,41,13,10,9,9,123,13,10,9,9,9,114,101,116,
117,114,110,32,118,59,13,10,9,9,125,13,10,9,9,35,69,78,68,95,
86,69,82,84,69,88,95,83,72,65,68,69,82,13,10,9,9,35,70,82,
65,71,77,69,78,84,95,83,72,65,68,69,82,13,10,9,9,67,111,108,
111,114,32,102,114,97,103,40,67,111,108,111,114,32,99,111,108,44,32,84,
101,120,116,117,114,101,32,116,101,120,44,32,86,101,114,116,101,120,32,118,
-41,13,10,9,9,123,13,10,9,9,9,114,101,116,117,114,110,32,67,111,
-108,111,114,40,99,111,108,46,114,103,98,44,32,116,101,120,101,108,40,116,
-101,120,44,32,118,46,117,118,41,46,97,41,59,13,10,9,9,125,13,10,
-9,9,35,69,78,68,95,70,82,65,71,77,69,78,84,95,83,72,65,68,
-69,82,13,10,9,93,93,13,10,9,106,103,46,83,104,97,100,101,114,115,
-46,84,101,120,116,117,114,101,32,61,32,106,103,46,110,101,119,83,104,97,
-100,101,114,91,91,13,10,9,9,35,86,69,82,84,69,88,95,83,72,65,
-68,69,82,13,10,9,9,86,101,114,116,101,120,32,118,101,114,116,40,86,
-101,114,116,101,120,32,118,41,13,10,9,9,123,13,10,9,9,9,114,101,
-116,117,114,110,32,118,59,13,10,9,9,125,13,10,9,9,35,69,78,68,
-95,86,69,82,84,69,88,95,83,72,65,68,69,82,13,10,9,9,35,70,
-82,65,71,77,69,78,84,95,83,72,65,68,69,82,13,10,9,9,67,111,
-108,111,114,32,102,114,97,103,40,67,111,108,111,114,32,99,111,108,44,32,
-84,101,120,116,117,114,101,32,116,101,120,44,32,86,101,114,116,101,120,32,
-118,41,13,10,9,9,123,13,10,9,9,9,114,101,116,117,114,110,32,99,
-111,108,32,42,32,116,101,120,101,108,40,116,101,120,44,32,118,46,117,118,
-41,59,13,10,9,9,125,13,10,9,9,35,69,78,68,95,70,82,65,71,
-77,69,78,84,95,83,72,65,68,69,82,13,10,9,93,93,13,10,9,106,
-103,46,83,104,97,100,101,114,115,46,83,112,114,105,116,101,32,61,32,106,
-103,46,110,101,119,83,104,97,100,101,114,91,91,13,10,9,9,35,86,69,
-82,84,69,88,95,83,72,65,68,69,82,13,10,9,9,86,101,114,116,101,
-120,32,118,101,114,116,40,86,101,114,116,101,120,32,118,41,13,10,9,9,
-123,13,10,9,9,9,114,101,116,117,114,110,32,118,59,13,10,9,9,125,
-13,10,9,9,35,69,78,68,95,86,69,82,84,69,88,95,83,72,65,68,
-69,82,13,10,9,9,35,70,82,65,71,77,69,78,84,95,83,72,65,68,
-69,82,13,10,9,9,67,111,108,111,114,32,102,114,97,103,40,67,111,108,
-111,114,32,99,111,108,44,32,84,101,120,116,117,114,101,32,116,101,120,44,
-32,86,101,114,116,101,120,32,118,41,13,10,9,9,123,13,10,9,9,9,
-114,101,116,117,114,110,32,99,111,108,32,42,32,116,101,120,101,108,40,116,
-101,120,44,32,118,46,117,118,41,59,13,10,9,9,125,13,10,9,9,35,
-69,78,68,95,70,82,65,71,77,69,78,84,95,83,72,65,68,69,82,13,
-10,9,93,93,13,10,9,106,103,46,83,104,97,100,101,114,115,46,83,112,
-114,105,116,101,66,97,116,99,104,32,61,32,106,103,46,110,101,119,83,104,
-97,100,101,114,91,91,13,10,9,9,35,86,69,82,84,69,88,95,83,72,
-65,68,69,82,13,10,9,9,86,101,114,116,101,120,32,118,101,114,116,40,
-86,101,114,116,101,120,32,118,41,13,10,9,9,123,13,10,9,9,9,114,
-101,116,117,114,110,32,118,59,13,10,9,9,125,13,10,9,9,35,69,78,
-68,95,86,69,82,84,69,88,95,83,72,65,68,69,82,13,10,9,9,35,
-70,82,65,71,77,69,78,84,95,83,72,65,68,69,82,13,10,9,9,67,
-111,108,111,114,32,102,114,97,103,40,67,111,108,111,114,32,99,111,108,44,
-32,84,101,120,116,117,114,101,32,116,101,120,44,32,86,101,114,116,101,120,
-32,118,41,13,10,9,9,123,13,10,9,9,9,114,101,116,117,114,110,32,
-99,111,108,32,42,32,116,101,120,101,108,40,116,101,120,44,32,118,46,117,
-118,41,59,13,10,9,9,125,13,10,9,9,35,69,78,68,95,70,82,65,
-71,77,69,78,84,95,83,72,65,68,69,82,13,10,9,93,93,13,10,32,
-32,32,32,106,103,46,83,104,97,100,101,114,115,46,83,104,97,112,101,32,
-61,32,106,103,46,110,101,119,83,104,97,100,101,114,91,91,13,10,32,32,
-32,32,32,32,32,32,35,86,69,82,84,69,88,95,83,72,65,68,69,82,
-13,10,9,32,32,32,32,86,101,114,116,101,120,32,118,101,114,116,40,86,
-101,114,116,101,120,32,118,41,13,10,9,32,32,32,32,123,13,10,9,9,
-32,32,32,32,114,101,116,117,114,110,32,118,59,13,10,9,32,32,32,32,
-125,13,10,9,32,32,32,32,35,69,78,68,95,86,69,82,84,69,88,95,
-83,72,65,68,69,82,13,10,9,32,32,32,32,35,70,82,65,71,77,69,
-78,84,95,83,72,65,68,69,82,13,10,9,32,32,32,32,67,111,108,111,
-114,32,102,114,97,103,40,67,111,108,111,114,32,99,111,108,44,32,84,101,
-120,116,117,114,101,32,116,101,120,44,32,86,101,114,116,101,120,32,118,41,
-13,10,9,32,32,32,32,123,13,10,9,9,32,32,32,32,114,101,116,117,
-114,110,32,99,111,108,59,13,10,9,32,32,32,32,125,13,10,9,32,32,
-32,32,35,69,78,68,95,70,82,65,71,77,69,78,84,95,83,72,65,68,
-69,82,13,10,32,32,32,32,93,93,13,10,32,32,32,32,106,103,46,83,
-104,97,100,101,114,115,46,77,101,115,104,32,61,32,106,103,46,110,101,119,
-83,104,97,100,101,114,91,91,32,13,10,32,32,32,32,32,32,32,9,35,
-86,69,82,84,69,88,95,83,72,65,68,69,82,13,10,32,32,32,32,32,
-32,32,32,105,110,32,86,101,99,52,32,99,111,108,111,114,59,13,10,9,
-9,86,101,114,116,101,120,32,118,101,114,116,40,86,101,114,116,101,120,32,
-118,41,13,10,9,9,123,13,10,9,9,9,114,101,116,117,114,110,32,118,
-59,13,10,9,9,125,13,10,9,9,35,69,78,68,95,86,69,82,84,69,
-88,95,83,72,65,68,69,82,13,10,9,9,35,70,82,65,71,77,69,78,
-84,95,83,72,65,68,69,82,13,10,9,9,67,111,108,111,114,32,102,114,
-97,103,40,67,111,108,111,114,32,99,111,108,44,32,84,101,120,116,117,114,
-101,32,116,101,120,44,32,86,101,114,116,101,120,32,118,41,13,10,9,9,
-123,13,10,9,9,9,114,101,116,117,114,110,32,99,111,108,32,42,32,116,
-101,120,101,108,40,116,101,120,44,32,118,46,117,118,41,32,42,32,118,46,
-99,111,108,111,114,59,13,10,9,9,125,13,10,9,9,35,69,78,68,95,
-70,82,65,71,77,69,78,84,95,83,72,65,68,69,82,32,13,10,32,32,
-32,32,93,93,13,10,9,106,103,46,83,104,97,100,101,114,115,46,68,101,
-102,97,117,108,116,32,61,32,106,103,46,110,101,119,83,104,97,100,101,114,
-91,91,13,10,9,9,35,86,69,82,84,69,88,95,83,72,65,68,69,82,
-13,10,9,9,86,101,114,116,101,120,32,118,101,114,116,40,86,101,114,116,
-101,120,32,118,41,13,10,9,9,123,13,10,9,9,9,114,101,116,117,114,
-110,32,118,59,13,10,9,9,125,13,10,9,9,35,69,78,68,95,86,69,
-82,84,69,88,95,83,72,65,68,69,82,13,10,9,9,35,70,82,65,71,
-77,69,78,84,95,83,72,65,68,69,82,13,10,9,9,67,111,108,111,114,
-32,102,114,97,103,40,67,111,108,111,114,32,99,111,108,44,32,84,101,120,
-116,117,114,101,32,116,101,120,44,32,86,101,114,116,101,120,32,118,41,13,
-10,9,9,123,13,10,9,9,9,114,101,116,117,114,110,32,99,111,108,32,
-42,32,116,101,120,101,108,40,116,101,120,44,32,118,46,117,118,41,59,13,
-10,9,9,125,13,10,9,9,35,69,78,68,95,70,82,65,71,77,69,78,
-84,95,83,72,65,68,69,82,13,10,9,93,93,32,13,10,101,110,100,13,
-10,13,10,108,111,99,97,108,32,95,105,110,105,116,32,61,32,106,103,46,
-105,110,105,116,13,10,108,111,99,97,108,32,105,110,105,116,105,97,108,105,
-122,101,100,32,61,32,102,97,108,115,101,13,10,106,103,46,105,110,105,116,
-32,61,32,102,117,110,99,116,105,111,110,40,115,101,116,116,105,110,103,41,
-32,13,10,32,32,32,32,105,102,32,105,110,105,116,105,97,108,105,122,101,
-100,32,116,104,101,110,32,13,10,32,32,32,32,32,32,32,32,114,101,116,
-117,114,110,32,105,110,105,116,105,97,108,105,122,101,100,13,10,32,32,32,
-32,101,110,100,13,10,32,32,32,32,105,110,105,116,105,97,108,105,122,101,
-100,32,61,32,95,105,110,105,116,40,115,101,116,116,105,110,103,41,13,10,
-32,32,32,32,105,102,32,105,110,105,116,105,97,108,105,122,101,100,32,116,
-104,101,110,32,13,10,32,32,32,32,32,32,32,32,99,111,109,112,105,108,
-101,66,117,105,108,116,73,110,83,104,97,100,101,114,115,40,41,13,10,32,
-32,32,32,32,32,32,32,106,103,46,117,115,101,83,104,97,100,101,114,40,
-106,103,46,83,104,97,100,101,114,115,46,68,101,102,97,117,108,116,41,13,
-10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,101,116,117,114,110,
-32,105,110,105,116,105,97,108,105,122,101,100,32,13,10,101,110,100,13,10,
-13,10,106,103,46,117,110,117,115,101,83,104,97,100,101,114,32,61,32,102,
-117,110,99,116,105,111,110,40,41,13,10,32,32,32,32,106,103,46,117,115,
-101,83,104,97,100,101,114,40,106,103,46,83,104,97,100,101,114,115,46,68,
-101,102,97,117,108,116,41,13,10,101,110,100,13,10,13,10,45,45,32,82,
-101,115,101,116,32,97,108,108,32,97,116,116,114,105,98,117,116,101,115,32,
-116,111,32,100,101,102,97,117,108,116,32,118,97,108,117,101,46,13,10,106,
-103,46,114,101,115,101,116,32,61,32,102,117,110,99,116,105,111,110,40,41,
-13,10,32,32,32,32,106,103,46,115,101,116,67,111,108,111,114,40,50,53,
-53,44,32,50,53,53,44,32,50,53,53,44,32,50,53,53,41,13,10,32,
-32,32,32,106,103,46,115,101,116,67,108,101,97,114,67,111,108,111,114,40,
-48,44,32,48,44,32,48,44,32,50,53,53,41,13,10,32,32,32,32,106,
-103,46,99,108,101,97,114,40,41,13,10,32,32,32,32,106,103,46,117,110,
-115,101,116,70,111,110,116,40,41,13,10,32,32,32,32,106,103,46,117,110,
-117,115,101,83,104,97,100,101,114,40,41,13,10,101,110,100,13,10,13,10,
-106,103,46,103,101,116,83,116,97,116,115,83,116,114,32,61,32,102,117,110,
-99,116,105,111,110,40,41,32,13,10,32,32,32,32,108,111,99,97,108,32,
-115,116,97,116,115,32,61,32,106,105,110,46,103,114,97,112,104,105,99,115,
-46,103,101,116,83,116,97,116,115,40,41,13,10,9,108,111,99,97,108,32,
-115,116,114,32,61,32,34,100,114,97,119,32,99,97,108,108,58,32,34,32,
-46,46,32,115,116,97,116,115,46,100,114,97,119,67,97,108,108,115,32,46,
-46,32,39,92,110,39,13,10,9,9,9,32,46,46,32,34,99,97,110,118,
-97,115,32,115,119,105,116,99,104,101,115,58,32,34,32,46,46,32,115,116,
-97,116,115,46,99,97,110,118,97,115,83,119,105,116,99,104,101,115,32,46,
-46,32,39,92,110,39,13,10,9,9,9,32,46,46,32,34,115,104,97,100,
-101,114,32,115,119,105,116,99,104,101,115,58,32,34,32,46,46,32,115,116,
-97,116,115,46,115,104,97,100,101,114,83,119,105,116,99,104,101,115,32,46,
-46,32,39,92,110,39,13,10,9,9,9,32,46,46,32,34,102,111,110,116,
-32,115,119,105,116,99,104,101,115,58,32,34,32,46,46,32,115,116,97,116,
-115,46,102,111,110,116,83,119,105,116,99,104,101,115,32,46,46,32,39,92,
-110,39,13,10,9,9,9,32,46,46,32,34,116,101,120,116,117,114,101,115,
-58,32,34,32,46,46,32,115,116,97,116,115,46,116,101,120,116,117,114,101,
+41,13,10,9,9,123,13,10,9,9,9,114,101,116,117,114,110,32,99,111,
+108,32,42,32,116,101,120,101,108,40,116,101,120,44,32,118,46,117,118,41,
+32,42,32,118,46,99,111,108,111,114,59,13,10,9,9,125,13,10,9,9,
+35,69,78,68,95,70,82,65,71,77,69,78,84,95,83,72,65,68,69,82,
+32,13,10,32,32,32,32,93,93,13,10,9,106,103,46,83,104,97,100,101,
+114,115,46,68,101,102,97,117,108,116,32,61,32,106,103,46,110,101,119,83,
+104,97,100,101,114,91,91,13,10,9,9,35,86,69,82,84,69,88,95,83,
+72,65,68,69,82,13,10,9,9,86,101,114,116,101,120,32,118,101,114,116,
+40,86,101,114,116,101,120,32,118,41,13,10,9,9,123,13,10,9,9,9,
+114,101,116,117,114,110,32,118,59,13,10,9,9,125,13,10,9,9,35,69,
+78,68,95,86,69,82,84,69,88,95,83,72,65,68,69,82,13,10,9,9,
+35,70,82,65,71,77,69,78,84,95,83,72,65,68,69,82,13,10,9,9,
+67,111,108,111,114,32,102,114,97,103,40,67,111,108,111,114,32,99,111,108,
+44,32,84,101,120,116,117,114,101,32,116,101,120,44,32,86,101,114,116,101,
+120,32,118,41,13,10,9,9,123,13,10,9,9,9,114,101,116,117,114,110,
+32,99,111,108,32,42,32,116,101,120,101,108,40,116,101,120,44,32,118,46,
+117,118,41,59,13,10,9,9,125,13,10,9,9,35,69,78,68,95,70,82,
+65,71,77,69,78,84,95,83,72,65,68,69,82,13,10,9,93,93,32,13,
+10,101,110,100,13,10,13,10,108,111,99,97,108,32,95,105,110,105,116,32,
+61,32,106,103,46,105,110,105,116,13,10,108,111,99,97,108,32,105,110,105,
+116,105,97,108,105,122,101,100,32,61,32,102,97,108,115,101,13,10,106,103,
+46,105,110,105,116,32,61,32,102,117,110,99,116,105,111,110,40,115,101,116,
+116,105,110,103,41,32,13,10,32,32,32,32,105,102,32,105,110,105,116,105,
+97,108,105,122,101,100,32,116,104,101,110,32,13,10,32,32,32,32,32,32,
+32,32,114,101,116,117,114,110,32,105,110,105,116,105,97,108,105,122,101,100,
+13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,105,110,105,116,105,
+97,108,105,122,101,100,32,61,32,95,105,110,105,116,40,115,101,116,116,105,
+110,103,41,13,10,32,32,32,32,105,102,32,105,110,105,116,105,97,108,105,
+122,101,100,32,116,104,101,110,32,13,10,32,32,32,32,32,32,32,32,99,
+111,109,112,105,108,101,66,117,105,108,116,73,110,83,104,97,100,101,114,115,
+40,41,13,10,32,32,32,32,32,32,32,32,106,103,46,117,115,101,83,104,
+97,100,101,114,40,106,103,46,83,104,97,100,101,114,115,46,68,101,102,97,
+117,108,116,41,13,10,32,32,32,32,101,110,100,13,10,32,32,32,32,114,
+101,116,117,114,110,32,105,110,105,116,105,97,108,105,122,101,100,32,13,10,
+101,110,100,13,10,13,10,106,103,46,117,110,117,115,101,83,104,97,100,101,
+114,32,61,32,102,117,110,99,116,105,111,110,40,41,13,10,32,32,32,32,
+106,103,46,117,115,101,83,104,97,100,101,114,40,106,103,46,83,104,97,100,
+101,114,115,46,68,101,102,97,117,108,116,41,13,10,101,110,100,13,10,13,
+10,45,45,32,82,101,115,101,116,32,97,108,108,32,97,116,116,114,105,98,
+117,116,101,115,32,116,111,32,100,101,102,97,117,108,116,32,118,97,108,117,
+101,46,13,10,106,103,46,114,101,115,101,116,32,61,32,102,117,110,99,116,
+105,111,110,40,41,13,10,32,32,32,32,106,103,46,115,101,116,67,111,108,
+111,114,40,50,53,53,44,32,50,53,53,44,32,50,53,53,44,32,50,53,
+53,41,13,10,32,32,32,32,106,103,46,115,101,116,67,108,101,97,114,67,
+111,108,111,114,40,48,44,32,48,44,32,48,44,32,48,41,13,10,32,32,
+32,32,106,103,46,99,108,101,97,114,40,41,13,10,32,32,32,32,106,103,
+46,117,110,115,101,116,70,111,110,116,40,41,13,10,32,32,32,32,106,103,
+46,117,110,117,115,101,83,104,97,100,101,114,40,41,13,10,101,110,100,13,
+10,13,10,106,103,46,103,101,116,83,116,97,116,115,83,116,114,32,61,32,
+102,117,110,99,116,105,111,110,40,41,32,13,10,32,32,32,32,108,111,99,
+97,108,32,115,116,97,116,115,32,61,32,106,105,110,46,103,114,97,112,104,
+105,99,115,46,103,101,116,83,116,97,116,115,40,41,13,10,9,108,111,99,
+97,108,32,115,116,114,32,61,32,34,100,114,97,119,32,99,97,108,108,58,
+32,34,32,46,46,32,115,116,97,116,115,46,100,114,97,119,67,97,108,108,
115,32,46,46,32,39,92,110,39,13,10,9,9,9,32,46,46,32,34,99,
-97,110,118,97,115,101,115,58,32,34,32,46,46,32,115,116,97,116,115,46,
-99,97,110,118,97,115,101,115,32,46,46,32,39,92,110,39,13,10,9,9,
-9,32,46,46,32,34,102,111,110,116,115,58,32,34,32,46,46,32,115,116,
-97,116,115,46,102,111,110,116,115,32,32,32,32,13,10,32,32,32,32,114,
-101,116,117,114,110,32,115,116,114,13,10,101,110,100
+97,110,118,97,115,32,115,119,105,116,99,104,101,115,58,32,34,32,46,46,
+32,115,116,97,116,115,46,99,97,110,118,97,115,83,119,105,116,99,104,101,
+115,32,46,46,32,39,92,110,39,13,10,9,9,9,32,46,46,32,34,115,
+104,97,100,101,114,32,115,119,105,116,99,104,101,115,58,32,34,32,46,46,
+32,115,116,97,116,115,46,115,104,97,100,101,114,83,119,105,116,99,104,101,
+115,32,46,46,32,39,92,110,39,13,10,9,9,9,32,46,46,32,34,102,
+111,110,116,32,115,119,105,116,99,104,101,115,58,32,34,32,46,46,32,115,
+116,97,116,115,46,102,111,110,116,83,119,105,116,99,104,101,115,32,46,46,
+32,39,92,110,39,13,10,9,9,9,32,46,46,32,34,116,101,120,116,117,
+114,101,115,58,32,34,32,46,46,32,115,116,97,116,115,46,116,101,120,116,
+117,114,101,115,32,46,46,32,39,92,110,39,13,10,9,9,9,32,46,46,
+32,34,99,97,110,118,97,115,101,115,58,32,34,32,46,46,32,115,116,97,
+116,115,46,99,97,110,118,97,115,101,115,32,46,46,32,39,92,110,39,13,
+10,9,9,9,32,46,46,32,34,102,111,110,116,115,58,32,34,32,46,46,
+32,115,116,97,116,115,46,102,111,110,116,115,32,32,32,32,13,10,32,32,
+32,32,114,101,116,117,114,110,32,115,116,114,13,10,101,110,100
};
diff --git a/src/libjin-lua/scripts/physics/physics.lua.h b/src/libjin-lua/scripts/physics/physics.lua.h
index de7403a..95b5b14 100644
--- a/src/libjin-lua/scripts/physics/physics.lua.h
+++ b/src/libjin-lua/scripts/physics/physics.lua.h
@@ -4,1048 +4,1011 @@ static char physics_lua[] = {
121,115,105,99,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,107,105,107,
105,116,111,47,98,117,109,112,46,108,117,97,13,10,13,10,108,111,99,97,
-108,32,98,117,109,112,32,61,32,123,125,13,10,13,10,45,45,45,45,45,
+108,32,98,117,109,112,32,61,32,123,125,10,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,13,10,45,
-45,32,65,117,120,105,108,105,97,114,121,32,102,117,110,99,116,105,111,110,
-115,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,10,45,45,32,65,
+117,120,105,108,105,97,114,121,32,102,117,110,99,116,105,111,110,115,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,108,111,99,97,108,32,68,69,76,84,65,32,61,
-32,49,101,45,49,48,32,45,45,32,102,108,111,97,116,105,110,103,45,112,
-111,105,110,116,32,109,97,114,103,105,110,32,111,102,32,101,114,114,111,114,
-13,10,13,10,108,111,99,97,108,32,97,98,115,44,32,102,108,111,111,114,
-44,32,99,101,105,108,44,32,109,105,110,44,32,109,97,120,32,61,32,109,
-97,116,104,46,97,98,115,44,32,109,97,116,104,46,102,108,111,111,114,44,
-32,109,97,116,104,46,99,101,105,108,44,32,109,97,116,104,46,109,105,110,
-44,32,109,97,116,104,46,109,97,120,13,10,13,10,108,111,99,97,108,32,
-102,117,110,99,116,105,111,110,32,115,105,103,110,40,120,41,13,10,32,32,
-105,102,32,120,32,62,32,48,32,116,104,101,110,32,114,101,116,117,114,110,
-32,49,32,101,110,100,13,10,32,32,105,102,32,120,32,61,61,32,48,32,
-116,104,101,110,32,114,101,116,117,114,110,32,48,32,101,110,100,13,10,32,
-32,114,101,116,117,114,110,32,45,49,13,10,101,110,100,13,10,13,10,108,
-111,99,97,108,32,102,117,110,99,116,105,111,110,32,110,101,97,114,101,115,
-116,40,120,44,32,97,44,32,98,41,13,10,32,32,105,102,32,97,98,115,
-40,97,32,45,32,120,41,32,60,32,97,98,115,40,98,32,45,32,120,41,
-32,116,104,101,110,32,114,101,116,117,114,110,32,97,32,101,108,115,101,32,
-114,101,116,117,114,110,32,98,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,97,115,115,101,
-114,116,84,121,112,101,40,100,101,115,105,114,101,100,84,121,112,101,44,32,
-118,97,108,117,101,44,32,110,97,109,101,41,13,10,32,32,105,102,32,116,
+45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
+45,10,108,111,99,97,108,32,68,69,76,84,65,32,61,32,49,101,45,49,
+48,32,45,45,32,102,108,111,97,116,105,110,103,45,112,111,105,110,116,32,
+109,97,114,103,105,110,32,111,102,32,101,114,114,111,114,10,10,108,111,99,
+97,108,32,97,98,115,44,32,102,108,111,111,114,44,32,99,101,105,108,44,
+32,109,105,110,44,32,109,97,120,32,61,32,109,97,116,104,46,97,98,115,
+44,32,109,97,116,104,46,102,108,111,111,114,44,32,109,97,116,104,46,99,
+101,105,108,44,32,109,97,116,104,46,109,105,110,44,32,109,97,116,104,46,
+109,97,120,10,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,
+115,105,103,110,40,120,41,10,32,32,105,102,32,120,32,62,32,48,32,116,
+104,101,110,32,114,101,116,117,114,110,32,49,32,101,110,100,10,32,32,105,
+102,32,120,32,61,61,32,48,32,116,104,101,110,32,114,101,116,117,114,110,
+32,48,32,101,110,100,10,32,32,114,101,116,117,114,110,32,45,49,10,101,
+110,100,10,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,110,
+101,97,114,101,115,116,40,120,44,32,97,44,32,98,41,10,32,32,105,102,
+32,97,98,115,40,97,32,45,32,120,41,32,60,32,97,98,115,40,98,32,
+45,32,120,41,32,116,104,101,110,32,114,101,116,117,114,110,32,97,32,101,
+108,115,101,32,114,101,116,117,114,110,32,98,32,101,110,100,10,101,110,100,
+10,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,97,115,115,
+101,114,116,84,121,112,101,40,100,101,115,105,114,101,100,84,121,112,101,44,
+32,118,97,108,117,101,44,32,110,97,109,101,41,10,32,32,105,102,32,116,
121,112,101,40,118,97,108,117,101,41,32,126,61,32,100,101,115,105,114,101,
-100,84,121,112,101,32,116,104,101,110,13,10,32,32,32,32,101,114,114,111,
-114,40,110,97,109,101,32,46,46,32,39,32,109,117,115,116,32,98,101,32,
-97,32,39,32,46,46,32,100,101,115,105,114,101,100,84,121,112,101,32,46,
-46,32,39,44,32,98,117,116,32,119,97,115,32,39,32,46,46,32,116,111,
-115,116,114,105,110,103,40,118,97,108,117,101,41,32,46,46,32,39,40,97,
-32,39,32,46,46,32,116,121,112,101,40,118,97,108,117,101,41,32,46,46,
-32,39,41,39,41,13,10,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,97,115,115,101,
-114,116,73,115,80,111,115,105,116,105,118,101,78,117,109,98,101,114,40,118,
-97,108,117,101,44,32,110,97,109,101,41,13,10,32,32,105,102,32,116,121,
-112,101,40,118,97,108,117,101,41,32,126,61,32,39,110,117,109,98,101,114,
-39,32,111,114,32,118,97,108,117,101,32,60,61,32,48,32,116,104,101,110,
-13,10,32,32,32,32,101,114,114,111,114,40,110,97,109,101,32,46,46,32,
-39,32,109,117,115,116,32,98,101,32,97,32,112,111,115,105,116,105,118,101,
-32,105,110,116,101,103,101,114,44,32,98,117,116,32,119,97,115,32,39,32,
-46,46,32,116,111,115,116,114,105,110,103,40,118,97,108,117,101,41,32,46,
-46,32,39,40,39,32,46,46,32,116,121,112,101,40,118,97,108,117,101,41,
-32,46,46,32,39,41,39,41,13,10,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,97,
-115,115,101,114,116,73,115,82,101,99,116,40,120,44,121,44,119,44,104,41,
-13,10,32,32,97,115,115,101,114,116,84,121,112,101,40,39,110,117,109,98,
-101,114,39,44,32,120,44,32,39,120,39,41,13,10,32,32,97,115,115,101,
-114,116,84,121,112,101,40,39,110,117,109,98,101,114,39,44,32,121,44,32,
-39,121,39,41,13,10,32,32,97,115,115,101,114,116,73,115,80,111,115,105,
-116,105,118,101,78,117,109,98,101,114,40,119,44,32,39,119,39,41,13,10,
-32,32,97,115,115,101,114,116,73,115,80,111,115,105,116,105,118,101,78,117,
-109,98,101,114,40,104,44,32,39,104,39,41,13,10,101,110,100,13,10,13,
-10,108,111,99,97,108,32,100,101,102,97,117,108,116,70,105,108,116,101,114,
-32,61,32,102,117,110,99,116,105,111,110,40,41,13,10,32,32,114,101,116,
-117,114,110,32,39,115,108,105,100,101,39,13,10,101,110,100,13,10,13,10,
+100,84,121,112,101,32,116,104,101,110,10,32,32,32,32,101,114,114,111,114,
+40,110,97,109,101,32,46,46,32,39,32,109,117,115,116,32,98,101,32,97,
+32,39,32,46,46,32,100,101,115,105,114,101,100,84,121,112,101,32,46,46,
+32,39,44,32,98,117,116,32,119,97,115,32,39,32,46,46,32,116,111,115,
+116,114,105,110,103,40,118,97,108,117,101,41,32,46,46,32,39,40,97,32,
+39,32,46,46,32,116,121,112,101,40,118,97,108,117,101,41,32,46,46,32,
+39,41,39,41,10,32,32,101,110,100,10,101,110,100,10,10,108,111,99,97,
+108,32,102,117,110,99,116,105,111,110,32,97,115,115,101,114,116,73,115,80,
+111,115,105,116,105,118,101,78,117,109,98,101,114,40,118,97,108,117,101,44,
+32,110,97,109,101,41,10,32,32,105,102,32,116,121,112,101,40,118,97,108,
+117,101,41,32,126,61,32,39,110,117,109,98,101,114,39,32,111,114,32,118,
+97,108,117,101,32,60,61,32,48,32,116,104,101,110,10,32,32,32,32,101,
+114,114,111,114,40,110,97,109,101,32,46,46,32,39,32,109,117,115,116,32,
+98,101,32,97,32,112,111,115,105,116,105,118,101,32,105,110,116,101,103,101,
+114,44,32,98,117,116,32,119,97,115,32,39,32,46,46,32,116,111,115,116,
+114,105,110,103,40,118,97,108,117,101,41,32,46,46,32,39,40,39,32,46,
+46,32,116,121,112,101,40,118,97,108,117,101,41,32,46,46,32,39,41,39,
+41,10,32,32,101,110,100,10,101,110,100,10,10,108,111,99,97,108,32,102,
+117,110,99,116,105,111,110,32,97,115,115,101,114,116,73,115,82,101,99,116,
+40,120,44,121,44,119,44,104,41,10,32,32,97,115,115,101,114,116,84,121,
+112,101,40,39,110,117,109,98,101,114,39,44,32,120,44,32,39,120,39,41,
+10,32,32,97,115,115,101,114,116,84,121,112,101,40,39,110,117,109,98,101,
+114,39,44,32,121,44,32,39,121,39,41,10,32,32,97,115,115,101,114,116,
+73,115,80,111,115,105,116,105,118,101,78,117,109,98,101,114,40,119,44,32,
+39,119,39,41,10,32,32,97,115,115,101,114,116,73,115,80,111,115,105,116,
+105,118,101,78,117,109,98,101,114,40,104,44,32,39,104,39,41,10,101,110,
+100,10,10,108,111,99,97,108,32,100,101,102,97,117,108,116,70,105,108,116,
+101,114,32,61,32,102,117,110,99,116,105,111,110,40,41,10,32,32,114,101,
+116,117,114,110,32,39,115,108,105,100,101,39,10,101,110,100,10,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,13,10,45,45,32,82,101,99,116,97,110,103,108,101,32,102,117,110,
-99,116,105,111,110,115,13,10,45,45,45,45,45,45,45,45,45,45,45,45,
+10,45,45,32,82,101,99,116,97,110,103,108,101,32,102,117,110,99,116,105,
+111,110,115,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,13,10,13,10,108,111,99,97,108,32,
-102,117,110,99,116,105,111,110,32,114,101,99,116,95,103,101,116,78,101,97,
-114,101,115,116,67,111,114,110,101,114,40,120,44,121,44,119,44,104,44,32,
-112,120,44,32,112,121,41,13,10,32,32,114,101,116,117,114,110,32,110,101,
-97,114,101,115,116,40,112,120,44,32,120,44,32,120,43,119,41,44,32,110,
-101,97,114,101,115,116,40,112,121,44,32,121,44,32,121,43,104,41,13,10,
-101,110,100,13,10,13,10,45,45,32,84,104,105,115,32,105,115,32,97,32,
-103,101,110,101,114,97,108,105,122,101,100,32,105,109,112,108,101,109,101,110,
-116,97,116,105,111,110,32,111,102,32,116,104,101,32,108,105,97,110,103,45,
-98,97,114,115,107,121,32,97,108,103,111,114,105,116,104,109,44,32,119,104,
-105,99,104,32,97,108,115,111,32,114,101,116,117,114,110,115,13,10,45,45,
-32,116,104,101,32,110,111,114,109,97,108,115,32,111,102,32,116,104,101,32,
-115,105,100,101,115,32,119,104,101,114,101,32,116,104,101,32,115,101,103,109,
-101,110,116,32,105,110,116,101,114,115,101,99,116,115,46,13,10,45,45,32,
-82,101,116,117,114,110,115,32,110,105,108,32,105,102,32,116,104,101,32,115,
-101,103,109,101,110,116,32,110,101,118,101,114,32,116,111,117,99,104,101,115,
-32,116,104,101,32,114,101,99,116,13,10,45,45,32,78,111,116,105,99,101,
-32,116,104,97,116,32,110,111,114,109,97,108,115,32,97,114,101,32,111,110,
-108,121,32,103,117,97,114,97,110,116,101,101,100,32,116,111,32,98,101,32,
-97,99,99,117,114,97,116,101,32,119,104,101,110,32,105,110,105,116,105,97,
-108,108,121,32,116,105,49,44,32,116,105,50,32,61,61,32,45,109,97,116,
-104,46,104,117,103,101,44,32,109,97,116,104,46,104,117,103,101,13,10,108,
-111,99,97,108,32,102,117,110,99,116,105,111,110,32,114,101,99,116,95,103,
-101,116,83,101,103,109,101,110,116,73,110,116,101,114,115,101,99,116,105,111,
-110,73,110,100,105,99,101,115,40,120,44,121,44,119,44,104,44,32,120,49,
-44,121,49,44,120,50,44,121,50,44,32,116,105,49,44,116,105,50,41,13,
-10,32,32,116,105,49,44,32,116,105,50,32,61,32,116,105,49,32,111,114,
-32,48,44,32,116,105,50,32,111,114,32,49,13,10,32,32,108,111,99,97,
-108,32,100,120,44,32,100,121,32,61,32,120,50,45,120,49,44,32,121,50,
-45,121,49,13,10,32,32,108,111,99,97,108,32,110,120,44,32,110,121,13,
-10,32,32,108,111,99,97,108,32,110,120,49,44,32,110,121,49,44,32,110,
-120,50,44,32,110,121,50,32,61,32,48,44,48,44,48,44,48,13,10,32,
-32,108,111,99,97,108,32,112,44,32,113,44,32,114,13,10,13,10,32,32,
-102,111,114,32,115,105,100,101,32,61,32,49,44,52,32,100,111,13,10,32,
-32,32,32,105,102,32,32,32,32,32,115,105,100,101,32,61,61,32,49,32,
-116,104,101,110,32,110,120,44,110,121,44,112,44,113,32,61,32,45,49,44,
-32,32,48,44,32,45,100,120,44,32,120,49,32,45,32,120,32,32,32,32,
-32,45,45,32,108,101,102,116,13,10,32,32,32,32,101,108,115,101,105,102,
-32,115,105,100,101,32,61,61,32,50,32,116,104,101,110,32,110,120,44,110,
-121,44,112,44,113,32,61,32,32,49,44,32,32,48,44,32,32,100,120,44,
-32,120,32,43,32,119,32,45,32,120,49,32,45,45,32,114,105,103,104,116,
-13,10,32,32,32,32,101,108,115,101,105,102,32,115,105,100,101,32,61,61,
-32,51,32,116,104,101,110,32,110,120,44,110,121,44,112,44,113,32,61,32,
-32,48,44,32,45,49,44,32,45,100,121,44,32,121,49,32,45,32,121,32,
-32,32,32,32,45,45,32,116,111,112,13,10,32,32,32,32,101,108,115,101,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,110,120,
-44,110,121,44,112,44,113,32,61,32,32,48,44,32,32,49,44,32,32,100,
-121,44,32,121,32,43,32,104,32,45,32,121,49,32,45,45,32,98,111,116,
-116,111,109,13,10,32,32,32,32,101,110,100,13,10,13,10,32,32,32,32,
-105,102,32,112,32,61,61,32,48,32,116,104,101,110,13,10,32,32,32,32,
-32,32,105,102,32,113,32,60,61,32,48,32,116,104,101,110,32,114,101,116,
-117,114,110,32,110,105,108,32,101,110,100,13,10,32,32,32,32,101,108,115,
-101,13,10,32,32,32,32,32,32,114,32,61,32,113,32,47,32,112,13,10,
-32,32,32,32,32,32,105,102,32,112,32,60,32,48,32,116,104,101,110,13,
-10,32,32,32,32,32,32,32,32,105,102,32,32,32,32,32,114,32,62,32,
-116,105,50,32,116,104,101,110,32,114,101,116,117,114,110,32,110,105,108,13,
-10,32,32,32,32,32,32,32,32,101,108,115,101,105,102,32,114,32,62,32,
-116,105,49,32,116,104,101,110,32,116,105,49,44,110,120,49,44,110,121,49,
-32,61,32,114,44,110,120,44,110,121,13,10,32,32,32,32,32,32,32,32,
-101,110,100,13,10,32,32,32,32,32,32,101,108,115,101,32,45,45,32,112,
-32,62,32,48,13,10,32,32,32,32,32,32,32,32,105,102,32,32,32,32,
-32,114,32,60,32,116,105,49,32,116,104,101,110,32,114,101,116,117,114,110,
-32,110,105,108,13,10,32,32,32,32,32,32,32,32,101,108,115,101,105,102,
-32,114,32,60,32,116,105,50,32,116,104,101,110,32,116,105,50,44,110,120,
-50,44,110,121,50,32,61,32,114,44,110,120,44,110,121,13,10,32,32,32,
-32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,101,110,100,13,
-10,32,32,32,32,101,110,100,13,10,32,32,101,110,100,13,10,13,10,32,
-32,114,101,116,117,114,110,32,116,105,49,44,116,105,50,44,32,110,120,49,
-44,110,121,49,44,32,110,120,50,44,110,121,50,13,10,101,110,100,13,10,
-13,10,45,45,32,67,97,108,99,117,108,97,116,101,115,32,116,104,101,32,
-109,105,110,107,111,119,115,107,121,32,100,105,102,102,101,114,101,110,99,101,
-32,98,101,116,119,101,101,110,32,50,32,114,101,99,116,115,44,32,119,104,
-105,99,104,32,105,115,32,97,110,111,116,104,101,114,32,114,101,99,116,13,
-10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,114,101,99,116,
-95,103,101,116,68,105,102,102,40,120,49,44,121,49,44,119,49,44,104,49,
-44,32,120,50,44,121,50,44,119,50,44,104,50,41,13,10,32,32,114,101,
-116,117,114,110,32,120,50,32,45,32,120,49,32,45,32,119,49,44,13,10,
-32,32,32,32,32,32,32,32,32,121,50,32,45,32,121,49,32,45,32,104,
-49,44,13,10,32,32,32,32,32,32,32,32,32,119,49,32,43,32,119,50,
-44,13,10,32,32,32,32,32,32,32,32,32,104,49,32,43,32,104,50,13,
-10,101,110,100,13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,
-111,110,32,114,101,99,116,95,99,111,110,116,97,105,110,115,80,111,105,110,
-116,40,120,44,121,44,119,44,104,44,32,112,120,44,112,121,41,13,10,32,
-32,114,101,116,117,114,110,32,112,120,32,45,32,120,32,62,32,68,69,76,
-84,65,32,32,32,32,32,32,97,110,100,32,112,121,32,45,32,121,32,62,
-32,68,69,76,84,65,32,97,110,100,13,10,32,32,32,32,32,32,32,32,
-32,120,32,43,32,119,32,45,32,112,120,32,62,32,68,69,76,84,65,32,
-32,97,110,100,32,121,32,43,32,104,32,45,32,112,121,32,62,32,68,69,
-76,84,65,13,10,101,110,100,13,10,13,10,108,111,99,97,108,32,102,117,
+45,45,45,45,45,45,10,10,108,111,99,97,108,32,102,117,110,99,116,105,
+111,110,32,114,101,99,116,95,103,101,116,78,101,97,114,101,115,116,67,111,
+114,110,101,114,40,120,44,121,44,119,44,104,44,32,112,120,44,32,112,121,
+41,10,32,32,114,101,116,117,114,110,32,110,101,97,114,101,115,116,40,112,
+120,44,32,120,44,32,120,43,119,41,44,32,110,101,97,114,101,115,116,40,
+112,121,44,32,121,44,32,121,43,104,41,10,101,110,100,10,10,45,45,32,
+84,104,105,115,32,105,115,32,97,32,103,101,110,101,114,97,108,105,122,101,
+100,32,105,109,112,108,101,109,101,110,116,97,116,105,111,110,32,111,102,32,
+116,104,101,32,108,105,97,110,103,45,98,97,114,115,107,121,32,97,108,103,
+111,114,105,116,104,109,44,32,119,104,105,99,104,32,97,108,115,111,32,114,
+101,116,117,114,110,115,10,45,45,32,116,104,101,32,110,111,114,109,97,108,
+115,32,111,102,32,116,104,101,32,115,105,100,101,115,32,119,104,101,114,101,
+32,116,104,101,32,115,101,103,109,101,110,116,32,105,110,116,101,114,115,101,
+99,116,115,46,10,45,45,32,82,101,116,117,114,110,115,32,110,105,108,32,
+105,102,32,116,104,101,32,115,101,103,109,101,110,116,32,110,101,118,101,114,
+32,116,111,117,99,104,101,115,32,116,104,101,32,114,101,99,116,10,45,45,
+32,78,111,116,105,99,101,32,116,104,97,116,32,110,111,114,109,97,108,115,
+32,97,114,101,32,111,110,108,121,32,103,117,97,114,97,110,116,101,101,100,
+32,116,111,32,98,101,32,97,99,99,117,114,97,116,101,32,119,104,101,110,
+32,105,110,105,116,105,97,108,108,121,32,116,105,49,44,32,116,105,50,32,
+61,61,32,45,109,97,116,104,46,104,117,103,101,44,32,109,97,116,104,46,
+104,117,103,101,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,
+114,101,99,116,95,103,101,116,83,101,103,109,101,110,116,73,110,116,101,114,
+115,101,99,116,105,111,110,73,110,100,105,99,101,115,40,120,44,121,44,119,
+44,104,44,32,120,49,44,121,49,44,120,50,44,121,50,44,32,116,105,49,
+44,116,105,50,41,10,32,32,116,105,49,44,32,116,105,50,32,61,32,116,
+105,49,32,111,114,32,48,44,32,116,105,50,32,111,114,32,49,10,32,32,
+108,111,99,97,108,32,100,120,44,32,100,121,32,61,32,120,50,45,120,49,
+44,32,121,50,45,121,49,10,32,32,108,111,99,97,108,32,110,120,44,32,
+110,121,10,32,32,108,111,99,97,108,32,110,120,49,44,32,110,121,49,44,
+32,110,120,50,44,32,110,121,50,32,61,32,48,44,48,44,48,44,48,10,
+32,32,108,111,99,97,108,32,112,44,32,113,44,32,114,10,10,32,32,102,
+111,114,32,115,105,100,101,32,61,32,49,44,52,32,100,111,10,32,32,32,
+32,105,102,32,32,32,32,32,115,105,100,101,32,61,61,32,49,32,116,104,
+101,110,32,110,120,44,110,121,44,112,44,113,32,61,32,45,49,44,32,32,
+48,44,32,45,100,120,44,32,120,49,32,45,32,120,32,32,32,32,32,45,
+45,32,108,101,102,116,10,32,32,32,32,101,108,115,101,105,102,32,115,105,
+100,101,32,61,61,32,50,32,116,104,101,110,32,110,120,44,110,121,44,112,
+44,113,32,61,32,32,49,44,32,32,48,44,32,32,100,120,44,32,120,32,
+43,32,119,32,45,32,120,49,32,45,45,32,114,105,103,104,116,10,32,32,
+32,32,101,108,115,101,105,102,32,115,105,100,101,32,61,61,32,51,32,116,
+104,101,110,32,110,120,44,110,121,44,112,44,113,32,61,32,32,48,44,32,
+45,49,44,32,45,100,121,44,32,121,49,32,45,32,121,32,32,32,32,32,
+45,45,32,116,111,112,10,32,32,32,32,101,108,115,101,32,32,32,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,110,120,44,110,121,44,112,
+44,113,32,61,32,32,48,44,32,32,49,44,32,32,100,121,44,32,121,32,
+43,32,104,32,45,32,121,49,32,45,45,32,98,111,116,116,111,109,10,32,
+32,32,32,101,110,100,10,10,32,32,32,32,105,102,32,112,32,61,61,32,
+48,32,116,104,101,110,10,32,32,32,32,32,32,105,102,32,113,32,60,61,
+32,48,32,116,104,101,110,32,114,101,116,117,114,110,32,110,105,108,32,101,
+110,100,10,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,114,32,
+61,32,113,32,47,32,112,10,32,32,32,32,32,32,105,102,32,112,32,60,
+32,48,32,116,104,101,110,10,32,32,32,32,32,32,32,32,105,102,32,32,
+32,32,32,114,32,62,32,116,105,50,32,116,104,101,110,32,114,101,116,117,
+114,110,32,110,105,108,10,32,32,32,32,32,32,32,32,101,108,115,101,105,
+102,32,114,32,62,32,116,105,49,32,116,104,101,110,32,116,105,49,44,110,
+120,49,44,110,121,49,32,61,32,114,44,110,120,44,110,121,10,32,32,32,
+32,32,32,32,32,101,110,100,10,32,32,32,32,32,32,101,108,115,101,32,
+45,45,32,112,32,62,32,48,10,32,32,32,32,32,32,32,32,105,102,32,
+32,32,32,32,114,32,60,32,116,105,49,32,116,104,101,110,32,114,101,116,
+117,114,110,32,110,105,108,10,32,32,32,32,32,32,32,32,101,108,115,101,
+105,102,32,114,32,60,32,116,105,50,32,116,104,101,110,32,116,105,50,44,
+110,120,50,44,110,121,50,32,61,32,114,44,110,120,44,110,121,10,32,32,
+32,32,32,32,32,32,101,110,100,10,32,32,32,32,32,32,101,110,100,10,
+32,32,32,32,101,110,100,10,32,32,101,110,100,10,10,32,32,114,101,116,
+117,114,110,32,116,105,49,44,116,105,50,44,32,110,120,49,44,110,121,49,
+44,32,110,120,50,44,110,121,50,10,101,110,100,10,10,45,45,32,67,97,
+108,99,117,108,97,116,101,115,32,116,104,101,32,109,105,110,107,111,119,115,
+107,121,32,100,105,102,102,101,114,101,110,99,101,32,98,101,116,119,101,101,
+110,32,50,32,114,101,99,116,115,44,32,119,104,105,99,104,32,105,115,32,
+97,110,111,116,104,101,114,32,114,101,99,116,10,108,111,99,97,108,32,102,
+117,110,99,116,105,111,110,32,114,101,99,116,95,103,101,116,68,105,102,102,
+40,120,49,44,121,49,44,119,49,44,104,49,44,32,120,50,44,121,50,44,
+119,50,44,104,50,41,10,32,32,114,101,116,117,114,110,32,120,50,32,45,
+32,120,49,32,45,32,119,49,44,10,32,32,32,32,32,32,32,32,32,121,
+50,32,45,32,121,49,32,45,32,104,49,44,10,32,32,32,32,32,32,32,
+32,32,119,49,32,43,32,119,50,44,10,32,32,32,32,32,32,32,32,32,
+104,49,32,43,32,104,50,10,101,110,100,10,10,108,111,99,97,108,32,102,
+117,110,99,116,105,111,110,32,114,101,99,116,95,99,111,110,116,97,105,110,
+115,80,111,105,110,116,40,120,44,121,44,119,44,104,44,32,112,120,44,112,
+121,41,10,32,32,114,101,116,117,114,110,32,112,120,32,45,32,120,32,62,
+32,68,69,76,84,65,32,32,32,32,32,32,97,110,100,32,112,121,32,45,
+32,121,32,62,32,68,69,76,84,65,32,97,110,100,10,32,32,32,32,32,
+32,32,32,32,120,32,43,32,119,32,45,32,112,120,32,62,32,68,69,76,
+84,65,32,32,97,110,100,32,121,32,43,32,104,32,45,32,112,121,32,62,
+32,68,69,76,84,65,10,101,110,100,10,10,108,111,99,97,108,32,102,117,
110,99,116,105,111,110,32,114,101,99,116,95,105,115,73,110,116,101,114,115,
101,99,116,105,110,103,40,120,49,44,121,49,44,119,49,44,104,49,44,32,
-120,50,44,121,50,44,119,50,44,104,50,41,13,10,32,32,114,101,116,117,
-114,110,32,120,49,32,60,32,120,50,43,119,50,32,97,110,100,32,120,50,
-32,60,32,120,49,43,119,49,32,97,110,100,13,10,32,32,32,32,32,32,
-32,32,32,121,49,32,60,32,121,50,43,104,50,32,97,110,100,32,121,50,
-32,60,32,121,49,43,104,49,13,10,101,110,100,13,10,13,10,108,111,99,
-97,108,32,102,117,110,99,116,105,111,110,32,114,101,99,116,95,103,101,116,
-83,113,117,97,114,101,68,105,115,116,97,110,99,101,40,120,49,44,121,49,
+120,50,44,121,50,44,119,50,44,104,50,41,10,32,32,114,101,116,117,114,
+110,32,120,49,32,60,32,120,50,43,119,50,32,97,110,100,32,120,50,32,
+60,32,120,49,43,119,49,32,97,110,100,10,32,32,32,32,32,32,32,32,
+32,121,49,32,60,32,121,50,43,104,50,32,97,110,100,32,121,50,32,60,
+32,121,49,43,104,49,10,101,110,100,10,10,108,111,99,97,108,32,102,117,
+110,99,116,105,111,110,32,114,101,99,116,95,103,101,116,83,113,117,97,114,
+101,68,105,115,116,97,110,99,101,40,120,49,44,121,49,44,119,49,44,104,
+49,44,32,120,50,44,121,50,44,119,50,44,104,50,41,10,32,32,108,111,
+99,97,108,32,100,120,32,61,32,120,49,32,45,32,120,50,32,43,32,40,
+119,49,32,45,32,119,50,41,47,50,10,32,32,108,111,99,97,108,32,100,
+121,32,61,32,121,49,32,45,32,121,50,32,43,32,40,104,49,32,45,32,
+104,50,41,47,50,10,32,32,114,101,116,117,114,110,32,100,120,42,100,120,
+32,43,32,100,121,42,100,121,10,101,110,100,10,10,108,111,99,97,108,32,
+102,117,110,99,116,105,111,110,32,114,101,99,116,95,100,101,116,101,99,116,
+67,111,108,108,105,115,105,111,110,40,120,49,44,121,49,44,119,49,44,104,
+49,44,32,120,50,44,121,50,44,119,50,44,104,50,44,32,103,111,97,108,
+88,44,32,103,111,97,108,89,41,10,32,32,103,111,97,108,88,32,61,32,
+103,111,97,108,88,32,111,114,32,120,49,10,32,32,103,111,97,108,89,32,
+61,32,103,111,97,108,89,32,111,114,32,121,49,10,10,32,32,108,111,99,
+97,108,32,100,120,44,32,100,121,32,32,32,32,32,32,61,32,103,111,97,
+108,88,32,45,32,120,49,44,32,103,111,97,108,89,32,45,32,121,49,10,
+32,32,108,111,99,97,108,32,120,44,121,44,119,44,104,32,32,32,32,32,
+61,32,114,101,99,116,95,103,101,116,68,105,102,102,40,120,49,44,121,49,
44,119,49,44,104,49,44,32,120,50,44,121,50,44,119,50,44,104,50,41,
-13,10,32,32,108,111,99,97,108,32,100,120,32,61,32,120,49,32,45,32,
-120,50,32,43,32,40,119,49,32,45,32,119,50,41,47,50,13,10,32,32,
-108,111,99,97,108,32,100,121,32,61,32,121,49,32,45,32,121,50,32,43,
-32,40,104,49,32,45,32,104,50,41,47,50,13,10,32,32,114,101,116,117,
-114,110,32,100,120,42,100,120,32,43,32,100,121,42,100,121,13,10,101,110,
-100,13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,
-114,101,99,116,95,100,101,116,101,99,116,67,111,108,108,105,115,105,111,110,
-40,120,49,44,121,49,44,119,49,44,104,49,44,32,120,50,44,121,50,44,
-119,50,44,104,50,44,32,103,111,97,108,88,44,32,103,111,97,108,89,41,
-13,10,32,32,103,111,97,108,88,32,61,32,103,111,97,108,88,32,111,114,
-32,120,49,13,10,32,32,103,111,97,108,89,32,61,32,103,111,97,108,89,
-32,111,114,32,121,49,13,10,13,10,32,32,108,111,99,97,108,32,100,120,
-44,32,100,121,32,32,32,32,32,32,61,32,103,111,97,108,88,32,45,32,
-120,49,44,32,103,111,97,108,89,32,45,32,121,49,13,10,32,32,108,111,
-99,97,108,32,120,44,121,44,119,44,104,32,32,32,32,32,61,32,114,101,
-99,116,95,103,101,116,68,105,102,102,40,120,49,44,121,49,44,119,49,44,
-104,49,44,32,120,50,44,121,50,44,119,50,44,104,50,41,13,10,13,10,
-32,32,108,111,99,97,108,32,111,118,101,114,108,97,112,115,44,32,116,105,
-44,32,110,120,44,32,110,121,13,10,13,10,32,32,105,102,32,114,101,99,
+10,10,32,32,108,111,99,97,108,32,111,118,101,114,108,97,112,115,44,32,
+116,105,44,32,110,120,44,32,110,121,10,10,32,32,105,102,32,114,101,99,
116,95,99,111,110,116,97,105,110,115,80,111,105,110,116,40,120,44,121,44,
119,44,104,44,32,48,44,48,41,32,116,104,101,110,32,45,45,32,105,116,
101,109,32,119,97,115,32,105,110,116,101,114,115,101,99,116,105,110,103,32,
-111,116,104,101,114,13,10,32,32,32,32,108,111,99,97,108,32,112,120,44,
-32,112,121,32,32,32,32,61,32,114,101,99,116,95,103,101,116,78,101,97,
-114,101,115,116,67,111,114,110,101,114,40,120,44,121,44,119,44,104,44,32,
-48,44,32,48,41,13,10,32,32,32,32,108,111,99,97,108,32,119,105,44,
-32,104,105,32,32,32,32,61,32,109,105,110,40,119,49,44,32,97,98,115,
-40,112,120,41,41,44,32,109,105,110,40,104,49,44,32,97,98,115,40,112,
-121,41,41,32,45,45,32,97,114,101,97,32,111,102,32,105,110,116,101,114,
-115,101,99,116,105,111,110,13,10,32,32,32,32,116,105,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,61,32,45,119,105,32,42,32,104,105,32,
-45,45,32,116,105,32,105,115,32,116,104,101,32,110,101,103,97,116,105,118,
-101,32,97,114,101,97,32,111,102,32,105,110,116,101,114,115,101,99,116,105,
-111,110,13,10,32,32,32,32,111,118,101,114,108,97,112,115,32,61,32,116,
-114,117,101,13,10,32,32,101,108,115,101,13,10,32,32,32,32,108,111,99,
-97,108,32,116,105,49,44,116,105,50,44,110,120,49,44,110,121,49,32,61,
-32,114,101,99,116,95,103,101,116,83,101,103,109,101,110,116,73,110,116,101,
-114,115,101,99,116,105,111,110,73,110,100,105,99,101,115,40,120,44,121,44,
-119,44,104,44,32,48,44,48,44,100,120,44,100,121,44,32,45,109,97,116,
-104,46,104,117,103,101,44,32,109,97,116,104,46,104,117,103,101,41,13,10,
-13,10,32,32,32,32,45,45,32,105,116,101,109,32,116,117,110,110,101,108,
-115,32,105,110,116,111,32,111,116,104,101,114,13,10,32,32,32,32,105,102,
-32,116,105,49,13,10,32,32,32,32,97,110,100,32,116,105,49,32,60,32,
-49,13,10,32,32,32,32,97,110,100,32,40,97,98,115,40,116,105,49,32,
-45,32,116,105,50,41,32,62,61,32,68,69,76,84,65,41,32,45,45,32,
-115,112,101,99,105,97,108,32,99,97,115,101,32,102,111,114,32,114,101,99,
-116,32,103,111,105,110,103,32,116,104,114,111,117,103,104,32,97,110,111,116,
-104,101,114,32,114,101,99,116,39,115,32,99,111,114,110,101,114,13,10,32,
-32,32,32,97,110,100,32,40,48,32,60,32,116,105,49,32,43,32,68,69,
-76,84,65,13,10,32,32,32,32,32,32,111,114,32,48,32,61,61,32,116,
-105,49,32,97,110,100,32,116,105,50,32,62,32,48,41,13,10,32,32,32,
-32,116,104,101,110,13,10,32,32,32,32,32,32,116,105,44,32,110,120,44,
-32,110,121,32,61,32,116,105,49,44,32,110,120,49,44,32,110,121,49,13,
-10,32,32,32,32,32,32,111,118,101,114,108,97,112,115,32,32,32,61,32,
-102,97,108,115,101,13,10,32,32,32,32,101,110,100,13,10,32,32,101,110,
-100,13,10,13,10,32,32,105,102,32,110,111,116,32,116,105,32,116,104,101,
-110,32,114,101,116,117,114,110,32,101,110,100,13,10,13,10,32,32,108,111,
-99,97,108,32,116,120,44,32,116,121,13,10,13,10,32,32,105,102,32,111,
-118,101,114,108,97,112,115,32,116,104,101,110,13,10,32,32,32,32,105,102,
-32,100,120,32,61,61,32,48,32,97,110,100,32,100,121,32,61,61,32,48,
-32,116,104,101,110,13,10,32,32,32,32,32,32,45,45,32,105,110,116,101,
-114,115,101,99,116,105,110,103,32,97,110,100,32,110,111,116,32,109,111,118,
-105,110,103,32,45,32,117,115,101,32,109,105,110,105,109,117,109,32,100,105,
-115,112,108,97,99,101,109,101,110,116,32,118,101,99,116,111,114,13,10,32,
-32,32,32,32,32,108,111,99,97,108,32,112,120,44,32,112,121,32,61,32,
-114,101,99,116,95,103,101,116,78,101,97,114,101,115,116,67,111,114,110,101,
-114,40,120,44,121,44,119,44,104,44,32,48,44,48,41,13,10,32,32,32,
-32,32,32,105,102,32,97,98,115,40,112,120,41,32,60,32,97,98,115,40,
-112,121,41,32,116,104,101,110,32,112,121,32,61,32,48,32,101,108,115,101,
-32,112,120,32,61,32,48,32,101,110,100,13,10,32,32,32,32,32,32,110,
-120,44,32,110,121,32,61,32,115,105,103,110,40,112,120,41,44,32,115,105,
-103,110,40,112,121,41,13,10,32,32,32,32,32,32,116,120,44,32,116,121,
-32,61,32,120,49,32,43,32,112,120,44,32,121,49,32,43,32,112,121,13,
-10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,45,45,32,
-105,110,116,101,114,115,101,99,116,105,110,103,32,97,110,100,32,109,111,118,
-105,110,103,32,45,32,109,111,118,101,32,105,110,32,116,104,101,32,111,112,
-112,111,115,105,116,101,32,100,105,114,101,99,116,105,111,110,13,10,32,32,
-32,32,32,32,108,111,99,97,108,32,116,105,49,44,32,95,13,10,32,32,
-32,32,32,32,116,105,49,44,95,44,110,120,44,110,121,32,61,32,114,101,
-99,116,95,103,101,116,83,101,103,109,101,110,116,73,110,116,101,114,115,101,
-99,116,105,111,110,73,110,100,105,99,101,115,40,120,44,121,44,119,44,104,
-44,32,48,44,48,44,100,120,44,100,121,44,32,45,109,97,116,104,46,104,
-117,103,101,44,32,49,41,13,10,32,32,32,32,32,32,105,102,32,110,111,
-116,32,116,105,49,32,116,104,101,110,32,114,101,116,117,114,110,32,101,110,
-100,13,10,32,32,32,32,32,32,116,120,44,32,116,121,32,61,32,120,49,
-32,43,32,100,120,32,42,32,116,105,49,44,32,121,49,32,43,32,100,121,
-32,42,32,116,105,49,13,10,32,32,32,32,101,110,100,13,10,32,32,101,
-108,115,101,32,45,45,32,116,117,110,110,101,108,13,10,32,32,32,32,116,
-120,44,32,116,121,32,61,32,120,49,32,43,32,100,120,32,42,32,116,105,
-44,32,121,49,32,43,32,100,121,32,42,32,116,105,13,10,32,32,101,110,
-100,13,10,13,10,32,32,114,101,116,117,114,110,32,123,13,10,32,32,32,
-32,111,118,101,114,108,97,112,115,32,32,61,32,111,118,101,114,108,97,112,
-115,44,13,10,32,32,32,32,116,105,32,32,32,32,32,32,32,32,61,32,
-116,105,44,13,10,32,32,32,32,109,111,118,101,32,32,32,32,32,32,61,
-32,123,120,32,61,32,100,120,44,32,121,32,61,32,100,121,125,44,13,10,
-32,32,32,32,110,111,114,109,97,108,32,32,32,32,61,32,123,120,32,61,
-32,110,120,44,32,121,32,61,32,110,121,125,44,13,10,32,32,32,32,116,
-111,117,99,104,32,32,32,32,32,61,32,123,120,32,61,32,116,120,44,32,
-121,32,61,32,116,121,125,44,13,10,32,32,32,32,105,116,101,109,82,101,
-99,116,32,32,61,32,123,120,32,61,32,120,49,44,32,121,32,61,32,121,
-49,44,32,119,32,61,32,119,49,44,32,104,32,61,32,104,49,125,44,13,
-10,32,32,32,32,111,116,104,101,114,82,101,99,116,32,61,32,123,120,32,
-61,32,120,50,44,32,121,32,61,32,121,50,44,32,119,32,61,32,119,50,
-44,32,104,32,61,32,104,50,125,13,10,32,32,125,13,10,101,110,100,13,
-10,13,10,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,
+111,116,104,101,114,10,32,32,32,32,108,111,99,97,108,32,112,120,44,32,
+112,121,32,32,32,32,61,32,114,101,99,116,95,103,101,116,78,101,97,114,
+101,115,116,67,111,114,110,101,114,40,120,44,121,44,119,44,104,44,32,48,
+44,32,48,41,10,32,32,32,32,108,111,99,97,108,32,119,105,44,32,104,
+105,32,32,32,32,61,32,109,105,110,40,119,49,44,32,97,98,115,40,112,
+120,41,41,44,32,109,105,110,40,104,49,44,32,97,98,115,40,112,121,41,
+41,32,45,45,32,97,114,101,97,32,111,102,32,105,110,116,101,114,115,101,
+99,116,105,111,110,10,32,32,32,32,116,105,32,32,32,32,32,32,32,32,
+32,32,32,32,32,32,61,32,45,119,105,32,42,32,104,105,32,45,45,32,
+116,105,32,105,115,32,116,104,101,32,110,101,103,97,116,105,118,101,32,97,
+114,101,97,32,111,102,32,105,110,116,101,114,115,101,99,116,105,111,110,10,
+32,32,32,32,111,118,101,114,108,97,112,115,32,61,32,116,114,117,101,10,
+32,32,101,108,115,101,10,32,32,32,32,108,111,99,97,108,32,116,105,49,
+44,116,105,50,44,110,120,49,44,110,121,49,32,61,32,114,101,99,116,95,
+103,101,116,83,101,103,109,101,110,116,73,110,116,101,114,115,101,99,116,105,
+111,110,73,110,100,105,99,101,115,40,120,44,121,44,119,44,104,44,32,48,
+44,48,44,100,120,44,100,121,44,32,45,109,97,116,104,46,104,117,103,101,
+44,32,109,97,116,104,46,104,117,103,101,41,10,10,32,32,32,32,45,45,
+32,105,116,101,109,32,116,117,110,110,101,108,115,32,105,110,116,111,32,111,
+116,104,101,114,10,32,32,32,32,105,102,32,116,105,49,10,32,32,32,32,
+97,110,100,32,116,105,49,32,60,32,49,10,32,32,32,32,97,110,100,32,
+40,97,98,115,40,116,105,49,32,45,32,116,105,50,41,32,62,61,32,68,
+69,76,84,65,41,32,45,45,32,115,112,101,99,105,97,108,32,99,97,115,
+101,32,102,111,114,32,114,101,99,116,32,103,111,105,110,103,32,116,104,114,
+111,117,103,104,32,97,110,111,116,104,101,114,32,114,101,99,116,39,115,32,
+99,111,114,110,101,114,10,32,32,32,32,97,110,100,32,40,48,32,60,32,
+116,105,49,32,43,32,68,69,76,84,65,10,32,32,32,32,32,32,111,114,
+32,48,32,61,61,32,116,105,49,32,97,110,100,32,116,105,50,32,62,32,
+48,41,10,32,32,32,32,116,104,101,110,10,32,32,32,32,32,32,116,105,
+44,32,110,120,44,32,110,121,32,61,32,116,105,49,44,32,110,120,49,44,
+32,110,121,49,10,32,32,32,32,32,32,111,118,101,114,108,97,112,115,32,
+32,32,61,32,102,97,108,115,101,10,32,32,32,32,101,110,100,10,32,32,
+101,110,100,10,10,32,32,105,102,32,110,111,116,32,116,105,32,116,104,101,
+110,32,114,101,116,117,114,110,32,101,110,100,10,10,32,32,108,111,99,97,
+108,32,116,120,44,32,116,121,10,10,32,32,105,102,32,111,118,101,114,108,
+97,112,115,32,116,104,101,110,10,32,32,32,32,105,102,32,100,120,32,61,
+61,32,48,32,97,110,100,32,100,121,32,61,61,32,48,32,116,104,101,110,
+10,32,32,32,32,32,32,45,45,32,105,110,116,101,114,115,101,99,116,105,
+110,103,32,97,110,100,32,110,111,116,32,109,111,118,105,110,103,32,45,32,
+117,115,101,32,109,105,110,105,109,117,109,32,100,105,115,112,108,97,99,101,
+109,101,110,116,32,118,101,99,116,111,114,10,32,32,32,32,32,32,108,111,
+99,97,108,32,112,120,44,32,112,121,32,61,32,114,101,99,116,95,103,101,
+116,78,101,97,114,101,115,116,67,111,114,110,101,114,40,120,44,121,44,119,
+44,104,44,32,48,44,48,41,10,32,32,32,32,32,32,105,102,32,97,98,
+115,40,112,120,41,32,60,32,97,98,115,40,112,121,41,32,116,104,101,110,
+32,112,121,32,61,32,48,32,101,108,115,101,32,112,120,32,61,32,48,32,
+101,110,100,10,32,32,32,32,32,32,110,120,44,32,110,121,32,61,32,115,
+105,103,110,40,112,120,41,44,32,115,105,103,110,40,112,121,41,10,32,32,
+32,32,32,32,116,120,44,32,116,121,32,61,32,120,49,32,43,32,112,120,
+44,32,121,49,32,43,32,112,121,10,32,32,32,32,101,108,115,101,10,32,
+32,32,32,32,32,45,45,32,105,110,116,101,114,115,101,99,116,105,110,103,
+32,97,110,100,32,109,111,118,105,110,103,32,45,32,109,111,118,101,32,105,
+110,32,116,104,101,32,111,112,112,111,115,105,116,101,32,100,105,114,101,99,
+116,105,111,110,10,32,32,32,32,32,32,108,111,99,97,108,32,116,105,49,
+44,32,95,10,32,32,32,32,32,32,116,105,49,44,95,44,110,120,44,110,
+121,32,61,32,114,101,99,116,95,103,101,116,83,101,103,109,101,110,116,73,
+110,116,101,114,115,101,99,116,105,111,110,73,110,100,105,99,101,115,40,120,
+44,121,44,119,44,104,44,32,48,44,48,44,100,120,44,100,121,44,32,45,
+109,97,116,104,46,104,117,103,101,44,32,49,41,10,32,32,32,32,32,32,
+105,102,32,110,111,116,32,116,105,49,32,116,104,101,110,32,114,101,116,117,
+114,110,32,101,110,100,10,32,32,32,32,32,32,116,120,44,32,116,121,32,
+61,32,120,49,32,43,32,100,120,32,42,32,116,105,49,44,32,121,49,32,
+43,32,100,121,32,42,32,116,105,49,10,32,32,32,32,101,110,100,10,32,
+32,101,108,115,101,32,45,45,32,116,117,110,110,101,108,10,32,32,32,32,
+116,120,44,32,116,121,32,61,32,120,49,32,43,32,100,120,32,42,32,116,
+105,44,32,121,49,32,43,32,100,121,32,42,32,116,105,10,32,32,101,110,
+100,10,10,32,32,114,101,116,117,114,110,32,123,10,32,32,32,32,111,118,
+101,114,108,97,112,115,32,32,61,32,111,118,101,114,108,97,112,115,44,10,
+32,32,32,32,116,105,32,32,32,32,32,32,32,32,61,32,116,105,44,10,
+32,32,32,32,109,111,118,101,32,32,32,32,32,32,61,32,123,120,32,61,
+32,100,120,44,32,121,32,61,32,100,121,125,44,10,32,32,32,32,110,111,
+114,109,97,108,32,32,32,32,61,32,123,120,32,61,32,110,120,44,32,121,
+32,61,32,110,121,125,44,10,32,32,32,32,116,111,117,99,104,32,32,32,
+32,32,61,32,123,120,32,61,32,116,120,44,32,121,32,61,32,116,121,125,
+44,10,32,32,32,32,105,116,101,109,82,101,99,116,32,32,61,32,123,120,
+32,61,32,120,49,44,32,121,32,61,32,121,49,44,32,119,32,61,32,119,
+49,44,32,104,32,61,32,104,49,125,44,10,32,32,32,32,111,116,104,101,
+114,82,101,99,116,32,61,32,123,120,32,61,32,120,50,44,32,121,32,61,
+32,121,50,44,32,119,32,61,32,119,50,44,32,104,32,61,32,104,50,125,
+10,32,32,125,10,101,110,100,10,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,13,10,45,45,32,71,114,105,100,32,102,117,110,99,116,
-105,111,110,115,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,10,45,45,32,71,114,105,100,
+32,102,117,110,99,116,105,111,110,115,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,13,10,13,10,108,111,99,97,108,32,102,117,
-110,99,116,105,111,110,32,103,114,105,100,95,116,111,87,111,114,108,100,40,
-99,101,108,108,83,105,122,101,44,32,99,120,44,32,99,121,41,13,10,32,
-32,114,101,116,117,114,110,32,40,99,120,32,45,32,49,41,42,99,101,108,
-108,83,105,122,101,44,32,40,99,121,45,49,41,42,99,101,108,108,83,105,
-122,101,13,10,101,110,100,13,10,13,10,108,111,99,97,108,32,102,117,110,
-99,116,105,111,110,32,103,114,105,100,95,116,111,67,101,108,108,40,99,101,
-108,108,83,105,122,101,44,32,120,44,32,121,41,13,10,32,32,114,101,116,
-117,114,110,32,102,108,111,111,114,40,120,32,47,32,99,101,108,108,83,105,
-122,101,41,32,43,32,49,44,32,102,108,111,111,114,40,121,32,47,32,99,
-101,108,108,83,105,122,101,41,32,43,32,49,13,10,101,110,100,13,10,13,
-10,45,45,32,103,114,105,100,95,116,114,97,118,101,114,115,101,42,32,102,
-117,110,99,116,105,111,110,115,32,97,114,101,32,98,97,115,101,100,32,111,
-110,32,34,65,32,70,97,115,116,32,86,111,120,101,108,32,84,114,97,118,
-101,114,115,97,108,32,65,108,103,111,114,105,116,104,109,32,102,111,114,32,
-82,97,121,32,84,114,97,99,105,110,103,34,44,13,10,45,45,32,98,121,
-32,74,111,104,110,32,65,109,97,110,105,100,101,115,32,97,110,100,32,65,
-110,100,114,101,119,32,87,111,111,32,45,32,104,116,116,112,58,47,47,119,
-119,119,46,99,115,101,46,121,111,114,107,117,46,99,97,47,126,97,109,97,
-110,97,47,114,101,115,101,97,114,99,104,47,103,114,105,100,46,112,100,102,
-13,10,45,45,32,73,116,32,104,97,115,32,98,101,101,110,32,109,111,100,
-105,102,105,101,100,32,116,111,32,105,110,99,108,117,100,101,32,98,111,116,
-104,32,99,101,108,108,115,32,119,104,101,110,32,116,104,101,32,114,97,121,
-32,34,116,111,117,99,104,101,115,32,97,32,103,114,105,100,32,99,111,114,
-110,101,114,34,44,13,10,45,45,32,97,110,100,32,119,105,116,104,32,97,
-32,100,105,102,102,101,114,101,110,116,32,101,120,105,116,32,99,111,110,100,
-105,116,105,111,110,13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,
-105,111,110,32,103,114,105,100,95,116,114,97,118,101,114,115,101,95,105,110,
-105,116,83,116,101,112,40,99,101,108,108,83,105,122,101,44,32,99,116,44,
-32,116,49,44,32,116,50,41,13,10,32,32,108,111,99,97,108,32,118,32,
-61,32,116,50,32,45,32,116,49,13,10,32,32,105,102,32,32,32,32,32,
-118,32,62,32,48,32,116,104,101,110,13,10,32,32,32,32,114,101,116,117,
-114,110,32,32,49,44,32,32,99,101,108,108,83,105,122,101,32,47,32,118,
-44,32,40,40,99,116,32,43,32,118,41,32,42,32,99,101,108,108,83,105,
-122,101,32,45,32,116,49,41,32,47,32,118,13,10,32,32,101,108,115,101,
-105,102,32,118,32,60,32,48,32,116,104,101,110,13,10,32,32,32,32,114,
-101,116,117,114,110,32,45,49,44,32,45,99,101,108,108,83,105,122,101,32,
-47,32,118,44,32,40,40,99,116,32,43,32,118,32,45,32,49,41,32,42,
-32,99,101,108,108,83,105,122,101,32,45,32,116,49,41,32,47,32,118,13,
-10,32,32,101,108,115,101,13,10,32,32,32,32,114,101,116,117,114,110,32,
-48,44,32,109,97,116,104,46,104,117,103,101,44,32,109,97,116,104,46,104,
-117,103,101,13,10,32,32,101,110,100,13,10,101,110,100,13,10,13,10,108,
+45,45,45,45,45,45,45,45,45,45,45,45,45,10,10,108,111,99,97,108,
+32,102,117,110,99,116,105,111,110,32,103,114,105,100,95,116,111,87,111,114,
+108,100,40,99,101,108,108,83,105,122,101,44,32,99,120,44,32,99,121,41,
+10,32,32,114,101,116,117,114,110,32,40,99,120,32,45,32,49,41,42,99,
+101,108,108,83,105,122,101,44,32,40,99,121,45,49,41,42,99,101,108,108,
+83,105,122,101,10,101,110,100,10,10,108,111,99,97,108,32,102,117,110,99,
+116,105,111,110,32,103,114,105,100,95,116,111,67,101,108,108,40,99,101,108,
+108,83,105,122,101,44,32,120,44,32,121,41,10,32,32,114,101,116,117,114,
+110,32,102,108,111,111,114,40,120,32,47,32,99,101,108,108,83,105,122,101,
+41,32,43,32,49,44,32,102,108,111,111,114,40,121,32,47,32,99,101,108,
+108,83,105,122,101,41,32,43,32,49,10,101,110,100,10,10,45,45,32,103,
+114,105,100,95,116,114,97,118,101,114,115,101,42,32,102,117,110,99,116,105,
+111,110,115,32,97,114,101,32,98,97,115,101,100,32,111,110,32,34,65,32,
+70,97,115,116,32,86,111,120,101,108,32,84,114,97,118,101,114,115,97,108,
+32,65,108,103,111,114,105,116,104,109,32,102,111,114,32,82,97,121,32,84,
+114,97,99,105,110,103,34,44,10,45,45,32,98,121,32,74,111,104,110,32,
+65,109,97,110,105,100,101,115,32,97,110,100,32,65,110,100,114,101,119,32,
+87,111,111,32,45,32,104,116,116,112,58,47,47,119,119,119,46,99,115,101,
+46,121,111,114,107,117,46,99,97,47,126,97,109,97,110,97,47,114,101,115,
+101,97,114,99,104,47,103,114,105,100,46,112,100,102,10,45,45,32,73,116,
+32,104,97,115,32,98,101,101,110,32,109,111,100,105,102,105,101,100,32,116,
+111,32,105,110,99,108,117,100,101,32,98,111,116,104,32,99,101,108,108,115,
+32,119,104,101,110,32,116,104,101,32,114,97,121,32,34,116,111,117,99,104,
+101,115,32,97,32,103,114,105,100,32,99,111,114,110,101,114,34,44,10,45,
+45,32,97,110,100,32,119,105,116,104,32,97,32,100,105,102,102,101,114,101,
+110,116,32,101,120,105,116,32,99,111,110,100,105,116,105,111,110,10,10,108,
111,99,97,108,32,102,117,110,99,116,105,111,110,32,103,114,105,100,95,116,
-114,97,118,101,114,115,101,40,99,101,108,108,83,105,122,101,44,32,120,49,
-44,121,49,44,120,50,44,121,50,44,32,102,41,13,10,32,32,108,111,99,
-97,108,32,99,120,49,44,99,121,49,32,32,32,32,32,32,32,32,61,32,
-103,114,105,100,95,116,111,67,101,108,108,40,99,101,108,108,83,105,122,101,
-44,32,120,49,44,121,49,41,13,10,32,32,108,111,99,97,108,32,99,120,
-50,44,99,121,50,32,32,32,32,32,32,32,32,61,32,103,114,105,100,95,
-116,111,67,101,108,108,40,99,101,108,108,83,105,122,101,44,32,120,50,44,
-121,50,41,13,10,32,32,108,111,99,97,108,32,115,116,101,112,88,44,32,
-100,120,44,32,116,120,32,32,61,32,103,114,105,100,95,116,114,97,118,101,
-114,115,101,95,105,110,105,116,83,116,101,112,40,99,101,108,108,83,105,122,
-101,44,32,99,120,49,44,32,120,49,44,32,120,50,41,13,10,32,32,108,
-111,99,97,108,32,115,116,101,112,89,44,32,100,121,44,32,116,121,32,32,
-61,32,103,114,105,100,95,116,114,97,118,101,114,115,101,95,105,110,105,116,
-83,116,101,112,40,99,101,108,108,83,105,122,101,44,32,99,121,49,44,32,
-121,49,44,32,121,50,41,13,10,32,32,108,111,99,97,108,32,99,120,44,
-99,121,32,32,32,32,32,32,32,32,32,32,61,32,99,120,49,44,99,121,
-49,13,10,13,10,32,32,102,40,99,120,44,32,99,121,41,13,10,13,10,
-32,32,45,45,32,84,104,101,32,100,101,102,97,117,108,116,32,105,109,112,
-108,101,109,101,110,116,97,116,105,111,110,32,104,97,100,32,97,110,32,105,
-110,102,105,110,105,116,101,32,108,111,111,112,32,112,114,111,98,108,101,109,
-32,119,104,101,110,13,10,32,32,45,45,32,97,112,112,114,111,97,99,104,
-105,110,103,32,116,104,101,32,108,97,115,116,32,99,101,108,108,32,105,110,
-32,115,111,109,101,32,111,99,99,97,115,115,105,111,110,115,46,32,87,101,
-32,102,105,110,105,115,104,32,105,116,101,114,97,116,105,110,103,13,10,32,
-32,45,45,32,119,104,101,110,32,119,101,32,97,114,101,32,42,110,101,120,
-116,42,32,116,111,32,116,104,101,32,108,97,115,116,32,99,101,108,108,13,
-10,32,32,119,104,105,108,101,32,97,98,115,40,99,120,32,45,32,99,120,
-50,41,32,43,32,97,98,115,40,99,121,32,45,32,99,121,50,41,32,62,
-32,49,32,100,111,13,10,32,32,32,32,105,102,32,116,120,32,60,32,116,
-121,32,116,104,101,110,13,10,32,32,32,32,32,32,116,120,44,32,99,120,
-32,61,32,116,120,32,43,32,100,120,44,32,99,120,32,43,32,115,116,101,
-112,88,13,10,32,32,32,32,32,32,102,40,99,120,44,32,99,121,41,13,
-10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,32,32,45,45,32,
-65,100,100,105,116,105,111,110,58,32,105,110,99,108,117,100,101,32,98,111,
-116,104,32,99,101,108,108,115,32,119,104,101,110,32,103,111,105,110,103,32,
-116,104,114,111,117,103,104,32,99,111,114,110,101,114,115,13,10,32,32,32,
-32,32,32,105,102,32,116,120,32,61,61,32,116,121,32,116,104,101,110,32,
-102,40,99,120,32,43,32,115,116,101,112,88,44,32,99,121,41,32,101,110,
-100,13,10,32,32,32,32,32,32,116,121,44,32,99,121,32,61,32,116,121,
-32,43,32,100,121,44,32,99,121,32,43,32,115,116,101,112,89,13,10,32,
-32,32,32,32,32,102,40,99,120,44,32,99,121,41,13,10,32,32,32,32,
-101,110,100,13,10,32,32,101,110,100,13,10,13,10,32,32,45,45,32,73,
-102,32,119,101,32,104,97,118,101,32,110,111,116,32,97,114,114,105,118,101,
-100,32,116,111,32,116,104,101,32,108,97,115,116,32,99,101,108,108,44,32,
-117,115,101,32,105,116,13,10,32,32,105,102,32,99,120,32,126,61,32,99,
-120,50,32,111,114,32,99,121,32,126,61,32,99,121,50,32,116,104,101,110,
-32,102,40,99,120,50,44,32,99,121,50,41,32,101,110,100,13,10,13,10,
-101,110,100,13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,
-110,32,103,114,105,100,95,116,111,67,101,108,108,82,101,99,116,40,99,101,
-108,108,83,105,122,101,44,32,120,44,121,44,119,44,104,41,13,10,32,32,
-108,111,99,97,108,32,99,120,44,99,121,32,61,32,103,114,105,100,95,116,
-111,67,101,108,108,40,99,101,108,108,83,105,122,101,44,32,120,44,32,121,
-41,13,10,32,32,108,111,99,97,108,32,99,114,44,99,98,32,61,32,99,
-101,105,108,40,40,120,43,119,41,32,47,32,99,101,108,108,83,105,122,101,
-41,44,32,99,101,105,108,40,40,121,43,104,41,32,47,32,99,101,108,108,
-83,105,122,101,41,13,10,32,32,114,101,116,117,114,110,32,99,120,44,32,
-99,121,44,32,99,114,32,45,32,99,120,32,43,32,49,44,32,99,98,32,
-45,32,99,121,32,43,32,49,13,10,101,110,100,13,10,13,10,45,45,45,
+114,97,118,101,114,115,101,95,105,110,105,116,83,116,101,112,40,99,101,108,
+108,83,105,122,101,44,32,99,116,44,32,116,49,44,32,116,50,41,10,32,
+32,108,111,99,97,108,32,118,32,61,32,116,50,32,45,32,116,49,10,32,
+32,105,102,32,32,32,32,32,118,32,62,32,48,32,116,104,101,110,10,32,
+32,32,32,114,101,116,117,114,110,32,32,49,44,32,32,99,101,108,108,83,
+105,122,101,32,47,32,118,44,32,40,40,99,116,32,43,32,118,41,32,42,
+32,99,101,108,108,83,105,122,101,32,45,32,116,49,41,32,47,32,118,10,
+32,32,101,108,115,101,105,102,32,118,32,60,32,48,32,116,104,101,110,10,
+32,32,32,32,114,101,116,117,114,110,32,45,49,44,32,45,99,101,108,108,
+83,105,122,101,32,47,32,118,44,32,40,40,99,116,32,43,32,118,32,45,
+32,49,41,32,42,32,99,101,108,108,83,105,122,101,32,45,32,116,49,41,
+32,47,32,118,10,32,32,101,108,115,101,10,32,32,32,32,114,101,116,117,
+114,110,32,48,44,32,109,97,116,104,46,104,117,103,101,44,32,109,97,116,
+104,46,104,117,103,101,10,32,32,101,110,100,10,101,110,100,10,10,108,111,
+99,97,108,32,102,117,110,99,116,105,111,110,32,103,114,105,100,95,116,114,
+97,118,101,114,115,101,40,99,101,108,108,83,105,122,101,44,32,120,49,44,
+121,49,44,120,50,44,121,50,44,32,102,41,10,32,32,108,111,99,97,108,
+32,99,120,49,44,99,121,49,32,32,32,32,32,32,32,32,61,32,103,114,
+105,100,95,116,111,67,101,108,108,40,99,101,108,108,83,105,122,101,44,32,
+120,49,44,121,49,41,10,32,32,108,111,99,97,108,32,99,120,50,44,99,
+121,50,32,32,32,32,32,32,32,32,61,32,103,114,105,100,95,116,111,67,
+101,108,108,40,99,101,108,108,83,105,122,101,44,32,120,50,44,121,50,41,
+10,32,32,108,111,99,97,108,32,115,116,101,112,88,44,32,100,120,44,32,
+116,120,32,32,61,32,103,114,105,100,95,116,114,97,118,101,114,115,101,95,
+105,110,105,116,83,116,101,112,40,99,101,108,108,83,105,122,101,44,32,99,
+120,49,44,32,120,49,44,32,120,50,41,10,32,32,108,111,99,97,108,32,
+115,116,101,112,89,44,32,100,121,44,32,116,121,32,32,61,32,103,114,105,
+100,95,116,114,97,118,101,114,115,101,95,105,110,105,116,83,116,101,112,40,
+99,101,108,108,83,105,122,101,44,32,99,121,49,44,32,121,49,44,32,121,
+50,41,10,32,32,108,111,99,97,108,32,99,120,44,99,121,32,32,32,32,
+32,32,32,32,32,32,61,32,99,120,49,44,99,121,49,10,10,32,32,102,
+40,99,120,44,32,99,121,41,10,10,32,32,45,45,32,84,104,101,32,100,
+101,102,97,117,108,116,32,105,109,112,108,101,109,101,110,116,97,116,105,111,
+110,32,104,97,100,32,97,110,32,105,110,102,105,110,105,116,101,32,108,111,
+111,112,32,112,114,111,98,108,101,109,32,119,104,101,110,10,32,32,45,45,
+32,97,112,112,114,111,97,99,104,105,110,103,32,116,104,101,32,108,97,115,
+116,32,99,101,108,108,32,105,110,32,115,111,109,101,32,111,99,99,97,115,
+115,105,111,110,115,46,32,87,101,32,102,105,110,105,115,104,32,105,116,101,
+114,97,116,105,110,103,10,32,32,45,45,32,119,104,101,110,32,119,101,32,
+97,114,101,32,42,110,101,120,116,42,32,116,111,32,116,104,101,32,108,97,
+115,116,32,99,101,108,108,10,32,32,119,104,105,108,101,32,97,98,115,40,
+99,120,32,45,32,99,120,50,41,32,43,32,97,98,115,40,99,121,32,45,
+32,99,121,50,41,32,62,32,49,32,100,111,10,32,32,32,32,105,102,32,
+116,120,32,60,32,116,121,32,116,104,101,110,10,32,32,32,32,32,32,116,
+120,44,32,99,120,32,61,32,116,120,32,43,32,100,120,44,32,99,120,32,
+43,32,115,116,101,112,88,10,32,32,32,32,32,32,102,40,99,120,44,32,
+99,121,41,10,32,32,32,32,101,108,115,101,10,32,32,32,32,32,32,45,
+45,32,65,100,100,105,116,105,111,110,58,32,105,110,99,108,117,100,101,32,
+98,111,116,104,32,99,101,108,108,115,32,119,104,101,110,32,103,111,105,110,
+103,32,116,104,114,111,117,103,104,32,99,111,114,110,101,114,115,10,32,32,
+32,32,32,32,105,102,32,116,120,32,61,61,32,116,121,32,116,104,101,110,
+32,102,40,99,120,32,43,32,115,116,101,112,88,44,32,99,121,41,32,101,
+110,100,10,32,32,32,32,32,32,116,121,44,32,99,121,32,61,32,116,121,
+32,43,32,100,121,44,32,99,121,32,43,32,115,116,101,112,89,10,32,32,
+32,32,32,32,102,40,99,120,44,32,99,121,41,10,32,32,32,32,101,110,
+100,10,32,32,101,110,100,10,10,32,32,45,45,32,73,102,32,119,101,32,
+104,97,118,101,32,110,111,116,32,97,114,114,105,118,101,100,32,116,111,32,
+116,104,101,32,108,97,115,116,32,99,101,108,108,44,32,117,115,101,32,105,
+116,10,32,32,105,102,32,99,120,32,126,61,32,99,120,50,32,111,114,32,
+99,121,32,126,61,32,99,121,50,32,116,104,101,110,32,102,40,99,120,50,
+44,32,99,121,50,41,32,101,110,100,10,10,101,110,100,10,10,108,111,99,
+97,108,32,102,117,110,99,116,105,111,110,32,103,114,105,100,95,116,111,67,
+101,108,108,82,101,99,116,40,99,101,108,108,83,105,122,101,44,32,120,44,
+121,44,119,44,104,41,10,32,32,108,111,99,97,108,32,99,120,44,99,121,
+32,61,32,103,114,105,100,95,116,111,67,101,108,108,40,99,101,108,108,83,
+105,122,101,44,32,120,44,32,121,41,10,32,32,108,111,99,97,108,32,99,
+114,44,99,98,32,61,32,99,101,105,108,40,40,120,43,119,41,32,47,32,
+99,101,108,108,83,105,122,101,41,44,32,99,101,105,108,40,40,121,43,104,
+41,32,47,32,99,101,108,108,83,105,122,101,41,10,32,32,114,101,116,117,
+114,110,32,99,120,44,32,99,121,44,32,99,114,32,45,32,99,120,32,43,
+32,49,44,32,99,98,32,45,32,99,121,32,43,32,49,10,101,110,100,10,
+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,13,
-10,45,45,32,82,101,115,112,111,110,115,101,115,13,10,45,45,45,45,45,
+45,45,45,10,45,45,32,82,101,115,112,111,110,115,101,115,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,13,10,13,
+45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,10,
10,108,111,99,97,108,32,116,111,117,99,104,32,61,32,102,117,110,99,116,
105,111,110,40,119,111,114,108,100,44,32,99,111,108,44,32,120,44,121,44,
119,44,104,44,32,103,111,97,108,88,44,32,103,111,97,108,89,44,32,102,
-105,108,116,101,114,41,13,10,32,32,114,101,116,117,114,110,32,99,111,108,
-46,116,111,117,99,104,46,120,44,32,99,111,108,46,116,111,117,99,104,46,
-121,44,32,123,125,44,32,48,13,10,101,110,100,13,10,13,10,108,111,99,
-97,108,32,99,114,111,115,115,32,61,32,102,117,110,99,116,105,111,110,40,
-119,111,114,108,100,44,32,99,111,108,44,32,120,44,121,44,119,44,104,44,
-32,103,111,97,108,88,44,32,103,111,97,108,89,44,32,102,105,108,116,101,
-114,41,13,10,32,32,108,111,99,97,108,32,99,111,108,115,44,32,108,101,
-110,32,61,32,119,111,114,108,100,58,112,114,111,106,101,99,116,40,99,111,
-108,46,105,116,101,109,44,32,120,44,121,44,119,44,104,44,32,103,111,97,
-108,88,44,32,103,111,97,108,89,44,32,102,105,108,116,101,114,41,13,10,
-32,32,114,101,116,117,114,110,32,103,111,97,108,88,44,32,103,111,97,108,
-89,44,32,99,111,108,115,44,32,108,101,110,13,10,101,110,100,13,10,13,
-10,108,111,99,97,108,32,115,108,105,100,101,32,61,32,102,117,110,99,116,
-105,111,110,40,119,111,114,108,100,44,32,99,111,108,44,32,120,44,121,44,
-119,44,104,44,32,103,111,97,108,88,44,32,103,111,97,108,89,44,32,102,
-105,108,116,101,114,41,13,10,32,32,103,111,97,108,88,32,61,32,103,111,
-97,108,88,32,111,114,32,120,13,10,32,32,103,111,97,108,89,32,61,32,
-103,111,97,108,89,32,111,114,32,121,13,10,13,10,32,32,108,111,99,97,
-108,32,116,99,104,44,32,109,111,118,101,32,32,61,32,99,111,108,46,116,
-111,117,99,104,44,32,99,111,108,46,109,111,118,101,13,10,32,32,105,102,
-32,109,111,118,101,46,120,32,126,61,32,48,32,111,114,32,109,111,118,101,
-46,121,32,126,61,32,48,32,116,104,101,110,13,10,32,32,32,32,105,102,
-32,99,111,108,46,110,111,114,109,97,108,46,120,32,126,61,32,48,32,116,
-104,101,110,13,10,32,32,32,32,32,32,103,111,97,108,88,32,61,32,116,
-99,104,46,120,13,10,32,32,32,32,101,108,115,101,13,10,32,32,32,32,
-32,32,103,111,97,108,89,32,61,32,116,99,104,46,121,13,10,32,32,32,
-32,101,110,100,13,10,32,32,101,110,100,13,10,13,10,32,32,99,111,108,
-46,115,108,105,100,101,32,61,32,123,120,32,61,32,103,111,97,108,88,44,
-32,121,32,61,32,103,111,97,108,89,125,13,10,13,10,32,32,120,44,121,
-32,61,32,116,99,104,46,120,44,32,116,99,104,46,121,13,10,32,32,108,
-111,99,97,108,32,99,111,108,115,44,32,108,101,110,32,32,61,32,119,111,
-114,108,100,58,112,114,111,106,101,99,116,40,99,111,108,46,105,116,101,109,
-44,32,120,44,121,44,119,44,104,44,32,103,111,97,108,88,44,32,103,111,
-97,108,89,44,32,102,105,108,116,101,114,41,13,10,32,32,114,101,116,117,
+105,108,116,101,114,41,10,32,32,114,101,116,117,114,110,32,99,111,108,46,
+116,111,117,99,104,46,120,44,32,99,111,108,46,116,111,117,99,104,46,121,
+44,32,123,125,44,32,48,10,101,110,100,10,10,108,111,99,97,108,32,99,
+114,111,115,115,32,61,32,102,117,110,99,116,105,111,110,40,119,111,114,108,
+100,44,32,99,111,108,44,32,120,44,121,44,119,44,104,44,32,103,111,97,
+108,88,44,32,103,111,97,108,89,44,32,102,105,108,116,101,114,41,10,32,
+32,108,111,99,97,108,32,99,111,108,115,44,32,108,101,110,32,61,32,119,
+111,114,108,100,58,112,114,111,106,101,99,116,40,99,111,108,46,105,116,101,
+109,44,32,120,44,121,44,119,44,104,44,32,103,111,97,108,88,44,32,103,
+111,97,108,89,44,32,102,105,108,116,101,114,41,10,32,32,114,101,116,117,
114,110,32,103,111,97,108,88,44,32,103,111,97,108,89,44,32,99,111,108,
-115,44,32,108,101,110,13,10,101,110,100,13,10,13,10,108,111,99,97,108,
-32,98,111,117,110,99,101,32,61,32,102,117,110,99,116,105,111,110,40,119,
-111,114,108,100,44,32,99,111,108,44,32,120,44,121,44,119,44,104,44,32,
-103,111,97,108,88,44,32,103,111,97,108,89,44,32,102,105,108,116,101,114,
-41,13,10,32,32,103,111,97,108,88,32,61,32,103,111,97,108,88,32,111,
-114,32,120,13,10,32,32,103,111,97,108,89,32,61,32,103,111,97,108,89,
-32,111,114,32,121,13,10,13,10,32,32,108,111,99,97,108,32,116,99,104,
-44,32,109,111,118,101,32,61,32,99,111,108,46,116,111,117,99,104,44,32,
-99,111,108,46,109,111,118,101,13,10,32,32,108,111,99,97,108,32,116,120,
-44,32,116,121,32,61,32,116,99,104,46,120,44,32,116,99,104,46,121,13,
-10,13,10,32,32,108,111,99,97,108,32,98,120,44,32,98,121,32,61,32,
-116,120,44,32,116,121,13,10,13,10,32,32,105,102,32,109,111,118,101,46,
-120,32,126,61,32,48,32,111,114,32,109,111,118,101,46,121,32,126,61,32,
-48,32,116,104,101,110,13,10,32,32,32,32,108,111,99,97,108,32,98,110,
-120,44,32,98,110,121,32,61,32,103,111,97,108,88,32,45,32,116,120,44,
-32,103,111,97,108,89,32,45,32,116,121,13,10,32,32,32,32,105,102,32,
+115,44,32,108,101,110,10,101,110,100,10,10,108,111,99,97,108,32,115,108,
+105,100,101,32,61,32,102,117,110,99,116,105,111,110,40,119,111,114,108,100,
+44,32,99,111,108,44,32,120,44,121,44,119,44,104,44,32,103,111,97,108,
+88,44,32,103,111,97,108,89,44,32,102,105,108,116,101,114,41,10,32,32,
+103,111,97,108,88,32,61,32,103,111,97,108,88,32,111,114,32,120,10,32,
+32,103,111,97,108,89,32,61,32,103,111,97,108,89,32,111,114,32,121,10,
+10,32,32,108,111,99,97,108,32,116,99,104,44,32,109,111,118,101,32,32,
+61,32,99,111,108,46,116,111,117,99,104,44,32,99,111,108,46,109,111,118,
+101,10,32,32,105,102,32,109,111,118,101,46,120,32,126,61,32,48,32,111,
+114,32,109,111,118,101,46,121,32,126,61,32,48,32,116,104,101,110,10,32,
+32,32,32,105,102,32,99,111,108,46,110,111,114,109,97,108,46,120,32,126,
+61,32,48,32,116,104,101,110,10,32,32,32,32,32,32,103,111,97,108,88,
+32,61,32,116,99,104,46,120,10,32,32,32,32,101,108,115,101,10,32,32,
+32,32,32,32,103,111,97,108,89,32,61,32,116,99,104,46,121,10,32,32,
+32,32,101,110,100,10,32,32,101,110,100,10,10,32,32,99,111,108,46,115,
+108,105,100,101,32,61,32,123,120,32,61,32,103,111,97,108,88,44,32,121,
+32,61,32,103,111,97,108,89,125,10,10,32,32,120,44,121,32,61,32,116,
+99,104,46,120,44,32,116,99,104,46,121,10,32,32,108,111,99,97,108,32,
+99,111,108,115,44,32,108,101,110,32,32,61,32,119,111,114,108,100,58,112,
+114,111,106,101,99,116,40,99,111,108,46,105,116,101,109,44,32,120,44,121,
+44,119,44,104,44,32,103,111,97,108,88,44,32,103,111,97,108,89,44,32,
+102,105,108,116,101,114,41,10,32,32,114,101,116,117,114,110,32,103,111,97,
+108,88,44,32,103,111,97,108,89,44,32,99,111,108,115,44,32,108,101,110,
+10,101,110,100,10,10,108,111,99,97,108,32,98,111,117,110,99,101,32,61,
+32,102,117,110,99,116,105,111,110,40,119,111,114,108,100,44,32,99,111,108,
+44,32,120,44,121,44,119,44,104,44,32,103,111,97,108,88,44,32,103,111,
+97,108,89,44,32,102,105,108,116,101,114,41,10,32,32,103,111,97,108,88,
+32,61,32,103,111,97,108,88,32,111,114,32,120,10,32,32,103,111,97,108,
+89,32,61,32,103,111,97,108,89,32,111,114,32,121,10,10,32,32,108,111,
+99,97,108,32,116,99,104,44,32,109,111,118,101,32,61,32,99,111,108,46,
+116,111,117,99,104,44,32,99,111,108,46,109,111,118,101,10,32,32,108,111,
+99,97,108,32,116,120,44,32,116,121,32,61,32,116,99,104,46,120,44,32,
+116,99,104,46,121,10,10,32,32,108,111,99,97,108,32,98,120,44,32,98,
+121,32,61,32,116,120,44,32,116,121,10,10,32,32,105,102,32,109,111,118,
+101,46,120,32,126,61,32,48,32,111,114,32,109,111,118,101,46,121,32,126,
+61,32,48,32,116,104,101,110,10,32,32,32,32,108,111,99,97,108,32,98,
+110,120,44,32,98,110,121,32,61,32,103,111,97,108,88,32,45,32,116,120,
+44,32,103,111,97,108,89,32,45,32,116,121,10,32,32,32,32,105,102,32,
99,111,108,46,110,111,114,109,97,108,46,120,32,61,61,32,48,32,116,104,
101,110,32,98,110,121,32,61,32,45,98,110,121,32,101,108,115,101,32,98,
-110,120,32,61,32,45,98,110,120,32,101,110,100,13,10,32,32,32,32,98,
-120,44,32,98,121,32,61,32,116,120,32,43,32,98,110,120,44,32,116,121,
-32,43,32,98,110,121,13,10,32,32,101,110,100,13,10,13,10,32,32,99,
-111,108,46,98,111,117,110,99,101,32,32,32,61,32,123,120,32,61,32,98,
-120,44,32,32,121,32,61,32,98,121,125,13,10,32,32,120,44,121,32,32,
-32,32,32,32,32,32,32,32,61,32,116,99,104,46,120,44,32,116,99,104,
-46,121,13,10,32,32,103,111,97,108,88,44,32,103,111,97,108,89,32,61,
-32,98,120,44,32,98,121,13,10,13,10,32,32,108,111,99,97,108,32,99,
-111,108,115,44,32,108,101,110,32,32,32,32,61,32,119,111,114,108,100,58,
-112,114,111,106,101,99,116,40,99,111,108,46,105,116,101,109,44,32,120,44,
-121,44,119,44,104,44,32,103,111,97,108,88,44,32,103,111,97,108,89,44,
-32,102,105,108,116,101,114,41,13,10,32,32,114,101,116,117,114,110,32,103,
-111,97,108,88,44,32,103,111,97,108,89,44,32,99,111,108,115,44,32,108,
-101,110,13,10,101,110,100,13,10,13,10,45,45,45,45,45,45,45,45,45,
+110,120,32,61,32,45,98,110,120,32,101,110,100,10,32,32,32,32,98,120,
+44,32,98,121,32,61,32,116,120,32,43,32,98,110,120,44,32,116,121,32,
+43,32,98,110,121,10,32,32,101,110,100,10,10,32,32,99,111,108,46,98,
+111,117,110,99,101,32,32,32,61,32,123,120,32,61,32,98,120,44,32,32,
+121,32,61,32,98,121,125,10,32,32,120,44,121,32,32,32,32,32,32,32,
+32,32,32,61,32,116,99,104,46,120,44,32,116,99,104,46,121,10,32,32,
+103,111,97,108,88,44,32,103,111,97,108,89,32,61,32,98,120,44,32,98,
+121,10,10,32,32,108,111,99,97,108,32,99,111,108,115,44,32,108,101,110,
+32,32,32,32,61,32,119,111,114,108,100,58,112,114,111,106,101,99,116,40,
+99,111,108,46,105,116,101,109,44,32,120,44,121,44,119,44,104,44,32,103,
+111,97,108,88,44,32,103,111,97,108,89,44,32,102,105,108,116,101,114,41,
+10,32,32,114,101,116,117,114,110,32,103,111,97,108,88,44,32,103,111,97,
+108,89,44,32,99,111,108,115,44,32,108,101,110,10,101,110,100,10,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,13,10,45,45,32,87,111,
-114,108,100,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,13,10,13,10,108,111,99,97,108,32,87,111,114,
-108,100,32,61,32,123,125,13,10,108,111,99,97,108,32,87,111,114,108,100,
-95,109,116,32,61,32,123,95,95,105,110,100,101,120,32,61,32,87,111,114,
-108,100,125,13,10,13,10,45,45,32,80,114,105,118,97,116,101,32,102,117,
-110,99,116,105,111,110,115,32,97,110,100,32,109,101,116,104,111,100,115,13,
-10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,115,111,
-114,116,66,121,87,101,105,103,104,116,40,97,44,98,41,32,114,101,116,117,
-114,110,32,97,46,119,101,105,103,104,116,32,60,32,98,46,119,101,105,103,
-104,116,32,101,110,100,13,10,13,10,108,111,99,97,108,32,102,117,110,99,
-116,105,111,110,32,115,111,114,116,66,121,84,105,65,110,100,68,105,115,116,
-97,110,99,101,40,97,44,98,41,13,10,32,32,105,102,32,97,46,116,105,
-32,61,61,32,98,46,116,105,32,116,104,101,110,13,10,32,32,32,32,108,
-111,99,97,108,32,105,114,44,32,97,114,44,32,98,114,32,61,32,97,46,
-105,116,101,109,82,101,99,116,44,32,97,46,111,116,104,101,114,82,101,99,
-116,44,32,98,46,111,116,104,101,114,82,101,99,116,13,10,32,32,32,32,
-108,111,99,97,108,32,97,100,32,61,32,114,101,99,116,95,103,101,116,83,
-113,117,97,114,101,68,105,115,116,97,110,99,101,40,105,114,46,120,44,105,
-114,46,121,44,105,114,46,119,44,105,114,46,104,44,32,97,114,46,120,44,
-97,114,46,121,44,97,114,46,119,44,97,114,46,104,41,13,10,32,32,32,
-32,108,111,99,97,108,32,98,100,32,61,32,114,101,99,116,95,103,101,116,
-83,113,117,97,114,101,68,105,115,116,97,110,99,101,40,105,114,46,120,44,
-105,114,46,121,44,105,114,46,119,44,105,114,46,104,44,32,98,114,46,120,
-44,98,114,46,121,44,98,114,46,119,44,98,114,46,104,41,13,10,32,32,
-32,32,114,101,116,117,114,110,32,97,100,32,60,32,98,100,13,10,32,32,
-101,110,100,13,10,32,32,114,101,116,117,114,110,32,97,46,116,105,32,60,
-32,98,46,116,105,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,73,116,101,109,84,111,67,101,
-108,108,40,115,101,108,102,44,32,105,116,101,109,44,32,99,120,44,32,99,
-121,41,13,10,32,32,115,101,108,102,46,114,111,119,115,91,99,121,93,32,
-61,32,115,101,108,102,46,114,111,119,115,91,99,121,93,32,111,114,32,115,
-101,116,109,101,116,97,116,97,98,108,101,40,123,125,44,32,123,95,95,109,
-111,100,101,32,61,32,39,118,39,125,41,13,10,32,32,108,111,99,97,108,
-32,114,111,119,32,61,32,115,101,108,102,46,114,111,119,115,91,99,121,93,
-13,10,32,32,114,111,119,91,99,120,93,32,61,32,114,111,119,91,99,120,
-93,32,111,114,32,123,105,116,101,109,67,111,117,110,116,32,61,32,48,44,
-32,120,32,61,32,99,120,44,32,121,32,61,32,99,121,44,32,105,116,101,
-109,115,32,61,32,115,101,116,109,101,116,97,116,97,98,108,101,40,123,125,
-44,32,123,95,95,109,111,100,101,32,61,32,39,107,39,125,41,125,13,10,
-32,32,108,111,99,97,108,32,99,101,108,108,32,61,32,114,111,119,91,99,
-120,93,13,10,32,32,115,101,108,102,46,110,111,110,69,109,112,116,121,67,
-101,108,108,115,91,99,101,108,108,93,32,61,32,116,114,117,101,13,10,32,
-32,105,102,32,110,111,116,32,99,101,108,108,46,105,116,101,109,115,91,105,
-116,101,109,93,32,116,104,101,110,13,10,32,32,32,32,99,101,108,108,46,
-105,116,101,109,115,91,105,116,101,109,93,32,61,32,116,114,117,101,13,10,
-32,32,32,32,99,101,108,108,46,105,116,101,109,67,111,117,110,116,32,61,
-32,99,101,108,108,46,105,116,101,109,67,111,117,110,116,32,43,32,49,13,
-10,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,114,101,109,111,118,101,73,116,101,109,
-70,114,111,109,67,101,108,108,40,115,101,108,102,44,32,105,116,101,109,44,
-32,99,120,44,32,99,121,41,13,10,32,32,108,111,99,97,108,32,114,111,
-119,32,61,32,115,101,108,102,46,114,111,119,115,91,99,121,93,13,10,32,
-32,105,102,32,110,111,116,32,114,111,119,32,111,114,32,110,111,116,32,114,
-111,119,91,99,120,93,32,111,114,32,110,111,116,32,114,111,119,91,99,120,
-93,46,105,116,101,109,115,91,105,116,101,109,93,32,116,104,101,110,32,114,
-101,116,117,114,110,32,102,97,108,115,101,32,101,110,100,13,10,13,10,32,
-32,108,111,99,97,108,32,99,101,108,108,32,61,32,114,111,119,91,99,120,
-93,13,10,32,32,99,101,108,108,46,105,116,101,109,115,91,105,116,101,109,
-93,32,61,32,110,105,108,13,10,32,32,99,101,108,108,46,105,116,101,109,
-67,111,117,110,116,32,61,32,99,101,108,108,46,105,116,101,109,67,111,117,
-110,116,32,45,32,49,13,10,32,32,105,102,32,99,101,108,108,46,105,116,
-101,109,67,111,117,110,116,32,61,61,32,48,32,116,104,101,110,13,10,32,
-32,32,32,115,101,108,102,46,110,111,110,69,109,112,116,121,67,101,108,108,
-115,91,99,101,108,108,93,32,61,32,110,105,108,13,10,32,32,101,110,100,
-13,10,32,32,114,101,116,117,114,110,32,116,114,117,101,13,10,101,110,100,
-13,10,13,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,103,
-101,116,68,105,99,116,73,116,101,109,115,73,110,67,101,108,108,82,101,99,
-116,40,115,101,108,102,44,32,99,108,44,99,116,44,99,119,44,99,104,41,
-13,10,32,32,108,111,99,97,108,32,105,116,101,109,115,95,100,105,99,116,
-32,61,32,123,125,13,10,32,32,102,111,114,32,99,121,61,99,116,44,99,
-116,43,99,104,45,49,32,100,111,13,10,32,32,32,32,108,111,99,97,108,
-32,114,111,119,32,61,32,115,101,108,102,46,114,111,119,115,91,99,121,93,
-13,10,32,32,32,32,105,102,32,114,111,119,32,116,104,101,110,13,10,32,
-32,32,32,32,32,102,111,114,32,99,120,61,99,108,44,99,108,43,99,119,
-45,49,32,100,111,13,10,32,32,32,32,32,32,32,32,108,111,99,97,108,
-32,99,101,108,108,32,61,32,114,111,119,91,99,120,93,13,10,32,32,32,
-32,32,32,32,32,105,102,32,99,101,108,108,32,97,110,100,32,99,101,108,
-108,46,105,116,101,109,67,111,117,110,116,32,62,32,48,32,116,104,101,110,
-32,45,45,32,110,111,32,99,101,108,108,46,105,116,101,109,67,111,117,110,
-116,32,62,32,49,32,98,101,99,97,117,115,101,32,116,117,110,110,101,108,
-105,110,103,13,10,32,32,32,32,32,32,32,32,32,32,102,111,114,32,105,
-116,101,109,44,95,32,105,110,32,112,97,105,114,115,40,99,101,108,108,46,
-105,116,101,109,115,41,32,100,111,13,10,32,32,32,32,32,32,32,32,32,
-32,32,32,105,116,101,109,115,95,100,105,99,116,91,105,116,101,109,93,32,
-61,32,116,114,117,101,13,10,32,32,32,32,32,32,32,32,32,32,101,110,
-100,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,
-32,32,101,110,100,13,10,32,32,32,32,101,110,100,13,10,32,32,101,110,
-100,13,10,13,10,32,32,114,101,116,117,114,110,32,105,116,101,109,115,95,
-100,105,99,116,13,10,101,110,100,13,10,13,10,108,111,99,97,108,32,102,
-117,110,99,116,105,111,110,32,103,101,116,67,101,108,108,115,84,111,117,99,
-104,101,100,66,121,83,101,103,109,101,110,116,40,115,101,108,102,44,32,120,
-49,44,121,49,44,120,50,44,121,50,41,13,10,13,10,32,32,108,111,99,
-97,108,32,99,101,108,108,115,44,32,99,101,108,108,115,76,101,110,44,32,
-118,105,115,105,116,101,100,32,61,32,123,125,44,32,48,44,32,123,125,13,
-10,13,10,32,32,103,114,105,100,95,116,114,97,118,101,114,115,101,40,115,
-101,108,102,46,99,101,108,108,83,105,122,101,44,32,120,49,44,121,49,44,
-120,50,44,121,50,44,32,102,117,110,99,116,105,111,110,40,99,120,44,32,
-99,121,41,13,10,32,32,32,32,108,111,99,97,108,32,114,111,119,32,32,
-61,32,115,101,108,102,46,114,111,119,115,91,99,121,93,13,10,32,32,32,
-32,105,102,32,110,111,116,32,114,111,119,32,116,104,101,110,32,114,101,116,
-117,114,110,32,101,110,100,13,10,32,32,32,32,108,111,99,97,108,32,99,
-101,108,108,32,61,32,114,111,119,91,99,120,93,13,10,32,32,32,32,105,
-102,32,110,111,116,32,99,101,108,108,32,111,114,32,118,105,115,105,116,101,
-100,91,99,101,108,108,93,32,116,104,101,110,32,114,101,116,117,114,110,32,
-101,110,100,13,10,13,10,32,32,32,32,118,105,115,105,116,101,100,91,99,
-101,108,108,93,32,61,32,116,114,117,101,13,10,32,32,32,32,99,101,108,
-108,115,76,101,110,32,61,32,99,101,108,108,115,76,101,110,32,43,32,49,
-13,10,32,32,32,32,99,101,108,108,115,91,99,101,108,108,115,76,101,110,
-93,32,61,32,99,101,108,108,13,10,32,32,101,110,100,41,13,10,13,10,
-32,32,114,101,116,117,114,110,32,99,101,108,108,115,44,32,99,101,108,108,
-115,76,101,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,103,101,116,73,110,102,111,65,98,111,117,116,
-73,116,101,109,115,84,111,117,99,104,101,100,66,121,83,101,103,109,101,110,
-116,40,115,101,108,102,44,32,120,49,44,121,49,44,32,120,50,44,121,50,
-44,32,102,105,108,116,101,114,41,13,10,32,32,108,111,99,97,108,32,99,
-101,108,108,115,44,32,108,101,110,32,61,32,103,101,116,67,101,108,108,115,
-84,111,117,99,104,101,100,66,121,83,101,103,109,101,110,116,40,115,101,108,
-102,44,32,120,49,44,121,49,44,120,50,44,121,50,41,13,10,32,32,108,
-111,99,97,108,32,99,101,108,108,44,32,114,101,99,116,44,32,108,44,116,
-44,119,44,104,44,32,116,105,49,44,116,105,50,44,32,116,105,105,48,44,
-116,105,105,49,13,10,32,32,108,111,99,97,108,32,118,105,115,105,116,101,
-100,44,32,105,116,101,109,73,110,102,111,44,32,105,116,101,109,73,110,102,
-111,76,101,110,32,61,32,123,125,44,123,125,44,48,13,10,32,32,102,111,
-114,32,105,61,49,44,108,101,110,32,100,111,13,10,32,32,32,32,99,101,
-108,108,32,61,32,99,101,108,108,115,91,105,93,13,10,32,32,32,32,102,
-111,114,32,105,116,101,109,32,105,110,32,112,97,105,114,115,40,99,101,108,
-108,46,105,116,101,109,115,41,32,100,111,13,10,32,32,32,32,32,32,105,
-102,32,110,111,116,32,118,105,115,105,116,101,100,91,105,116,101,109,93,32,
-116,104,101,110,13,10,32,32,32,32,32,32,32,32,118,105,115,105,116,101,
-100,91,105,116,101,109,93,32,32,61,32,116,114,117,101,13,10,32,32,32,
-32,32,32,32,32,105,102,32,40,110,111,116,32,102,105,108,116,101,114,32,
-111,114,32,102,105,108,116,101,114,40,105,116,101,109,41,41,32,116,104,101,
-110,13,10,32,32,32,32,32,32,32,32,32,32,114,101,99,116,32,32,32,
-32,32,32,32,32,32,32,32,61,32,115,101,108,102,46,114,101,99,116,115,
-91,105,116,101,109,93,13,10,32,32,32,32,32,32,32,32,32,32,108,44,
-116,44,119,44,104,32,32,32,32,32,32,32,32,61,32,114,101,99,116,46,
-120,44,114,101,99,116,46,121,44,114,101,99,116,46,119,44,114,101,99,116,
-46,104,13,10,13,10,32,32,32,32,32,32,32,32,32,32,116,105,49,44,
-116,105,50,32,61,32,114,101,99,116,95,103,101,116,83,101,103,109,101,110,
-116,73,110,116,101,114,115,101,99,116,105,111,110,73,110,100,105,99,101,115,
-40,108,44,116,44,119,44,104,44,32,120,49,44,121,49,44,32,120,50,44,
-121,50,44,32,48,44,32,49,41,13,10,32,32,32,32,32,32,32,32,32,
-32,105,102,32,116,105,49,32,97,110,100,32,40,40,48,32,60,32,116,105,
-49,32,97,110,100,32,116,105,49,32,60,32,49,41,32,111,114,32,40,48,
-32,60,32,116,105,50,32,97,110,100,32,116,105,50,32,60,32,49,41,41,
-32,116,104,101,110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,45,
-45,32,116,104,101,32,115,111,114,116,105,110,103,32,105,115,32,97,99,99,
-111,114,100,105,110,103,32,116,111,32,116,104,101,32,116,32,111,102,32,97,
-110,32,105,110,102,105,110,105,116,101,32,108,105,110,101,44,32,110,111,116,
-32,116,104,101,32,115,101,103,109,101,110,116,13,10,32,32,32,32,32,32,
-32,32,32,32,32,32,116,105,105,48,44,116,105,105,49,32,32,32,32,61,
-32,114,101,99,116,95,103,101,116,83,101,103,109,101,110,116,73,110,116,101,
-114,115,101,99,116,105,111,110,73,110,100,105,99,101,115,40,108,44,116,44,
-119,44,104,44,32,120,49,44,121,49,44,32,120,50,44,121,50,44,32,45,
-109,97,116,104,46,104,117,103,101,44,32,109,97,116,104,46,104,117,103,101,
-41,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,109,73,
-110,102,111,76,101,110,32,32,61,32,105,116,101,109,73,110,102,111,76,101,
-110,32,43,32,49,13,10,32,32,32,32,32,32,32,32,32,32,32,32,105,
-116,101,109,73,110,102,111,91,105,116,101,109,73,110,102,111,76,101,110,93,
-32,61,32,123,105,116,101,109,32,61,32,105,116,101,109,44,32,116,105,49,
-32,61,32,116,105,49,44,32,116,105,50,32,61,32,116,105,50,44,32,119,
-101,105,103,104,116,32,61,32,109,105,110,40,116,105,105,48,44,116,105,105,
-49,41,125,13,10,32,32,32,32,32,32,32,32,32,32,101,110,100,13,10,
-32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,101,
-110,100,13,10,32,32,32,32,101,110,100,13,10,32,32,101,110,100,13,10,
-32,32,116,97,98,108,101,46,115,111,114,116,40,105,116,101,109,73,110,102,
-111,44,32,115,111,114,116,66,121,87,101,105,103,104,116,41,13,10,32,32,
-114,101,116,117,114,110,32,105,116,101,109,73,110,102,111,44,32,105,116,101,
-109,73,110,102,111,76,101,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,103,101,116,82,101,115,112,111,
-110,115,101,66,121,78,97,109,101,40,115,101,108,102,44,32,110,97,109,101,
-41,13,10,32,32,108,111,99,97,108,32,114,101,115,112,111,110,115,101,32,
-61,32,115,101,108,102,46,114,101,115,112,111,110,115,101,115,91,110,97,109,
-101,93,13,10,32,32,105,102,32,110,111,116,32,114,101,115,112,111,110,115,
-101,32,116,104,101,110,13,10,32,32,32,32,101,114,114,111,114,40,40,39,
-85,110,107,110,111,119,110,32,99,111,108,108,105,115,105,111,110,32,116,121,
-112,101,58,32,37,115,32,40,37,115,41,39,41,58,102,111,114,109,97,116,
-40,110,97,109,101,44,32,116,121,112,101,40,110,97,109,101,41,41,41,13,
-10,32,32,101,110,100,13,10,32,32,114,101,116,117,114,110,32,114,101,115,
-112,111,110,115,101,13,10,101,110,100,13,10,13,10,13,10,45,45,32,77,
-105,115,99,32,80,117,98,108,105,99,32,77,101,116,104,111,100,115,13,10,
-13,10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,97,100,100,
-82,101,115,112,111,110,115,101,40,110,97,109,101,44,32,114,101,115,112,111,
-110,115,101,41,13,10,32,32,115,101,108,102,46,114,101,115,112,111,110,115,
-101,115,91,110,97,109,101,93,32,61,32,114,101,115,112,111,110,115,101,13,
-10,101,110,100,13,10,13,10,102,117,110,99,116,105,111,110,32,87,111,114,
-108,100,58,112,114,111,106,101,99,116,40,105,116,101,109,44,32,120,44,121,
-44,119,44,104,44,32,103,111,97,108,88,44,32,103,111,97,108,89,44,32,
-102,105,108,116,101,114,41,13,10,32,32,97,115,115,101,114,116,73,115,82,
-101,99,116,40,120,44,121,44,119,44,104,41,13,10,13,10,32,32,103,111,
-97,108,88,32,61,32,103,111,97,108,88,32,111,114,32,120,13,10,32,32,
-103,111,97,108,89,32,61,32,103,111,97,108,89,32,111,114,32,121,13,10,
-32,32,102,105,108,116,101,114,32,32,61,32,102,105,108,116,101,114,32,32,
-111,114,32,100,101,102,97,117,108,116,70,105,108,116,101,114,13,10,13,10,
-32,32,108,111,99,97,108,32,99,111,108,108,105,115,105,111,110,115,44,32,
-108,101,110,32,61,32,123,125,44,32,48,13,10,13,10,32,32,108,111,99,
-97,108,32,118,105,115,105,116,101,100,32,61,32,123,125,13,10,32,32,105,
-102,32,105,116,101,109,32,126,61,32,110,105,108,32,116,104,101,110,32,118,
-105,115,105,116,101,100,91,105,116,101,109,93,32,61,32,116,114,117,101,32,
-101,110,100,13,10,13,10,32,32,45,45,32,84,104,105,115,32,99,111,117,
-108,100,32,112,114,111,98,97,98,108,121,32,98,101,32,100,111,110,101,32,
-119,105,116,104,32,108,101,115,115,32,99,101,108,108,115,32,117,115,105,110,
-103,32,97,32,112,111,108,121,103,111,110,32,114,97,115,116,101,114,32,111,
-118,101,114,32,116,104,101,32,99,101,108,108,115,32,105,110,115,116,101,97,
-100,32,111,102,32,97,13,10,32,32,45,45,32,98,111,117,110,100,105,110,
-103,32,114,101,99,116,32,111,102,32,116,104,101,32,119,104,111,108,101,32,
-109,111,118,101,109,101,110,116,46,32,67,111,110,100,105,116,105,111,110,97,
-108,32,116,111,32,98,117,105,108,100,105,110,103,32,97,32,113,117,101,114,
-121,80,111,108,121,103,111,110,32,109,101,116,104,111,100,13,10,32,32,108,
-111,99,97,108,32,116,108,44,32,116,116,32,61,32,109,105,110,40,103,111,
-97,108,88,44,32,120,41,44,32,32,32,32,32,32,32,109,105,110,40,103,
-111,97,108,89,44,32,121,41,13,10,32,32,108,111,99,97,108,32,116,114,
-44,32,116,98,32,61,32,109,97,120,40,103,111,97,108,88,32,43,32,119,
-44,32,120,43,119,41,44,32,109,97,120,40,103,111,97,108,89,32,43,32,
-104,44,32,121,43,104,41,13,10,32,32,108,111,99,97,108,32,116,119,44,
-32,116,104,32,61,32,116,114,45,116,108,44,32,116,98,45,116,116,13,10,
-13,10,32,32,108,111,99,97,108,32,99,108,44,99,116,44,99,119,44,99,
-104,32,61,32,103,114,105,100,95,116,111,67,101,108,108,82,101,99,116,40,
-115,101,108,102,46,99,101,108,108,83,105,122,101,44,32,116,108,44,116,116,
-44,116,119,44,116,104,41,13,10,13,10,32,32,108,111,99,97,108,32,100,
-105,99,116,73,116,101,109,115,73,110,67,101,108,108,82,101,99,116,32,61,
+45,10,45,45,32,87,111,114,108,100,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,10,10,108,111,99,97,108,
+32,87,111,114,108,100,32,61,32,123,125,10,108,111,99,97,108,32,87,111,
+114,108,100,95,109,116,32,61,32,123,95,95,105,110,100,101,120,32,61,32,
+87,111,114,108,100,125,10,10,45,45,32,80,114,105,118,97,116,101,32,102,
+117,110,99,116,105,111,110,115,32,97,110,100,32,109,101,116,104,111,100,115,
+10,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,115,111,114,
+116,66,121,87,101,105,103,104,116,40,97,44,98,41,32,114,101,116,117,114,
+110,32,97,46,119,101,105,103,104,116,32,60,32,98,46,119,101,105,103,104,
+116,32,101,110,100,10,10,108,111,99,97,108,32,102,117,110,99,116,105,111,
+110,32,115,111,114,116,66,121,84,105,65,110,100,68,105,115,116,97,110,99,
+101,40,97,44,98,41,10,32,32,105,102,32,97,46,116,105,32,61,61,32,
+98,46,116,105,32,116,104,101,110,10,32,32,32,32,108,111,99,97,108,32,
+105,114,44,32,97,114,44,32,98,114,32,61,32,97,46,105,116,101,109,82,
+101,99,116,44,32,97,46,111,116,104,101,114,82,101,99,116,44,32,98,46,
+111,116,104,101,114,82,101,99,116,10,32,32,32,32,108,111,99,97,108,32,
+97,100,32,61,32,114,101,99,116,95,103,101,116,83,113,117,97,114,101,68,
+105,115,116,97,110,99,101,40,105,114,46,120,44,105,114,46,121,44,105,114,
+46,119,44,105,114,46,104,44,32,97,114,46,120,44,97,114,46,121,44,97,
+114,46,119,44,97,114,46,104,41,10,32,32,32,32,108,111,99,97,108,32,
+98,100,32,61,32,114,101,99,116,95,103,101,116,83,113,117,97,114,101,68,
+105,115,116,97,110,99,101,40,105,114,46,120,44,105,114,46,121,44,105,114,
+46,119,44,105,114,46,104,44,32,98,114,46,120,44,98,114,46,121,44,98,
+114,46,119,44,98,114,46,104,41,10,32,32,32,32,114,101,116,117,114,110,
+32,97,100,32,60,32,98,100,10,32,32,101,110,100,10,32,32,114,101,116,
+117,114,110,32,97,46,116,105,32,60,32,98,46,116,105,10,101,110,100,10,
+10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,32,97,100,100,73,
+116,101,109,84,111,67,101,108,108,40,115,101,108,102,44,32,105,116,101,109,
+44,32,99,120,44,32,99,121,41,10,32,32,115,101,108,102,46,114,111,119,
+115,91,99,121,93,32,61,32,115,101,108,102,46,114,111,119,115,91,99,121,
+93,32,111,114,32,115,101,116,109,101,116,97,116,97,98,108,101,40,123,125,
+44,32,123,95,95,109,111,100,101,32,61,32,39,118,39,125,41,10,32,32,
+108,111,99,97,108,32,114,111,119,32,61,32,115,101,108,102,46,114,111,119,
+115,91,99,121,93,10,32,32,114,111,119,91,99,120,93,32,61,32,114,111,
+119,91,99,120,93,32,111,114,32,123,105,116,101,109,67,111,117,110,116,32,
+61,32,48,44,32,120,32,61,32,99,120,44,32,121,32,61,32,99,121,44,
+32,105,116,101,109,115,32,61,32,115,101,116,109,101,116,97,116,97,98,108,
+101,40,123,125,44,32,123,95,95,109,111,100,101,32,61,32,39,107,39,125,
+41,125,10,32,32,108,111,99,97,108,32,99,101,108,108,32,61,32,114,111,
+119,91,99,120,93,10,32,32,115,101,108,102,46,110,111,110,69,109,112,116,
+121,67,101,108,108,115,91,99,101,108,108,93,32,61,32,116,114,117,101,10,
+32,32,105,102,32,110,111,116,32,99,101,108,108,46,105,116,101,109,115,91,
+105,116,101,109,93,32,116,104,101,110,10,32,32,32,32,99,101,108,108,46,
+105,116,101,109,115,91,105,116,101,109,93,32,61,32,116,114,117,101,10,32,
+32,32,32,99,101,108,108,46,105,116,101,109,67,111,117,110,116,32,61,32,
+99,101,108,108,46,105,116,101,109,67,111,117,110,116,32,43,32,49,10,32,
+32,101,110,100,10,101,110,100,10,10,108,111,99,97,108,32,102,117,110,99,
+116,105,111,110,32,114,101,109,111,118,101,73,116,101,109,70,114,111,109,67,
+101,108,108,40,115,101,108,102,44,32,105,116,101,109,44,32,99,120,44,32,
+99,121,41,10,32,32,108,111,99,97,108,32,114,111,119,32,61,32,115,101,
+108,102,46,114,111,119,115,91,99,121,93,10,32,32,105,102,32,110,111,116,
+32,114,111,119,32,111,114,32,110,111,116,32,114,111,119,91,99,120,93,32,
+111,114,32,110,111,116,32,114,111,119,91,99,120,93,46,105,116,101,109,115,
+91,105,116,101,109,93,32,116,104,101,110,32,114,101,116,117,114,110,32,102,
+97,108,115,101,32,101,110,100,10,10,32,32,108,111,99,97,108,32,99,101,
+108,108,32,61,32,114,111,119,91,99,120,93,10,32,32,99,101,108,108,46,
+105,116,101,109,115,91,105,116,101,109,93,32,61,32,110,105,108,10,32,32,
+99,101,108,108,46,105,116,101,109,67,111,117,110,116,32,61,32,99,101,108,
+108,46,105,116,101,109,67,111,117,110,116,32,45,32,49,10,32,32,105,102,
+32,99,101,108,108,46,105,116,101,109,67,111,117,110,116,32,61,61,32,48,
+32,116,104,101,110,10,32,32,32,32,115,101,108,102,46,110,111,110,69,109,
+112,116,121,67,101,108,108,115,91,99,101,108,108,93,32,61,32,110,105,108,
+10,32,32,101,110,100,10,32,32,114,101,116,117,114,110,32,116,114,117,101,
+10,101,110,100,10,10,108,111,99,97,108,32,102,117,110,99,116,105,111,110,
32,103,101,116,68,105,99,116,73,116,101,109,115,73,110,67,101,108,108,82,
101,99,116,40,115,101,108,102,44,32,99,108,44,99,116,44,99,119,44,99,
-104,41,13,10,13,10,32,32,102,111,114,32,111,116,104,101,114,44,95,32,
+104,41,10,32,32,108,111,99,97,108,32,105,116,101,109,115,95,100,105,99,
+116,32,61,32,123,125,10,32,32,102,111,114,32,99,121,61,99,116,44,99,
+116,43,99,104,45,49,32,100,111,10,32,32,32,32,108,111,99,97,108,32,
+114,111,119,32,61,32,115,101,108,102,46,114,111,119,115,91,99,121,93,10,
+32,32,32,32,105,102,32,114,111,119,32,116,104,101,110,10,32,32,32,32,
+32,32,102,111,114,32,99,120,61,99,108,44,99,108,43,99,119,45,49,32,
+100,111,10,32,32,32,32,32,32,32,32,108,111,99,97,108,32,99,101,108,
+108,32,61,32,114,111,119,91,99,120,93,10,32,32,32,32,32,32,32,32,
+105,102,32,99,101,108,108,32,97,110,100,32,99,101,108,108,46,105,116,101,
+109,67,111,117,110,116,32,62,32,48,32,116,104,101,110,32,45,45,32,110,
+111,32,99,101,108,108,46,105,116,101,109,67,111,117,110,116,32,62,32,49,
+32,98,101,99,97,117,115,101,32,116,117,110,110,101,108,105,110,103,10,32,
+32,32,32,32,32,32,32,32,32,102,111,114,32,105,116,101,109,44,95,32,
+105,110,32,112,97,105,114,115,40,99,101,108,108,46,105,116,101,109,115,41,
+32,100,111,10,32,32,32,32,32,32,32,32,32,32,32,32,105,116,101,109,
+115,95,100,105,99,116,91,105,116,101,109,93,32,61,32,116,114,117,101,10,
+32,32,32,32,32,32,32,32,32,32,101,110,100,10,32,32,32,32,32,32,
+32,32,101,110,100,10,32,32,32,32,32,32,101,110,100,10,32,32,32,32,
+101,110,100,10,32,32,101,110,100,10,10,32,32,114,101,116,117,114,110,32,
+105,116,101,109,115,95,100,105,99,116,10,101,110,100,10,10,108,111,99,97,
+108,32,102,117,110,99,116,105,111,110,32,103,101,116,67,101,108,108,115,84,
+111,117,99,104,101,100,66,121,83,101,103,109,101,110,116,40,115,101,108,102,
+44,32,120,49,44,121,49,44,120,50,44,121,50,41,10,10,32,32,108,111,
+99,97,108,32,99,101,108,108,115,44,32,99,101,108,108,115,76,101,110,44,
+32,118,105,115,105,116,101,100,32,61,32,123,125,44,32,48,44,32,123,125,
+10,10,32,32,103,114,105,100,95,116,114,97,118,101,114,115,101,40,115,101,
+108,102,46,99,101,108,108,83,105,122,101,44,32,120,49,44,121,49,44,120,
+50,44,121,50,44,32,102,117,110,99,116,105,111,110,40,99,120,44,32,99,
+121,41,10,32,32,32,32,108,111,99,97,108,32,114,111,119,32,32,61,32,
+115,101,108,102,46,114,111,119,115,91,99,121,93,10,32,32,32,32,105,102,
+32,110,111,116,32,114,111,119,32,116,104,101,110,32,114,101,116,117,114,110,
+32,101,110,100,10,32,32,32,32,108,111,99,97,108,32,99,101,108,108,32,
+61,32,114,111,119,91,99,120,93,10,32,32,32,32,105,102,32,110,111,116,
+32,99,101,108,108,32,111,114,32,118,105,115,105,116,101,100,91,99,101,108,
+108,93,32,116,104,101,110,32,114,101,116,117,114,110,32,101,110,100,10,10,
+32,32,32,32,118,105,115,105,116,101,100,91,99,101,108,108,93,32,61,32,
+116,114,117,101,10,32,32,32,32,99,101,108,108,115,76,101,110,32,61,32,
+99,101,108,108,115,76,101,110,32,43,32,49,10,32,32,32,32,99,101,108,
+108,115,91,99,101,108,108,115,76,101,110,93,32,61,32,99,101,108,108,10,
+32,32,101,110,100,41,10,10,32,32,114,101,116,117,114,110,32,99,101,108,
+108,115,44,32,99,101,108,108,115,76,101,110,10,101,110,100,10,10,108,111,
+99,97,108,32,102,117,110,99,116,105,111,110,32,103,101,116,73,110,102,111,
+65,98,111,117,116,73,116,101,109,115,84,111,117,99,104,101,100,66,121,83,
+101,103,109,101,110,116,40,115,101,108,102,44,32,120,49,44,121,49,44,32,
+120,50,44,121,50,44,32,102,105,108,116,101,114,41,10,32,32,108,111,99,
+97,108,32,99,101,108,108,115,44,32,108,101,110,32,61,32,103,101,116,67,
+101,108,108,115,84,111,117,99,104,101,100,66,121,83,101,103,109,101,110,116,
+40,115,101,108,102,44,32,120,49,44,121,49,44,120,50,44,121,50,41,10,
+32,32,108,111,99,97,108,32,99,101,108,108,44,32,114,101,99,116,44,32,
+108,44,116,44,119,44,104,44,32,116,105,49,44,116,105,50,44,32,116,105,
+105,48,44,116,105,105,49,10,32,32,108,111,99,97,108,32,118,105,115,105,
+116,101,100,44,32,105,116,101,109,73,110,102,111,44,32,105,116,101,109,73,
+110,102,111,76,101,110,32,61,32,123,125,44,123,125,44,48,10,32,32,102,
+111,114,32,105,61,49,44,108,101,110,32,100,111,10,32,32,32,32,99,101,
+108,108,32,61,32,99,101,108,108,115,91,105,93,10,32,32,32,32,102,111,
+114,32,105,116,101,109,32,105,110,32,112,97,105,114,115,40,99,101,108,108,
+46,105,116,101,109,115,41,32,100,111,10,32,32,32,32,32,32,105,102,32,
+110,111,116,32,118,105,115,105,116,101,100,91,105,116,101,109,93,32,116,104,
+101,110,10,32,32,32,32,32,32,32,32,118,105,115,105,116,101,100,91,105,
+116,101,109,93,32,32,61,32,116,114,117,101,10,32,32,32,32,32,32,32,
+32,105,102,32,40,110,111,116,32,102,105,108,116,101,114,32,111,114,32,102,
+105,108,116,101,114,40,105,116,101,109,41,41,32,116,104,101,110,10,32,32,
+32,32,32,32,32,32,32,32,114,101,99,116,32,32,32,32,32,32,32,32,
+32,32,32,61,32,115,101,108,102,46,114,101,99,116,115,91,105,116,101,109,
+93,10,32,32,32,32,32,32,32,32,32,32,108,44,116,44,119,44,104,32,
+32,32,32,32,32,32,32,61,32,114,101,99,116,46,120,44,114,101,99,116,
+46,121,44,114,101,99,116,46,119,44,114,101,99,116,46,104,10,10,32,32,
+32,32,32,32,32,32,32,32,116,105,49,44,116,105,50,32,61,32,114,101,
+99,116,95,103,101,116,83,101,103,109,101,110,116,73,110,116,101,114,115,101,
+99,116,105,111,110,73,110,100,105,99,101,115,40,108,44,116,44,119,44,104,
+44,32,120,49,44,121,49,44,32,120,50,44,121,50,44,32,48,44,32,49,
+41,10,32,32,32,32,32,32,32,32,32,32,105,102,32,116,105,49,32,97,
+110,100,32,40,40,48,32,60,32,116,105,49,32,97,110,100,32,116,105,49,
+32,60,32,49,41,32,111,114,32,40,48,32,60,32,116,105,50,32,97,110,
+100,32,116,105,50,32,60,32,49,41,41,32,116,104,101,110,10,32,32,32,
+32,32,32,32,32,32,32,32,32,45,45,32,116,104,101,32,115,111,114,116,
+105,110,103,32,105,115,32,97,99,99,111,114,100,105,110,103,32,116,111,32,
+116,104,101,32,116,32,111,102,32,97,110,32,105,110,102,105,110,105,116,101,
+32,108,105,110,101,44,32,110,111,116,32,116,104,101,32,115,101,103,109,101,
+110,116,10,32,32,32,32,32,32,32,32,32,32,32,32,116,105,105,48,44,
+116,105,105,49,32,32,32,32,61,32,114,101,99,116,95,103,101,116,83,101,
+103,109,101,110,116,73,110,116,101,114,115,101,99,116,105,111,110,73,110,100,
+105,99,101,115,40,108,44,116,44,119,44,104,44,32,120,49,44,121,49,44,
+32,120,50,44,121,50,44,32,45,109,97,116,104,46,104,117,103,101,44,32,
+109,97,116,104,46,104,117,103,101,41,10,32,32,32,32,32,32,32,32,32,
+32,32,32,105,116,101,109,73,110,102,111,76,101,110,32,32,61,32,105,116,
+101,109,73,110,102,111,76,101,110,32,43,32,49,10,32,32,32,32,32,32,
+32,32,32,32,32,32,105,116,101,109,73,110,102,111,91,105,116,101,109,73,
+110,102,111,76,101,110,93,32,61,32,123,105,116,101,109,32,61,32,105,116,
+101,109,44,32,116,105,49,32,61,32,116,105,49,44,32,116,105,50,32,61,
+32,116,105,50,44,32,119,101,105,103,104,116,32,61,32,109,105,110,40,116,
+105,105,48,44,116,105,105,49,41,125,10,32,32,32,32,32,32,32,32,32,
+32,101,110,100,10,32,32,32,32,32,32,32,32,101,110,100,10,32,32,32,
+32,32,32,101,110,100,10,32,32,32,32,101,110,100,10,32,32,101,110,100,
+10,32,32,116,97,98,108,101,46,115,111,114,116,40,105,116,101,109,73,110,
+102,111,44,32,115,111,114,116,66,121,87,101,105,103,104,116,41,10,32,32,
+114,101,116,117,114,110,32,105,116,101,109,73,110,102,111,44,32,105,116,101,
+109,73,110,102,111,76,101,110,10,101,110,100,10,10,108,111,99,97,108,32,
+102,117,110,99,116,105,111,110,32,103,101,116,82,101,115,112,111,110,115,101,
+66,121,78,97,109,101,40,115,101,108,102,44,32,110,97,109,101,41,10,32,
+32,108,111,99,97,108,32,114,101,115,112,111,110,115,101,32,61,32,115,101,
+108,102,46,114,101,115,112,111,110,115,101,115,91,110,97,109,101,93,10,32,
+32,105,102,32,110,111,116,32,114,101,115,112,111,110,115,101,32,116,104,101,
+110,10,32,32,32,32,101,114,114,111,114,40,40,39,85,110,107,110,111,119,
+110,32,99,111,108,108,105,115,105,111,110,32,116,121,112,101,58,32,37,115,
+32,40,37,115,41,39,41,58,102,111,114,109,97,116,40,110,97,109,101,44,
+32,116,121,112,101,40,110,97,109,101,41,41,41,10,32,32,101,110,100,10,
+32,32,114,101,116,117,114,110,32,114,101,115,112,111,110,115,101,10,101,110,
+100,10,10,10,45,45,32,77,105,115,99,32,80,117,98,108,105,99,32,77,
+101,116,104,111,100,115,10,10,102,117,110,99,116,105,111,110,32,87,111,114,
+108,100,58,97,100,100,82,101,115,112,111,110,115,101,40,110,97,109,101,44,
+32,114,101,115,112,111,110,115,101,41,10,32,32,115,101,108,102,46,114,101,
+115,112,111,110,115,101,115,91,110,97,109,101,93,32,61,32,114,101,115,112,
+111,110,115,101,10,101,110,100,10,10,102,117,110,99,116,105,111,110,32,87,
+111,114,108,100,58,112,114,111,106,101,99,116,40,105,116,101,109,44,32,120,
+44,121,44,119,44,104,44,32,103,111,97,108,88,44,32,103,111,97,108,89,
+44,32,102,105,108,116,101,114,41,10,32,32,97,115,115,101,114,116,73,115,
+82,101,99,116,40,120,44,121,44,119,44,104,41,10,10,32,32,103,111,97,
+108,88,32,61,32,103,111,97,108,88,32,111,114,32,120,10,32,32,103,111,
+97,108,89,32,61,32,103,111,97,108,89,32,111,114,32,121,10,32,32,102,
+105,108,116,101,114,32,32,61,32,102,105,108,116,101,114,32,32,111,114,32,
+100,101,102,97,117,108,116,70,105,108,116,101,114,10,10,32,32,108,111,99,
+97,108,32,99,111,108,108,105,115,105,111,110,115,44,32,108,101,110,32,61,
+32,123,125,44,32,48,10,10,32,32,108,111,99,97,108,32,118,105,115,105,
+116,101,100,32,61,32,123,125,10,32,32,105,102,32,105,116,101,109,32,126,
+61,32,110,105,108,32,116,104,101,110,32,118,105,115,105,116,101,100,91,105,
+116,101,109,93,32,61,32,116,114,117,101,32,101,110,100,10,10,32,32,45,
+45,32,84,104,105,115,32,99,111,117,108,100,32,112,114,111,98,97,98,108,
+121,32,98,101,32,100,111,110,101,32,119,105,116,104,32,108,101,115,115,32,
+99,101,108,108,115,32,117,115,105,110,103,32,97,32,112,111,108,121,103,111,
+110,32,114,97,115,116,101,114,32,111,118,101,114,32,116,104,101,32,99,101,
+108,108,115,32,105,110,115,116,101,97,100,32,111,102,32,97,10,32,32,45,
+45,32,98,111,117,110,100,105,110,103,32,114,101,99,116,32,111,102,32,116,
+104,101,32,119,104,111,108,101,32,109,111,118,101,109,101,110,116,46,32,67,
+111,110,100,105,116,105,111,110,97,108,32,116,111,32,98,117,105,108,100,105,
+110,103,32,97,32,113,117,101,114,121,80,111,108,121,103,111,110,32,109,101,
+116,104,111,100,10,32,32,108,111,99,97,108,32,116,108,44,32,116,116,32,
+61,32,109,105,110,40,103,111,97,108,88,44,32,120,41,44,32,32,32,32,
+32,32,32,109,105,110,40,103,111,97,108,89,44,32,121,41,10,32,32,108,
+111,99,97,108,32,116,114,44,32,116,98,32,61,32,109,97,120,40,103,111,
+97,108,88,32,43,32,119,44,32,120,43,119,41,44,32,109,97,120,40,103,
+111,97,108,89,32,43,32,104,44,32,121,43,104,41,10,32,32,108,111,99,
+97,108,32,116,119,44,32,116,104,32,61,32,116,114,45,116,108,44,32,116,
+98,45,116,116,10,10,32,32,108,111,99,97,108,32,99,108,44,99,116,44,
+99,119,44,99,104,32,61,32,103,114,105,100,95,116,111,67,101,108,108,82,
+101,99,116,40,115,101,108,102,46,99,101,108,108,83,105,122,101,44,32,116,
+108,44,116,116,44,116,119,44,116,104,41,10,10,32,32,108,111,99,97,108,
+32,100,105,99,116,73,116,101,109,115,73,110,67,101,108,108,82,101,99,116,
+32,61,32,103,101,116,68,105,99,116,73,116,101,109,115,73,110,67,101,108,
+108,82,101,99,116,40,115,101,108,102,44,32,99,108,44,99,116,44,99,119,
+44,99,104,41,10,10,32,32,102,111,114,32,111,116,104,101,114,44,95,32,
105,110,32,112,97,105,114,115,40,100,105,99,116,73,116,101,109,115,73,110,
-67,101,108,108,82,101,99,116,41,32,100,111,13,10,32,32,32,32,105,102,
-32,110,111,116,32,118,105,115,105,116,101,100,91,111,116,104,101,114,93,32,
-116,104,101,110,13,10,32,32,32,32,32,32,118,105,115,105,116,101,100,91,
-111,116,104,101,114,93,32,61,32,116,114,117,101,13,10,13,10,32,32,32,
-32,32,32,108,111,99,97,108,32,114,101,115,112,111,110,115,101,78,97,109,
-101,32,61,32,102,105,108,116,101,114,40,105,116,101,109,44,32,111,116,104,
-101,114,41,13,10,32,32,32,32,32,32,105,102,32,114,101,115,112,111,110,
-115,101,78,97,109,101,32,116,104,101,110,13,10,32,32,32,32,32,32,32,
-32,108,111,99,97,108,32,111,120,44,111,121,44,111,119,44,111,104,32,32,
-32,61,32,115,101,108,102,58,103,101,116,82,101,99,116,40,111,116,104,101,
-114,41,13,10,32,32,32,32,32,32,32,32,108,111,99,97,108,32,99,111,
-108,32,32,32,32,32,32,32,32,32,32,32,61,32,114,101,99,116,95,100,
-101,116,101,99,116,67,111,108,108,105,115,105,111,110,40,120,44,121,44,119,
-44,104,44,32,111,120,44,111,121,44,111,119,44,111,104,44,32,103,111,97,
-108,88,44,32,103,111,97,108,89,41,13,10,13,10,32,32,32,32,32,32,
-32,32,105,102,32,99,111,108,32,116,104,101,110,13,10,32,32,32,32,32,
-32,32,32,32,32,99,111,108,46,111,116,104,101,114,32,32,32,32,61,32,
-111,116,104,101,114,13,10,32,32,32,32,32,32,32,32,32,32,99,111,108,
-46,105,116,101,109,32,32,32,32,32,61,32,105,116,101,109,13,10,32,32,
-32,32,32,32,32,32,32,32,99,111,108,46,116,121,112,101,32,32,32,32,
-32,61,32,114,101,115,112,111,110,115,101,78,97,109,101,13,10,13,10,32,
-32,32,32,32,32,32,32,32,32,108,101,110,32,61,32,108,101,110,32,43,
-32,49,13,10,32,32,32,32,32,32,32,32,32,32,99,111,108,108,105,115,
-105,111,110,115,91,108,101,110,93,32,61,32,99,111,108,13,10,32,32,32,
-32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,101,110,100,13,
-10,32,32,32,32,101,110,100,13,10,32,32,101,110,100,13,10,13,10,32,
-32,116,97,98,108,101,46,115,111,114,116,40,99,111,108,108,105,115,105,111,
-110,115,44,32,115,111,114,116,66,121,84,105,65,110,100,68,105,115,116,97,
-110,99,101,41,13,10,13,10,32,32,114,101,116,117,114,110,32,99,111,108,
-108,105,115,105,111,110,115,44,32,108,101,110,13,10,101,110,100,13,10,13,
-10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,99,111,117,110,
-116,67,101,108,108,115,40,41,13,10,32,32,108,111,99,97,108,32,99,111,
-117,110,116,32,61,32,48,13,10,32,32,102,111,114,32,95,44,114,111,119,
-32,105,110,32,112,97,105,114,115,40,115,101,108,102,46,114,111,119,115,41,
-32,100,111,13,10,32,32,32,32,102,111,114,32,95,44,95,32,105,110,32,
-112,97,105,114,115,40,114,111,119,41,32,100,111,13,10,32,32,32,32,32,
-32,99,111,117,110,116,32,61,32,99,111,117,110,116,32,43,32,49,13,10,
-32,32,32,32,101,110,100,13,10,32,32,101,110,100,13,10,32,32,114,101,
-116,117,114,110,32,99,111,117,110,116,13,10,101,110,100,13,10,13,10,102,
-117,110,99,116,105,111,110,32,87,111,114,108,100,58,104,97,115,73,116,101,
-109,40,105,116,101,109,41,13,10,32,32,114,101,116,117,114,110,32,110,111,
-116,32,110,111,116,32,115,101,108,102,46,114,101,99,116,115,91,105,116,101,
-109,93,13,10,101,110,100,13,10,13,10,102,117,110,99,116,105,111,110,32,
-87,111,114,108,100,58,103,101,116,73,116,101,109,115,40,41,13,10,32,32,
-108,111,99,97,108,32,105,116,101,109,115,44,32,108,101,110,32,61,32,123,
-125,44,32,48,13,10,32,32,102,111,114,32,105,116,101,109,44,95,32,105,
-110,32,112,97,105,114,115,40,115,101,108,102,46,114,101,99,116,115,41,32,
-100,111,13,10,32,32,32,32,108,101,110,32,61,32,108,101,110,32,43,32,
-49,13,10,32,32,32,32,105,116,101,109,115,91,108,101,110,93,32,61,32,
-105,116,101,109,13,10,32,32,101,110,100,13,10,32,32,114,101,116,117,114,
-110,32,105,116,101,109,115,44,32,108,101,110,13,10,101,110,100,13,10,13,
-10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,99,111,117,110,
-116,73,116,101,109,115,40,41,13,10,32,32,108,111,99,97,108,32,108,101,
-110,32,61,32,48,13,10,32,32,102,111,114,32,95,32,105,110,32,112,97,
-105,114,115,40,115,101,108,102,46,114,101,99,116,115,41,32,100,111,32,108,
-101,110,32,61,32,108,101,110,32,43,32,49,32,101,110,100,13,10,32,32,
-114,101,116,117,114,110,32,108,101,110,13,10,101,110,100,13,10,13,10,102,
-117,110,99,116,105,111,110,32,87,111,114,108,100,58,103,101,116,82,101,99,
-116,40,105,116,101,109,41,13,10,32,32,108,111,99,97,108,32,114,101,99,
-116,32,61,32,115,101,108,102,46,114,101,99,116,115,91,105,116,101,109,93,
-13,10,32,32,105,102,32,110,111,116,32,114,101,99,116,32,116,104,101,110,
-13,10,32,32,32,32,101,114,114,111,114,40,39,73,116,101,109,32,39,32,
-46,46,32,116,111,115,116,114,105,110,103,40,105,116,101,109,41,32,46,46,
-32,39,32,109,117,115,116,32,98,101,32,97,100,100,101,100,32,116,111,32,
-116,104,101,32,119,111,114,108,100,32,98,101,102,111,114,101,32,103,101,116,
-116,105,110,103,32,105,116,115,32,114,101,99,116,46,32,85,115,101,32,119,
-111,114,108,100,58,97,100,100,40,105,116,101,109,44,32,120,44,121,44,119,
-44,104,41,32,116,111,32,97,100,100,32,105,116,32,102,105,114,115,116,46,
-39,41,13,10,32,32,101,110,100,13,10,32,32,114,101,116,117,114,110,32,
+67,101,108,108,82,101,99,116,41,32,100,111,10,32,32,32,32,105,102,32,
+110,111,116,32,118,105,115,105,116,101,100,91,111,116,104,101,114,93,32,116,
+104,101,110,10,32,32,32,32,32,32,118,105,115,105,116,101,100,91,111,116,
+104,101,114,93,32,61,32,116,114,117,101,10,10,32,32,32,32,32,32,108,
+111,99,97,108,32,114,101,115,112,111,110,115,101,78,97,109,101,32,61,32,
+102,105,108,116,101,114,40,105,116,101,109,44,32,111,116,104,101,114,41,10,
+32,32,32,32,32,32,105,102,32,114,101,115,112,111,110,115,101,78,97,109,
+101,32,116,104,101,110,10,32,32,32,32,32,32,32,32,108,111,99,97,108,
+32,111,120,44,111,121,44,111,119,44,111,104,32,32,32,61,32,115,101,108,
+102,58,103,101,116,82,101,99,116,40,111,116,104,101,114,41,10,32,32,32,
+32,32,32,32,32,108,111,99,97,108,32,99,111,108,32,32,32,32,32,32,
+32,32,32,32,32,61,32,114,101,99,116,95,100,101,116,101,99,116,67,111,
+108,108,105,115,105,111,110,40,120,44,121,44,119,44,104,44,32,111,120,44,
+111,121,44,111,119,44,111,104,44,32,103,111,97,108,88,44,32,103,111,97,
+108,89,41,10,10,32,32,32,32,32,32,32,32,105,102,32,99,111,108,32,
+116,104,101,110,10,32,32,32,32,32,32,32,32,32,32,99,111,108,46,111,
+116,104,101,114,32,32,32,32,61,32,111,116,104,101,114,10,32,32,32,32,
+32,32,32,32,32,32,99,111,108,46,105,116,101,109,32,32,32,32,32,61,
+32,105,116,101,109,10,32,32,32,32,32,32,32,32,32,32,99,111,108,46,
+116,121,112,101,32,32,32,32,32,61,32,114,101,115,112,111,110,115,101,78,
+97,109,101,10,10,32,32,32,32,32,32,32,32,32,32,108,101,110,32,61,
+32,108,101,110,32,43,32,49,10,32,32,32,32,32,32,32,32,32,32,99,
+111,108,108,105,115,105,111,110,115,91,108,101,110,93,32,61,32,99,111,108,
+10,32,32,32,32,32,32,32,32,101,110,100,10,32,32,32,32,32,32,101,
+110,100,10,32,32,32,32,101,110,100,10,32,32,101,110,100,10,10,32,32,
+116,97,98,108,101,46,115,111,114,116,40,99,111,108,108,105,115,105,111,110,
+115,44,32,115,111,114,116,66,121,84,105,65,110,100,68,105,115,116,97,110,
+99,101,41,10,10,32,32,114,101,116,117,114,110,32,99,111,108,108,105,115,
+105,111,110,115,44,32,108,101,110,10,101,110,100,10,10,102,117,110,99,116,
+105,111,110,32,87,111,114,108,100,58,99,111,117,110,116,67,101,108,108,115,
+40,41,10,32,32,108,111,99,97,108,32,99,111,117,110,116,32,61,32,48,
+10,32,32,102,111,114,32,95,44,114,111,119,32,105,110,32,112,97,105,114,
+115,40,115,101,108,102,46,114,111,119,115,41,32,100,111,10,32,32,32,32,
+102,111,114,32,95,44,95,32,105,110,32,112,97,105,114,115,40,114,111,119,
+41,32,100,111,10,32,32,32,32,32,32,99,111,117,110,116,32,61,32,99,
+111,117,110,116,32,43,32,49,10,32,32,32,32,101,110,100,10,32,32,101,
+110,100,10,32,32,114,101,116,117,114,110,32,99,111,117,110,116,10,101,110,
+100,10,10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,104,97,
+115,73,116,101,109,40,105,116,101,109,41,10,32,32,114,101,116,117,114,110,
+32,110,111,116,32,110,111,116,32,115,101,108,102,46,114,101,99,116,115,91,
+105,116,101,109,93,10,101,110,100,10,10,102,117,110,99,116,105,111,110,32,
+87,111,114,108,100,58,103,101,116,73,116,101,109,115,40,41,10,32,32,108,
+111,99,97,108,32,105,116,101,109,115,44,32,108,101,110,32,61,32,123,125,
+44,32,48,10,32,32,102,111,114,32,105,116,101,109,44,95,32,105,110,32,
+112,97,105,114,115,40,115,101,108,102,46,114,101,99,116,115,41,32,100,111,
+10,32,32,32,32,108,101,110,32,61,32,108,101,110,32,43,32,49,10,32,
+32,32,32,105,116,101,109,115,91,108,101,110,93,32,61,32,105,116,101,109,
+10,32,32,101,110,100,10,32,32,114,101,116,117,114,110,32,105,116,101,109,
+115,44,32,108,101,110,10,101,110,100,10,10,102,117,110,99,116,105,111,110,
+32,87,111,114,108,100,58,99,111,117,110,116,73,116,101,109,115,40,41,10,
+32,32,108,111,99,97,108,32,108,101,110,32,61,32,48,10,32,32,102,111,
+114,32,95,32,105,110,32,112,97,105,114,115,40,115,101,108,102,46,114,101,
+99,116,115,41,32,100,111,32,108,101,110,32,61,32,108,101,110,32,43,32,
+49,32,101,110,100,10,32,32,114,101,116,117,114,110,32,108,101,110,10,101,
+110,100,10,10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,103,
+101,116,82,101,99,116,40,105,116,101,109,41,10,32,32,108,111,99,97,108,
+32,114,101,99,116,32,61,32,115,101,108,102,46,114,101,99,116,115,91,105,
+116,101,109,93,10,32,32,105,102,32,110,111,116,32,114,101,99,116,32,116,
+104,101,110,10,32,32,32,32,101,114,114,111,114,40,39,73,116,101,109,32,
+39,32,46,46,32,116,111,115,116,114,105,110,103,40,105,116,101,109,41,32,
+46,46,32,39,32,109,117,115,116,32,98,101,32,97,100,100,101,100,32,116,
+111,32,116,104,101,32,119,111,114,108,100,32,98,101,102,111,114,101,32,103,
+101,116,116,105,110,103,32,105,116,115,32,114,101,99,116,46,32,85,115,101,
+32,119,111,114,108,100,58,97,100,100,40,105,116,101,109,44,32,120,44,121,
+44,119,44,104,41,32,116,111,32,97,100,100,32,105,116,32,102,105,114,115,
+116,46,39,41,10,32,32,101,110,100,10,32,32,114,101,116,117,114,110,32,
114,101,99,116,46,120,44,32,114,101,99,116,46,121,44,32,114,101,99,116,
-46,119,44,32,114,101,99,116,46,104,13,10,101,110,100,13,10,13,10,102,
-117,110,99,116,105,111,110,32,87,111,114,108,100,58,116,111,87,111,114,108,
-100,40,99,120,44,32,99,121,41,13,10,32,32,114,101,116,117,114,110,32,
-103,114,105,100,95,116,111,87,111,114,108,100,40,115,101,108,102,46,99,101,
-108,108,83,105,122,101,44,32,99,120,44,32,99,121,41,13,10,101,110,100,
-13,10,13,10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,116,
-111,67,101,108,108,40,120,44,121,41,13,10,32,32,114,101,116,117,114,110,
-32,103,114,105,100,95,116,111,67,101,108,108,40,115,101,108,102,46,99,101,
-108,108,83,105,122,101,44,32,120,44,32,121,41,13,10,101,110,100,13,10,
-13,10,13,10,45,45,45,32,81,117,101,114,121,32,109,101,116,104,111,100,
-115,13,10,13,10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,
-113,117,101,114,121,82,101,99,116,40,120,44,121,44,119,44,104,44,32,102,
-105,108,116,101,114,41,13,10,13,10,32,32,97,115,115,101,114,116,73,115,
-82,101,99,116,40,120,44,121,44,119,44,104,41,13,10,13,10,32,32,108,
-111,99,97,108,32,99,108,44,99,116,44,99,119,44,99,104,32,61,32,103,
-114,105,100,95,116,111,67,101,108,108,82,101,99,116,40,115,101,108,102,46,
-99,101,108,108,83,105,122,101,44,32,120,44,121,44,119,44,104,41,13,10,
-32,32,108,111,99,97,108,32,100,105,99,116,73,116,101,109,115,73,110,67,
-101,108,108,82,101,99,116,32,61,32,103,101,116,68,105,99,116,73,116,101,
-109,115,73,110,67,101,108,108,82,101,99,116,40,115,101,108,102,44,32,99,
-108,44,99,116,44,99,119,44,99,104,41,13,10,13,10,32,32,108,111,99,
-97,108,32,105,116,101,109,115,44,32,108,101,110,32,61,32,123,125,44,32,
-48,13,10,13,10,32,32,108,111,99,97,108,32,114,101,99,116,13,10,32,
-32,102,111,114,32,105,116,101,109,44,95,32,105,110,32,112,97,105,114,115,
-40,100,105,99,116,73,116,101,109,115,73,110,67,101,108,108,82,101,99,116,
-41,32,100,111,13,10,32,32,32,32,114,101,99,116,32,61,32,115,101,108,
-102,46,114,101,99,116,115,91,105,116,101,109,93,13,10,32,32,32,32,105,
-102,32,40,110,111,116,32,102,105,108,116,101,114,32,111,114,32,102,105,108,
-116,101,114,40,105,116,101,109,41,41,13,10,32,32,32,32,97,110,100,32,
-114,101,99,116,95,105,115,73,110,116,101,114,115,101,99,116,105,110,103,40,
-120,44,121,44,119,44,104,44,32,114,101,99,116,46,120,44,32,114,101,99,
-116,46,121,44,32,114,101,99,116,46,119,44,32,114,101,99,116,46,104,41,
-13,10,32,32,32,32,116,104,101,110,13,10,32,32,32,32,32,32,108,101,
-110,32,61,32,108,101,110,32,43,32,49,13,10,32,32,32,32,32,32,105,
-116,101,109,115,91,108,101,110,93,32,61,32,105,116,101,109,13,10,32,32,
-32,32,101,110,100,13,10,32,32,101,110,100,13,10,13,10,32,32,114,101,
-116,117,114,110,32,105,116,101,109,115,44,32,108,101,110,13,10,101,110,100,
-13,10,13,10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,113,
-117,101,114,121,80,111,105,110,116,40,120,44,121,44,32,102,105,108,116,101,
-114,41,13,10,32,32,108,111,99,97,108,32,99,120,44,99,121,32,61,32,
-115,101,108,102,58,116,111,67,101,108,108,40,120,44,121,41,13,10,32,32,
-108,111,99,97,108,32,100,105,99,116,73,116,101,109,115,73,110,67,101,108,
-108,82,101,99,116,32,61,32,103,101,116,68,105,99,116,73,116,101,109,115,
-73,110,67,101,108,108,82,101,99,116,40,115,101,108,102,44,32,99,120,44,
-99,121,44,49,44,49,41,13,10,13,10,32,32,108,111,99,97,108,32,105,
-116,101,109,115,44,32,108,101,110,32,61,32,123,125,44,32,48,13,10,13,
-10,32,32,108,111,99,97,108,32,114,101,99,116,13,10,32,32,102,111,114,
-32,105,116,101,109,44,95,32,105,110,32,112,97,105,114,115,40,100,105,99,
-116,73,116,101,109,115,73,110,67,101,108,108,82,101,99,116,41,32,100,111,
-13,10,32,32,32,32,114,101,99,116,32,61,32,115,101,108,102,46,114,101,
-99,116,115,91,105,116,101,109,93,13,10,32,32,32,32,105,102,32,40,110,
-111,116,32,102,105,108,116,101,114,32,111,114,32,102,105,108,116,101,114,40,
-105,116,101,109,41,41,13,10,32,32,32,32,97,110,100,32,114,101,99,116,
-95,99,111,110,116,97,105,110,115,80,111,105,110,116,40,114,101,99,116,46,
-120,44,32,114,101,99,116,46,121,44,32,114,101,99,116,46,119,44,32,114,
-101,99,116,46,104,44,32,120,44,32,121,41,13,10,32,32,32,32,116,104,
-101,110,13,10,32,32,32,32,32,32,108,101,110,32,61,32,108,101,110,32,
-43,32,49,13,10,32,32,32,32,32,32,105,116,101,109,115,91,108,101,110,
-93,32,61,32,105,116,101,109,13,10,32,32,32,32,101,110,100,13,10,32,
-32,101,110,100,13,10,13,10,32,32,114,101,116,117,114,110,32,105,116,101,
-109,115,44,32,108,101,110,13,10,101,110,100,13,10,13,10,102,117,110,99,
-116,105,111,110,32,87,111,114,108,100,58,113,117,101,114,121,83,101,103,109,
-101,110,116,40,120,49,44,32,121,49,44,32,120,50,44,32,121,50,44,32,
-102,105,108,116,101,114,41,13,10,32,32,108,111,99,97,108,32,105,116,101,
-109,73,110,102,111,44,32,108,101,110,32,61,32,103,101,116,73,110,102,111,
-65,98,111,117,116,73,116,101,109,115,84,111,117,99,104,101,100,66,121,83,
-101,103,109,101,110,116,40,115,101,108,102,44,32,120,49,44,32,121,49,44,
-32,120,50,44,32,121,50,44,32,102,105,108,116,101,114,41,13,10,32,32,
-108,111,99,97,108,32,105,116,101,109,115,32,61,32,123,125,13,10,32,32,
-102,111,114,32,105,61,49,44,32,108,101,110,32,100,111,13,10,32,32,32,
-32,105,116,101,109,115,91,105,93,32,61,32,105,116,101,109,73,110,102,111,
-91,105,93,46,105,116,101,109,13,10,32,32,101,110,100,13,10,32,32,114,
-101,116,117,114,110,32,105,116,101,109,115,44,32,108,101,110,13,10,101,110,
-100,13,10,13,10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,
-113,117,101,114,121,83,101,103,109,101,110,116,87,105,116,104,67,111,111,114,
-100,115,40,120,49,44,32,121,49,44,32,120,50,44,32,121,50,44,32,102,
-105,108,116,101,114,41,13,10,32,32,108,111,99,97,108,32,105,116,101,109,
-73,110,102,111,44,32,108,101,110,32,61,32,103,101,116,73,110,102,111,65,
-98,111,117,116,73,116,101,109,115,84,111,117,99,104,101,100,66,121,83,101,
-103,109,101,110,116,40,115,101,108,102,44,32,120,49,44,32,121,49,44,32,
-120,50,44,32,121,50,44,32,102,105,108,116,101,114,41,13,10,32,32,108,
-111,99,97,108,32,100,120,44,32,100,121,32,32,32,32,32,32,32,32,61,
-32,120,50,45,120,49,44,32,121,50,45,121,49,13,10,32,32,108,111,99,
-97,108,32,105,110,102,111,44,32,116,105,49,44,32,116,105,50,13,10,32,
-32,102,111,114,32,105,61,49,44,32,108,101,110,32,100,111,13,10,32,32,
-32,32,105,110,102,111,32,32,61,32,105,116,101,109,73,110,102,111,91,105,
-93,13,10,32,32,32,32,116,105,49,32,32,32,61,32,105,110,102,111,46,
-116,105,49,13,10,32,32,32,32,116,105,50,32,32,32,61,32,105,110,102,
-111,46,116,105,50,13,10,13,10,32,32,32,32,105,110,102,111,46,119,101,
-105,103,104,116,32,32,61,32,110,105,108,13,10,32,32,32,32,105,110,102,
-111,46,120,49,32,32,32,32,32,32,61,32,120,49,32,43,32,100,120,32,
-42,32,116,105,49,13,10,32,32,32,32,105,110,102,111,46,121,49,32,32,
-32,32,32,32,61,32,121,49,32,43,32,100,121,32,42,32,116,105,49,13,
-10,32,32,32,32,105,110,102,111,46,120,50,32,32,32,32,32,32,61,32,
-120,49,32,43,32,100,120,32,42,32,116,105,50,13,10,32,32,32,32,105,
-110,102,111,46,121,50,32,32,32,32,32,32,61,32,121,49,32,43,32,100,
-121,32,42,32,116,105,50,13,10,32,32,101,110,100,13,10,32,32,114,101,
-116,117,114,110,32,105,116,101,109,73,110,102,111,44,32,108,101,110,13,10,
-101,110,100,13,10,13,10,13,10,45,45,45,32,77,97,105,110,32,109,101,
-116,104,111,100,115,13,10,13,10,102,117,110,99,116,105,111,110,32,87,111,
-114,108,100,58,97,100,100,40,105,116,101,109,44,32,120,44,121,44,119,44,
-104,41,13,10,32,32,108,111,99,97,108,32,114,101,99,116,32,61,32,115,
-101,108,102,46,114,101,99,116,115,91,105,116,101,109,93,13,10,32,32,105,
-102,32,114,101,99,116,32,116,104,101,110,13,10,32,32,32,32,101,114,114,
-111,114,40,39,73,116,101,109,32,39,32,46,46,32,116,111,115,116,114,105,
-110,103,40,105,116,101,109,41,32,46,46,32,39,32,97,100,100,101,100,32,
-116,111,32,116,104,101,32,119,111,114,108,100,32,116,119,105,99,101,46,39,
-41,13,10,32,32,101,110,100,13,10,32,32,97,115,115,101,114,116,73,115,
-82,101,99,116,40,120,44,121,44,119,44,104,41,13,10,13,10,32,32,115,
-101,108,102,46,114,101,99,116,115,91,105,116,101,109,93,32,61,32,123,120,
-61,120,44,121,61,121,44,119,61,119,44,104,61,104,125,13,10,13,10,32,
+46,119,44,32,114,101,99,116,46,104,10,101,110,100,10,10,102,117,110,99,
+116,105,111,110,32,87,111,114,108,100,58,116,111,87,111,114,108,100,40,99,
+120,44,32,99,121,41,10,32,32,114,101,116,117,114,110,32,103,114,105,100,
+95,116,111,87,111,114,108,100,40,115,101,108,102,46,99,101,108,108,83,105,
+122,101,44,32,99,120,44,32,99,121,41,10,101,110,100,10,10,102,117,110,
+99,116,105,111,110,32,87,111,114,108,100,58,116,111,67,101,108,108,40,120,
+44,121,41,10,32,32,114,101,116,117,114,110,32,103,114,105,100,95,116,111,
+67,101,108,108,40,115,101,108,102,46,99,101,108,108,83,105,122,101,44,32,
+120,44,32,121,41,10,101,110,100,10,10,10,45,45,45,32,81,117,101,114,
+121,32,109,101,116,104,111,100,115,10,10,102,117,110,99,116,105,111,110,32,
+87,111,114,108,100,58,113,117,101,114,121,82,101,99,116,40,120,44,121,44,
+119,44,104,44,32,102,105,108,116,101,114,41,10,10,32,32,97,115,115,101,
+114,116,73,115,82,101,99,116,40,120,44,121,44,119,44,104,41,10,10,32,
32,108,111,99,97,108,32,99,108,44,99,116,44,99,119,44,99,104,32,61,
32,103,114,105,100,95,116,111,67,101,108,108,82,101,99,116,40,115,101,108,
102,46,99,101,108,108,83,105,122,101,44,32,120,44,121,44,119,44,104,41,
-13,10,32,32,102,111,114,32,99,121,32,61,32,99,116,44,32,99,116,43,
-99,104,45,49,32,100,111,13,10,32,32,32,32,102,111,114,32,99,120,32,
-61,32,99,108,44,32,99,108,43,99,119,45,49,32,100,111,13,10,32,32,
-32,32,32,32,97,100,100,73,116,101,109,84,111,67,101,108,108,40,115,101,
-108,102,44,32,105,116,101,109,44,32,99,120,44,32,99,121,41,13,10,32,
-32,32,32,101,110,100,13,10,32,32,101,110,100,13,10,13,10,32,32,114,
-101,116,117,114,110,32,105,116,101,109,13,10,101,110,100,13,10,13,10,102,
-117,110,99,116,105,111,110,32,87,111,114,108,100,58,114,101,109,111,118,101,
-40,105,116,101,109,41,13,10,32,32,108,111,99,97,108,32,120,44,121,44,
-119,44,104,32,61,32,115,101,108,102,58,103,101,116,82,101,99,116,40,105,
-116,101,109,41,13,10,13,10,32,32,115,101,108,102,46,114,101,99,116,115,
-91,105,116,101,109,93,32,61,32,110,105,108,13,10,32,32,108,111,99,97,
-108,32,99,108,44,99,116,44,99,119,44,99,104,32,61,32,103,114,105,100,
-95,116,111,67,101,108,108,82,101,99,116,40,115,101,108,102,46,99,101,108,
-108,83,105,122,101,44,32,120,44,121,44,119,44,104,41,13,10,32,32,102,
-111,114,32,99,121,32,61,32,99,116,44,32,99,116,43,99,104,45,49,32,
-100,111,13,10,32,32,32,32,102,111,114,32,99,120,32,61,32,99,108,44,
-32,99,108,43,99,119,45,49,32,100,111,13,10,32,32,32,32,32,32,114,
-101,109,111,118,101,73,116,101,109,70,114,111,109,67,101,108,108,40,115,101,
-108,102,44,32,105,116,101,109,44,32,99,120,44,32,99,121,41,13,10,32,
-32,32,32,101,110,100,13,10,32,32,101,110,100,13,10,101,110,100,13,10,
-13,10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,117,112,100,
-97,116,101,40,105,116,101,109,44,32,120,50,44,121,50,44,119,50,44,104,
-50,41,13,10,32,32,108,111,99,97,108,32,120,49,44,121,49,44,119,49,
-44,104,49,32,61,32,115,101,108,102,58,103,101,116,82,101,99,116,40,105,
-116,101,109,41,13,10,32,32,119,50,44,104,50,32,61,32,119,50,32,111,
-114,32,119,49,44,32,104,50,32,111,114,32,104,49,13,10,32,32,97,115,
-115,101,114,116,73,115,82,101,99,116,40,120,50,44,121,50,44,119,50,44,
-104,50,41,13,10,13,10,32,32,105,102,32,120,49,32,126,61,32,120,50,
-32,111,114,32,121,49,32,126,61,32,121,50,32,111,114,32,119,49,32,126,
-61,32,119,50,32,111,114,32,104,49,32,126,61,32,104,50,32,116,104,101,
-110,13,10,13,10,32,32,32,32,108,111,99,97,108,32,99,101,108,108,83,
-105,122,101,32,61,32,115,101,108,102,46,99,101,108,108,83,105,122,101,13,
-10,32,32,32,32,108,111,99,97,108,32,99,108,49,44,99,116,49,44,99,
-119,49,44,99,104,49,32,61,32,103,114,105,100,95,116,111,67,101,108,108,
-82,101,99,116,40,99,101,108,108,83,105,122,101,44,32,120,49,44,121,49,
-44,119,49,44,104,49,41,13,10,32,32,32,32,108,111,99,97,108,32,99,
-108,50,44,99,116,50,44,99,119,50,44,99,104,50,32,61,32,103,114,105,
-100,95,116,111,67,101,108,108,82,101,99,116,40,99,101,108,108,83,105,122,
-101,44,32,120,50,44,121,50,44,119,50,44,104,50,41,13,10,13,10,32,
-32,32,32,105,102,32,99,108,49,32,126,61,32,99,108,50,32,111,114,32,
-99,116,49,32,126,61,32,99,116,50,32,111,114,32,99,119,49,32,126,61,
-32,99,119,50,32,111,114,32,99,104,49,32,126,61,32,99,104,50,32,116,
-104,101,110,13,10,13,10,32,32,32,32,32,32,108,111,99,97,108,32,99,
-114,49,44,32,99,98,49,32,61,32,99,108,49,43,99,119,49,45,49,44,
-32,99,116,49,43,99,104,49,45,49,13,10,32,32,32,32,32,32,108,111,
-99,97,108,32,99,114,50,44,32,99,98,50,32,61,32,99,108,50,43,99,
-119,50,45,49,44,32,99,116,50,43,99,104,50,45,49,13,10,32,32,32,
-32,32,32,108,111,99,97,108,32,99,121,79,117,116,13,10,13,10,32,32,
-32,32,32,32,102,111,114,32,99,121,32,61,32,99,116,49,44,32,99,98,
-49,32,100,111,13,10,32,32,32,32,32,32,32,32,99,121,79,117,116,32,
-61,32,99,121,32,60,32,99,116,50,32,111,114,32,99,121,32,62,32,99,
-98,50,13,10,32,32,32,32,32,32,32,32,102,111,114,32,99,120,32,61,
-32,99,108,49,44,32,99,114,49,32,100,111,13,10,32,32,32,32,32,32,
-32,32,32,32,105,102,32,99,121,79,117,116,32,111,114,32,99,120,32,60,
-32,99,108,50,32,111,114,32,99,120,32,62,32,99,114,50,32,116,104,101,
-110,13,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,118,
-101,73,116,101,109,70,114,111,109,67,101,108,108,40,115,101,108,102,44,32,
-105,116,101,109,44,32,99,120,44,32,99,121,41,13,10,32,32,32,32,32,
-32,32,32,32,32,101,110,100,13,10,32,32,32,32,32,32,32,32,101,110,
-100,13,10,32,32,32,32,32,32,101,110,100,13,10,13,10,32,32,32,32,
-32,32,102,111,114,32,99,121,32,61,32,99,116,50,44,32,99,98,50,32,
-100,111,13,10,32,32,32,32,32,32,32,32,99,121,79,117,116,32,61,32,
-99,121,32,60,32,99,116,49,32,111,114,32,99,121,32,62,32,99,98,49,
-13,10,32,32,32,32,32,32,32,32,102,111,114,32,99,120,32,61,32,99,
-108,50,44,32,99,114,50,32,100,111,13,10,32,32,32,32,32,32,32,32,
-32,32,105,102,32,99,121,79,117,116,32,111,114,32,99,120,32,60,32,99,
-108,49,32,111,114,32,99,120,32,62,32,99,114,49,32,116,104,101,110,13,
-10,32,32,32,32,32,32,32,32,32,32,32,32,97,100,100,73,116,101,109,
-84,111,67,101,108,108,40,115,101,108,102,44,32,105,116,101,109,44,32,99,
-120,44,32,99,121,41,13,10,32,32,32,32,32,32,32,32,32,32,101,110,
-100,13,10,32,32,32,32,32,32,32,32,101,110,100,13,10,32,32,32,32,
-32,32,101,110,100,13,10,13,10,32,32,32,32,101,110,100,13,10,13,10,
-32,32,32,32,108,111,99,97,108,32,114,101,99,116,32,61,32,115,101,108,
-102,46,114,101,99,116,115,91,105,116,101,109,93,13,10,32,32,32,32,114,
-101,99,116,46,120,44,32,114,101,99,116,46,121,44,32,114,101,99,116,46,
-119,44,32,114,101,99,116,46,104,32,61,32,120,50,44,121,50,44,119,50,
-44,104,50,13,10,13,10,32,32,101,110,100,13,10,101,110,100,13,10,13,
-10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,109,111,118,101,
-40,105,116,101,109,44,32,103,111,97,108,88,44,32,103,111,97,108,89,44,
-32,102,105,108,116,101,114,41,13,10,32,32,108,111,99,97,108,32,97,99,
-116,117,97,108,88,44,32,97,99,116,117,97,108,89,44,32,99,111,108,115,
-44,32,108,101,110,32,61,32,115,101,108,102,58,99,104,101,99,107,40,105,
-116,101,109,44,32,103,111,97,108,88,44,32,103,111,97,108,89,44,32,102,
-105,108,116,101,114,41,13,10,13,10,32,32,115,101,108,102,58,117,112,100,
-97,116,101,40,105,116,101,109,44,32,97,99,116,117,97,108,88,44,32,97,
-99,116,117,97,108,89,41,13,10,13,10,32,32,114,101,116,117,114,110,32,
-97,99,116,117,97,108,88,44,32,97,99,116,117,97,108,89,44,32,99,111,
-108,115,44,32,108,101,110,13,10,101,110,100,13,10,13,10,102,117,110,99,
-116,105,111,110,32,87,111,114,108,100,58,99,104,101,99,107,40,105,116,101,
+10,32,32,108,111,99,97,108,32,100,105,99,116,73,116,101,109,115,73,110,
+67,101,108,108,82,101,99,116,32,61,32,103,101,116,68,105,99,116,73,116,
+101,109,115,73,110,67,101,108,108,82,101,99,116,40,115,101,108,102,44,32,
+99,108,44,99,116,44,99,119,44,99,104,41,10,10,32,32,108,111,99,97,
+108,32,105,116,101,109,115,44,32,108,101,110,32,61,32,123,125,44,32,48,
+10,10,32,32,108,111,99,97,108,32,114,101,99,116,10,32,32,102,111,114,
+32,105,116,101,109,44,95,32,105,110,32,112,97,105,114,115,40,100,105,99,
+116,73,116,101,109,115,73,110,67,101,108,108,82,101,99,116,41,32,100,111,
+10,32,32,32,32,114,101,99,116,32,61,32,115,101,108,102,46,114,101,99,
+116,115,91,105,116,101,109,93,10,32,32,32,32,105,102,32,40,110,111,116,
+32,102,105,108,116,101,114,32,111,114,32,102,105,108,116,101,114,40,105,116,
+101,109,41,41,10,32,32,32,32,97,110,100,32,114,101,99,116,95,105,115,
+73,110,116,101,114,115,101,99,116,105,110,103,40,120,44,121,44,119,44,104,
+44,32,114,101,99,116,46,120,44,32,114,101,99,116,46,121,44,32,114,101,
+99,116,46,119,44,32,114,101,99,116,46,104,41,10,32,32,32,32,116,104,
+101,110,10,32,32,32,32,32,32,108,101,110,32,61,32,108,101,110,32,43,
+32,49,10,32,32,32,32,32,32,105,116,101,109,115,91,108,101,110,93,32,
+61,32,105,116,101,109,10,32,32,32,32,101,110,100,10,32,32,101,110,100,
+10,10,32,32,114,101,116,117,114,110,32,105,116,101,109,115,44,32,108,101,
+110,10,101,110,100,10,10,102,117,110,99,116,105,111,110,32,87,111,114,108,
+100,58,113,117,101,114,121,80,111,105,110,116,40,120,44,121,44,32,102,105,
+108,116,101,114,41,10,32,32,108,111,99,97,108,32,99,120,44,99,121,32,
+61,32,115,101,108,102,58,116,111,67,101,108,108,40,120,44,121,41,10,32,
+32,108,111,99,97,108,32,100,105,99,116,73,116,101,109,115,73,110,67,101,
+108,108,82,101,99,116,32,61,32,103,101,116,68,105,99,116,73,116,101,109,
+115,73,110,67,101,108,108,82,101,99,116,40,115,101,108,102,44,32,99,120,
+44,99,121,44,49,44,49,41,10,10,32,32,108,111,99,97,108,32,105,116,
+101,109,115,44,32,108,101,110,32,61,32,123,125,44,32,48,10,10,32,32,
+108,111,99,97,108,32,114,101,99,116,10,32,32,102,111,114,32,105,116,101,
+109,44,95,32,105,110,32,112,97,105,114,115,40,100,105,99,116,73,116,101,
+109,115,73,110,67,101,108,108,82,101,99,116,41,32,100,111,10,32,32,32,
+32,114,101,99,116,32,61,32,115,101,108,102,46,114,101,99,116,115,91,105,
+116,101,109,93,10,32,32,32,32,105,102,32,40,110,111,116,32,102,105,108,
+116,101,114,32,111,114,32,102,105,108,116,101,114,40,105,116,101,109,41,41,
+10,32,32,32,32,97,110,100,32,114,101,99,116,95,99,111,110,116,97,105,
+110,115,80,111,105,110,116,40,114,101,99,116,46,120,44,32,114,101,99,116,
+46,121,44,32,114,101,99,116,46,119,44,32,114,101,99,116,46,104,44,32,
+120,44,32,121,41,10,32,32,32,32,116,104,101,110,10,32,32,32,32,32,
+32,108,101,110,32,61,32,108,101,110,32,43,32,49,10,32,32,32,32,32,
+32,105,116,101,109,115,91,108,101,110,93,32,61,32,105,116,101,109,10,32,
+32,32,32,101,110,100,10,32,32,101,110,100,10,10,32,32,114,101,116,117,
+114,110,32,105,116,101,109,115,44,32,108,101,110,10,101,110,100,10,10,102,
+117,110,99,116,105,111,110,32,87,111,114,108,100,58,113,117,101,114,121,83,
+101,103,109,101,110,116,40,120,49,44,32,121,49,44,32,120,50,44,32,121,
+50,44,32,102,105,108,116,101,114,41,10,32,32,108,111,99,97,108,32,105,
+116,101,109,73,110,102,111,44,32,108,101,110,32,61,32,103,101,116,73,110,
+102,111,65,98,111,117,116,73,116,101,109,115,84,111,117,99,104,101,100,66,
+121,83,101,103,109,101,110,116,40,115,101,108,102,44,32,120,49,44,32,121,
+49,44,32,120,50,44,32,121,50,44,32,102,105,108,116,101,114,41,10,32,
+32,108,111,99,97,108,32,105,116,101,109,115,32,61,32,123,125,10,32,32,
+102,111,114,32,105,61,49,44,32,108,101,110,32,100,111,10,32,32,32,32,
+105,116,101,109,115,91,105,93,32,61,32,105,116,101,109,73,110,102,111,91,
+105,93,46,105,116,101,109,10,32,32,101,110,100,10,32,32,114,101,116,117,
+114,110,32,105,116,101,109,115,44,32,108,101,110,10,101,110,100,10,10,102,
+117,110,99,116,105,111,110,32,87,111,114,108,100,58,113,117,101,114,121,83,
+101,103,109,101,110,116,87,105,116,104,67,111,111,114,100,115,40,120,49,44,
+32,121,49,44,32,120,50,44,32,121,50,44,32,102,105,108,116,101,114,41,
+10,32,32,108,111,99,97,108,32,105,116,101,109,73,110,102,111,44,32,108,
+101,110,32,61,32,103,101,116,73,110,102,111,65,98,111,117,116,73,116,101,
+109,115,84,111,117,99,104,101,100,66,121,83,101,103,109,101,110,116,40,115,
+101,108,102,44,32,120,49,44,32,121,49,44,32,120,50,44,32,121,50,44,
+32,102,105,108,116,101,114,41,10,32,32,108,111,99,97,108,32,100,120,44,
+32,100,121,32,32,32,32,32,32,32,32,61,32,120,50,45,120,49,44,32,
+121,50,45,121,49,10,32,32,108,111,99,97,108,32,105,110,102,111,44,32,
+116,105,49,44,32,116,105,50,10,32,32,102,111,114,32,105,61,49,44,32,
+108,101,110,32,100,111,10,32,32,32,32,105,110,102,111,32,32,61,32,105,
+116,101,109,73,110,102,111,91,105,93,10,32,32,32,32,116,105,49,32,32,
+32,61,32,105,110,102,111,46,116,105,49,10,32,32,32,32,116,105,50,32,
+32,32,61,32,105,110,102,111,46,116,105,50,10,10,32,32,32,32,105,110,
+102,111,46,119,101,105,103,104,116,32,32,61,32,110,105,108,10,32,32,32,
+32,105,110,102,111,46,120,49,32,32,32,32,32,32,61,32,120,49,32,43,
+32,100,120,32,42,32,116,105,49,10,32,32,32,32,105,110,102,111,46,121,
+49,32,32,32,32,32,32,61,32,121,49,32,43,32,100,121,32,42,32,116,
+105,49,10,32,32,32,32,105,110,102,111,46,120,50,32,32,32,32,32,32,
+61,32,120,49,32,43,32,100,120,32,42,32,116,105,50,10,32,32,32,32,
+105,110,102,111,46,121,50,32,32,32,32,32,32,61,32,121,49,32,43,32,
+100,121,32,42,32,116,105,50,10,32,32,101,110,100,10,32,32,114,101,116,
+117,114,110,32,105,116,101,109,73,110,102,111,44,32,108,101,110,10,101,110,
+100,10,10,10,45,45,45,32,77,97,105,110,32,109,101,116,104,111,100,115,
+10,10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,97,100,100,
+40,105,116,101,109,44,32,120,44,121,44,119,44,104,41,10,32,32,108,111,
+99,97,108,32,114,101,99,116,32,61,32,115,101,108,102,46,114,101,99,116,
+115,91,105,116,101,109,93,10,32,32,105,102,32,114,101,99,116,32,116,104,
+101,110,10,32,32,32,32,101,114,114,111,114,40,39,73,116,101,109,32,39,
+32,46,46,32,116,111,115,116,114,105,110,103,40,105,116,101,109,41,32,46,
+46,32,39,32,97,100,100,101,100,32,116,111,32,116,104,101,32,119,111,114,
+108,100,32,116,119,105,99,101,46,39,41,10,32,32,101,110,100,10,32,32,
+97,115,115,101,114,116,73,115,82,101,99,116,40,120,44,121,44,119,44,104,
+41,10,10,32,32,115,101,108,102,46,114,101,99,116,115,91,105,116,101,109,
+93,32,61,32,123,120,61,120,44,121,61,121,44,119,61,119,44,104,61,104,
+125,10,10,32,32,108,111,99,97,108,32,99,108,44,99,116,44,99,119,44,
+99,104,32,61,32,103,114,105,100,95,116,111,67,101,108,108,82,101,99,116,
+40,115,101,108,102,46,99,101,108,108,83,105,122,101,44,32,120,44,121,44,
+119,44,104,41,10,32,32,102,111,114,32,99,121,32,61,32,99,116,44,32,
+99,116,43,99,104,45,49,32,100,111,10,32,32,32,32,102,111,114,32,99,
+120,32,61,32,99,108,44,32,99,108,43,99,119,45,49,32,100,111,10,32,
+32,32,32,32,32,97,100,100,73,116,101,109,84,111,67,101,108,108,40,115,
+101,108,102,44,32,105,116,101,109,44,32,99,120,44,32,99,121,41,10,32,
+32,32,32,101,110,100,10,32,32,101,110,100,10,10,32,32,114,101,116,117,
+114,110,32,105,116,101,109,10,101,110,100,10,10,102,117,110,99,116,105,111,
+110,32,87,111,114,108,100,58,114,101,109,111,118,101,40,105,116,101,109,41,
+10,32,32,108,111,99,97,108,32,120,44,121,44,119,44,104,32,61,32,115,
+101,108,102,58,103,101,116,82,101,99,116,40,105,116,101,109,41,10,10,32,
+32,115,101,108,102,46,114,101,99,116,115,91,105,116,101,109,93,32,61,32,
+110,105,108,10,32,32,108,111,99,97,108,32,99,108,44,99,116,44,99,119,
+44,99,104,32,61,32,103,114,105,100,95,116,111,67,101,108,108,82,101,99,
+116,40,115,101,108,102,46,99,101,108,108,83,105,122,101,44,32,120,44,121,
+44,119,44,104,41,10,32,32,102,111,114,32,99,121,32,61,32,99,116,44,
+32,99,116,43,99,104,45,49,32,100,111,10,32,32,32,32,102,111,114,32,
+99,120,32,61,32,99,108,44,32,99,108,43,99,119,45,49,32,100,111,10,
+32,32,32,32,32,32,114,101,109,111,118,101,73,116,101,109,70,114,111,109,
+67,101,108,108,40,115,101,108,102,44,32,105,116,101,109,44,32,99,120,44,
+32,99,121,41,10,32,32,32,32,101,110,100,10,32,32,101,110,100,10,101,
+110,100,10,10,102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,117,
+112,100,97,116,101,40,105,116,101,109,44,32,120,50,44,121,50,44,119,50,
+44,104,50,41,10,32,32,108,111,99,97,108,32,120,49,44,121,49,44,119,
+49,44,104,49,32,61,32,115,101,108,102,58,103,101,116,82,101,99,116,40,
+105,116,101,109,41,10,32,32,119,50,44,104,50,32,61,32,119,50,32,111,
+114,32,119,49,44,32,104,50,32,111,114,32,104,49,10,32,32,97,115,115,
+101,114,116,73,115,82,101,99,116,40,120,50,44,121,50,44,119,50,44,104,
+50,41,10,10,32,32,105,102,32,120,49,32,126,61,32,120,50,32,111,114,
+32,121,49,32,126,61,32,121,50,32,111,114,32,119,49,32,126,61,32,119,
+50,32,111,114,32,104,49,32,126,61,32,104,50,32,116,104,101,110,10,10,
+32,32,32,32,108,111,99,97,108,32,99,101,108,108,83,105,122,101,32,61,
+32,115,101,108,102,46,99,101,108,108,83,105,122,101,10,32,32,32,32,108,
+111,99,97,108,32,99,108,49,44,99,116,49,44,99,119,49,44,99,104,49,
+32,61,32,103,114,105,100,95,116,111,67,101,108,108,82,101,99,116,40,99,
+101,108,108,83,105,122,101,44,32,120,49,44,121,49,44,119,49,44,104,49,
+41,10,32,32,32,32,108,111,99,97,108,32,99,108,50,44,99,116,50,44,
+99,119,50,44,99,104,50,32,61,32,103,114,105,100,95,116,111,67,101,108,
+108,82,101,99,116,40,99,101,108,108,83,105,122,101,44,32,120,50,44,121,
+50,44,119,50,44,104,50,41,10,10,32,32,32,32,105,102,32,99,108,49,
+32,126,61,32,99,108,50,32,111,114,32,99,116,49,32,126,61,32,99,116,
+50,32,111,114,32,99,119,49,32,126,61,32,99,119,50,32,111,114,32,99,
+104,49,32,126,61,32,99,104,50,32,116,104,101,110,10,10,32,32,32,32,
+32,32,108,111,99,97,108,32,99,114,49,44,32,99,98,49,32,61,32,99,
+108,49,43,99,119,49,45,49,44,32,99,116,49,43,99,104,49,45,49,10,
+32,32,32,32,32,32,108,111,99,97,108,32,99,114,50,44,32,99,98,50,
+32,61,32,99,108,50,43,99,119,50,45,49,44,32,99,116,50,43,99,104,
+50,45,49,10,32,32,32,32,32,32,108,111,99,97,108,32,99,121,79,117,
+116,10,10,32,32,32,32,32,32,102,111,114,32,99,121,32,61,32,99,116,
+49,44,32,99,98,49,32,100,111,10,32,32,32,32,32,32,32,32,99,121,
+79,117,116,32,61,32,99,121,32,60,32,99,116,50,32,111,114,32,99,121,
+32,62,32,99,98,50,10,32,32,32,32,32,32,32,32,102,111,114,32,99,
+120,32,61,32,99,108,49,44,32,99,114,49,32,100,111,10,32,32,32,32,
+32,32,32,32,32,32,105,102,32,99,121,79,117,116,32,111,114,32,99,120,
+32,60,32,99,108,50,32,111,114,32,99,120,32,62,32,99,114,50,32,116,
+104,101,110,10,32,32,32,32,32,32,32,32,32,32,32,32,114,101,109,111,
+118,101,73,116,101,109,70,114,111,109,67,101,108,108,40,115,101,108,102,44,
+32,105,116,101,109,44,32,99,120,44,32,99,121,41,10,32,32,32,32,32,
+32,32,32,32,32,101,110,100,10,32,32,32,32,32,32,32,32,101,110,100,
+10,32,32,32,32,32,32,101,110,100,10,10,32,32,32,32,32,32,102,111,
+114,32,99,121,32,61,32,99,116,50,44,32,99,98,50,32,100,111,10,32,
+32,32,32,32,32,32,32,99,121,79,117,116,32,61,32,99,121,32,60,32,
+99,116,49,32,111,114,32,99,121,32,62,32,99,98,49,10,32,32,32,32,
+32,32,32,32,102,111,114,32,99,120,32,61,32,99,108,50,44,32,99,114,
+50,32,100,111,10,32,32,32,32,32,32,32,32,32,32,105,102,32,99,121,
+79,117,116,32,111,114,32,99,120,32,60,32,99,108,49,32,111,114,32,99,
+120,32,62,32,99,114,49,32,116,104,101,110,10,32,32,32,32,32,32,32,
+32,32,32,32,32,97,100,100,73,116,101,109,84,111,67,101,108,108,40,115,
+101,108,102,44,32,105,116,101,109,44,32,99,120,44,32,99,121,41,10,32,
+32,32,32,32,32,32,32,32,32,101,110,100,10,32,32,32,32,32,32,32,
+32,101,110,100,10,32,32,32,32,32,32,101,110,100,10,10,32,32,32,32,
+101,110,100,10,10,32,32,32,32,108,111,99,97,108,32,114,101,99,116,32,
+61,32,115,101,108,102,46,114,101,99,116,115,91,105,116,101,109,93,10,32,
+32,32,32,114,101,99,116,46,120,44,32,114,101,99,116,46,121,44,32,114,
+101,99,116,46,119,44,32,114,101,99,116,46,104,32,61,32,120,50,44,121,
+50,44,119,50,44,104,50,10,10,32,32,101,110,100,10,101,110,100,10,10,
+102,117,110,99,116,105,111,110,32,87,111,114,108,100,58,109,111,118,101,40,
+105,116,101,109,44,32,103,111,97,108,88,44,32,103,111,97,108,89,44,32,
+102,105,108,116,101,114,41,10,32,32,108,111,99,97,108,32,97,99,116,117,
+97,108,88,44,32,97,99,116,117,97,108,89,44,32,99,111,108,115,44,32,
+108,101,110,32,61,32,115,101,108,102,58,99,104,101,99,107,40,105,116,101,
109,44,32,103,111,97,108,88,44,32,103,111,97,108,89,44,32,102,105,108,
-116,101,114,41,13,10,32,32,102,105,108,116,101,114,32,61,32,102,105,108,
-116,101,114,32,111,114,32,100,101,102,97,117,108,116,70,105,108,116,101,114,
-13,10,13,10,32,32,108,111,99,97,108,32,118,105,115,105,116,101,100,32,
-61,32,123,91,105,116,101,109,93,32,61,32,116,114,117,101,125,13,10,32,
-32,108,111,99,97,108,32,118,105,115,105,116,101,100,70,105,108,116,101,114,
-32,61,32,102,117,110,99,116,105,111,110,40,105,116,109,44,32,111,116,104,
-101,114,41,13,10,32,32,32,32,105,102,32,118,105,115,105,116,101,100,91,
-111,116,104,101,114,93,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,114,101,116,117,114,110,
-32,102,105,108,116,101,114,40,105,116,109,44,32,111,116,104,101,114,41,13,
-10,32,32,101,110,100,13,10,13,10,32,32,108,111,99,97,108,32,99,111,
-108,115,44,32,108,101,110,32,61,32,123,125,44,32,48,13,10,13,10,32,
+116,101,114,41,10,10,32,32,115,101,108,102,58,117,112,100,97,116,101,40,
+105,116,101,109,44,32,97,99,116,117,97,108,88,44,32,97,99,116,117,97,
+108,89,41,10,10,32,32,114,101,116,117,114,110,32,97,99,116,117,97,108,
+88,44,32,97,99,116,117,97,108,89,44,32,99,111,108,115,44,32,108,101,
+110,10,101,110,100,10,10,102,117,110,99,116,105,111,110,32,87,111,114,108,
+100,58,99,104,101,99,107,40,105,116,101,109,44,32,103,111,97,108,88,44,
+32,103,111,97,108,89,44,32,102,105,108,116,101,114,41,10,32,32,102,105,
+108,116,101,114,32,61,32,102,105,108,116,101,114,32,111,114,32,100,101,102,
+97,117,108,116,70,105,108,116,101,114,10,10,32,32,108,111,99,97,108,32,
+118,105,115,105,116,101,100,32,61,32,123,91,105,116,101,109,93,32,61,32,
+116,114,117,101,125,10,32,32,108,111,99,97,108,32,118,105,115,105,116,101,
+100,70,105,108,116,101,114,32,61,32,102,117,110,99,116,105,111,110,40,105,
+116,109,44,32,111,116,104,101,114,41,10,32,32,32,32,105,102,32,118,105,
+115,105,116,101,100,91,111,116,104,101,114,93,32,116,104,101,110,32,114,101,
+116,117,114,110,32,102,97,108,115,101,32,101,110,100,10,32,32,32,32,114,
+101,116,117,114,110,32,102,105,108,116,101,114,40,105,116,109,44,32,111,116,
+104,101,114,41,10,32,32,101,110,100,10,10,32,32,108,111,99,97,108,32,
+99,111,108,115,44,32,108,101,110,32,61,32,123,125,44,32,48,10,10,32,
32,108,111,99,97,108,32,120,44,121,44,119,44,104,32,61,32,115,101,108,
-102,58,103,101,116,82,101,99,116,40,105,116,101,109,41,13,10,13,10,32,
-32,108,111,99,97,108,32,112,114,111,106,101,99,116,101,100,95,99,111,108,
-115,44,32,112,114,111,106,101,99,116,101,100,95,108,101,110,32,61,32,115,
-101,108,102,58,112,114,111,106,101,99,116,40,105,116,101,109,44,32,120,44,
-121,44,119,44,104,44,32,103,111,97,108,88,44,103,111,97,108,89,44,32,
-118,105,115,105,116,101,100,70,105,108,116,101,114,41,13,10,13,10,32,32,
-119,104,105,108,101,32,112,114,111,106,101,99,116,101,100,95,108,101,110,32,
-62,32,48,32,100,111,13,10,32,32,32,32,108,111,99,97,108,32,99,111,
-108,32,61,32,112,114,111,106,101,99,116,101,100,95,99,111,108,115,91,49,
-93,13,10,32,32,32,32,108,101,110,32,32,32,32,32,32,32,61,32,108,
-101,110,32,43,32,49,13,10,32,32,32,32,99,111,108,115,91,108,101,110,
-93,32,61,32,99,111,108,13,10,13,10,32,32,32,32,118,105,115,105,116,
-101,100,91,99,111,108,46,111,116,104,101,114,93,32,61,32,116,114,117,101,
-13,10,13,10,32,32,32,32,108,111,99,97,108,32,114,101,115,112,111,110,
-115,101,32,61,32,103,101,116,82,101,115,112,111,110,115,101,66,121,78,97,
-109,101,40,115,101,108,102,44,32,99,111,108,46,116,121,112,101,41,13,10,
-13,10,32,32,32,32,103,111,97,108,88,44,32,103,111,97,108,89,44,32,
-112,114,111,106,101,99,116,101,100,95,99,111,108,115,44,32,112,114,111,106,
-101,99,116,101,100,95,108,101,110,32,61,32,114,101,115,112,111,110,115,101,
-40,13,10,32,32,32,32,32,32,115,101,108,102,44,13,10,32,32,32,32,
-32,32,99,111,108,44,13,10,32,32,32,32,32,32,120,44,32,121,44,32,
-119,44,32,104,44,13,10,32,32,32,32,32,32,103,111,97,108,88,44,32,
-103,111,97,108,89,44,13,10,32,32,32,32,32,32,118,105,115,105,116,101,
-100,70,105,108,116,101,114,13,10,32,32,32,32,41,13,10,32,32,101,110,
-100,13,10,13,10,32,32,114,101,116,117,114,110,32,103,111,97,108,88,44,
-32,103,111,97,108,89,44,32,99,111,108,115,44,32,108,101,110,13,10,101,
-110,100,13,10,13,10,13,10,45,45,32,80,117,98,108,105,99,32,108,105,
-98,114,97,114,121,32,102,117,110,99,116,105,111,110,115,13,10,13,10,98,
-117,109,112,46,110,101,119,87,111,114,108,100,32,61,32,102,117,110,99,116,
-105,111,110,40,99,101,108,108,83,105,122,101,41,13,10,32,32,99,101,108,
-108,83,105,122,101,32,61,32,99,101,108,108,83,105,122,101,32,111,114,32,
-54,52,13,10,32,32,97,115,115,101,114,116,73,115,80,111,115,105,116,105,
-118,101,78,117,109,98,101,114,40,99,101,108,108,83,105,122,101,44,32,39,
-99,101,108,108,83,105,122,101,39,41,13,10,32,32,108,111,99,97,108,32,
-119,111,114,108,100,32,61,32,115,101,116,109,101,116,97,116,97,98,108,101,
-40,123,13,10,32,32,32,32,99,101,108,108,83,105,122,101,32,32,32,32,
-32,32,32,61,32,99,101,108,108,83,105,122,101,44,13,10,32,32,32,32,
-114,101,99,116,115,32,32,32,32,32,32,32,32,32,32,61,32,123,125,44,
-13,10,32,32,32,32,114,111,119,115,32,32,32,32,32,32,32,32,32,32,
-32,61,32,123,125,44,13,10,32,32,32,32,110,111,110,69,109,112,116,121,
-67,101,108,108,115,32,32,61,32,123,125,44,13,10,32,32,32,32,114,101,
-115,112,111,110,115,101,115,32,61,32,123,125,13,10,32,32,125,44,32,87,
-111,114,108,100,95,109,116,41,13,10,13,10,32,32,119,111,114,108,100,58,
-97,100,100,82,101,115,112,111,110,115,101,40,39,116,111,117,99,104,39,44,
-32,116,111,117,99,104,41,13,10,32,32,119,111,114,108,100,58,97,100,100,
+102,58,103,101,116,82,101,99,116,40,105,116,101,109,41,10,10,32,32,108,
+111,99,97,108,32,112,114,111,106,101,99,116,101,100,95,99,111,108,115,44,
+32,112,114,111,106,101,99,116,101,100,95,108,101,110,32,61,32,115,101,108,
+102,58,112,114,111,106,101,99,116,40,105,116,101,109,44,32,120,44,121,44,
+119,44,104,44,32,103,111,97,108,88,44,103,111,97,108,89,44,32,118,105,
+115,105,116,101,100,70,105,108,116,101,114,41,10,10,32,32,119,104,105,108,
+101,32,112,114,111,106,101,99,116,101,100,95,108,101,110,32,62,32,48,32,
+100,111,10,32,32,32,32,108,111,99,97,108,32,99,111,108,32,61,32,112,
+114,111,106,101,99,116,101,100,95,99,111,108,115,91,49,93,10,32,32,32,
+32,108,101,110,32,32,32,32,32,32,32,61,32,108,101,110,32,43,32,49,
+10,32,32,32,32,99,111,108,115,91,108,101,110,93,32,61,32,99,111,108,
+10,10,32,32,32,32,118,105,115,105,116,101,100,91,99,111,108,46,111,116,
+104,101,114,93,32,61,32,116,114,117,101,10,10,32,32,32,32,108,111,99,
+97,108,32,114,101,115,112,111,110,115,101,32,61,32,103,101,116,82,101,115,
+112,111,110,115,101,66,121,78,97,109,101,40,115,101,108,102,44,32,99,111,
+108,46,116,121,112,101,41,10,10,32,32,32,32,103,111,97,108,88,44,32,
+103,111,97,108,89,44,32,112,114,111,106,101,99,116,101,100,95,99,111,108,
+115,44,32,112,114,111,106,101,99,116,101,100,95,108,101,110,32,61,32,114,
+101,115,112,111,110,115,101,40,10,32,32,32,32,32,32,115,101,108,102,44,
+10,32,32,32,32,32,32,99,111,108,44,10,32,32,32,32,32,32,120,44,
+32,121,44,32,119,44,32,104,44,10,32,32,32,32,32,32,103,111,97,108,
+88,44,32,103,111,97,108,89,44,10,32,32,32,32,32,32,118,105,115,105,
+116,101,100,70,105,108,116,101,114,10,32,32,32,32,41,10,32,32,101,110,
+100,10,10,32,32,114,101,116,117,114,110,32,103,111,97,108,88,44,32,103,
+111,97,108,89,44,32,99,111,108,115,44,32,108,101,110,10,101,110,100,10,
+10,10,45,45,32,80,117,98,108,105,99,32,108,105,98,114,97,114,121,32,
+102,117,110,99,116,105,111,110,115,10,10,98,117,109,112,46,110,101,119,87,
+111,114,108,100,32,61,32,102,117,110,99,116,105,111,110,40,99,101,108,108,
+83,105,122,101,41,10,32,32,99,101,108,108,83,105,122,101,32,61,32,99,
+101,108,108,83,105,122,101,32,111,114,32,54,52,10,32,32,97,115,115,101,
+114,116,73,115,80,111,115,105,116,105,118,101,78,117,109,98,101,114,40,99,
+101,108,108,83,105,122,101,44,32,39,99,101,108,108,83,105,122,101,39,41,
+10,32,32,108,111,99,97,108,32,119,111,114,108,100,32,61,32,115,101,116,
+109,101,116,97,116,97,98,108,101,40,123,10,32,32,32,32,99,101,108,108,
+83,105,122,101,32,32,32,32,32,32,32,61,32,99,101,108,108,83,105,122,
+101,44,10,32,32,32,32,114,101,99,116,115,32,32,32,32,32,32,32,32,
+32,32,61,32,123,125,44,10,32,32,32,32,114,111,119,115,32,32,32,32,
+32,32,32,32,32,32,32,61,32,123,125,44,10,32,32,32,32,110,111,110,
+69,109,112,116,121,67,101,108,108,115,32,32,61,32,123,125,44,10,32,32,
+32,32,114,101,115,112,111,110,115,101,115,32,61,32,123,125,10,32,32,125,
+44,32,87,111,114,108,100,95,109,116,41,10,10,32,32,119,111,114,108,100,
+58,97,100,100,82,101,115,112,111,110,115,101,40,39,116,111,117,99,104,39,
+44,32,116,111,117,99,104,41,10,32,32,119,111,114,108,100,58,97,100,100,
82,101,115,112,111,110,115,101,40,39,99,114,111,115,115,39,44,32,99,114,
-111,115,115,41,13,10,32,32,119,111,114,108,100,58,97,100,100,82,101,115,
-112,111,110,115,101,40,39,115,108,105,100,101,39,44,32,115,108,105,100,101,
-41,13,10,32,32,119,111,114,108,100,58,97,100,100,82,101,115,112,111,110,
-115,101,40,39,98,111,117,110,99,101,39,44,32,98,111,117,110,99,101,41,
-13,10,13,10,32,32,114,101,116,117,114,110,32,119,111,114,108,100,13,10,
-101,110,100,13,10,13,10,98,117,109,112,46,114,101,99,116,32,61,32,123,
-13,10,32,32,103,101,116,78,101,97,114,101,115,116,67,111,114,110,101,114,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,61,32,114,101,99,116,
-95,103,101,116,78,101,97,114,101,115,116,67,111,114,110,101,114,44,13,10,
-32,32,103,101,116,83,101,103,109,101,110,116,73,110,116,101,114,115,101,99,
-116,105,111,110,73,110,100,105,99,101,115,32,61,32,114,101,99,116,95,103,
-101,116,83,101,103,109,101,110,116,73,110,116,101,114,115,101,99,116,105,111,
-110,73,110,100,105,99,101,115,44,13,10,32,32,103,101,116,68,105,102,102,
-32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,32,61,32,114,101,99,116,95,103,101,116,68,105,102,102,44,13,10,
-32,32,99,111,110,116,97,105,110,115,80,111,105,110,116,32,32,32,32,32,
-32,32,32,32,32,32,32,32,32,32,32,32,61,32,114,101,99,116,95,99,
-111,110,116,97,105,110,115,80,111,105,110,116,44,13,10,32,32,105,115,73,
-110,116,101,114,115,101,99,116,105,110,103,32,32,32,32,32,32,32,32,32,
-32,32,32,32,32,32,32,61,32,114,101,99,116,95,105,115,73,110,116,101,
-114,115,101,99,116,105,110,103,44,13,10,32,32,103,101,116,83,113,117,97,
-114,101,68,105,115,116,97,110,99,101,32,32,32,32,32,32,32,32,32,32,
-32,32,32,61,32,114,101,99,116,95,103,101,116,83,113,117,97,114,101,68,
-105,115,116,97,110,99,101,44,13,10,32,32,100,101,116,101,99,116,67,111,
-108,108,105,115,105,111,110,32,32,32,32,32,32,32,32,32,32,32,32,32,
-32,32,61,32,114,101,99,116,95,100,101,116,101,99,116,67,111,108,108,105,
-115,105,111,110,13,10,125,13,10,13,10,98,117,109,112,46,114,101,115,112,
-111,110,115,101,115,32,61,32,123,13,10,32,32,116,111,117,99,104,32,32,
-61,32,116,111,117,99,104,44,13,10,32,32,99,114,111,115,115,32,32,61,
-32,99,114,111,115,115,44,13,10,32,32,115,108,105,100,101,32,32,61,32,
-115,108,105,100,101,44,13,10,32,32,98,111,117,110,99,101,32,61,32,98,
-111,117,110,99,101,13,10,125,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,112,104,
-121,115,105,99,115,32,61,32,98,117,109,112,13,10
+111,115,115,41,10,32,32,119,111,114,108,100,58,97,100,100,82,101,115,112,
+111,110,115,101,40,39,115,108,105,100,101,39,44,32,115,108,105,100,101,41,
+10,32,32,119,111,114,108,100,58,97,100,100,82,101,115,112,111,110,115,101,
+40,39,98,111,117,110,99,101,39,44,32,98,111,117,110,99,101,41,10,10,
+32,32,114,101,116,117,114,110,32,119,111,114,108,100,10,101,110,100,10,10,
+98,117,109,112,46,114,101,99,116,32,61,32,123,10,32,32,103,101,116,78,
+101,97,114,101,115,116,67,111,114,110,101,114,32,32,32,32,32,32,32,32,
+32,32,32,32,32,32,61,32,114,101,99,116,95,103,101,116,78,101,97,114,
+101,115,116,67,111,114,110,101,114,44,10,32,32,103,101,116,83,101,103,109,
+101,110,116,73,110,116,101,114,115,101,99,116,105,111,110,73,110,100,105,99,
+101,115,32,61,32,114,101,99,116,95,103,101,116,83,101,103,109,101,110,116,
+73,110,116,101,114,115,101,99,116,105,111,110,73,110,100,105,99,101,115,44,
+10,32,32,103,101,116,68,105,102,102,32,32,32,32,32,32,32,32,32,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,61,32,114,101,99,116,95,
+103,101,116,68,105,102,102,44,10,32,32,99,111,110,116,97,105,110,115,80,
+111,105,110,116,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
+32,61,32,114,101,99,116,95,99,111,110,116,97,105,110,115,80,111,105,110,
+116,44,10,32,32,105,115,73,110,116,101,114,115,101,99,116,105,110,103,32,
+32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,61,32,114,101,99,
+116,95,105,115,73,110,116,101,114,115,101,99,116,105,110,103,44,10,32,32,
+103,101,116,83,113,117,97,114,101,68,105,115,116,97,110,99,101,32,32,32,
+32,32,32,32,32,32,32,32,32,32,61,32,114,101,99,116,95,103,101,116,
+83,113,117,97,114,101,68,105,115,116,97,110,99,101,44,10,32,32,100,101,
+116,101,99,116,67,111,108,108,105,115,105,111,110,32,32,32,32,32,32,32,
+32,32,32,32,32,32,32,32,61,32,114,101,99,116,95,100,101,116,101,99,
+116,67,111,108,108,105,115,105,111,110,10,125,10,10,98,117,109,112,46,114,
+101,115,112,111,110,115,101,115,32,61,32,123,10,32,32,116,111,117,99,104,
+32,32,61,32,116,111,117,99,104,44,10,32,32,99,114,111,115,115,32,32,
+61,32,99,114,111,115,115,44,10,32,32,115,108,105,100,101,32,32,61,32,
+115,108,105,100,101,44,10,32,32,98,111,117,110,99,101,32,61,32,98,111,
+117,110,99,101,10,125,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,112,104,121,115,105,
+99,115,32,61,32,98,117,109,112,13,10
};
diff --git a/src/libjin/graphics/je_gl.cpp b/src/libjin/graphics/je_gl.cpp
index d7a79d4..b0f113b 100644
--- a/src/libjin/graphics/je_gl.cpp
+++ b/src/libjin/graphics/je_gl.cpp
@@ -21,7 +21,6 @@ namespace JinEngine
Canvas* const OpenGL::DEFAULT_CANVAS = new Canvas(0);
OpenGL::OpenGL()
- : mBlendMode(BlendMode::NONE)
{
memset(&mStats, 0, sizeof(mStats));
memset(&mColor, 0xff, sizeof(mColor));
@@ -36,6 +35,17 @@ namespace JinEngine
{
}
+ void OpenGL::init()
+ {
+ enable(GL_BLEND);
+ enable(GL_TEXTURE_2D);
+ setClearColor(0, 0, 0, 0xff);
+ setColor(0xff, 0xff, 0xff, 0xff);
+ setBlendMode(OpenGL::BlendMode::ALPHA);
+ unbindCanvas();
+ unuseShader();
+ }
+
void OpenGL::enable(GLenum cap)
{
glEnable(cap);
@@ -263,6 +273,7 @@ namespace JinEngine
{
case BlendMode::ADDITIVE:
srcRGB = GL_SRC_ALPHA;
+ srcA = GL_SRC_ALPHA;
dstRGB = GL_ONE;
dstA = GL_ONE;
break;
@@ -272,15 +283,10 @@ namespace JinEngine
break;
case BlendMode::ALPHA:
default:
- /*srcRGB = GL_SRC_ALPHA;
- srcA = GL_ONE;
+ srcRGB = GL_SRC_ALPHA; // 0xff, 0xff, 0xff, 0Ⱦ⣬GL_ONEЩᱣ
+ srcA = GL_SRC_ALPHA;
dstRGB = GL_ONE_MINUS_SRC_ALPHA;
dstA = GL_ONE_MINUS_SRC_ALPHA;
-*/
- srcRGB = GL_ONE;
- srcA = GL_ONE;
- dstRGB = GL_ZERO;
- dstA = GL_ZERO;
break;
}
diff --git a/src/libjin/graphics/je_gl.h b/src/libjin/graphics/je_gl.h
index d6edc2f..8711824 100644
--- a/src/libjin/graphics/je_gl.h
+++ b/src/libjin/graphics/je_gl.h
@@ -32,10 +32,9 @@ namespace JinEngine
///
enum class BlendMode
{
- NONE = 0,
- ALPHA,
- ADDITIVE,
- PREMULTIPLIEDALPHA,
+ ALPHA = 1,
+ ADDITIVE = 2,
+ PREMULTIPLIEDALPHA = 3,
};
struct Stats
@@ -56,6 +55,8 @@ namespace JinEngine
OpenGL();
~OpenGL();
+ void init();
+
void enable(GLenum cap);
void disable(GLenum cap);
diff --git a/src/libjin/graphics/je_window.cpp b/src/libjin/graphics/je_window.cpp
index f41e699..25d003f 100644
--- a/src/libjin/graphics/je_window.cpp
+++ b/src/libjin/graphics/je_window.cpp
@@ -88,15 +88,7 @@ namespace JinEngine
SDL_GL_SetSwapInterval(vsync ? 1 : 0);
SDL_GL_MakeCurrent(mWnd, ctx);
// Default configuration.
- gl.enable(GL_BLEND);
- gl.enable(GL_TEXTURE_2D);
- gl.setClearColor(0, 0, 0, 0);
- gl.setColor(0xff, 0xff, 0xff, 0xff);
- // Default blend function.
- gl.setBlendMode(OpenGL::BlendMode::ALPHA);
- // Bind to default canvas.
- gl.unbindCanvas();
- gl.unuseShader();
+ gl.init();
return true;
}