Code Monkey home page Code Monkey logo

zowe-common-c's Introduction

This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html

SPDX-License-Identifier: EPL-2.0

Copyright Contributors to the Zowe Project.

C Libraries for various OS & Networking needs

This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html

SPDX-License-Identifier: EPL-2.0

Copyright Contributors to the Zowe Project.

zowe-common-c's People

Contributors

1000turquoisepogs avatar achmelo avatar actions-user avatar aditya-ranshinge avatar daveyc avatar divergenteuropeans avatar fkovinatrocket avatar gadyck avatar himani1519 avatar ifakhrutdinov avatar joenemo avatar joepun76 avatar jordanfilteau1995 avatar kbeausoleil avatar lchudinov avatar markackert avatar martin-zeithaml avatar pablocarle avatar pj892031 avatar sakeerthy avatar sakshibobade21 avatar sbollingeratrocket avatar struga0258 avatar sumanapp avatar timgerstel avatar vit-tomica avatar zowe-robot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

zowe-common-c's Issues

Port isgenq.c to LE 64-bit

Overview

Currently, the isgenq.c file does not support LE 64-bit. We should fix that as there are products that would like to import that functionality from the ZSS 64-bit binary.

Leap seconds are not taken into account in ZIS log messages

Describe the bug

The getCurrentLogTimestamp function from c/crossmemory.c does not taken into account the leap seconds which results in incorrect timestamps in ZIS log messages in SYSPRINT.

Steps to Reproduce

  1. Start ZIS
  2. Look at any message in SYSPRINT
  3. The timestamp does not match messages in the JES log because the leap seconds aren't taken into account

Expected behavior

The leap seconds are taken into account.

Describe your environment

All the xmem/ZIS versions are affected.

xplatform.loadFileUTF8 ends with S0C4 for invalid file

An attempt to load file, which does not exist ends with an abend S0C4.
The shell.execSync is commented out, because in original code, there was an action, which failed.

  1. fs.createTmpFile is not creating a file, just unique name for a file. No file is created after this statement.
  2. There is some action to actually create a file, which for some reason fails. It is commented out here.
  3. xplatform.loadFileUTF8 ends with S0C4, which is too aggressive way to say Hey, the file does not exist!

Simplified example:

import * as xplatform from "xplatform";
import * as fs from '/zowe/bin/libs/fs';
import * as shell from '/zowel/bin/libs/shell';

const tempFile = fs.createTmpFile();
console.log(`tempFile=${tempFile}`);

// shell.execSync('sh','-c',`echo "Hello" > ${tempFile}`);

let out = xplatform.loadFileUTF8(tempFile, xplatform.AUTO_DETECT);
console.log(out);
CEE3204S The system detected a protection exception (System Completion Code=0C4).
         From compile unit SKYNET:/zowe/issues/xplat/zowe-common-c/build/../c/embeddedjs.c at entry point _outlineConc at statement 0 at compile unit offset +000000003B9037D8 at entry offset +0000000000000028 at address 000000003B9037D8.

The first debugging indicates, the wrong length is returned for invalid file and then memcpy failed.
I will try to investigate more.

Allocating dataset in Editor fails when using 64 bit

Describe the bug
When allocating a dataset in Editor it fails when using 64 bit and saw 0C4 abend (zss) in zowe sysprint.
Steps to Reproduce

  1. Set the value components.zss.agent.64bit to true in the Zowe configuration file
  2. Recycle Zowe
  3. Go to Zowe Desktop, Open Editor then click Dataset, below there is '+' press that to allocate a dataset

Expected behavior
Dataset allocated

Screenshots (if needed)
Screenshot 2023-07-14 at 09 36 14

Logs

Describe your environment

  • Zowe version number (Check the Desktop login screen, or manifest.json in the Zowe install folder): 2.9
  • Install method (pax, smpe, kubernetes, github clone): SMP/E
  • Operating system (z/OS, kubernetes, etc) and OS version: z/OS
  • Node.js version number (Shown in logs, or via node --version): v16
  • Java version number (Shown in logs, or via java -version): v8
  • z/OSMF version:
  • What is the output of log message ZWES1014I:
  • Environment variables in use:

Additional context

A message about a data service installation failure

There used to be a message about a failure of data service installation in zss.
https://github.com/zowe/zowe-common-c/blob/master/c/dataservice.c#L118-L120

We find the message useful as we can spot the failure immediately in the log without switching to debug mode.

Could it be set at least to WARN level? Similarly, the same for other messages that indicate a failure:

zowelog(NULL, LOG_COMP_DATASERVICE, ZOWE_LOG_DEBUG, "%s.%s could not be found - dlsym error %s\n", libraryName, functionName, dlerror());

zowelog(NULL, LOG_COMP_DATASERVICE, ZOWE_LOG_DEBUG, "dlopen error for %s - %s\n",libraryName, dlerror());

zowelog(NULL, LOG_COMP_DATASERVICE, ZOWE_LOG_DEBUG,

Extend the logging facility to include additional information in messages

Overview

At the moment there is a community requirement to prefix all the log messages with additional information like timestamp, line number, severity level, etc.

Here's an example

2019-03-19 11:23:57.776 <ZWEAGW1:threadInformation> userID INFO (locationInformation) ZWEA001I Message text

The existing logging facility has the ability to use a custom formatter but the caller cannot pass the context information to it (e.g. the line number). The purpose of this ticket is to discuss how we could re-factor/extend the code in logging.c to meet the new requirements while keeping backward compatibility.

Details

The current logging function has the following signature:

void zowelog(LoggingContext *context, uint64 compID, int level, char *formatString, ...);

One possible solution would be making this a macro and changing the original zowelog to have file name and line number arguments. The issues are: making this a macro may break existing code, the formatter (or log handler) will also have to change.

Possible fix 1

  • Define a new function, let's say zowelog2
void zowelog2(LoggingContext *context, uint64 compID, int level, void *userData, char *formatString, ...);
  • Define a new handler type
typedef void (*LogHandler2)(struct LoggingContext_tag *context,
                            LoggingComponent *component, 
                            void *componentData, // IF: set in existing logConfigureDestination or logConfigureDestination2
                            void *userData,      // IF: set in the new function logConfigureDestination3
                            char *formatString,
                            va_list argList);
  • LoggingDestination will need to have a new field - handler2
typedef struct LoggingDestination_tag{
  char   eyecatcher[8]; /* RSLOGDST */
  int    id;
  int    state;
  char  *name;
  void  *data;          /* used by destination to hold internal state */
  LogHandler handler;
  DataDumper dumper;
  LogHandler2 handler2;
} LoggingDestination;
  • zowelog2 will have the same implementation as zowelog except for the handler call
if (destination->handler2) {
  destination->handler2(context, component, destination->data, userData, formatString, argPointer);
} else {
  destination->handler(context, component, destination->data, formatString, argPointer);
}
  • Add a wrapper macro for zowelog2 which will actually pass __FILE__ and __LINE__
#define zowelogx(context, compID, level, formatString, ...) \
  do { \
    struct { \
      char *fileName; \
      int lineNnumber; \
    } fileAndLine = {__FILE__, __LINE__}; \
    zowelog2(context, compID, &fileAndLine, formatString, ##__VA_ARGS__); \
  } while (0)

Drawbacks of fix 1:

  • zowelogx will have to do some work before actually testing whether we need to log (hopefully the compiler can optimize the fileAndLine initialization
  • If the code with the old version of the loggin facility calls a shared library that uses the new one, the new code will try to check handler2 which doesn't exist in the old LoggingDestination in the caller code. We may possible carve out some bytes out of the LoggingDestination->eyecatcher field and create a flag or version field which could be tested by the new version.

configmgr yaml-to-json converts null to empty string

https://yaml.org/type/null.html

Consider this yaml:

configs:
  sslDebug: ""
  apimlId:

It should parse to json as

"configs": {
  "sslDebug": "",
  "apimlId": null
}

But instead, the null becomes ""

Our code uses tags plus scalar content to determine if something should or shouldn't be null:
https://github.com/zowe/zowe-common-c/blob/v2.x/staging/c/yaml2json.c#L582-L586
However, a null tag is never seen, and the check for if a scalar is of a certain type does not say size=0 = null
I think that's okay, because size 0 scalars should be ""
It seems the problem is we never get a null tag, but should.

Error starting "ZSS Cross-Memory Server"

Please see JCL log with debug:

DATESTAMP JOBNAME ASCB (ASID) TCB MSGID MSGTEXT
2019/03/20-11:15:48.34 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0001I ZSS Cross-Memory Server starting, version is 1.0.3
2019/03/20-11:15:48.34 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0002I Input parameters at 0x6FDE:
2019/03/20-11:15:48.35 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 001CD5C1 D4C57EE9 E6C5E2C9 E26DE2E3 |..NAME=ZWESIS_ST|
2019/03/20-11:15:48.35 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000010 C46BD4C5 D47EF0F0 6BC4C5C2 E4C7 |D,MEM=00,DEBUG|
2019/03/20-11:15:48.39 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0004I Server name is 'ZWESIS_STD '
2019/03/20-11:15:48.39 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I function 11 - 0x1F84AED8
2019/03/20-11:15:48.39 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I function 12 - 0x1F84B878
2019/03/20-11:15:48.39 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I function 13 - 0x1F84C158
2019/03/20-11:15:48.40 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0103I Initialization step 'push recovery state' successfully completed
2019/03/20-11:15:48.40 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I TCB=0x8F8588, TCBJLB=0x8FC9B8
2019/03/20-11:15:48.40 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I BLDL RC=0, RSN=0, bldlList=0x1F84E3F0
2019/03/20-11:15:48.40 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 0001004C E9E6C5E2 C9E2F0F1 00000D00 |...<ZWESIS01....|
2019/03/20-11:15:48.40 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000010 002C0000 00000000 0000C2C0 04DEF000 |..........B{..0.|
2019/03/20-11:15:48.40 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000020 00048E20 8C118001 01000000 00000000 |................|
2019/03/20-11:15:48.40 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000030 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:48.40 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000040 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:48.40 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0103I Initialization step 'verify STEPLIB' successfully completed
2019/03/20-11:15:48.40 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0104I About to start console task
2019/03/20-11:15:48.41 ZWESIS01 00FC2B80(004A) 008F8230 ZWES0100I command handler called, type=0, command=0xF517A0, commandLength=0, userData=0x1F966648
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I Server QNAME:
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 E9E6C5E2 40404040 |ZWES |
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I Server RNAME:
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 13C9E24B E9E6C5E2 C9E26DE2 E3C44040 |.IS.ZWESIS_STD |
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000010 40404040 008306C0 00000000 1F96AF88 | .c.{.....o.h|
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000020 00000000 1F84E480 00000000 1F84E498 |.....dU......dUq|
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000030 00000000 1F830980 00000000 1F84E310 |.....c.......dT.|
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000040 00000000 1F84E1D8 00000000 008DBFC8 |.....d.Q.......H|
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000050 00000000 00FC2B80 00000000 008FCA28 |................|
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000060 00000000 008FE8E0 00000000 00000000 |......Y........|
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000070 00000000 00000000 00000000 1F94F948 |.............m9.|
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000080 00000000 1F84E310 00000000 1F84E498 |.....dT......dUq|
2019/03/20-11:15:53.41 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000090 00000000 1F84E498 00000000 1F96AF88 |.....dUq.....o.h|
2019/03/20-11:15:53.42 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000A0 00000000 00000000 00000000 1F84E3A8 |.............dTy|
2019/03/20-11:15:53.42 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000B0 00000000 C6F4E2C1 00000000 1F8308A6 |....F4SA.....c.w|
2019/03/20-11:15:53.42 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000C0 00000000 1F8011A8 00000000 1F9501F8 |.......y.....n.8|
2019/03/20-11:15:53.42 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000D0 00000000 1F84E530 00000000 1F84E590 |.....dV......dV.|
2019/03/20-11:15:53.42 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000E0 00000000 1F8308C0 00000000 1F84E310 |.....c.{.....dT.|
2019/03/20-11:15:53.42 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000F0 00000000 1F84E1D8 00000000 1F966318 |.....d.Q.....o..|
2019/03/20-11:15:53.42 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I ISGENQ RC = 4, RSN = 0x0239040D
2019/03/20-11:15:53.42 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0103I Initialization step 'load server' successfully completed
2019/03/20-11:15:53.42 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0105I Core server initialization started
2019/03/20-11:15:53.42 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0103I Initialization step 'init security' successfully completed
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I global area @ 0x1D583000
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 D9E2C3D4 E2D9E5C7 00000002 04E41000 |RSCMSRVG.....U..|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000010 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000020 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000030 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000040 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000050 E9E6C5E2 C9E26DE2 E3C44040 40404040 |ZWESIS_STD |
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000060 00000000 00000000 00000008 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000070 F2F0F1F9 60F0F260 F2F840F1 F77AF4F1 |2019-02-28 17:41|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000080 7AF3F54B F4F3F4F5 F5F54040 40404040 |:35.434555 |
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000090 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000A0 00000000 E9E6C5E2 C9E2F0F1 80008000 |....ZWESIS01....|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000B0 000008D4 0000046B 1D56EE21 1D526000 |...M...,......-.|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000C0 0004DEF0 00000000 00000000 00000000 |...0............|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000100 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000110 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000120 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.43 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000130 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000140 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000150 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000160 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000170 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000180 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000190 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000200 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000210 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000220 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000230 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000240 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.44 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000250 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000260 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000270 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000280 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000290 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000300 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000310 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000320 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000330 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000340 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000350 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000360 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000370 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000380 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000390 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.45 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000400 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000410 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000420 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000430 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000440 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000450 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000460 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000470 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000480 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000490 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000500 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000510 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000520 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.46 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000530 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000540 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000550 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000560 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000570 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000580 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000590 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000600 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000610 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000620 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000630 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000640 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000650 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000660 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000670 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.47 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000680 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000690 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000700 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000710 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000720 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000730 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000740 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000750 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000760 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000770 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000780 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000790 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000800 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.48 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000810 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000820 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000830 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000840 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000850 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000860 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000870 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000880 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000890 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000900 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000910 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000920 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000930 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000940 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000950 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000960 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000970 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000980 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000990 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000009A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000009B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.49 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000009C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000009D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000009E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000009F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000A00 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000A10 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000A20 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000A30 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000A40 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000A50 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000A60 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.50 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000A70 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000A80 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000A90 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000AA0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000AB0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000AC0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000AD0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000AE0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000AF0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000B00 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000B10 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000B20 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000B30 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000B40 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000B50 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000B60 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000B70 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.51 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000B80 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000B90 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000BA0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000BB0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000BC0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000BD0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000BE0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000BF0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000C00 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000C10 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000C20 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000C30 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000C40 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000C50 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000C60 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000C70 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000C80 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.52 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000C90 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000CA0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000CB0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000CC0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000CD0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000CE0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000CF0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000D00 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000D10 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000D20 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000D30 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000D40 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000D50 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000D60 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000D70 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000D80 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000D90 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000DA0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000DB0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000DC0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.53 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000DD0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000DE0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000DF0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000E00 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000E10 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000E20 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000E30 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000E40 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000E50 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000E60 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000E70 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000E80 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000E90 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000EA0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000EB0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000EC0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000ED0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000EE0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000EF0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000F00 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000F10 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.54 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000F20 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000F30 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000F40 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000F50 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000F60 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000F70 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000F80 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000F90 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000FA0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000FB0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000FC0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000FD0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000FE0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000FF0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.55 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I LPA module will be re-used @ 0x1D526000, LPMEA:
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 E9E6C5E2 C9E2F0F1 80008000 000008D4 |ZWESIS01.......M|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000010 0000046B 1D56EE21 1D526000 0004DEF0 |...,......-....0|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000020 00000000 00000000 |........|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I localModuleAddress=0x1F800000, handlerAddressLocal=0x1F813730, moduleAddressLPA=0x1D526000, handlerAddressLPA=0x1D539730
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0103I Initialization step 'allocate global resources' successfully completed
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I ELXLIST @ 0x1F9666FC
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 00000001 00000007 00180A00 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000010 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000020 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000030 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000040 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000050 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000060 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000070 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000080 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000090 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.56 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000100 00000000 |....|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0103I Initialization step 'established PC routines' successfully completed
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I RESMGR QNAME:
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 E9E6C5E2 40404040 |ZWES |
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I RESMGR RNAME:
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 10C9E2D9 D4C7D94B E5F0F0F0 F0F0F0F0 |.ISRMGR.V0000000|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000010 F2000000 00000000 00000000 00000000 |2...............|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000020 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000030 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000040 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000050 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000060 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000070 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000080 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000090 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.57 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I RESMGR name/token name:
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 E9E6C5E2 4BC9D9D4 F0F0F0F0 F0F0F0F2 |ZWES.IRM00000002|
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I RESMGR ISGENQ LOCK RC = 4, RSN = 0x0239040D:
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I RESMGR name/token RC = 0, token:
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 1D581F90 0000006E 00000000 00000000 |.......>........|
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I RESMGR ECSA routine @ 0x1D581F90
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 B24000E0 C0A0FFFF FFFE1211 A784001D |. .{.......xd..|
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000010 58301004 1233A784 00185840 30001244 |......xd... ....|
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000020 A7840013 D5074000 A066A774 000E4120 |xd..N. ...x.....|
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000030 40CC4110 00048910 00044100 00100600 | .....i.........|
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000040 E50F2000 A0564100 0000B249 00110101 |V...............|
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000050 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000060 00000000 0000D9E2 C3D4E2D9 E5C7 |......RSCMSRVG|
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I RESMGR ADD ASID = 004A, RC = 0, manager RC = 0x00000000
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I RESMGR ISGENQ UNLOCK RC = 0, RSN = 0x00000000:
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0103I Initialization step 'add resource manager' successfully completed
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0103I Initialization step 'start server' successfully completed
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0109I Core server ready
2019/03/20-11:15:53.58 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0200I Modify commands:
DISPLAY ÝOPTION_NAME¨- Print service information
OPTION_NAME:
CONFIG - Print server configuration information (default)
FLUSH - Print all pending log messages
LOG <COMP_ID> <LOG_LEVEL> - Set log level
COMP_ID:
CMS - Cross memory server
CMSPC - PC routines
STC - STC base
LOG_LEVEL:
SEVERE
WARNING
INFO
DEBUG
DEBUG2
DEBUG3
2019/03/20-11:15:53.61 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0110E Main loop unexpectedly terminated
2019/03/20-11:15:58.61 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0113I Termination step 'stop server' successfully completed
2019/03/20-11:15:58.61 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I RESMGR DELETE ASID = 004A, RC = 0, manager RC = 0x00000000
2019/03/20-11:15:58.61 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0113I Termination step 'delete resource manager' successfully completed
2019/03/20-11:15:58.61 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0115E Core server stopped with an error, status = 51
2019/03/20-11:15:58.62 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0011E ZSS Cross-Memory server not started, RC = 51
2019/03/20-11:15:58.62 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I server is about to be removed @ 0x1F966648
2019/03/20-11:15:58.62 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000000 D9E2C3D4 E2D9E5F1 00000008 1D583000 |RSCMSRV1........|
2019/03/20-11:15:58.62 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000010 1F94FC98 00000000 00000000 00000000 |.m.q............|
2019/03/20-11:15:58.62 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000020 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.62 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000030 00000000 1F800000 1D526000 0004E000 |..........-....|
2019/03/20-11:15:58.62 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000040 E9E6C5E2 C9E26DE2 E3C44040 40404040 |ZWESIS_STD |
2019/03/20-11:15:58.62 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000050 E2E3C5D7 D3C9C240 E9E6C5E2 C9E2F0F1 |STEPLIB ZWESIS01|
2019/03/20-11:15:58.62 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000060 C5D5D8E3 01000000 00000050 001FB700 |ENQT.......&....|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000070 00D5D9A0 EE43A2E6 40000000 01010001 |.NR...sW .......|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000080 1F950368 1F950340 1F9502F0 E9E6C5E2 |.n...n. .n.0ZWES|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000090 C9E2F0F1 80008000 000008D4 0000046B |IS01.......M...,|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000A0 1D56EE21 1D526000 0004DEF0 00000000 |......-....0....|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000B0 00000000 00000001 00000007 00180A00 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000000F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000100 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000110 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000120 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000130 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000140 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000150 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000160 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000170 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.63 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000180 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000190 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001C0 00000000 00000000 00000000 00000003 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001D0 00000000 00000000 00000000 00000003 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001E0 00000000 00000000 00000000 00000003 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000001F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000200 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000210 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000220 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000230 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000240 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000250 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000260 00000000 00000000 1D570ED8 00000005 |...........Q....|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000270 00000000 00000000 1D571878 00000007 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000280 00000000 00000000 1D572158 00000005 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000290 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.64 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000002F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000300 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000310 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000320 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000330 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000340 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000350 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000360 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000370 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000380 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000390 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000003F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000400 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000410 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000420 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.65 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000430 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000440 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000450 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000460 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000470 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000480 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000490 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000004F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000500 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000510 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000520 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000530 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000540 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.66 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000550 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000560 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000570 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000580 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000590 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000005F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000600 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000610 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000620 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000630 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000640 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000650 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000660 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000670 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000680 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000690 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.67 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000006F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000700 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000710 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000720 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000730 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000740 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000750 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000760 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000770 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000780 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000790 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000007F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000800 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000810 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.68 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000820 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.69 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000830 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.69 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000840 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.69 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000850 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.69 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000860 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.69 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000870 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.69 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000880 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.69 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000890 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.69 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.69 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008B0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008C0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008D0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008E0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000008F0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000900 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000910 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000920 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000930 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000940 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000950 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000960 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000970 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000980 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 00000990 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000009A0 00000000 00000000 00000000 00000000 |................|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0101I 000009B0 00000000 00000000 |........|
2019/03/20-11:15:58.70 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0100I server removed @ 0x0
2019/03/20-11:15:58.71 ZWESIS01 00FC2B80(004A) 008F8588 ZWES0013E ZSS Cross-Memory Server terminated due to an error, status = 8

Embeddedjs zos library symbol resolution support

It would be convenient for certain properties of zowe.yaml to contain symbols that are resolved.
Imagine you want to state the hostname of something.
If we had

zowe:
  externalDomains:
    - ${{ zoslib.getSymbol('&hostname') }}

I think that would be great.
It looks like the call that is needed for symbol resolution is https://www.ibm.com/docs/en/zos/2.5.0?topic=hsp-asasymbm-asasymbf-substitute-text-symbols so it would be a good addition to the codebase and would be reused for other things (dataset api needs symbol resolution on volser)

Member name length: schema validation vs configmgr

Generally any member in config, which is/will be validated by server-common#zoweDatasetMember, is expected to be 1 to 8 chars.

When using PARMLIB as config, the member name is expected to be 3 to 8 chars:

zwe config validate -c "PARMLIB(JOKER01.ZOWE.PR#3718.YAML(A))"
Error: Could not set parmlib member name for A, status=6

From the user point of view, member name validation should be the same no matter which/where/how component is running.

Would not be better to unify this?
Or is there some technical need for min length of 3?

Zowe z/OS runtime check needs to allow z/OS V3.1 environment

Describe the bug
error: z/OS version = 0x01030100, max supported version = 0x01020500 - CAA fields require verification shows up in the zssServer logs. And appServer blows up because the zss server is down

Now that there is a Preview of z/OS V3.1 https://www.ibm.com/common/ssi/ShowDoc.wss?docURL=/common/ssi/rep_ca/3/897/ENUS223-013/index.html Zowe needs to allow this as a runtime environment. z/OS beta customers and developers will want to test Zowe on z/OS V3.1 leading up to z/OS V3.1 GA in the fall.

Logic is located here:
https://github.com/zowe/zowe-common-c/blob/staging/c/le.c#L113-L127

Steps to Reproduce

Expected behavior

Screenshots (if needed)

Logs

Describe your environment

  • Zowe version number (Check the Desktop login screen, or manifest.json in the Zowe install folder):
  • Install method (pax, smpe, kubernetes, github clone):
  • Operating system (z/OS, kubernetes, etc) and OS version:
  • Node.js version number (Shown in logs, or via node --version):
  • Java version number (Shown in logs, or via java -version):
  • z/OSMF version:
  • What is the output of log message ZWES1014I:
  • Environment variables in use:

Additional context

Add TLS 1.3 to ZSS

GSK does support TLS1.3 and will use it when you request its ciphers.
Our defines of their ciphers are here:
https://github.com/zowe/zowe-common-c/blob/v2.x/staging/h/tls.h#L123

On this page, you can see which ciphers (which are missing from above) are TLS 1.3 ciphers: https://www.ibm.com/docs/en/zos/2.4.0?topic=programming-cipher-suite-definitions

It also mentions that on zos 2.3, these dont exist.
on 2.4, they exist conditional to some fix pack?
on 2.5, they exist unconditionally.

i dont know what would happen if you requested them on a system in which they did not exist. ignored? crash? hope not.

once you've added the ciphers, note that you need to use them here: https://github.com/zowe/zss/blob/v2.x/staging/c/zss.c#L111

also note... that DEFAULT_CIPHERS thing, is the only way to configure zss ciphers.
in other words, zss ciphers are not yet configurable.
wouldn't it be nice to make a config property components.zss.agent.https.ciphers to control this list? We noted that request here: zowe/zss#484

Cross-memory code should support downlevel clients

Currently, when a cross-memory client calls a server, the server version must match the client version. The code needs to be changed so that such server supports at least the n-2 version of clients.

Regex match failing for plugin installation

When a user installs a plugin, configmgr validation prevents it if it has a non trivial version string.
Versions like
"pluginVersion": "1.2.3-foo1+bar2"
Or "pluginVersion": "10.9.8+700"

Will result in

ERROR:     Schema at '' invalid
ERROR:       not allOf schemas at '' are valid
ERROR:         Validity Exceptions(s) with object at
ERROR:           Validity Exceptions(s) with string at /pluginVersion
ERROR:             string pattern match fail s='10.9.8+700', pat='^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(-*[a-zA-Z][0-9a-zA-Z\-\.]*)?(\+[0-9a-zA-Z\-\.]*)?$', at /pluginVersion

But, if you check this regex online, it DOES match. Therefore I believe there is a bug in regex handling.

WTO messages are broken in ZIS v2.11.0

Describe the bug

Steps to Reproduce

  1. Start ZIS
  2. Look for the WTO message ZWES0001I in JESMSGLG
  3. Formatting is completely broken
ZWES0001I ZSS Cross-Memory Server starting, version is 1004045136.1004045136.1004045128+-957029695

Expected behavior

The message should look like this

ZWES0001I ZSS Cross-Memory Server starting, version is 2.10.0+20230712

This affects all the plugins which use wtoPrintf (both statically and via dynamic linkage).

Logs

Describe your environment

Zowe v2.11.0

Additional context
Likely caused by #391

ZIS is failing and documentation provides no clue why

The output of zssServer.log:

ZWES1013I ZSS Server has started. Version '2.2.0+20220713' 31-bit
fallback to default server settings
ZWES1038I Server timeouts file '/z/apimlpc/api-layer-idt-perf/zowe/v2.2.0/instance/workspace/app-server/serverConfig/timeouts.json' either not found or invalid JSON. ZSS sessions will use the default length of one hour.
ZWES1061I TLS settings: keyring '/z/apimlpc/api-layer-idt-perf/zowe/zowe-keystore/localhost/localhost.keystore.p12', label 'localhost', password '****', stash '(no stash)'
ZWES1101I Product Registration is disabled.
ZWES1035I ZSS Server settings: Address='0.0.0.0', port='40010', protocol='https'
ZWES1064I Caching Service not configured
ZWES1600I JWT will be configured using JWK URL https://hostname:40005/gateway/api/v1/auth/keys/public/current
ZWES1039I Installing 'VSAM dataset contents' service...
ZWES1039I Installing 'dataset metadata' service...
ZWES1039I Installing 'dataset contents' service...
ZWES1014I ZIS status - 'Failure' (name='ZWESIS_CA32PRD  ', cmsRC='47', description='ZVT is NULL', clientVersion='2')
ZWES1606W Failed to get JWK - failed to send HTTP request, retry in 30 seconds
ZWES1606W Failed to get JWK - HTTP response error, retry in 30 seconds
ZWES1601I Server is ready to accept JWT without fallback to legacy tokens

How do I fix it?

The message itself provides no action. The documentation also does not provide anything helpful.

https://docs.zowe.org/stable/troubleshoot/app-framework/zss-error-codes/#zwes0014i

Why it is an information message when it is a failure?

Verify that the ZWESIS01 module is valid in STEPLIB at startup

A recent bug in the deploy scripts led to copying ZWESIS01 to the load library without all executable information. This made the system loader ABEND and ZWESIS01 wouldn't start.

However, if previously a valid ZWESIS01 has been deployed, the system will find a copy of it in LPA and use it. The check that verifies that we have the module in STEPLIB succeeds (because there is such load module, although it's unsable) and we keep using the LPA copy. Since we use IDENTIFY to attach the command handler TCB, we'd IDENTIFY a piece of LPA code and the subsequent ATTACH call would fail with ABEND S206-34 leaving ZWESIS01 without the modify command handler.

We need to verify that STEPLIB has a valid ZWESIS01. That can be done by using LOAD with LSEARCH=YES. If it fails, we've been loaded from the LPA copy and should print an error message and terminate.

Embedded JS: colon in string is a game changer

Let's define zowe.yaml as:

zowe:
  environments:
    test: ${{ "A B" }}

Run command to get value of zowe.environments.test:

zowe/runtime/2.16.0/bin/zwe config get -c ./zowe.yaml --path '.zowe.environments.test'
Temporary directory '/tmp/.zweenv-780' created.
Zowe will remove it on success, but if zwe exits with a non-zero code manual cleanup would be needed.
A B
Temporary directory /tmp/.zweenv-780 removed successfully.

Modify zowe.yaml, add colon inside the string:

zowe:
  environments:
    test: ${{ "A: B" }}
ZWEL0318E - Couldn't scan file '/zowe.yaml': mapping values are not allowed in this context at line 3, column 19.
Error: Could not load config for FILE(/zowe.yaml), status=2

Note:

  • test: ${{ 'A: B' }}, test: ${{ "A\: B" }} returning same error

Ugly workaround:

zowe:
  environments:
    colon: ':'
    test: ${{ 'A' + zowe.environments.colon + ' B' }}

Do not ask:

  • Will this solve your problem? test: "A: B" No, because I need to have a string with colon inside embedded JS. I have found this problem with more complex definition, but I have reduced the example to the minimum.

Workflow for VERSION + CHANGELOG

I have made #423 to remove obsolete script.

One of checks was complaining on missing VERSION and CHANGELOG.

I have updated the PR description, but the same step is failing again with the same error indicating, that for some reason old PR description is used:

2024-02-01T09:02:44.8655901Z env:
2024-02-01T09:02:44.8657898Z   PR_DESCRIPTION: ## Proposed changes
<!-- Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue. -->

This PR addresses Issue: https://github.com/zowe/zowe-common-c/issues/410

## Type of change
- [x] Chore, repository cleanup, updates the dependencies.
...
2024-02-01T09:02:47.1818140Z   echo -e "No changelog and version information found in PR description. Please add them.\nExpected Format:\nVERSION:X.XX.X\nCHANGELOG:This is changelog note.\nTo re-run the action, just make a push or commit after updating the PR description or updating the changelog via a manual file changing commit."
2024-02-01T09:02:47.1819625Z   exit 1

Updated PR text:

## Proposed changes
<!-- Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue. -->

This PR addresses Issue: https://github.com/zowe/zowe-common-c/issues/410

## Type of change
- [x] Chore, repository cleanup, updates the dependencies.

VERSION:2.15.0
CHANGELOG:Remove obsolete building script build_configmgr.sh (#410).

Module reuse in cross-memory server

Overview

Implement a COW-like feature for LPA modules (e.g. ZWESIS01, ZWESISDL, plugins). This will reduce the amount of common storage multiple ZIS instances could consume.

ChangeTag prints garbage

How to replicate

Simple testcht.js:

import * as zos from 'zos'
let result = zos.changeTag('./a.txt', 0);

File a.txt exists, t ISO8859-1 T=on a.txt.

Running the script:

zowe/bin/utils/configmgr -script testcht.js
��/��ʀ�/�%������ǀ���>?�����

The garbage on the screen is printed here.

Problem 1

printf is for some reason producing garbage.

Example

When the error message was changed: printf("abcd0123") will produce X'2FC2C4C0 90911693'
Is this encoding problem?

Problem 2

It does not work, the js code should remove the tag, which remains unchanged.

build/build_configmgr.sh: COMMON not initialized

We are trying to use a variable in path for remove command:

rm -f "${COMMON}/bin/configmgr"

Because the variable COMMON was not initialized at that point, the value will be:

  • Nothing -> we will try to delete from /bin
  • Something -> for example accidentally initialized by user in unix profile -> bad things can happen

Incorrect check in the recovery facility

Describe the bug

The recovery facility might free the state cell-pool by accident if an ABEND occurs right after the ESTAEX has been set but before any recovery states with the retry option have been pushed. If this happens, any subsequent PC-ss call will ABEND.

The bug: this BZ should be BNZ.

Steps to Reproduce

There is no simple way to reproduce this for now.

Expected behavior

The recovery code must not free the shared cell-pool.

Describe your environment

  • Zowe >= v1.9.0
  • Zowe >= v2.0.0

Embeddedjs xplatform needs read with timeout via select

in xplatform, we should make a read with timeout function using the select primitive to avoid the current bug: when we os.read an fd, if there never is bytes to be read, it hangs forever.
Often we know when to timeout when we do a read, so we can fix this sort of bug in many places by just doing an xplatform.read(fd, timeout) or similar.

os.sleep is not sleeping enough

import * as os from 'cm_os';
const loopStart = Date.now();
os.sleep(10000);
const loopEnd = Date.now();
console.log('Time elapsed', `${new Date(loopEnd-loopStart).toISOString().slice(11,19)}`);

Returns Time elapsed 00:00:00.

Expectation: Time elapsed 00:00:10.

It seems, usleep has limitation for time interval to be from 0 to 1,000,000.

The impact is os.sleep works for 1..999 miliseconds.

httpClientSessionInit does not return rc/rsn to callers

httpClientSessionInit has its own set of status values it returns, but the actual rc/rsn of commands it does within are hidden behind compile-time printf statements.

This is unhelpful because this function does fail sometimes, and on zOS the reason is opaque and requires a GSK trace to then discover the cause. It just costs extra debug time then.

Is there any opposition to just add more arguments to httpClientSessionInit to allow passing back rc/rsn?

https://github.com/zowe/zowe-common-c/blob/v2.x/staging/c/httpclient.c#L652

configmgr schema validation regression on null, required fields

v2.16.0's bugfix of yaml nulls being treated as strings #435 has caused user bugs from configs prior to v2.9.0 (June 2023),

Before that time, users of keyrings would have in their configs

pem:
  key:
  certificate:
  certificateAuthority:
  - A
  - B

key & certificate are listed as "required" fields. So, though configmgr is now correctly identifying this as invalid (a required field shouldnt be null), users depended upon this and thus we should restore this behavior until for example v3.

Space or colon in zowe.yaml file name

Describe the bug

The config path with spaces, colon or very creative name causes error.

Steps to Reproduce

  1. Get valid zowe.yaml file:
  • Rename it to zo we.yaml or
  • zo:we.yaml or
  • FILE(PARMLIB(MY.ZOWE(YAML))
  1. Try some zwe command or start zowe via launcher with CONFIG=some of the wrong zowe files

Expected behavior

Easy to describe the bug, hard to suggest clever solution. This is not worth to rewrite the configmgr.c path parsing logic to be perfect.
The space in launcher's STDENV CONFIG= seems to be considered as end of string (I don't know how to escape it). Similar to colon, which is used as path separator.
We should probably only update a documentation, that space and colon are not recommended to use in zowe.yaml file name.

Additional context
The only real problem is the "creative" name. But I not am expecting usage of such name in production.

Quiz time
Assume stc.cm.er.yaml is invalid and stc.cm.ok.yaml is valid config. What will be returned by zwe config validate -c FILE(stc.cm.er.yaml)?

ls -al
lrwxrwxrwx   1        14 Jul 17 06:53 FILE(stc.cm.er.yaml) -> stc.cm.ok.yaml
-rwxr-xr-x   1       507 Jun 27 07:01 stc.cm.er.yaml
-rwxr-xr-x   1       922 Jul 14 04:29 stc.cm.ok.yaml

Debug message 'wow'

Describe the bug

This debug message is not very helpful:

zowelog(NULL, LOG_COMP_HTTPSERVER, ZOWE_LOG_DEBUG3, "wow\n");

Steps to Reproduce

  1. zss.logLevels._zss.httpserver=5

Expected behavior

  • Remove this debug message
  • Or update it with something useful
  • Or explain if wow is special acronym, because this looks like forgotten debug line 😄

Logs

wow
parse URL mask loop top len=57 slashPos=5 prevSlashPos=0 partLen=5
wow
parse URL mask loop top len=57 slashPos=13 prevSlashPos=5 partLen=8
wow
parse URL mask loop top len=57 slashPos=34 prevSlashPos=13 partLen=21
wow
parse URL mask loop top len=57 slashPos=43 prevSlashPos=34 partLen=9
wow

Describe your environment

  • Zowe 2.x

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.