wmi-1.3.16 from opsview.com

This commit is contained in:
Are Casilla
2019-02-16 00:16:52 +01:00
parent 163fdd3d1b
commit 17b3af2911
2146 changed files with 678824 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
CFLAGS=-mno-cygwin -Os
LDFLAGS=-mno-cygwin -s -Os
CC := $(shell uname | grep -qi linux && echo i586-mingw32msvc-gcc || echo gcc)
LD=$(CC)
all: winexesvc_exe.c
winexesvc.exe: winexesvc.o service.o
$(LD) $(LDFLAGS) -o $@ $^
winexesvc_exe.c: winexesvc.exe bin2c.exe
./bin2c.exe winexesvc_exe winexesvc.exe > $@
bin2c.exe: bin2c.c
gcc -s -o $@ $^
clean:
-@rm *.exe *.o winexesvc_exe.c
+36
View File
@@ -0,0 +1,36 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
char buf[256], s[100];
int c;
FILE *fp;
if (argc != 3) {
fprintf(stderr, "Usage: %s varname file\n", *argv);
return 1;
}
if (!(fp = fopen(argv[2], "rb"))) {
fputs("Cannot open ", stderr);
perror(argv[2]);
return 1;
}
fseek(fp, 0, SEEK_END);
long len = ftell(fp);
fseek(fp, 0, SEEK_SET);
printf("unsigned int %s_len = %u;\nunsigned char %s[] = {\n",
argv[1], len, argv[1]);
strcpy(buf, " ");
while ((c = getc(fp)) != EOF) {
sprintf(s, "%u,", (unsigned char) c);
if (strlen(s) + strlen(buf) >= 80)
puts(buf), strcpy(buf, " ");
strcat(buf, s);
}
if (*buf)
strcat(buf, "\n");
printf("%s};\n", buf);
fprintf(stderr, "%s_len = %u\n", argv[1], len);
return 0;
}
+160
View File
@@ -0,0 +1,160 @@
/*
Copyright (C) Andrzej Hajda 2006
Contact: andrzej.hajda@wp.pl
License: GNU General Public License version 2
*/
#include <windows.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include "shared.h"
#if 0
static void SvcDebugOut(const char *a, int b)
{
FILE *f = fopen("C:\\" SERVICE_NAME ".log", "at");
fprintf(f, a, b);
fclose(f);
}
#else
#define SvcDebugOut(a,b) 0
#endif
DWORD WINAPI server_loop(LPVOID lpParameter);
SERVICE_STATUS winexesvcStatus;
SERVICE_STATUS_HANDLE winexesvcStatusHandle;
VOID WINAPI winexesvcCtrlHandler(DWORD Opcode)
{
DWORD status;
switch (Opcode) {
case SERVICE_CONTROL_PAUSE:
SvcDebugOut(SERVICE_NAME ": winexesvcCtrlHandler: pause\n", 0);
winexesvcStatus.dwCurrentState = SERVICE_PAUSED;
break;
case SERVICE_CONTROL_CONTINUE:
SvcDebugOut(SERVICE_NAME ": winexesvcCtrlHandler: continue\n", 0);
winexesvcStatus.dwCurrentState = SERVICE_RUNNING;
break;
case SERVICE_CONTROL_STOP:
SvcDebugOut(SERVICE_NAME ": winexesvcCtrlHandler: stop\n", 0);
winexesvcStatus.dwWin32ExitCode = 0;
winexesvcStatus.dwCurrentState = SERVICE_STOPPED;
winexesvcStatus.dwCheckPoint = 0;
winexesvcStatus.dwWaitHint = 0;
if (!SetServiceStatus
(winexesvcStatusHandle, &winexesvcStatus)) {
status = GetLastError();
SvcDebugOut(SERVICE_NAME
": SetServiceStatus error %ld\n",
status);
}
SvcDebugOut(SERVICE_NAME ": Leaving winexesvc\n", 0);
return;
case SERVICE_CONTROL_INTERROGATE:
SvcDebugOut(SERVICE_NAME ": winexesvcCtrlHandler: interrogate\n", 0);
break;
default:
SvcDebugOut(SERVICE_NAME ": Unrecognized opcode %ld\n",
Opcode);
}
if (!SetServiceStatus(winexesvcStatusHandle, &winexesvcStatus)) {
status = GetLastError();
SvcDebugOut(SERVICE_NAME ": SetServiceStatus error 0x%08X\n",
status);
}
return;
}
DWORD winexesvcInitialization(DWORD argc, LPTSTR * argv,
DWORD * specificError)
{
HANDLE th = CreateThread(NULL, 0, server_loop, NULL, 0, NULL);
if (th) {
CloseHandle(th);
return NO_ERROR;
}
return !NO_ERROR;
}
void WINAPI winexesvcStart(DWORD argc, LPTSTR * argv)
{
DWORD status;
DWORD specificError;
winexesvcStatus.dwServiceType = SERVICE_WIN32;
winexesvcStatus.dwCurrentState = SERVICE_START_PENDING;
winexesvcStatus.dwControlsAccepted =
SERVICE_ACCEPT_STOP | SERVICE_ACCEPT_PAUSE_CONTINUE;
winexesvcStatus.dwWin32ExitCode = 0;
winexesvcStatus.dwServiceSpecificExitCode = 0;
winexesvcStatus.dwCheckPoint = 0;
winexesvcStatus.dwWaitHint = 0;
SvcDebugOut(SERVICE_NAME ": RegisterServiceCtrlHandler\n", 0);
winexesvcStatusHandle =
RegisterServiceCtrlHandler(SERVICE_NAME, winexesvcCtrlHandler);
if (winexesvcStatusHandle == (SERVICE_STATUS_HANDLE) 0) {
SvcDebugOut(SERVICE_NAME
": RegisterServiceCtrlHandler failed %d\n",
GetLastError());
return;
}
status = winexesvcInitialization(argc, argv, &specificError);
if (status != NO_ERROR) {
winexesvcStatus.dwCurrentState = SERVICE_STOPPED;
winexesvcStatus.dwCheckPoint = 0;
winexesvcStatus.dwWaitHint = 0;
winexesvcStatus.dwWin32ExitCode = status;
winexesvcStatus.dwServiceSpecificExitCode = specificError;
SetServiceStatus(winexesvcStatusHandle, &winexesvcStatus);
return;
}
winexesvcStatus.dwCurrentState = SERVICE_RUNNING;
winexesvcStatus.dwCheckPoint = 0;
winexesvcStatus.dwWaitHint = 0;
if (!SetServiceStatus(winexesvcStatusHandle, &winexesvcStatus)) {
status = GetLastError();
SvcDebugOut(SERVICE_NAME ": SetServiceStatus error %ld\n",
status);
}
SvcDebugOut(SERVICE_NAME ": Returning the Main Thread \n", 0);
return;
}
int main(int argc, char *argv[])
{
SERVICE_TABLE_ENTRY DispatchTable[] = {
{SERVICE_NAME, winexesvcStart},
{NULL, NULL}
};
SvcDebugOut(SERVICE_NAME ": StartServiceCtrlDispatcher %d\n",
GetLastError());
if (!StartServiceCtrlDispatcher(DispatchTable)) {
SvcDebugOut(SERVICE_NAME
": StartServiceCtrlDispatcher (%d)\n",
GetLastError());
}
return 0;
}
+17
View File
@@ -0,0 +1,17 @@
/*
Copyright (C) Andrzej Hajda 2006
Contact: andrzej.hajda@wp.pl
License: GNU General Public License version 2
*/
/* ver = $(VERSION / 100) . $(VERSION % 100) */
#define VERSION 80
#define SERVICE_NAME "winexesvc"
#define PIPE_NAME "ahexec"
#define PIPE_NAME_IO "ahexec_stdio%08X"
#define PIPE_NAME_ERR "ahexec_stderr%08X"
#define CMD_STD_IO_ERR "std_io_err"
#define CMD_RETURN_CODE "return_code"
+573
View File
@@ -0,0 +1,573 @@
/*
Copyright (C) Andrzej Hajda 2006
Contact: andrzej.hajda@wp.pl
License: GNU General Public License version 2
*/
#include <windows.h>
#include <aclapi.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include "shared.h"
#define BUFSIZE 256
#if 0
static void SvcDebugOut(const char *a, int b)
{
FILE *f = fopen("C:\\" SERVICE_NAME ".log", "at");
if (f) {
fprintf(f, a, b);
fclose(f);
}
}
#else
#define SvcDebugOut(a,b) 0
#endif
SECURITY_ATTRIBUTES sa;
/* Creates SECURITY_ATTRIBUTES sa with full access for BUILTIN\Administrators */
int CreatePipesSA()
{
DWORD dwRes;
PSID pAdminSID = NULL;
PACL pACL = NULL;
PSECURITY_DESCRIPTOR pSD = NULL;
EXPLICIT_ACCESS ea;
SID_IDENTIFIER_AUTHORITY SIDAuthNT = SECURITY_NT_AUTHORITY;
/* Create a SID for the BUILTIN\Administrators group. */
if (!AllocateAndInitializeSid(&SIDAuthNT, 2,
SECURITY_BUILTIN_DOMAIN_RID,
DOMAIN_ALIAS_RID_ADMINS,
0, 0, 0, 0, 0, 0, &pAdminSID)) {
SvcDebugOut("AllocateAndInitializeSid Error %u\n",
GetLastError());
return 0;
}
/* Initialize an EXPLICIT_ACCESS structure for an ACE.
The ACE will allow the Administrators group full access to the key.
*/
ea.grfAccessPermissions = FILE_ALL_ACCESS;
ea.grfAccessMode = SET_ACCESS;
ea.grfInheritance = NO_INHERITANCE;
ea.Trustee.TrusteeForm = TRUSTEE_IS_SID;
ea.Trustee.TrusteeType = TRUSTEE_IS_GROUP;
ea.Trustee.ptstrName = (LPTSTR) pAdminSID;
/* Create a new ACL that contains the new ACEs */
dwRes = SetEntriesInAcl(1, &ea, NULL, &pACL);
if (ERROR_SUCCESS != dwRes) {
SvcDebugOut("SetEntriesInAcl Error %u\n", GetLastError());
return 0;
}
/* Initialize a security descriptor */
pSD =
(PSECURITY_DESCRIPTOR) LocalAlloc(LPTR,
SECURITY_DESCRIPTOR_MIN_LENGTH);
if (NULL == pSD) {
SvcDebugOut("LocalAlloc Error %u\n", GetLastError());
return 0;
}
if (!InitializeSecurityDescriptor
(pSD, SECURITY_DESCRIPTOR_REVISION)) {
SvcDebugOut("InitializeSecurityDescriptor Error %u\n",
GetLastError());
return 0;
}
/* Add the ACL to the security descriptor */
if (!SetSecurityDescriptorDacl(pSD, TRUE, /* bDaclPresent flag */
pACL, FALSE)) /* not a default DACL */
{
SvcDebugOut("SetSecurityDescriptorDacl Error %u\n",
GetLastError());
return 0;
}
/* Initialize a security attributes structure */
sa.nLength = sizeof(SECURITY_ATTRIBUTES);
sa.lpSecurityDescriptor = pSD;
sa.bInheritHandle = FALSE;
return 1;
}
typedef struct {
HANDLE h;
OVERLAPPED o;
} OV_HANDLE;
int hgets(char *str, int n, OV_HANDLE *pipe)
{
DWORD res;
DWORD count = 0;
--n;
while (--n >= 0) {
if (!ReadFile(pipe->h, str, 1, NULL, &pipe->o) && GetLastError() != ERROR_IO_PENDING)
goto finish;
if (!GetOverlappedResult(pipe->h, &pipe->o, &res, TRUE) || !res)
goto finish;
if (*str == '\n')
goto finish;
++count;
++str;
}
finish:
*str = 0;
return count;
}
int hprintf(OV_HANDLE *pipe, const char *fmt, ...)
{
int res;
char buf[1024];
va_list ap;
va_start(ap, fmt);
vsnprintf(buf, sizeof(buf), fmt, ap);
va_end(ap);
if (!WriteFile(pipe->h, buf, strlen(buf), NULL, &pipe->o) && GetLastError() == ERROR_IO_PENDING)
GetOverlappedResult(pipe->h, &pipe->o, (LPDWORD)&res, TRUE);
FlushFileBuffers(pipe->h);
return res;
}
typedef struct {
OV_HANDLE *pipe;
const char *cmd;
HANDLE pio;
HANDLE perr;
HANDLE token;
int implevel;
int system;
char *runas;
int conn_number;
} connection_context;
typedef int CMD_FUNC(connection_context *);
typedef struct {
const char *name;
CMD_FUNC *func;
} CMD_ITEM;
int cmd_set(connection_context *c)
{
static const char* var_system = "system";
static const char* var_implevel = "implevel";
static const char* var_runas = "runas";
char *cmdline;
int res = 0;
cmdline = strchr(c->cmd, ' ');
if (!cmdline) {
goto finish;
}
++cmdline;
int l;
if ((strstr(cmdline, var_system) == cmdline) &&
(cmdline[l = strlen(var_system)] == ' ')) {
c->system = atoi(cmdline + l + 1);
} else if ((strstr(cmdline, var_implevel) == cmdline) &&
(cmdline[l = strlen(var_implevel)] == ' ')) {
c->implevel = atoi(cmdline + l + 1);
} else if ((strstr(cmdline, var_runas) == cmdline) &&
(cmdline[l = strlen(var_runas)] == ' ')) {
c->runas = strdup(cmdline + l + 1);
} else {
hprintf(c->pipe, "error Unknown commad (%s)\n", c->cmd);
goto finish;
}
res = 1;
finish:
return res;
}
int cmd_get(connection_context *c)
{
static const char* var_version = "version";
char *cmdline;
int res = 0;
cmdline = strchr(c->cmd, ' ');
if (!cmdline) {
goto finish;
}
++cmdline;
int l;
if ((strstr(cmdline, var_version) == cmdline) &&
(cmdline[l = strlen(var_version)] == 0)) {
hprintf(c->pipe, "version 0x%04X\n", VERSION);
} else {
hprintf(c->pipe, "error Unknown argument (%s)\n", c->cmd);
goto finish;
}
res = 1;
finish:
return res;
}
typedef struct {
char *user;
char *domain;
char *password;
} credentials;
int prepare_credentials(char *str, credentials *crd)
{
char *p;
p = strchr(str, '/');
if (!p) p = strchr(str, '\\');
if (p) {
*p++ = 0;
crd->domain = str;
} else {
p = str;
crd->domain = ".";
}
crd->user = p;
p = strchr(p, '%');
if (p)
*p++ = 0;
crd->password = p;
return 1;
}
int get_token(connection_context *c)
{
int res = 0;
int wres;
HANDLE token;
if (c->runas) {
credentials crd;
if (!prepare_credentials(c->runas, &crd)) {
hprintf(c->pipe, "error Incorrect runas credentials\n");
goto finish;
}
wres = LogonUser(crd.user, crd.domain, crd.password, LOGON32_LOGON_INTERACTIVE, LOGON32_PROVIDER_DEFAULT, &c->token);
if (!wres) {
hprintf(c->pipe, "error Cannot LogonUser(%s,%s,%s) %d\n", crd.user, crd.domain, crd.password, GetLastError());
goto finish;
}
res = 1;
goto finish;
} else if (c->system) {
if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ALL_ACCESS, &token)) {
hprintf(c->pipe, "error Cannot OpenProcessToken %d\n", GetLastError());
goto finish;
}
} else {
if (!ImpersonateNamedPipeClient(c->pipe->h)) {
hprintf(c->pipe, "error Cannot ImpersonateNamedPipeClient %d\n", GetLastError());
goto finish;
}
if (!OpenThreadToken(GetCurrentThread(), TOKEN_ALL_ACCESS, FALSE, &token)) {
hprintf(c->pipe, "error Cannot OpenThreadToken %d\n", GetLastError());
goto finishRevertToSelf;
}
}
if (!DuplicateTokenEx(token, MAXIMUM_ALLOWED, 0, c->implevel, TokenPrimary, &c->token)) {
hprintf(c->pipe, "error Cannot Duplicate Token %d\n", GetLastError());
goto finishCloseToken;
}
res = 1;
finishCloseToken:
CloseHandle(token);
finishRevertToSelf:
if (!c->system) {
if (!RevertToSelf()) {
hprintf(c->pipe, "error Cannot RevertToSelf %d\n", GetLastError());
res = 0;
}
}
finish:
return res;
}
int cmd_run(connection_context *c)
{
char buf[256];
int res = 0;
int wres;
char *cmdline;
DWORD pipe_nr;
cmdline = strchr(c->cmd, ' ');
if (!cmdline) {
goto finish;
}
++cmdline;
if (!get_token(c))
return 0;
pipe_nr = (GetCurrentProcessId() << 16) + (DWORD) c->conn_number;
sprintf(buf, "\\\\.\\pipe\\" PIPE_NAME_IO, pipe_nr);
c->pio = CreateNamedPipe(buf,
PIPE_ACCESS_DUPLEX,
PIPE_WAIT,
1,
BUFSIZE,
BUFSIZE,
NMPWAIT_USE_DEFAULT_WAIT,
&sa);
if (c->pio == INVALID_HANDLE_VALUE) {
hprintf(c->pipe, "error Cannot create io pipe(%s), error 0x%08X\n", buf, GetLastError());
goto finishCloseToken;
}
sprintf(buf, "\\\\.\\pipe\\" PIPE_NAME_ERR, pipe_nr);
c->perr = CreateNamedPipe(buf,
PIPE_ACCESS_DUPLEX,
PIPE_WAIT,
1,
BUFSIZE,
BUFSIZE,
NMPWAIT_USE_DEFAULT_WAIT,
&sa);
if (c->perr == INVALID_HANDLE_VALUE) {
hprintf(c->pipe, "error Cannot create err pipe\n");
goto finishClosePio;
}
/* Send handle to client (it will use it to connect pipes) */
hprintf(c->pipe, CMD_STD_IO_ERR " %08X\n", pipe_nr);
wres = ConnectNamedPipe(c->pio, NULL);
if (!wres)
wres = (GetLastError() == ERROR_PIPE_CONNECTED);
if (!wres) {
hprintf(c->pipe, "error ConnectNamedPipe(pio)\n");
goto finishClosePerr;
}
wres = ConnectNamedPipe(c->perr, NULL);
if (!wres)
wres = (GetLastError() == ERROR_PIPE_CONNECTED);
if (!wres) {
hprintf(c->pipe, "error ConnectNamedPipe(perr)\n");
goto finishDisconnectPio;
}
SetHandleInformation(c->pio, HANDLE_FLAG_INHERIT, 1);
SetHandleInformation(c->perr, HANDLE_FLAG_INHERIT, 1);
SECURITY_ATTRIBUTES sattr;
sattr.nLength = sizeof(SECURITY_ATTRIBUTES);
sattr.bInheritHandle = TRUE;
sattr.lpSecurityDescriptor = NULL;
PROCESS_INFORMATION pi;
ZeroMemory(&pi, sizeof(PROCESS_INFORMATION));
STARTUPINFO si;
ZeroMemory(&si, sizeof(STARTUPINFO));
si.cb = sizeof(STARTUPINFO);
si.hStdInput = c->pio;
si.hStdOutput = c->pio;
si.hStdError = c->perr;
si.dwFlags |= STARTF_USESTDHANDLES;
if (CreateProcessAsUser(
c->token,
NULL,
cmdline, /* command line */
NULL, /* process security attributes */
NULL, /* primary thread security attributes */
TRUE, /* handles are inherited */
0, /* creation flags */
NULL, /* use parent's environment */
NULL, /* use parent's current directory */
&si, /* STARTUPINFO pointer */
&pi)) /* receives PROCESS_INFORMATION */
{
HANDLE hlist[2] = {c->pipe->o.hEvent, pi.hProcess};
DWORD ec;
char str[1];
if (!ResetEvent(c->pipe->o.hEvent))
SvcDebugOut("ResetEvent error - %d\n", GetLastError());
if (!ReadFile(c->pipe->h, str, 1, NULL, &c->pipe->o) && GetLastError() != ERROR_IO_PENDING)
SvcDebugOut("ReadFile(control_pipe) error - %d\n", GetLastError());
ec = WaitForMultipleObjects(2, hlist, FALSE, INFINITE);
SvcDebugOut("WaitForMultipleObjects=%d\n", ec - WAIT_OBJECT_0);
if (ec != WAIT_OBJECT_0)
GetExitCodeProcess(pi.hProcess, &ec);
else
TerminateProcess(pi.hProcess, ec = 0x1234);
FlushFileBuffers(c->pio);
FlushFileBuffers(c->perr);
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
hprintf(c->pipe, CMD_RETURN_CODE " %08X\n", ec);
} else {
hprintf(c->pipe, "error Creating process(%s) %d\n", cmdline, GetLastError());
}
DisconnectNamedPipe(c->perr);
finishDisconnectPio:
DisconnectNamedPipe(c->pio);
finishClosePerr:
CloseHandle(c->perr);
finishClosePio:
CloseHandle(c->pio);
finishCloseToken:
CloseHandle(c->token);
finish:
return res;
}
CMD_ITEM cmd_table[] = {
{"run", cmd_run},
{"set", cmd_set},
{"get", cmd_get},
{NULL, NULL}
};
typedef struct {
OV_HANDLE *pipe;
int conn_number;
} connection_data;
#define MAX_COMMAND_LENGTH (32768)
VOID handle_connection(connection_data *data)
{
char *cmd = 0;
int res;
connection_context _c, *c = &_c;
cmd = malloc(MAX_COMMAND_LENGTH);
if (!cmd) {
hprintf(data->pipe,
"error: unable to allocate buffer for command\n");
return;
}
ZeroMemory(cmd, MAX_COMMAND_LENGTH);
ZeroMemory(c, sizeof(connection_context));
c->pipe = data->pipe;
c->cmd = cmd;
c->conn_number = data->conn_number;
free(data);
/* FIXME make wait for end of process or ctrl_pipe input */
while (1) {
res = hgets(cmd, MAX_COMMAND_LENGTH, c->pipe);
if (res <= 0) {
SvcDebugOut("Error reading from pipe(%08X)\n", (int) c->pipe->h);
goto finish;
}
SvcDebugOut("Retrieved line: \"%s\"\n", (int)cmd);
CMD_ITEM *ci;
for (ci = cmd_table; ci->name; ++ci) {
if (strstr(cmd, ci->name) != cmd) continue;
char c = cmd[strlen(ci->name)];
if (!c || (c == ' '))
break;
}
if (ci->name) {
if (!ci->func(c))
goto finish;
} else
hprintf(c->pipe, "error Ignoring unknown command (%s)\n", cmd);
}
finish:
FlushFileBuffers(c->pipe->h);
DisconnectNamedPipe(c->pipe->h);
CloseHandle(c->pipe->h);
CloseHandle(c->pipe->o.hEvent);
free(c->pipe);
free(cmd);
}
static int conn_number = 0;
DWORD WINAPI server_loop(LPVOID lpParameter)
{
BOOL res;
SvcDebugOut("server_loop: alive\n", 0);
if (!CreatePipesSA()) {
SvcDebugOut("CreatePipesSA failed (%08X)\n",
GetLastError());
return -1;
}
SvcDebugOut("server_loop: CreatePipesSA done\n", 0);
for (;;) {
SvcDebugOut("server_loop: Create Pipe\n", 0);
OV_HANDLE *pipe;
pipe = (OV_HANDLE *)malloc(sizeof(OV_HANDLE));
ZeroMemory(&pipe->o, sizeof(OVERLAPPED));
pipe->o.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL);
pipe->h = CreateNamedPipe("\\\\.\\pipe\\" PIPE_NAME,
PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED,
PIPE_WAIT,
PIPE_UNLIMITED_INSTANCES,
BUFSIZE,
BUFSIZE,
NMPWAIT_USE_DEFAULT_WAIT,
&sa);
if (pipe->h == INVALID_HANDLE_VALUE) {
SvcDebugOut("CreatePipe failed(%08X)\n",
GetLastError());
CloseHandle(pipe->o.hEvent);
free(pipe);
return 0;
}
SvcDebugOut("server_loop: Connect Pipe\n", 0);
if (ConnectNamedPipe(pipe->h, &pipe->o)) {
SvcDebugOut("server_loop: Connect Pipe err %08X\n", GetLastError());
res = FALSE;
} else {
switch (GetLastError()) {
case ERROR_IO_PENDING:
SvcDebugOut("server_loop: Connect Pipe(0) pending\n", 0);
DWORD t;
res = GetOverlappedResult(pipe->h, &pipe->o, &t, TRUE);
break;
case ERROR_PIPE_CONNECTED:
SvcDebugOut("server_loop: Connect Pipe(0) connected\n", 0);
res = TRUE;
break;
default:
SvcDebugOut("server_loop: Connect Pipe(0) err %08X\n", GetLastError());
res = FALSE;
}
}
if (res) {
connection_data *cd = malloc(sizeof(connection_data));
cd->pipe = pipe;
cd->conn_number = ++conn_number;
SvcDebugOut("server_loop: CreateThread\n", 0);
HANDLE th = CreateThread(NULL, /* no security attribute */
0, /* default stack size */
(LPTHREAD_START_ROUTINE)
handle_connection,
(LPVOID) cd, /* thread parameter */
0, /* not suspended */
NULL); /* returns thread ID */
if (!th) {
SvcDebugOut("Cannot create thread\n", 0);
CloseHandle(pipe->h);
CloseHandle(pipe->o.hEvent);
free(pipe);
} else {
CloseHandle(th);
SvcDebugOut("server_loop: Thread created\n", 0);
}
} else {
SvcDebugOut("server_loop: Pipe not connected\n", 0);
CloseHandle(pipe->h);
CloseHandle(pipe->o.hEvent);
free(pipe);
}
}
SvcDebugOut("server_loop: STH wrong\n", 0);
}
@@ -0,0 +1,379 @@
unsigned int winexesvc_exe_len = 9728;
unsigned char winexesvc_exe[] = {
77,90,144,0,3,0,0,0,4,0,0,0,255,255,0,0,184,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,0,14,31,186,14,
0,180,9,205,33,184,1,76,205,33,84,104,105,115,32,112,114,111,103,114,97,109,
32,99,97,110,110,111,116,32,98,101,32,114,117,110,32,105,110,32,68,79,83,32,
109,111,100,101,46,13,13,10,36,0,0,0,0,0,0,0,80,69,0,0,76,1,5,0,220,249,33,
71,0,0,0,0,0,0,0,0,224,0,15,3,11,1,2,56,0,20,0,0,0,14,0,0,0,2,0,0,47,18,0,0,
0,16,0,0,0,48,0,0,0,0,64,0,0,16,0,0,0,2,0,0,4,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,
0,112,0,0,0,4,0,0,137,234,0,0,3,0,0,0,0,0,32,0,0,16,0,0,0,0,16,0,0,16,0,0,0,
0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,96,0,0,104,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,116,101,120,116,0,0,0,112,
19,0,0,0,16,0,0,0,20,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,96,46,100,97,
116,97,0,0,0,112,0,0,0,0,48,0,0,0,2,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,
0,0,192,46,114,100,97,116,97,0,0,224,2,0,0,0,64,0,0,0,4,0,0,0,26,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,64,0,0,64,46,98,115,115,0,0,0,0,176,0,0,0,0,80,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0,0,192,46,105,100,97,116,97,0,0,104,7,0,0,
0,96,0,0,0,8,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,192,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,137,229,131,236,8,199,69,248,
0,0,0,0,131,236,12,141,69,248,80,255,53,64,48,64,0,141,69,252,80,104,4,80,64,
0,104,0,80,64,0,232,99,16,0,0,131,196,32,201,195,85,137,229,131,236,8,131,61,
32,80,64,0,0,116,118,161,32,80,64,0,163,80,48,64,0,131,61,36,98,64,0,0,116,
25,131,236,8,255,53,32,80,64,0,161,36,98,64,0,255,112,16,232,22,16,0,0,131,
196,16,131,61,36,98,64,0,224,116,28,131,236,8,255,53,32,80,64,0,161,36,98,64,
0,131,192,32,255,112,16,232,241,15,0,0,131,196,16,131,61,36,98,64,0,192,116,
28,131,236,8,255,53,32,80,64,0,161,36,98,64,0,131,192,64,255,112,16,232,204,
15,0,0,131,196,16,232,180,15,0,0,137,194,161,80,48,64,0,137,2,201,195,85,137,
229,131,236,24,199,69,248,0,0,0,0,199,69,244,0,0,0,0,139,69,8,139,0,139,0,
137,69,240,129,125,240,145,0,0,192,119,23,129,125,240,141,0,0,192,115,113,
129,125,240,5,0,0,192,116,28,233,191,0,0,0,129,125,240,147,0,0,192,116,90,
129,125,240,148,0,0,192,116,88,233,168,0,0,0,131,236,8,106,0,106,11,232,56,
15,0,0,131,196,16,137,69,252,131,125,252,1,117,24,131,236,8,106,1,106,11,232,
32,15,0,0,131,196,16,199,69,248,255,255,255,255,235,120,131,125,252,0,116,
114,131,236,12,106,11,139,69,252,255,208,131,196,16,199,69,248,255,255,255,
255,235,92,199,69,244,1,0,0,0,131,236,8,106,0,106,8,232,229,14,0,0,131,196,
16,137,69,252,131,125,252,1,117,35,131,236,8,106,1,106,8,232,205,14,0,0,131,
196,16,131,125,244,0,116,5,232,191,13,0,0,199,69,248,255,255,255,255,235,26,
131,125,252,0,116,20,131,236,12,106,8,139,69,252,255,208,131,196,16,199,69,
248,255,255,255,255,139,69,248,201,194,4,0,85,137,229,131,236,8,131,236,12,
104,199,16,64,0,232,66,15,0,0,131,196,12,232,122,13,0,0,232,21,254,255,255,
232,66,254,255,255,232,68,13,0,0,131,228,240,131,236,4,131,236,12,232,77,14,
0,0,131,196,12,255,48,255,53,4,80,64,0,255,53,0,80,64,0,232,173,12,0,0,131,
196,16,137,69,252,232,28,14,0,0,131,236,12,255,117,252,232,1,15,0,0,85,137,
229,131,236,8,131,236,12,106,1,161,28,98,64,0,255,208,131,196,16,232,130,255,
255,255,85,137,229,131,236,8,131,236,12,106,2,161,28,98,64,0,255,208,131,196,
16,232,104,255,255,255,85,137,229,131,236,8,131,236,12,255,117,8,161,52,98,
64,0,255,208,131,196,16,201,195,85,137,229,131,236,8,131,236,12,255,117,8,
161,40,98,64,0,255,208,131,196,16,201,195,144,144,144,144,144,144,144,144,
144,144,144,144,144,85,137,229,49,192,87,252,141,125,204,185,6,0,0,0,131,236,
56,199,69,200,0,0,0,0,199,69,196,0,0,0,0,243,170,141,69,200,80,106,0,106,0,
106,0,106,0,106,0,106,0,104,32,2,0,0,106,32,106,2,141,69,204,80,198,69,209,5,
232,152,15,0,0,49,210,133,192,15,132,142,0,0,0,139,69,200,137,69,248,141,69,
196,80,106,0,141,69,220,80,106,1,199,69,220,255,1,31,0,199,69,224,2,0,0,0,
199,69,228,0,0,0,0,199,69,240,0,0,0,0,199,69,244,2,0,0,0,232,100,15,0,0,49,
210,133,192,117,78,106,20,106,64,232,5,14,0,0,49,210,133,192,137,199,116,61,
106,1,80,232,85,15,0,0,49,210,133,192,116,47,106,0,255,117,196,106,1,87,232,
82,15,0,0,49,210,133,192,116,28,199,5,80,80,64,0,12,0,0,0,137,61,84,80,64,0,
199,5,88,80,64,0,0,0,0,0,178,1,137,208,139,125,252,201,195,85,137,229,87,86,
83,80,80,139,117,12,139,93,8,199,69,236,0,0,0,0,131,238,2,120,77,139,125,16,
131,199,4,87,106,0,106,1,83,139,69,16,255,48,232,153,13,0,0,133,192,117,12,
232,160,13,0,0,61,229,3,0,0,117,39,106,1,141,69,240,80,87,139,69,16,255,48,
232,152,13,0,0,133,192,116,18,131,125,240,0,116,12,128,59,10,116,7,255,69,
236,67,78,235,177,198,3,0,139,69,236,141,101,244,91,94,95,201,195,85,137,229,
87,86,83,129,236,4,4,0,0,141,69,16,80,255,117,12,104,0,4,0,0,141,133,244,251,
255,255,139,93,8,80,232,237,12,0,0,141,115,4,131,196,16,86,106,0,49,192,252,
131,201,255,141,189,244,251,255,255,242,174,247,209,73,81,141,133,244,251,
255,255,80,255,51,232,52,13,0,0,133,192,117,29,232,11,13,0,0,61,229,3,0,0,
117,17,106,1,141,133,240,251,255,255,80,86,255,51,232,3,13,0,0,255,51,232,28,
13,0,0,139,133,240,251,255,255,141,101,244,91,94,95,201,195,85,137,229,87,86,
83,131,236,24,106,32,139,117,8,255,118,4,199,69,240,0,0,0,0,232,97,12,0,0,
133,192,89,91,137,195,15,132,216,0,0,0,255,53,32,48,64,0,67,83,232,56,12,0,0,
57,216,95,90,117,48,161,32,48,64,0,137,69,236,131,201,255,49,192,252,139,125,
236,242,174,247,209,141,65,255,128,60,3,32,117,18,141,68,3,1,80,232,250,11,0,
0,137,70,24,233,141,0,0,0,255,53,36,48,64,0,83,232,246,11,0,0,57,216,90,89,
117,40,49,192,131,201,255,139,61,36,48,64,0,252,242,174,247,209,141,65,255,
128,60,3,32,117,15,141,68,3,1,80,232,189,11,0,0,137,70,20,235,83,255,53,40,
48,64,0,83,232,188,11,0,0,57,216,89,95,117,45,161,40,48,64,0,137,69,220,131,
201,255,49,192,252,139,125,220,242,174,247,209,141,65,255,128,60,3,32,117,15,
141,68,3,1,80,232,190,10,0,0,137,70,28,235,20,255,118,4,104,34,64,64,0,255,
54,232,134,254,255,255,131,196,12,235,8,90,199,69,240,1,0,0,0,139,69,240,141,
101,244,91,94,95,201,195,85,137,229,87,86,83,86,86,106,32,139,69,8,255,112,4,
199,69,240,0,0,0,0,232,86,11,0,0,133,192,89,91,137,198,116,98,141,88,1,255,
53,44,48,64,0,83,232,47,11,0,0,57,216,95,90,117,27,161,44,48,64,0,137,69,236,
131,201,255,49,192,252,139,125,236,242,174,247,209,128,60,49,0,116,23,139,69,
8,255,112,4,104,69,64,64,0,255,48,232,8,254,255,255,131,196,12,235,27,106,80,
104,98,64,64,0,139,69,8,255,48,232,242,253,255,255,131,196,12,199,69,240,1,0,
0,0,139,69,240,141,101,244,91,94,95,201,195,85,137,229,86,83,106,47,139,93,8,
83,232,209,10,0,0,133,192,90,139,117,12,89,117,14,106,92,83,232,192,10,0,0,
133,192,90,89,116,9,198,0,0,64,137,94,4,235,9,137,216,199,70,4,114,64,64,0,
137,6,106,37,80,232,158,10,0,0,133,192,90,89,116,4,198,0,0,64,137,70,8,141,
101,248,91,184,1,0,0,0,94,201,195,85,137,229,86,83,131,236,20,139,93,8,139,
83,28,49,246,133,210,116,106,141,69,232,80,82,232,134,255,255,255,133,192,90,
89,117,19,104,116,64,64,0,255,51,232,81,253,255,255,91,88,233,45,1,0,0,141,
67,16,80,106,0,106,2,255,117,240,255,117,236,255,117,232,232,248,11,0,0,133,
192,117,35,232,143,10,0,0,80,255,117,240,255,117,236,255,117,232,104,151,64,
64,0,255,51,232,21,253,255,255,131,196,24,233,240,0,0,0,190,1,0,0,0,233,230,
0,0,0,131,123,24,0,116,37,141,69,228,80,104,255,0,15,0,232,147,10,0,0,80,232,
189,11,0,0,133,192,117,98,232,68,10,0,0,80,104,188,64,64,0,235,24,139,3,255,
48,232,179,11,0,0,133,192,117,23,232,42,10,0,0,80,104,222,64,64,0,255,51,232,
185,252,255,255,233,148,0,0,0,141,69,228,80,106,0,104,255,0,15,0,232,88,10,0,
0,80,232,146,11,0,0,133,192,117,23,232,249,9,0,0,80,104,10,65,64,0,255,51,
232,136,252,255,255,131,196,12,235,64,141,67,16,80,106,1,255,115,20,106,0,
104,0,0,0,2,255,117,228,232,111,11,0,0,133,192,117,23,232,198,9,0,0,80,104,
43,65,64,0,255,51,232,85,252,255,255,131,196,12,235,5,190,1,0,0,0,255,117,
228,232,7,10,0,0,131,123,24,0,117,32,232,76,11,0,0,133,192,117,23,232,147,9,
0,0,80,104,76,65,64,0,255,51,232,34,252,255,255,49,246,131,196,12,141,101,
248,91,137,240,94,201,195,85,137,229,87,86,83,129,236,132,1,0,0,106,32,139,
117,8,255,118,4,232,255,8,0,0,133,192,90,89,137,133,112,254,255,255,15,132,
223,2,0,0,86,255,133,112,254,255,255,232,94,254,255,255,133,192,95,15,132,
202,2,0,0,232,165,9,0,0,137,195,193,227,16,3,94,32,83,104,106,65,64,0,141,
189,244,254,255,255,87,232,139,8,0,0,104,80,80,64,0,106,0,104,0,1,0,0,104,0,
1,0,0,106,1,106,0,106,3,87,232,126,9,0,0,137,70,8,131,196,12,64,117,27,232,
240,8,0,0,80,87,104,132,65,64,0,255,54,232,126,251,255,255,131,196,16,233,98,
2,0,0,83,104,179,65,64,0,87,232,62,8,0,0,104,80,80,64,0,106,0,104,0,1,0,0,
104,0,1,0,0,106,1,106,0,106,3,87,232,49,9,0,0,137,70,12,131,196,12,64,117,19,
104,206,65,64,0,255,54,232,56,251,255,255,89,91,233,21,2,0,0,83,104,236,65,
64,0,255,54,232,36,251,255,255,106,0,255,118,8,232,14,9,0,0,131,196,12,133,
192,117,31,232,114,8,0,0,61,23,2,0,0,116,19,104,253,65,64,0,255,54,232,251,
250,255,255,88,90,233,208,1,0,0,106,0,255,118,12,232,222,8,0,0,133,192,117,
31,232,69,8,0,0,61,23,2,0,0,116,19,104,26,66,64,0,255,54,232,206,250,255,255,
91,95,233,155,1,0,0,106,1,106,1,255,118,8,232,191,8,0,0,106,1,106,1,255,118,
12,232,179,8,0,0,141,189,212,254,255,255,252,49,192,185,4,0,0,0,243,171,106,
68,106,0,141,157,132,254,255,255,83,199,133,228,254,255,255,12,0,0,0,199,133,
236,254,255,255,1,0,0,0,199,133,232,254,255,255,0,0,0,0,232,21,7,0,0,139,70,
8,137,133,188,254,255,255,137,133,192,254,255,255,139,70,12,137,133,196,254,
255,255,141,133,212,254,255,255,80,83,106,0,106,0,106,0,106,1,106,0,106,0,
255,181,112,254,255,255,106,0,255,118,16,129,141,176,254,255,255,0,1,0,0,199,
133,132,254,255,255,68,0,0,0,232,69,9,0,0,131,196,12,133,192,15,132,199,0,0,
0,139,22,139,66,20,137,133,124,254,255,255,139,133,212,254,255,255,137,133,
128,254,255,255,255,114,20,232,11,8,0,0,139,22,141,66,4,80,106,0,106,1,141,
133,123,254,255,255,80,255,50,232,51,7,0,0,133,192,117,5,232,58,7,0,0,106,
255,106,0,141,133,124,254,255,255,80,106,2,232,232,7,0,0,133,192,137,133,116,
254,255,255,116,20,141,133,116,254,255,255,80,255,181,212,254,255,255,232,
220,7,0,0,235,26,104,52,18,0,0,255,181,212,254,255,255,199,133,116,254,255,
255,52,18,0,0,232,208,7,0,0,255,118,8,232,24,7,0,0,255,118,12,232,16,7,0,0,
255,181,212,254,255,255,232,53,7,0,0,255,181,216,254,255,255,232,42,7,0,0,
255,181,116,254,255,255,104,56,66,64,0,255,54,232,84,249,255,255,131,196,12,
235,27,232,174,6,0,0,80,255,181,112,254,255,255,104,74,66,64,0,255,54,232,55,
249,255,255,131,196,16,255,118,12,232,128,7,0,0,255,118,8,232,120,7,0,0,255,
118,12,232,224,6,0,0,255,118,8,232,216,6,0,0,255,118,16,232,208,6,0,0,141,
101,244,91,94,49,192,95,201,195,85,137,229,87,86,83,131,236,56,104,0,128,0,0,
139,93,8,232,176,5,0,0,133,192,137,198,89,117,17,104,105,66,64,0,255,51,232,
217,248,255,255,233,229,0,0,0,104,0,128,0,0,106,0,80,232,107,5,0,0,141,125,
196,252,49,192,185,9,0,0,0,243,171,139,3,137,69,196,139,67,4,83,137,117,200,
137,69,228,232,90,5,0,0,131,196,16,255,117,196,104,0,128,0,0,86,232,32,248,
255,255,131,196,12,133,192,126,104,187,0,48,64,0,131,61,0,48,64,0,0,116,71,
255,51,86,232,108,5,0,0,57,240,95,90,117,30,139,3,137,69,188,131,201,255,49,
192,252,139,125,188,242,174,247,209,138,68,49,255,132,192,116,12,60,32,116,8,
131,195,8,131,59,0,235,202,131,59,0,116,14,141,125,196,87,255,83,4,133,192,
91,117,152,235,19,86,104,151,66,64,0,255,117,196,232,43,248,255,255,131,196,
12,235,131,139,69,196,255,48,232,176,5,0,0,139,69,196,255,48,232,102,6,0,0,
139,69,196,255,48,232,204,5,0,0,139,69,196,255,112,20,232,193,5,0,0,255,117,
196,232,169,4,0,0,86,232,163,4,0,0,141,101,244,91,94,95,201,195,85,137,229,
87,83,81,232,128,246,255,255,131,202,255,133,192,15,132,246,0,0,0,235,21,255,
115,20,232,139,5,0,0,83,232,117,4,0,0,49,210,233,223,0,0,0,106,24,232,119,4,
0,0,137,195,252,141,120,4,185,5,0,0,0,49,192,243,171,106,0,106,1,106,1,106,0,
232,251,5,0,0,137,67,20,104,80,80,64,0,106,0,104,0,1,0,0,104,0,1,0,0,104,255,
0,0,0,106,0,104,3,0,0,64,104,188,66,64,0,232,81,5,0,0,137,3,131,248,255,90,
116,150,141,123,4,87,80,232,79,5,0,0,133,192,117,97,232,182,4,0,0,61,23,2,0,
0,116,25,61,229,3,0,0,117,78,106,1,141,69,244,80,87,255,51,232,170,4,0,0,133,
192,116,60,106,8,232,239,3,0,0,139,21,16,80,64,0,66,137,24,137,21,16,80,64,0,
137,80,4,106,0,106,0,80,104,250,26,64,0,106,0,106,0,232,122,5,0,0,133,192,95,
116,11,80,232,191,4,0,0,233,60,255,255,255,255,51,232,179,4,0,0,255,115,20,
232,171,4,0,0,83,232,149,3,0,0,91,233,33,255,255,255,141,101,248,91,137,208,
95,201,194,4,0,144,144,144,144,85,137,229,139,69,8,131,248,2,116,14,119,5,72,
116,33,235,71,131,248,3,116,14,235,64,199,5,100,80,64,0,7,0,0,0,235,52,199,5,
100,80,64,0,4,0,0,0,235,40,199,5,108,80,64,0,0,0,0,0,199,5,100,80,64,0,1,0,0,
0,199,5,116,80,64,0,0,0,0,0,199,5,120,80,64,0,0,0,0,0,104,96,80,64,0,255,53,
128,80,64,0,232,151,5,0,0,133,192,117,5,232,190,3,0,0,201,194,4,0,85,137,229,
106,0,106,0,106,0,104,21,28,64,0,106,0,106,0,232,179,4,0,0,133,192,186,1,0,0,
0,116,8,80,232,244,3,0,0,49,210,137,208,201,195,85,137,229,80,104,48,29,64,0,
104,208,66,64,0,199,5,96,80,64,0,48,0,0,0,199,5,100,80,64,0,2,0,0,0,199,5,
104,80,64,0,3,0,0,0,199,5,108,80,64,0,0,0,0,0,199,5,112,80,64,0,0,0,0,0,199,
5,116,80,64,0,0,0,0,0,199,5,120,80,64,0,0,0,0,0,232,21,5,0,0,133,192,163,128,
80,64,0,15,132,138,0,0,0,141,69,252,80,255,117,12,255,117,8,232,95,255,255,
255,131,196,12,133,192,116,61,104,96,80,64,0,163,108,80,64,0,255,53,128,80,
64,0,139,69,252,199,5,100,80,64,0,1,0,0,0,199,5,116,80,64,0,0,0,0,0,199,5,
120,80,64,0,0,0,0,0,163,112,80,64,0,232,167,4,0,0,235,55,104,96,80,64,0,255,
53,128,80,64,0,199,5,100,80,64,0,4,0,0,0,199,5,116,80,64,0,0,0,0,0,199,5,120,
80,64,0,0,0,0,0,232,119,4,0,0,133,192,117,5,232,158,2,0,0,201,194,8,0,85,137,
229,131,236,16,232,35,1,0,0,141,69,240,80,199,69,240,208,66,64,0,199,69,244,
210,29,64,0,199,69,248,0,0,0,0,199,69,252,0,0,0,0,232,90,4,0,0,49,192,201,
195,144,144,144,144,144,144,85,137,229,131,236,8,139,69,8,137,69,248,139,69,
248,59,69,12,115,35,139,85,248,139,69,16,3,66,4,137,69,252,139,77,252,139,85,
252,139,69,248,139,0,3,2,137,1,141,69,248,131,0,8,235,213,201,195,85,137,229,
104,0,0,64,0,104,224,66,64,0,104,224,66,64,0,232,176,255,255,255,131,196,12,
201,195,144,144,144,144,144,144,144,144,144,144,144,85,137,229,219,227,201,
195,144,144,144,144,144,144,144,144,144,85,137,229,131,236,8,161,96,48,64,0,
131,56,0,116,18,161,96,48,64,0,139,0,255,208,131,5,96,48,64,0,4,235,228,201,
195,85,137,229,131,236,8,161,96,35,64,0,137,69,252,131,125,252,255,117,27,
199,69,252,0,0,0,0,139,69,252,131,60,133,100,35,64,0,0,116,7,141,69,252,255,
0,235,236,139,69,252,137,69,248,131,125,248,0,116,19,139,69,248,139,4,133,96,
35,64,0,255,208,141,69,248,255,8,235,231,131,236,12,104,112,31,64,0,232,116,
242,255,255,131,196,16,201,195,85,137,229,131,236,8,131,61,48,80,64,0,0,117,
15,199,5,48,80,64,0,1,0,0,0,232,130,255,255,255,201,195,144,144,144,144,144,
144,144,144,144,144,144,144,255,37,4,98,64,0,144,144,0,0,0,0,0,0,0,0,255,37,
28,98,64,0,144,144,0,0,0,0,0,0,0,0,255,37,32,98,64,0,144,144,0,0,0,0,0,0,0,0,
255,37,20,98,64,0,144,144,0,0,0,0,0,0,0,0,255,37,72,98,64,0,144,144,0,0,0,0,
0,0,0,0,255,37,24,98,64,0,144,144,0,0,0,0,0,0,0,0,255,37,44,98,64,0,144,144,
0,0,0,0,0,0,0,0,255,37,16,98,64,0,144,144,0,0,0,0,0,0,0,0,255,37,68,98,64,0,
144,144,0,0,0,0,0,0,0,0,255,37,60,98,64,0,144,144,0,0,0,0,0,0,0,0,255,37,64,
98,64,0,144,144,0,0,0,0,0,0,0,0,255,37,76,98,64,0,144,144,0,0,0,0,0,0,0,0,
255,37,56,98,64,0,144,144,0,0,0,0,0,0,0,0,255,37,84,98,64,0,144,144,0,0,0,0,
0,0,0,0,255,37,80,98,64,0,144,144,0,0,0,0,0,0,0,0,255,37,48,98,64,0,144,144,
0,0,0,0,0,0,0,0,255,37,236,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,188,97,64,
0,144,144,0,0,0,0,0,0,0,0,255,37,220,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,
224,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,212,97,64,0,144,144,0,0,0,0,0,0,0,
0,255,37,216,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,248,97,64,0,144,144,0,0,
0,0,0,0,0,0,255,37,192,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,196,97,64,0,
144,144,0,0,0,0,0,0,0,0,255,37,204,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,
164,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,200,97,64,0,144,144,0,0,0,0,0,0,0,
0,255,37,176,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,168,97,64,0,144,144,0,0,
0,0,0,0,0,0,255,37,232,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,228,97,64,0,
144,144,0,0,0,0,0,0,0,0,255,37,244,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,
208,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,240,97,64,0,144,144,0,0,0,0,0,0,0,
0,255,37,184,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,172,97,64,0,144,144,0,0,
0,0,0,0,0,0,255,37,180,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,100,97,64,0,
144,144,0,0,0,0,0,0,0,0,255,37,140,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,
116,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,144,97,64,0,144,144,0,0,0,0,0,0,0,
0,255,37,120,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,124,97,64,0,144,144,0,0,
0,0,0,0,0,0,255,37,112,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,128,97,64,0,
144,144,0,0,0,0,0,0,0,0,255,37,108,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,
136,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,104,97,64,0,144,144,0,0,0,0,0,0,0,
0,255,37,148,97,64,0,144,144,0,0,0,0,0,0,0,0,255,37,132,97,64,0,144,144,0,0,
0,0,0,0,0,0,255,37,152,97,64,0,144,144,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,
0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,64,64,0,232,23,64,0,4,64,64,0,130,20,64,0,8,64,64,0,142,21,64,0,
0,0,0,0,0,0,0,0,12,64,64,0,19,64,64,0,28,64,64,0,61,64,64,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,108,35,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,114,117,110,0,115,101,116,0,103,101,116,0,115,121,115,116,101,
109,0,105,109,112,108,101,118,101,108,0,114,117,110,97,115,0,101,114,114,111,
114,32,85,110,107,110,111,119,110,32,99,111,109,109,97,100,32,40,37,115,41,
10,0,118,101,114,115,105,111,110,0,101,114,114,111,114,32,85,110,107,110,111,
119,110,32,97,114,103,117,109,101,110,116,32,40,37,115,41,10,0,118,101,114,
115,105,111,110,32,48,120,37,48,52,88,10,0,46,0,101,114,114,111,114,32,73,
110,99,111,114,114,101,99,116,32,114,117,110,97,115,32,99,114,101,100,101,
110,116,105,97,108,115,10,0,101,114,114,111,114,32,67,97,110,110,111,116,32,
76,111,103,111,110,85,115,101,114,40,37,115,44,37,115,44,37,115,41,32,37,100,
10,0,101,114,114,111,114,32,67,97,110,110,111,116,32,79,112,101,110,80,114,
111,99,101,115,115,84,111,107,101,110,32,37,100,10,0,101,114,114,111,114,32,
67,97,110,110,111,116,32,73,109,112,101,114,115,111,110,97,116,101,78,97,109,
101,100,80,105,112,101,67,108,105,101,110,116,32,37,100,10,0,101,114,114,111,
114,32,67,97,110,110,111,116,32,79,112,101,110,84,104,114,101,97,100,84,111,
107,101,110,32,37,100,10,0,101,114,114,111,114,32,67,97,110,110,111,116,32,
68,117,112,108,105,99,97,116,101,32,84,111,107,101,110,32,37,100,10,0,101,
114,114,111,114,32,67,97,110,110,111,116,32,82,101,118,101,114,116,84,111,83,
101,108,102,32,37,100,10,0,92,92,46,92,112,105,112,101,92,97,104,101,120,101,
99,95,115,116,100,105,111,37,48,56,88,0,101,114,114,111,114,32,67,97,110,110,
111,116,32,99,114,101,97,116,101,32,105,111,32,112,105,112,101,40,37,115,41,
44,32,101,114,114,111,114,32,48,120,37,48,56,88,10,0,92,92,46,92,112,105,112,
101,92,97,104,101,120,101,99,95,115,116,100,101,114,114,37,48,56,88,0,101,
114,114,111,114,32,67,97,110,110,111,116,32,99,114,101,97,116,101,32,101,114,
114,32,112,105,112,101,10,0,115,116,100,95,105,111,95,101,114,114,32,37,48,
56,88,10,0,101,114,114,111,114,32,67,111,110,110,101,99,116,78,97,109,101,
100,80,105,112,101,40,112,105,111,41,10,0,101,114,114,111,114,32,67,111,110,
110,101,99,116,78,97,109,101,100,80,105,112,101,40,112,101,114,114,41,10,0,
114,101,116,117,114,110,95,99,111,100,101,32,37,48,56,88,10,0,101,114,114,
111,114,32,67,114,101,97,116,105,110,103,32,112,114,111,99,101,115,115,40,37,
115,41,32,37,100,10,0,101,114,114,111,114,58,32,117,110,97,98,108,101,32,116,
111,32,97,108,108,111,99,97,116,101,32,98,117,102,102,101,114,32,102,111,114,
32,99,111,109,109,97,110,100,10,0,101,114,114,111,114,32,73,103,110,111,114,
105,110,103,32,117,110,107,110,111,119,110,32,99,111,109,109,97,110,100,32,
40,37,115,41,10,0,92,92,46,92,112,105,112,101,92,97,104,101,120,101,99,0,0,0,
0,0,119,105,110,101,120,101,115,118,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,104,96,0,0,0,0,0,0,0,0,0,0,140,102,0,0,100,97,0,0,168,96,
0,0,0,0,0,0,0,0,0,0,244,102,0,0,164,97,0,0,8,97,0,0,0,0,0,0,0,0,0,0,8,103,0,
0,4,98,0,0,20,97,0,0,0,0,0,0,0,0,0,0,92,103,0,0,16,98,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,98,0,0,120,98,0,0,144,98,0,0,164,98,0,0,196,
98,0,0,228,98,0,0,244,98,0,0,8,99,0,0,28,99,0,0,60,99,0,0,76,99,0,0,96,99,0,
0,124,99,0,0,144,99,0,0,0,0,0,0,0,0,0,0,176,99,0,0,192,99,0,0,212,99,0,0,228,
99,0,0,248,99,0,0,8,100,0,0,32,100,0,0,48,100,0,0,68,100,0,0,88,100,0,0,112,
100,0,0,132,100,0,0,156,100,0,0,172,100,0,0,196,100,0,0,212,100,0,0,224,100,
0,0,240,100,0,0,8,101,0,0,40,101,0,0,60,101,0,0,88,101,0,0,0,0,0,0,0,0,0,0,
100,101,0,0,0,0,0,0,0,0,0,0,112,101,0,0,128,101,0,0,144,101,0,0,160,101,0,0,
180,101,0,0,192,101,0,0,200,101,0,0,212,101,0,0,224,101,0,0,240,101,0,0,252,
101,0,0,4,102,0,0,12,102,0,0,24,102,0,0,36,102,0,0,48,102,0,0,60,102,0,0,72,
102,0,0,0,0,0,0,0,0,0,0,92,98,0,0,120,98,0,0,144,98,0,0,164,98,0,0,196,98,0,
0,228,98,0,0,244,98,0,0,8,99,0,0,28,99,0,0,60,99,0,0,76,99,0,0,96,99,0,0,124,
99,0,0,144,99,0,0,0,0,0,0,0,0,0,0,176,99,0,0,192,99,0,0,212,99,0,0,228,99,0,
0,248,99,0,0,8,100,0,0,32,100,0,0,48,100,0,0,68,100,0,0,88,100,0,0,112,100,0,
0,132,100,0,0,156,100,0,0,172,100,0,0,196,100,0,0,212,100,0,0,224,100,0,0,
240,100,0,0,8,101,0,0,40,101,0,0,60,101,0,0,88,101,0,0,0,0,0,0,0,0,0,0,100,
101,0,0,0,0,0,0,0,0,0,0,112,101,0,0,128,101,0,0,144,101,0,0,160,101,0,0,180,
101,0,0,192,101,0,0,200,101,0,0,212,101,0,0,224,101,0,0,240,101,0,0,252,101,
0,0,4,102,0,0,12,102,0,0,24,102,0,0,36,102,0,0,48,102,0,0,60,102,0,0,72,102,
0,0,0,0,0,0,26,0,65,108,108,111,99,97,116,101,65,110,100,73,110,105,116,105,
97,108,105,122,101,83,105,100,0,0,86,0,67,114,101,97,116,101,80,114,111,99,
101,115,115,65,115,85,115,101,114,65,0,0,140,0,68,117,112,108,105,99,97,116,
101,84,111,107,101,110,69,120,0,0,251,0,73,109,112,101,114,115,111,110,97,
116,101,78,97,109,101,100,80,105,112,101,67,108,105,101,110,116,0,0,0,0,254,
0,73,110,105,116,105,97,108,105,122,101,83,101,99,117,114,105,116,121,68,101,
115,99,114,105,112,116,111,114,0,0,12,1,76,111,103,111,110,85,115,101,114,65,
0,0,0,0,101,1,79,112,101,110,80,114,111,99,101,115,115,84,111,107,101,110,0,
0,106,1,79,112,101,110,84,104,114,101,97,100,84,111,107,101,110,0,0,0,183,1,
82,101,103,105,115,116,101,114,83,101,114,118,105,99,101,67,116,114,108,72,
97,110,100,108,101,114,65,0,0,0,193,1,82,101,118,101,114,116,84,111,83,101,
108,102,0,0,197,1,83,101,116,69,110,116,114,105,101,115,73,110,65,99,108,65,
0,0,211,1,83,101,116,83,101,99,117,114,105,116,121,68,101,115,99,114,105,112,
116,111,114,68,97,99,108,0,221,1,83,101,116,83,101,114,118,105,99,101,83,116,
97,116,117,115,0,0,227,1,83,116,97,114,116,83,101,114,118,105,99,101,67,116,
114,108,68,105,115,112,97,116,99,104,101,114,65,0,0,0,38,0,67,108,111,115,
101,72,97,110,100,108,101,0,0,0,46,0,67,111,110,110,101,99,116,78,97,109,101,
100,80,105,112,101,0,0,64,0,67,114,101,97,116,101,69,118,101,110,116,65,0,0,
81,0,67,114,101,97,116,101,78,97,109,101,100,80,105,112,101,65,0,0,90,0,67,
114,101,97,116,101,84,104,114,101,97,100,0,0,117,0,68,105,115,99,111,110,110,
101,99,116,78,97,109,101,100,80,105,112,101,0,0,0,155,0,69,120,105,116,80,
114,111,99,101,115,115,0,0,0,203,0,70,108,117,115,104,70,105,108,101,66,117,
102,102,101,114,115,0,0,25,1,71,101,116,67,117,114,114,101,110,116,80,114,
111,99,101,115,115,0,26,1,71,101,116,67,117,114,114,101,110,116,80,114,111,
99,101,115,115,73,100,0,0,0,27,1,71,101,116,67,117,114,114,101,110,116,84,
104,114,101,97,100,0,0,48,1,71,101,116,69,120,105,116,67,111,100,101,80,114,
111,99,101,115,115,0,0,0,0,67,1,71,101,116,76,97,115,116,69,114,114,111,114,
0,0,94,1,71,101,116,79,118,101,114,108,97,112,112,101,100,82,101,115,117,108,
116,0,0,0,16,2,76,111,99,97,108,65,108,108,111,99,0,0,0,0,101,2,82,101,97,
100,70,105,108,101,0,0,122,2,82,101,115,101,116,69,118,101,110,116,0,0,0,0,
194,2,83,101,116,72,97,110,100,108,101,73,110,102,111,114,109,97,116,105,111,
110,0,0,223,2,83,101,116,85,110,104,97,110,100,108,101,100,69,120,99,101,112,
116,105,111,110,70,105,108,116,101,114,0,0,0,243,2,84,101,114,109,105,110,97,
116,101,80,114,111,99,101,115,115,0,0,35,3,87,97,105,116,70,111,114,77,117,
108,116,105,112,108,101,79,98,106,101,99,116,115,0,0,0,0,54,3,87,114,105,116,
101,70,105,108,101,0,84,0,95,115,116,114,100,117,112,0,0,0,39,0,95,95,103,
101,116,109,97,105,110,97,114,103,115,0,60,0,95,95,112,95,95,101,110,118,105,
114,111,110,0,0,62,0,95,95,112,95,95,102,109,111,100,101,0,0,0,0,80,0,95,95,
115,101,116,95,97,112,112,95,116,121,112,101,0,0,0,0,121,0,95,99,101,120,105,
116,0,0,0,0,233,0,95,105,111,98,0,0,94,1,95,111,110,101,120,105,116,0,0,0,
132,1,95,115,101,116,109,111,100,101,0,0,189,1,95,118,115,110,112,114,105,
110,116,102,0,0,0,0,28,2,97,116,101,120,105,116,0,0,0,0,30,2,97,116,111,105,
0,0,63,2,102,114,101,101,0,0,114,2,109,97,108,108,111,99,0,0,0,0,122,2,109,
101,109,115,101,116,0,0,0,0,144,2,115,105,103,110,97,108,0,0,0,0,147,2,115,
112,114,105,110,116,102,0,0,0,152,2,115,116,114,99,104,114,0,0,0,0,166,2,115,
116,114,115,116,114,0,0,0,0,0,96,0,0,0,96,0,0,0,96,0,0,0,96,0,0,0,96,0,0,0,
96,0,0,0,96,0,0,0,96,0,0,0,96,0,0,0,96,0,0,0,96,0,0,0,96,0,0,0,96,0,0,0,96,0,
0,65,68,86,65,80,73,51,50,46,68,76,76,0,0,0,0,20,96,0,0,20,96,0,0,20,96,0,0,
20,96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,20,96,
0,0,20,96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,20,
96,0,0,20,96,0,0,20,96,0,0,20,96,0,0,75,69,82,78,69,76,51,50,46,100,108,108,
0,0,0,0,40,96,0,0,109,115,118,99,114,116,46,100,108,108,0,0,60,96,0,0,60,96,
0,0,60,96,0,0,60,96,0,0,60,96,0,0,60,96,0,0,60,96,0,0,60,96,0,0,60,96,0,0,60,
96,0,0,60,96,0,0,60,96,0,0,60,96,0,0,60,96,0,0,60,96,0,0,60,96,0,0,60,96,0,0,
60,96,0,0,109,115,118,99,114,116,46,100,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
};