diff --git a/examples/src/OpenDis7Examples/ExampleSimulationProgram.java b/examples/src/OpenDis7Examples/ExampleSimulationProgram.java
index bdc247f29c0781ad55cbecace18166dcc3e4e708..1e35c8ec62aaff36ed4ef2b5ba1ef247feb70cac 100644
--- a/examples/src/OpenDis7Examples/ExampleSimulationProgram.java
+++ b/examples/src/OpenDis7Examples/ExampleSimulationProgram.java
@@ -5,13 +5,14 @@
  */
 package OpenDis7Examples;
 
-import edu.nps.moves.dis7.entities.swe.platform.surface._001Poseidon;
+//import edu.nps.moves.dis7.entities.swe.platform.surface._001Poseidon;
 import edu.nps.moves.dis7.entities.swe.platform.surface._002Triton;
 import edu.nps.moves.dis7.entities.usa.platform.air.CH53ESuperStallion;
 import edu.nps.moves.dis7.enumerations.*;
 import edu.nps.moves.dis7.pdus.*;
 import edu.nps.moves.dis7.utilities.DisChannel;
 import edu.nps.moves.dis7.utilities.PduFactory;
+import java.time.LocalDateTime;
 import java.util.logging.Level;
 import java.util.logging.Logger;
 
@@ -31,8 +32,8 @@ public class ExampleSimulationProgram
     /** Factory object used to create new PDU instances */
     protected PduFactory pduFactory;
     
-    /** seconds for real-time execution (not simulation time, which may or may not be .the same) */
-    double  currentTimeStep  =  1.0; // seconds
+    /** seconds per loop for real-time or simulation execution */
+    private double  timeStepDuration  =  1.0; // seconds TODO encapsulate
     /** initial simulation time */
     double  initialTime = 0.0;
     /** current simulation time */
@@ -95,6 +96,9 @@ public class ExampleSimulationProgram
         initializeSimulationEntities();
         
         disChannel.join(); // TODO further functionality expected
+        
+        String timeStepMessage = "Simulation timestep " + getTimeStepDuration() + " seconds";
+        disChannel.sendCommentPdu(disChannel.COMMENTPDU_SIMULATION_TIMESTEP, timeStepMessage);
         // additional constructor initialization goes here
     }
     
@@ -111,8 +115,10 @@ public class ExampleSimulationProgram
         pduFactory     = disChannel.getPduFactory();
         disChannel.setDescriptor(this.getClass().getSimpleName()); // ExampleSimulationProgram might be a superclass
         disChannel.setUpNetworkInterface();
-        disChannel.printlnTRACE ("disChannel.getNetworkAddress()=" + disChannel.getNetworkAddress() +
-                                          ", getNetworkPort()="    + disChannel.getNetworkPort());
+        disChannel.printlnTRACE ("just checking: disChannel.getNetworkAddress()=" + disChannel.getNetworkAddress() +
+                                                         ", getNetworkPort()="    + disChannel.getNetworkPort());
+
+        disChannel.getPduRecorder().setVerbose(true);
         
 //      disChannel.sendCommentPdu(VariableRecordType.OTHER, "ArrivalProcessOpenDis7 initialized"); // hello channel
     }
@@ -133,13 +139,12 @@ public class ExampleSimulationProgram
         // Assuming you keep track of entity objects...  here is some support for for Entity 1.
         
         // PDU objects are already declared and instances created, so now set their values.
-        // TODO better javadoc needed for site, application, entity determining the identity triplet
         entityID_1.setSiteID(1).setApplicationID(2).setEntityID(3); // made-up example ID;
         disChannel.addEntity(entityID_1);
         
         entityID_2.setSiteID(1).setApplicationID(2).setEntityID(4); // made-up example ID; 
         disChannel.addEntity(entityID_2);
-        // TODO someday, use enumerations; is there a unique site triplet for MOVES Institute?
+        // TODO someday, use enumerations for sites as part of a SimulationManager object; e.g. is there a unique site triplet for MOVES Institute?
 
         entityStatePdu_1.setEntityID(entityID_1);
         entityStatePdu_1.setForceId(ForceID.FRIENDLY);
@@ -154,7 +159,8 @@ public class ExampleSimulationProgram
         entityStatePdu_2.setEntityType(new _002Triton()); // note import statement above
         entityStatePdu_2.setMarking("Entity #2");
 
-        // TODO how should we customize this munition?  what is it for your simulation? more is needed here...
+        // TODO how should we customize this munition?  what are key parameters for your simulation? 
+        // more is needed here by scenario authors...
         munitionDescriptor1.setQuantity(1);
         firePdu_1a.setDescriptor(munitionDescriptor1).setRange(1000.0f);
     }
@@ -181,9 +187,11 @@ public class ExampleSimulationProgram
               int     simulationLoopCount = 0;        // variable, initialized at 0
               boolean simulationComplete = false;     // sentinel variable as termination condition, are we done yet?
         
-        // TODO reset Clock Time to today's date and timestamp to zero, providing consistent outputs for each simulation run
-
-        disChannel.getPduRecorder().setVerbose(true);
+        // TODO reset Clock Time for today's date and timestamp to zero, providing consistent outputs for each simulation run
+        String timeMessage = "Simulation time " + simulationTime + " at LocalDateTime " + LocalDateTime.now();
+        disChannel.sendCommentPdu(VariableRecordType.TIME, timeMessage);
+        // TODO replace enumeration with disChannel.COMMENTPDU_TIME
+        // TODO fix VariableRecordType.TIME_AMP_DATE_VALID
         
         // ===================================================================================================
         // loop the simulation while allowed, programmer can set additional conditions to break out and finish
@@ -227,11 +235,11 @@ public class ExampleSimulationProgram
             
             // staying synchronized with timestep: wait duration for elapsed time in this loop
             // Thread.sleep needs a (long) parameter for milliseconds, which are clumsy to use sometimes
-            Thread.sleep((long)(currentTimeStep * 1000)); // units of seconds * (1000 msec/sec) = milliseconds
-            System.out.println ("... [Pausing for " + currentTimeStep + " seconds]");
+            Thread.sleep((long)(getTimeStepDuration() * 1000)); // units of seconds * (1000 msec/sec) = milliseconds
+            System.out.println ("... [Pausing for " + getTimeStepDuration() + " seconds]");
             
             // OK now send the status PDUs for this loop, and then continue
-            System.out.println ("sending PDUs of interest for simulation step " + simulationLoopCount + ", monitor loopback to confirm sent");
+            System.out.println ("... sending PDUs of interest for simulation step " + simulationLoopCount + ", monitor loopback to confirm sent");
             System.out.flush();
             
             sendAllPdusForLoopTimestep(entityStatePdu_1, 
@@ -355,4 +363,18 @@ public class ExampleSimulationProgram
         
         System.exit(0); // ensure all threads and sockets released
     }
+
+    /**
+     * @return the timeStepDuration
+     */
+    public double getTimeStepDuration() {
+        return timeStepDuration;
+    }
+
+    /**
+     * @param timeStepDuration the timeStepDuration to set
+     */
+    public void setTimeStepDuration(double timeStepDuration) {
+        this.timeStepDuration = timeStepDuration;
+    }
 }
diff --git a/examples/src/OpenDis7Examples/ExampleSimulationProgramLog.txt b/examples/src/OpenDis7Examples/ExampleSimulationProgramLog.txt
index d01c49932fe1c85a76f664eff5c3d74b20e8e3db..42fd61f604db3c2001b4d86152a5c630214094cf 100644
--- a/examples/src/OpenDis7Examples/ExampleSimulationProgramLog.txt
+++ b/examples/src/OpenDis7Examples/ExampleSimulationProgramLog.txt
@@ -19,103 +19,111 @@ run-single:
 [DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
 [DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
 [PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
-[DisChannel ExampleSimulationProgram] disChannel.getNetworkAddress()=239.1.2.3, getNetworkPort()=3000
-[DisChannel ExampleSimulationProgram] main() started...
-... My simulation just did something, no really...
+[DisChannel ExampleSimulationProgram] just checking: disChannel.getNetworkAddress()=239.1.2.3, getNetworkPort()=3000
 [DisThreadedNetworkInterface ExampleSimulationProgram] [sending  1] DisPduType 11 CREATE_ENTITY, size 28 bytes)
 [DisThreadedNetworkInterface ExampleSimulationProgram] [sending  2] DisPduType 11 CREATE_ENTITY, size 28 bytes)
 [DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  1] DisPduType 11 CREATE_ENTITY, size 28 bytes)
 [DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  2] DisPduType 11 CREATE_ENTITY, size 28 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  3] DisPduType 22 COMMENT, size 72 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  3] DisPduType 22 COMMENT, size 72 bytes)
 [DisThreadedNetworkInterface PduRecorder] [receipt  1] DisPduType 11 CREATE_ENTITY, size 28 bytes)
 [DisThreadedNetworkInterface PduRecorder] [receipt  2] DisPduType 11 CREATE_ENTITY, size 28 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt  3] DisPduType 22 COMMENT, size 72 bytes)
+[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [Simulation timestep 1.0 seconds]
+[DisChannel ExampleSimulationProgram] main() started...
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  4] DisPduType 22 COMMENT, size 112 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  4] DisPduType 22 COMMENT, size 112 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt  4] DisPduType 22 COMMENT, size 112 bytes)
+[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: TIME] [Simulation time 0.0 at LocalDateTime 2022-06-05T21:39:19.267960400]
+... My simulation just did something, no really...
 ... [Pausing for 1.0 seconds]
-sending PDUs of interest for simulation step 1, monitor loopback to confirm sent
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  3] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  3] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt  3] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  4] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  4] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt  4] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  5] DisPduType 22 COMMENT, size 104 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt  5] DisPduType 22 COMMENT, size 104 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  5] DisPduType 22 COMMENT, size 104 bytes)
-[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 ExampleSimulationProgram, runSimulation() loop 1]
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  6] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  6] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt  6] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+... sending PDUs of interest for simulation step 1, monitor loopback to confirm sent
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  5] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  5] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt  5] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  6] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  6] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt  6] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  7] DisPduType 22 COMMENT, size 104 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  7] DisPduType 22 COMMENT, size 104 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt  7] DisPduType 22 COMMENT, size 104 bytes)
+[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_STATUS] [MV3500 ExampleSimulationProgram, runSimulation() loop 1]
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  8] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  8] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt  8] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
 ... [PDUs of interest successfully sent for this loop]
 ... My simulation just did something, no really...
 ... [Pausing for 1.0 seconds]
-sending PDUs of interest for simulation step 2, monitor loopback to confirm sent
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  7] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt  7] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  7] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  8] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  8] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt  8] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  9] DisPduType 22 COMMENT, size 104 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt  9] DisPduType 22 COMMENT, size 104 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  9] DisPduType 22 COMMENT, size 104 bytes)
-[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 ExampleSimulationProgram, runSimulation() loop 2]
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 10] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 10] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 10] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+... sending PDUs of interest for simulation step 2, monitor loopback to confirm sent
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending  9] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt  9] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt  9] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 10] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 10] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 10] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 11] DisPduType 22 COMMENT, size 104 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 11] DisPduType 22 COMMENT, size 104 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 11] DisPduType 22 COMMENT, size 104 bytes)
+[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_STATUS] [MV3500 ExampleSimulationProgram, runSimulation() loop 2]
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 12] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 12] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 12] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
 ... [PDUs of interest successfully sent for this loop]
 ... My simulation just did something, no really...
 ... [Pausing for 1.0 seconds]
-sending PDUs of interest for simulation step 3, monitor loopback to confirm sent
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 11] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 11] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 11] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 12] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 12] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 12] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 13] DisPduType 22 COMMENT, size 104 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 13] DisPduType 22 COMMENT, size 104 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 13] DisPduType 22 COMMENT, size 104 bytes)
-[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 ExampleSimulationProgram, runSimulation() loop 3]
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 14] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 14] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 14] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+... sending PDUs of interest for simulation step 3, monitor loopback to confirm sent
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 13] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 13] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 13] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 14] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 14] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 14] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 15] DisPduType 22 COMMENT, size 104 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 15] DisPduType 22 COMMENT, size 104 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 15] DisPduType 22 COMMENT, size 104 bytes)
+[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_STATUS] [MV3500 ExampleSimulationProgram, runSimulation() loop 3]
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 16] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 16] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 16] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
 ... [PDUs of interest successfully sent for this loop]
 ... My simulation just did something, no really...
 ... [Pausing for 1.0 seconds]
-sending PDUs of interest for simulation step 4, monitor loopback to confirm sent
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 15] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 15] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 15] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 16] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 16] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 16] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 17] DisPduType 22 COMMENT, size 104 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 17] DisPduType 22 COMMENT, size 104 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 17] DisPduType 22 COMMENT, size 104 bytes)
-[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 ExampleSimulationProgram, runSimulation() loop 4]
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 18] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 18] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 18] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+... sending PDUs of interest for simulation step 4, monitor loopback to confirm sent
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 17] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 17] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 17] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 18] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 18] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 18] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 19] DisPduType 22 COMMENT, size 104 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 19] DisPduType 22 COMMENT, size 104 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 19] DisPduType 22 COMMENT, size 104 bytes)
+[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_STATUS] [MV3500 ExampleSimulationProgram, runSimulation() loop 4]
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 20] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 20] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 20] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
 ... [PDUs of interest successfully sent for this loop]
 ... My simulation just did something, no really...
 ... [Pausing for 1.0 seconds]
-sending PDUs of interest for simulation step 5, monitor loopback to confirm sent
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 19] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 19] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 19] DisPduType 01 ENTITY_STATE   Entity #1, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 20] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 20] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 20] DisPduType 02 FIRE, size 96 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 21] DisPduType 22 COMMENT, size 104 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 21] DisPduType 22 COMMENT, size 104 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 21] DisPduType 22 COMMENT, size 104 bytes)
-[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 ExampleSimulationProgram, runSimulation() loop 5]
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 22] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 22] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 22] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+... sending PDUs of interest for simulation step 5, monitor loopback to confirm sent
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 21] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 21] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 21] DisPduType 01 ENTITY_STATE  Entity #53, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 22] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 22] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 22] DisPduType 02 FIRE, size 96 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 23] DisPduType 22 COMMENT, size 104 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 23] DisPduType 22 COMMENT, size 104 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 23] DisPduType 22 COMMENT, size 104 bytes)
+[DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: APPLICATION_STATUS] [MV3500 ExampleSimulationProgram, runSimulation() loop 5]
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 24] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 24] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 24] DisPduType 01 ENTITY_STATE   Entity #2, size 144 bytes)
 ... [PDUs of interest successfully sent for this loop]
 ... [loop termination condition met, simulationComplete=true]
-[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 23] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface PduRecorder] [receipt 23] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 23] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [sending 25] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleSimulationProgram] [receipt 25] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface PduRecorder] [receipt 25] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleSimulationProgram] *** [CommentPdu narrative sent: COMPLETE_EVENT_REPORT] [MV3500 ExampleSimulationProgram, runSimulation() completed successfully]
 ... [final=completion CommentPdu successfully sent for simulation]
 *** setKillSentinelAndInterrupts() killed=true sendingThread.isInterrupted()=false receiveThread.isInterrupted()=true
diff --git a/examples/src/OpenDis7Examples/ExampleSimulationProgramPduCaptureLog.dislog b/examples/src/OpenDis7Examples/ExampleSimulationProgramPduCaptureLog.dislog
index b154da3d8aba59103c530a998c16647c9a891656..3da371fba861cb67fdbdd9d915fbf522dcbdee22 100644
--- a/examples/src/OpenDis7Examples/ExampleSimulationProgramPduCaptureLog.dislog
+++ b/examples/src/OpenDis7Examples/ExampleSimulationProgramPduCaptureLog.dislog
@@ -1,25 +1,27 @@
-# Start, ENCODING_PLAINTEXT, [PduRecorder] 20220530_120427, DIS capture file, .\pduLog\PduCaptureLog.dislog
-0,0,0,0,0,0,0,0,7,4,11,5,19,14,39,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 # DisPduType 11 CREATE_ENTITY
-0,0,0,0,0,127,-42,-112,7,4,11,5,19,14,39,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 # DisPduType 11 CREATE_ENTITY
-0,0,0,0,60,9,-28,48,7,1,1,1,19,13,-40,47,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,49,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,66,41,-92,84,7,1,2,2,19,13,-40,47,0,96,40,0,0,2,0,3,0,0,0,2,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,122,0,0 # DisPduType 02 FIRE
-0,0,0,0,72,-64,-77,112,7,1,22,5,19,36,79,11,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,-81,-46,0,0,0,-80,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,0,0 # DisPduType 22 COMMENT
-0,0,0,0,78,-75,-119,64,7,1,1,1,19,13,-40,47,0,-112,40,0,0,1,0,2,0,4,2,0,1,3,0,-51,62,2,2,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,50,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-111,82,-42,-112,7,1,1,1,19,13,-40,47,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,49,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-105,85,81,-68,7,1,2,2,19,13,-40,47,0,96,40,0,0,2,0,3,0,0,0,2,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,122,0,0 # DisPduType 02 FIRE
-0,0,0,0,-98,8,-18,56,7,1,22,5,19,62,115,73,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,-81,-46,0,0,0,-80,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-92,117,-98,-40,7,1,1,1,19,13,-40,47,0,-112,40,0,0,1,0,2,0,4,2,0,1,3,0,-51,62,2,2,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,50,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-26,-115,-63,-120,7,1,1,1,19,13,-40,47,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,49,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-20,-85,48,80,7,1,2,2,19,13,-40,47,0,96,40,0,0,2,0,3,0,0,0,2,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,122,0,0 # DisPduType 02 FIRE
-0,0,0,0,-14,-44,56,60,7,1,22,5,19,88,86,73,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,-81,-46,0,0,0,-80,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-7,60,110,-60,7,1,1,1,19,13,-40,47,0,-112,40,0,0,1,0,2,0,4,2,0,1,3,0,-51,62,2,2,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,50,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,59,96,86,88,7,1,1,1,19,13,-40,47,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,49,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,65,-16,78,-100,7,1,2,2,19,13,-40,47,0,96,40,0,0,2,0,3,0,0,0,2,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,122,0,0 # DisPduType 02 FIRE
-0,0,0,1,72,33,-10,88,7,1,22,5,19,114,99,59,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,-81,-46,0,0,0,-80,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,52,0,0 # DisPduType 22 COMMENT
-0,0,0,1,78,117,-107,0,7,1,1,1,19,13,-40,47,0,-112,40,0,0,1,0,2,0,4,2,0,1,3,0,-51,62,2,2,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,50,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-112,-118,-121,-84,7,1,1,1,19,13,-40,47,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,49,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-106,-21,97,-44,7,1,2,2,19,13,-40,47,0,96,40,0,0,2,0,3,0,0,0,2,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,122,0,0 # DisPduType 02 FIRE
-0,0,0,1,-100,-5,-68,44,7,1,22,5,19,-116,79,-115,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,-81,-46,0,0,0,-80,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,53,0,0 # DisPduType 22 COMMENT
-0,0,0,1,-93,35,68,28,7,1,1,1,19,13,-40,47,0,-112,40,0,0,1,0,2,0,4,2,0,1,3,0,-51,62,2,2,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,50,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-87,-67,71,20,7,1,22,5,19,-112,48,53,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,9,90,-90,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,9,90,-90,0,0,1,48,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,99,111,109,112,108,101,116,101,100,32,115,117,99,99,101,115,115,102,117,108,108,121,0,0 # DisPduType 22 COMMENT
-# Finish, ENCODING_PLAINTEXT, [PduRecorder] 20220530_120436, DIS capture file, .\pduLog\PduCaptureLog.dislog
+# Start, ENCODING_PLAINTEXT, [PduRecorder] 20220605_213919, DIS capture file, .\pduLog\PduCaptureLog.dislog
+0,0,0,0,0,0,0,0,7,4,11,5,-89,-62,-6,-117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 # DisPduType 11 CREATE_ENTITY
+0,0,0,0,0,90,-36,40,7,4,11,5,-89,-62,-6,-117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 # DisPduType 11 CREATE_ENTITY
+0,0,0,0,0,92,103,120,7,1,22,5,-89,-61,8,-121,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-81,-46,0,0,0,-8,83,105,109,117,108,97,116,105,111,110,32,116,105,109,101,115,116,101,112,32,49,46,48,32,115,101,99,111,110,100,115,0 # DisPduType 22 COMMENT
+0,0,0,0,7,117,60,116,7,1,22,5,-89,-59,37,31,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-53,32,0,0,2,16,83,105,109,117,108,97,116,105,111,110,32,116,105,109,101,32,48,46,48,32,97,116,32,76,111,99,97,108,68,97,116,101,84,105,109,101,32,50,48,50,50,45,48,54,45,48,53,84,50,49,58,51,57,58,49,57,46,50,54,55,57,54,48,52,48,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,74,-107,63,124,7,1,1,1,-89,-62,-34,-107,0,-112,40,0,0,1,0,2,0,3,1,0,1,2,0,-31,23,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,69,110,116,105,116,121,32,35,53,51,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,80,-74,-41,-128,7,1,2,2,-89,-62,-15,57,0,96,40,0,0,2,0,3,0,0,0,2,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,122,0,0 # DisPduType 02 FIRE
+0,0,0,0,87,10,-101,68,7,1,22,5,-89,-35,-109,75,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,-87,-72,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,3,-87,-72,0,0,0,-80,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,0,0 # DisPduType 22 COMMENT
+0,0,0,0,93,-102,51,112,7,1,1,1,-89,-62,-25,-25,0,-112,40,0,0,1,0,2,0,4,2,0,1,3,0,-51,62,2,2,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,50,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-97,-98,-102,-12,7,1,1,1,-89,-62,-34,-107,0,-112,40,0,0,1,0,2,0,3,1,0,1,2,0,-31,23,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,69,110,116,105,116,121,32,35,53,51,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-90,-59,-68,-32,7,1,2,2,-89,-62,-15,57,0,96,40,0,0,2,0,3,0,0,0,2,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,122,0,0 # DisPduType 02 FIRE
+0,0,0,0,-83,-30,-60,-36,7,1,22,5,-89,-8,25,105,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,-87,-72,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,3,-87,-72,0,0,0,-80,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-75,5,51,68,7,1,1,1,-89,-62,-25,-25,0,-112,40,0,0,1,0,2,0,4,2,0,1,3,0,-51,62,2,2,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,50,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-8,66,54,-124,7,1,1,1,-89,-62,-34,-107,0,-112,40,0,0,1,0,2,0,3,1,0,1,2,0,-31,23,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,69,110,116,105,116,121,32,35,53,51,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-2,-32,-102,-108,7,1,2,2,-89,-62,-15,57,0,96,40,0,0,2,0,3,0,0,0,2,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,122,0,0 # DisPduType 02 FIRE
+0,0,0,1,5,8,54,-44,7,1,22,5,-88,18,-74,-45,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,-87,-72,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,3,-87,-72,0,0,0,-80,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,0,0 # DisPduType 22 COMMENT
+0,0,0,1,11,-81,-106,28,7,1,1,1,-89,-62,-25,-25,0,-112,40,0,0,1,0,2,0,4,2,0,1,3,0,-51,62,2,2,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,50,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,78,91,45,-96,7,1,1,1,-89,-62,-34,-107,0,-112,40,0,0,1,0,2,0,3,1,0,1,2,0,-31,23,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,69,110,116,105,116,121,32,35,53,51,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,84,115,-73,-84,7,1,2,2,-89,-62,-15,57,0,96,40,0,0,2,0,3,0,0,0,2,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,122,0,0 # DisPduType 02 FIRE
+0,0,0,1,90,-80,-24,36,7,1,22,5,-88,44,-33,-69,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,-87,-72,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,3,-87,-72,0,0,0,-80,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,52,0,0 # DisPduType 22 COMMENT
+0,0,0,1,96,-29,-57,52,7,1,1,1,-89,-62,-25,-25,0,-112,40,0,0,1,0,2,0,4,2,0,1,3,0,-51,62,2,2,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,50,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-93,-45,-48,-4,7,1,1,1,-89,-62,-34,-107,0,-112,40,0,0,1,0,2,0,3,1,0,1,2,0,-31,23,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,69,110,116,105,116,121,32,35,53,51,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-86,31,-93,-16,7,1,2,2,-89,-62,-15,57,0,96,40,0,0,2,0,3,0,0,0,2,0,3,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,122,0,0 # DisPduType 02 FIRE
+0,0,0,1,-80,84,-128,96,7,1,22,5,-88,71,8,-93,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,-87,-72,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,3,-87,-72,0,0,0,-80,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,53,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-74,-74,-117,-100,7,1,1,1,-89,-62,-25,-25,0,-112,40,0,0,1,0,2,0,4,2,0,1,3,0,-51,62,2,2,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,69,110,116,105,116,121,32,35,50,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-68,-31,35,-20,7,1,22,5,-88,74,-37,77,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,9,90,-90,0,0,0,-8,77,86,51,53,48,48,32,69,120,97,109,112,108,101,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,9,90,-90,0,0,1,48,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,99,111,109,112,108,101,116,101,100,32,115,117,99,99,101,115,115,102,117,108,108,121,0,0 # DisPduType 22 COMMENT
+# Finish, ENCODING_PLAINTEXT, [PduRecorder] 20220605_213927, DIS capture file, .\pduLog\PduCaptureLog.dislog
diff --git a/examples/src/OpenDis7Examples/ExampleTrackInterpolation.java b/examples/src/OpenDis7Examples/ExampleTrackInterpolation.java
index 45ca6a89d7b6875ac9419b33cfd58e7604b5c78f..ca26e3741d3224c820c45ca3fa828d09ec89ee3f 100644
--- a/examples/src/OpenDis7Examples/ExampleTrackInterpolation.java
+++ b/examples/src/OpenDis7Examples/ExampleTrackInterpolation.java
@@ -66,7 +66,7 @@ public class ExampleTrackInterpolation extends ExampleSimulationProgram
 
             // TODO reset Clock Time to today's date and timestamp to zero, providing consistent outputs for each simulation run
             DisTime.setEpochLvcNow();
-            simulationTime = initialTime - currentTimeStep; // pre-initialization for first loop
+            simulationTime = initialTime - getTimeStepDuration(); // pre-initialization for first loop
         
             initializeSimulationEntities();
             
@@ -103,7 +103,7 @@ public class ExampleTrackInterpolation extends ExampleSimulationProgram
             if (disChannel.getPduRecorder().hasVerboseOutput())
                 System.out.println("sending PDUs for simulation step " + simulationLoopCount + ", monitor loopback to confirm sent");
             disChannel.sendSinglePdu(espdu_1);
-//            sendCommentPdu(currentTimeStepCommentType, narrativeMessage1, narrativeMessage2, narrativeMessage3);
+//            sendCommentPdu(timeStepDurationCommentType, narrativeMessage1, narrativeMessage2, narrativeMessage3);
             pduSentList.add(espdu_1);
             reportPdu(simulationLoopCount, espdu_1.getEntityLocation(), directionEntity_1);
 
@@ -113,7 +113,7 @@ public class ExampleTrackInterpolation extends ExampleSimulationProgram
             while (simulationLoopCount < SIMULATION_MAX_LOOP_COUNT) // are we done yet?
             {
                 simulationLoopCount++;      // good practice: increment loop counter as first action in that loop
-                simulationTime += currentTimeStep; // good practice: update clock along with loop index
+                simulationTime += getTimeStepDuration(); // good practice: update clock along with loop index
 
                 // =============================================================================================
                 // * your own simulation code starts here! *****************************************************
@@ -135,7 +135,7 @@ public class ExampleTrackInterpolation extends ExampleSimulationProgram
                 espdu_1.setEntityLinearVelocity(speedEntity_1, directionEntity_1);
                 
                 // Where is my entity?  Insert changes in position; this sample only changes X position.
-                espdu_1.advanceEntityLocation(currentTimeStep);
+                espdu_1.advanceEntityLocation(getTimeStepDuration());
 
                 // make your reports: narrative code for CommentPdu here (set all to empty strings to avoid sending)
                 narrativeMessage1 = "MV3500 TrackSimulationProgram";
@@ -155,8 +155,8 @@ public class ExampleTrackInterpolation extends ExampleSimulationProgram
                 // Thread.sleep needs a (long) parameter for milliseconds, which are clumsy to use sometimes
                 if (false) // real-time operation or simulation speedup
                 {
-                    Thread.sleep((long) (currentTimeStep * 1000)); // seconds * (1000 msec/sec) = milliseconds
-                    System.out.println(disChannel.getTRACE_PREFIX() + "Pausing for " + currentTimeStep + " seconds");
+                    Thread.sleep((long) (getTimeStepDuration() * 1000)); // seconds * (1000 msec/sec) = milliseconds
+                    System.out.println(disChannel.getTRACE_PREFIX() + "Pausing for " + getTimeStepDuration() + " seconds");
                 }
 
                 // OK now send the status PDUs for this loop, and then continue
diff --git a/examples/src/OpenDis7Examples/ExampleTrackInterpolation.x3d b/examples/src/OpenDis7Examples/ExampleTrackInterpolation.x3d
index b2fbd9f4fbd19b03baade92efd2a149ed3149e78..c275c77bb468fa03002f3911e343b512d2fc56dd 100644
--- a/examples/src/OpenDis7Examples/ExampleTrackInterpolation.x3d
+++ b/examples/src/OpenDis7Examples/ExampleTrackInterpolation.x3d
@@ -1,11 +1,9 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE X3D PUBLIC "ISO//Web3D//DTD X3D 4.0//EN" "https://www.web3d.org/specifications/x3d-4.0.dtd">
 <X3D profile='Interchange' version='4.0' xmlns:xsd='http://www.w3.org/2001/XMLSchema-instance' xsd:noNamespaceSchemaLocation='https://www.web3d.org/specifications/x3d-4.0.xsd'>
   <head>
     <meta content='ExampleTrackInterpolation.x3d' name='title'/>
     <meta content='Conversion of ESPDU track into X3D animation interpolators and LineSet.' name='description'/>
-    <meta content='3 January 2022' name='created'/>
-    <meta content='3 January 2022' name='modified'/>
+    <meta content='1 January 2022' name='created'/>
+    <meta content='30 May 2022' name='modified'/>
     <meta content='Don Brutzman' name='creator'/>
     <meta content='https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/-/blob/master/examples/src/OpenDis7Examples/ExampleTrackInterpolation.x3d' name='identifier'/>
     <meta content='PduTrack utility, opendis7-java Library https://github.com/open-dis/opendis7-java' name='generator'/>
diff --git a/examples/src/OpenDis7Examples/ExampleTrackInterpolationLog.txt b/examples/src/OpenDis7Examples/ExampleTrackInterpolationLog.txt
index f036f3a2314af5f78e6995ad681241e4f36f3593..ca282e614fe6102833b8837658962871734cef84 100644
--- a/examples/src/OpenDis7Examples/ExampleTrackInterpolationLog.txt
+++ b/examples/src/OpenDis7Examples/ExampleTrackInterpolationLog.txt
@@ -19,261 +19,265 @@ run-single:
 [DisThreadedNetworkInterface] createThreads() receiveThread.isAlive()=true
 [DisThreadedNetworkInterface] createThreads() sendingThread.isAlive()=true
 [PduRecorder PduRecorder] listening to IP address 239.1.2.3 on port 3000
-[DisChannel ExampleTrackInterpolation] disChannel.getNetworkAddress()=239.1.2.3, getNetworkPort()=3000
+[DisChannel ExampleTrackInterpolation] just checking: disChannel.getNetworkAddress()=239.1.2.3, getNetworkPort()=3000
 [DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  1] DisPduType 11 CREATE_ENTITY, size 28 bytes)
 [DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  2] DisPduType 11 CREATE_ENTITY, size 28 bytes)
 [DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  1] DisPduType 11 CREATE_ENTITY, size 28 bytes)
 [DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  2] DisPduType 11 CREATE_ENTITY, size 28 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  3] DisPduType 22 COMMENT, size 72 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  3] DisPduType 22 COMMENT, size 72 bytes)
 [DisThreadedNetworkInterface PduRecorder] [receipt  1] DisPduType 11 CREATE_ENTITY, size 28 bytes)
-[DisChannel ExampleTrackInterpolation] main() started...
 [DisThreadedNetworkInterface PduRecorder] [receipt  2] DisPduType 11 CREATE_ENTITY, size 28 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  3] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  3] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
- 0 Entity location=( 0.0,  0.0,  0.0) NORTH
+[DisThreadedNetworkInterface PduRecorder] [receipt  3] DisPduType 22 COMMENT, size 72 bytes)
+[DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [Simulation timestep 1.0 seconds]
+[DisChannel ExampleTrackInterpolation] main() started...
 [DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  4] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
 [DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  4] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  5] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  5] DisPduType 22 COMMENT, size 120 bytes)
+ 0 Entity location=( 0.0,  0.0,  0.0) NORTH
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  5] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  5] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  6] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  6] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 1 at time 0.0]
  1 Entity location=( 0.0,  1.0,  0.0) NORTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  6] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  6] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  7] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  7] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  7] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  7] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  8] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  8] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 2 at time 1.0]
  2 Entity location=( 0.0,  2.0,  0.0) NORTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  8] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  8] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  9] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  9] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending  9] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt  9] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 10] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 10] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 3 at time 2.0]
  3 Entity location=( 0.0,  3.0,  0.0) NORTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 10] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 10] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 11] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 11] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 11] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 11] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 12] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 12] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 4 at time 3.0]
  4 Entity location=( 0.0,  4.0,  0.0) NORTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 12] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 12] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 13] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 13] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 13] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 13] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 14] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 14] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 5 at time 4.0]
  5 Entity location=( 0.0,  5.0,  0.0) NORTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 14] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 14] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 15] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 15] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 15] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 15] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 16] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 16] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 6 at time 5.0]
  6 Entity location=( 0.0,  6.0,  0.0) NORTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 16] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 16] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 17] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 17] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 17] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 17] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 18] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 18] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 7 at time 6.0]
  7 Entity location=( 0.0,  7.0,  0.0) NORTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 18] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 18] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 19] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 19] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 19] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 19] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 20] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 20] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 8 at time 7.0]
  8 Entity location=( 0.0,  8.0,  0.0) NORTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 20] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 20] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 21] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 21] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 21] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 21] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 22] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 22] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 9 at time 8.0]
  9 Entity location=( 0.0,  9.0,  0.0) NORTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 22] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 22] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 23] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 23] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 23] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 23] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 24] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 24] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 10 at time 9.0]
 10 Entity location=( 0.0, 10.0,  0.0) NORTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 24] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 24] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 25] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 25] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 25] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 25] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 26] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 26] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 11 at time 10.0]
 11 Entity location=( 1.0, 10.0,  0.0) EAST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 26] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 26] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 27] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 27] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 27] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 27] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 28] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 28] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 12 at time 11.0]
 12 Entity location=( 2.0, 10.0,  0.0) EAST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 28] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 28] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 29] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 29] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 29] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 29] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 30] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 30] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 13 at time 12.0]
 13 Entity location=( 3.0, 10.0,  0.0) EAST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 30] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 30] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 31] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 31] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 31] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 31] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 32] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 32] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 14 at time 13.0]
 14 Entity location=( 4.0, 10.0,  0.0) EAST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 32] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 32] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 33] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 33] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 33] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 33] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 34] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 34] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 15 at time 14.0]
 15 Entity location=( 5.0, 10.0,  0.0) EAST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 34] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 34] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 35] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 35] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 35] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 35] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 36] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 36] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 16 at time 15.0]
 16 Entity location=( 6.0, 10.0,  0.0) EAST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 36] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 36] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 37] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 37] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 37] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 37] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 38] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 38] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 17 at time 16.0]
 17 Entity location=( 7.0, 10.0,  0.0) EAST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 38] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 38] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 39] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 39] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 39] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 39] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 40] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 40] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 18 at time 17.0]
 18 Entity location=( 8.0, 10.0,  0.0) EAST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 40] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 40] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 41] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 41] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 41] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 41] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 42] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 42] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 19 at time 18.0]
 19 Entity location=( 9.0, 10.0,  0.0) EAST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 42] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 42] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 43] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 43] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 43] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 43] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 44] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 44] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 20 at time 19.0]
 20 Entity location=(10.0, 10.0,  0.0) EAST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 44] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 44] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 45] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 45] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 45] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 45] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 46] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 46] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 21 at time 20.0]
 21 Entity location=(10.0,  9.0,  0.0) SOUTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 46] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 46] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 47] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 47] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 47] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 47] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 48] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 48] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 22 at time 21.0]
 22 Entity location=(10.0,  8.0,  0.0) SOUTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 48] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 48] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 49] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 49] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 49] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 49] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 50] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 50] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 23 at time 22.0]
 23 Entity location=(10.0,  7.0,  0.0) SOUTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 50] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 50] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 51] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 51] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 51] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 51] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 52] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 52] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 24 at time 23.0]
 24 Entity location=(10.0,  6.0,  0.0) SOUTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 52] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 52] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 53] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 53] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 53] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 53] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 54] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 54] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 25 at time 24.0]
 25 Entity location=(10.0,  5.0,  0.0) SOUTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 54] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 54] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 55] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 55] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 55] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 55] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 56] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 56] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 26 at time 25.0]
 26 Entity location=(10.0,  4.0,  0.0) SOUTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 56] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 56] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 57] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 57] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 57] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 57] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 58] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 58] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 27 at time 26.0]
 27 Entity location=(10.0,  3.0,  0.0) SOUTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 58] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 58] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 59] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 59] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 59] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 59] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 60] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 60] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 28 at time 27.0]
 28 Entity location=(10.0,  2.0,  0.0) SOUTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 60] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 60] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 61] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 61] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 61] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 61] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 62] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 62] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 29 at time 28.0]
 29 Entity location=(10.0,  1.0,  0.0) SOUTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 62] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 62] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 63] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 63] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 63] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 63] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 64] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 64] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 30 at time 29.0]
 30 Entity location=(10.0,  0.0,  0.0) SOUTH
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 64] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 64] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 65] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 65] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 65] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 65] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 66] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 66] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 31 at time 30.0]
 31 Entity location=( 9.0,  0.0,  0.0) WEST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 66] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 66] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 67] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 67] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 67] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 67] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 68] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 68] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 32 at time 31.0]
 32 Entity location=( 8.0,  0.0,  0.0) WEST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 68] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 68] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 69] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 69] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 69] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 69] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 70] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 70] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 33 at time 32.0]
 33 Entity location=( 7.0,  0.0,  0.0) WEST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 70] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 70] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 71] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 71] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 71] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 71] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 72] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 72] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 34 at time 33.0]
 34 Entity location=( 6.0,  0.0,  0.0) WEST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 72] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 72] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 73] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 73] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 73] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 73] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 74] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 74] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 35 at time 34.0]
 35 Entity location=( 5.0,  0.0,  0.0) WEST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 74] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 74] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 75] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 75] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 75] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 75] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 76] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 76] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 36 at time 35.0]
 36 Entity location=( 4.0,  0.0,  0.0) WEST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 76] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 76] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 77] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 77] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 77] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 77] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 78] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 78] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 37 at time 36.0]
 37 Entity location=( 3.0,  0.0,  0.0) WEST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 78] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 78] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 79] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 79] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 79] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 79] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 80] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 80] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 38 at time 37.0]
 38 Entity location=( 2.0,  0.0,  0.0) WEST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 80] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 80] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 81] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 81] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 81] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 81] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 82] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 82] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 39 at time 38.0]
 39 Entity location=( 1.0,  0.0,  0.0) WEST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 82] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 82] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 83] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 83] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 83] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 83] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 84] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 84] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 40 at time 39.0]
 40 Entity location=( 0.0,  0.0,  0.0) WEST 
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 84] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 84] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 85] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 85] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 85] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 85] DisPduType 01 ENTITY_STATE  track path, size 144 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 86] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 86] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: APPLICATION_TIMESTEP] [MV3500 TrackSimulationProgram, runSimulation() loop 41 at time 40.0]
 41 Entity location=(-1.0,  0.0,  0.0) WEST 
 [DisChannel ExampleTrackInterpolation] loop termination condition met, simulationComplete=true
@@ -289,7 +293,7 @@ pduTrack_1 duration = 42.0 seconds = 0 ticks
     <meta content='ExampleTrackInterpolation.x3d' name='title'/>
     <meta content='Conversion of ESPDU track into X3D animation interpolators and LineSet.' name='description'/>
     <meta content='1 January 2022' name='created'/>
-    <meta content='30 May 2022' name='modified'/>
+    <meta content='5 June 2022' name='modified'/>
     <meta content='Don Brutzman' name='creator'/>
     <meta content='https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/-/blob/master/examples/src/OpenDis7Examples/ExampleTrackInterpolation.x3d' name='identifier'/>
     <meta content='PduTrack utility, opendis7-java Library https://github.com/open-dis/opendis7-java' name='generator'/>
@@ -455,10 +459,10 @@ pduTrack_1 duration = 42.0 seconds = 0 ticks
 </X3D>
 
 =================================
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 86] DisPduType 22 COMMENT, size 120 bytes)
-[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 86] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [sending 87] DisPduType 22 COMMENT, size 120 bytes)
+[DisThreadedNetworkInterface ExampleTrackInterpolation] [receipt 87] DisPduType 22 COMMENT, size 120 bytes)
 [DisChannel ExampleTrackInterpolation] *** [CommentPdu narrative sent: COMPLETE_EVENT_REPORT] [MV3500 TrackSimulationProgram, runSimulation() completed successfully]
-*** setKillSentinelAndInterrupts() killed=true sendingThread.isInterrupted()=true receiveThread.isInterrupted()=true
+*** setKillSentinelAndInterrupts() killed=true sendingThread.isInterrupted()=false receiveThread.isInterrupted()=true
 [DisThreadedNetworkInterface PduRecorder] close(): pdus2send.size()=0 baos.size()=0 dos.size()=0
 *** killThread() status: sendingThread.isAlive()=false sendingThread.isInterrupted()=true
 *** killThread() status: receiveThread.isAlive()=false receiveThread.isInterrupted()=true
diff --git a/examples/src/OpenDis7Examples/ExampleTrackInterpolationPduCaptureLog.dislog b/examples/src/OpenDis7Examples/ExampleTrackInterpolationPduCaptureLog.dislog
index 708077a6832ad4cf7ce0b3f8346d314d48be347b..b382a9ccc9503d07efded1c5c803fdde8cda78f3 100644
--- a/examples/src/OpenDis7Examples/ExampleTrackInterpolationPduCaptureLog.dislog
+++ b/examples/src/OpenDis7Examples/ExampleTrackInterpolationPduCaptureLog.dislog
@@ -1,88 +1,89 @@
-# Start, ENCODING_PLAINTEXT, [PduRecorder] 20220530_120559, DIS capture file, .\pduLog\PduCaptureLog.dislog
-0,0,0,0,0,0,0,0,7,4,11,5,25,-109,-128,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 # DisPduType 11 CREATE_ENTITY
-0,0,0,0,0,51,-8,76,7,4,11,5,25,-109,-128,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 # DisPduType 11 CREATE_ENTITY
-0,0,0,0,1,-67,-12,-40,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,8,-85,-112,-4,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,15,93,51,56,7,1,22,5,0,4,-111,-65,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,32,97,116,32,116,105,109,101,32,48,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,21,-41,101,68,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,27,-32,-72,0,7,1,22,5,0,8,109,-67,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,32,97,116,32,116,105,109,101,32,49,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,34,-11,63,-48,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,41,102,-93,44,7,1,22,5,0,12,-113,-93,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,32,97,116,32,116,105,109,101,32,50,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,47,-39,57,-12,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,54,28,107,36,7,1,22,5,0,16,116,-13,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,52,32,97,116,32,116,105,109,101,32,51,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,60,-97,-119,44,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,66,-4,-35,96,7,1,22,5,0,20,99,-107,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,53,32,97,116,32,116,105,109,101,32,52,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,73,92,77,8,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,79,-118,76,112,7,1,22,5,0,24,54,63,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,54,32,97,116,32,116,105,109,101,32,53,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,86,20,-96,-12,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,92,-121,-74,76,7,1,22,5,0,28,46,51,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,55,32,97,116,32,116,105,109,101,32,54,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,98,-34,-36,20,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,105,9,-80,40,7,1,22,5,0,32,0,-33,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,56,32,97,116,32,116,105,109,101,32,55,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,111,-30,-99,96,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,119,42,-69,-44,7,1,22,5,0,36,81,95,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,57,32,97,116,32,116,105,109,101,32,56,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,125,82,-88,-116,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-125,77,-49,-116,7,1,22,5,0,40,8,21,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,24,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,48,32,97,116,32,116,105,109,101,32,57,46,48,0,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-119,120,-19,116,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,63,-16,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-112,34,120,52,7,1,22,5,0,43,-19,101,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,49,32,97,116,32,116,105,109,101,32,49,48,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-106,-31,-113,92,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-99,118,90,0,7,1,22,5,0,48,1,79,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,50,32,97,116,32,116,105,109,101,32,49,49,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-92,7,28,-100,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,8,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-86,109,-111,-120,7,1,22,5,0,51,-7,67,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,51,32,97,116,32,116,105,109,101,32,49,50,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-80,-75,-9,-120,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,16,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-73,30,-107,-8,7,1,22,5,0,55,-39,-21,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,52,32,97,116,32,116,105,109,101,32,49,51,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-67,82,120,104,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,20,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-61,-95,-8,96,7,1,22,5,0,59,-84,-105,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,53,32,97,116,32,116,105,109,101,32,49,52,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-54,65,49,-72,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,24,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-48,-120,-93,-108,7,1,22,5,0,63,-101,57,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,54,32,97,116,32,116,105,109,101,32,49,53,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-41,123,-8,-12,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,28,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-35,-111,-122,-16,7,1,22,5,0,67,-105,-43,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,55,32,97,116,32,116,105,109,101,32,49,54,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-28,33,25,64,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,32,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-22,72,-119,92,7,1,22,5,0,71,120,125,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,56,32,97,116,32,116,105,109,101,32,49,55,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-16,-12,-105,-36,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,34,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,0,-9,66,-72,68,7,1,22,5,0,75,112,113,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,57,32,97,116,32,116,105,109,101,32,49,56,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,0,-3,91,19,112,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,3,-61,65,96,7,1,22,5,0,79,67,29,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,48,32,97,116,32,116,105,109,101,32,49,57,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,10,59,-38,-44,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,16,-20,-34,-36,7,1,22,5,0,83,68,99,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,49,32,97,116,32,116,105,109,101,32,50,48,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,23,-64,-55,-88,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,29,-68,-74,-76,7,1,22,5,0,87,46,91,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,50,32,97,116,32,116,105,109,101,32,50,49,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,36,27,70,36,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,42,-128,87,-104,7,1,22,5,0,91,19,-85,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,51,32,97,116,32,116,105,109,101,32,50,50,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,49,70,57,8,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,55,97,116,36,7,1,22,5,0,94,-3,-91,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,52,32,97,116,32,116,105,109,101,32,50,51,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,61,-29,-35,-76,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,68,38,114,64,7,1,22,5,0,98,-20,71,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,53,32,97,116,32,116,105,109,101,32,50,52,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,74,-26,36,-32,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,81,31,113,-92,7,1,22,5,0,102,-33,-111,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,54,32,97,116,32,116,105,109,101,32,50,53,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,87,-38,-25,28,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,93,-39,-106,-52,7,1,22,5,0,106,-60,-31,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,55,32,97,116,32,116,105,109,101,32,50,54,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,100,-123,55,36,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,107,3,98,96,7,1,22,5,0,110,-58,39,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,56,32,97,116,32,116,105,109,101,32,50,55,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,114,5,2,-68,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,63,-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,120,-102,125,40,7,1,22,5,0,114,-15,95,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,57,32,97,116,32,116,105,109,101,32,50,56,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,126,-94,68,48,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-123,80,55,-40,7,1,22,5,0,118,-51,93,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,48,32,97,116,32,116,105,109,101,32,50,57,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,-117,109,102,-12,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-111,-27,2,-128,7,1,22,5,0,122,-87,91,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,49,32,97,116,32,116,105,109,101,32,51,48,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,-105,-13,23,-4,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-98,69,18,-72,7,1,22,5,0,126,114,-75,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,50,32,97,116,32,116,105,109,101,32,51,49,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,-92,-31,71,4,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-85,49,-102,80,7,1,22,5,0,-126,101,-1,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,51,32,97,116,32,116,105,109,101,32,51,50,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,-78,11,-89,-48,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-72,-86,-86,20,7,1,22,5,0,-122,126,-109,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,52,32,97,116,32,116,105,109,101,32,51,51,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,-65,113,-76,-56,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-59,-25,30,-100,7,1,22,5,0,-118,-119,43,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,53,32,97,116,32,116,105,109,101,32,51,52,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,-52,102,-38,-96,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-46,-127,64,16,7,1,22,5,0,-114,101,41,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,54,32,97,116,32,116,105,109,101,32,51,53,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,-40,-122,120,104,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-33,76,-79,-68,7,1,22,5,0,-110,65,39,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,55,32,97,116,32,116,105,109,101,32,51,54,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,-27,-8,-19,40,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-20,-115,110,92,7,1,22,5,0,-106,89,-69,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,56,32,97,116,32,116,105,109,101,32,51,55,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,1,-14,-111,7,20,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,63,-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,1,-7,87,99,44,7,1,22,5,0,-102,63,11,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,57,32,97,116,32,116,105,109,101,32,51,56,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,2,0,120,43,80,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,2,6,-102,11,-4,7,1,22,5,0,-98,78,77,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,52,48,32,97,116,32,116,105,109,101,32,51,57,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,2,12,-64,67,-104,7,1,1,1,0,0,0,1,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,-65,-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
-0,0,0,2,18,-33,44,-28,7,1,22,5,0,-94,9,-85,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,52,49,32,97,116,32,116,105,109,101,32,52,48,46,48,0,0,0,0 # DisPduType 22 COMMENT
-0,0,0,2,25,122,63,88,7,1,22,5,0,-92,19,-97,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,9,90,-90,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,9,90,-90,0,0,1,48,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,99,111,109,112,108,101,116,101,100,32,115,117,99,99,101,115,115,102,117,108,108,121,0,0 # DisPduType 22 COMMENT
-# Finish, ENCODING_PLAINTEXT, [PduRecorder] 20220530_120609, DIS capture file, .\pduLog\PduCaptureLog.dislog
+# Start, ENCODING_PLAINTEXT, [PduRecorder] 20220605_214053, DIS capture file, .\pduLog\PduCaptureLog.dislog
+0,0,0,0,0,0,0,0,7,4,11,5,-82,-128,64,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 # DisPduType 11 CREATE_ENTITY
+0,0,0,0,0,113,-75,-60,7,4,11,5,-82,-128,64,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 # DisPduType 11 CREATE_ENTITY
+0,0,0,0,0,115,-111,-116,7,1,22,5,-82,-128,82,-73,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-81,-46,0,0,0,-8,83,105,109,117,108,97,116,105,111,110,32,116,105,109,101,115,116,101,112,32,49,46,48,32,115,101,99,111,110,100,115,0 # DisPduType 22 COMMENT
+0,0,0,0,8,-104,-75,64,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,15,-121,-58,12,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,21,-106,29,40,7,1,22,5,0,4,103,-51,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,32,97,116,32,116,105,109,101,32,48,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,27,-64,-67,72,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,33,-66,-59,-56,7,1,22,5,0,8,30,-125,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,32,97,116,32,116,105,109,101,32,49,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,40,81,-95,-128,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,46,107,50,-44,7,1,22,5,0,11,-6,-127,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,32,97,116,32,116,105,109,101,32,50,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,53,121,-19,124,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,60,37,87,-120,7,1,22,5,0,16,47,11,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,52,32,97,116,32,116,105,109,101,32,51,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,66,-83,96,40,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,73,5,77,-116,7,1,22,5,0,20,29,-83,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,53,32,97,116,32,116,105,109,101,32,52,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,79,64,22,-56,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,85,99,-34,-12,7,1,22,5,0,23,-25,7,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,54,32,97,116,32,116,105,109,101,32,53,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,91,-63,-111,76,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,98,-24,25,80,7,1,22,5,0,28,4,67,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,55,32,97,116,32,116,105,109,101,32,54,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,105,112,25,88,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,111,121,82,-80,7,1,22,5,0,31,-37,-105,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,56,32,97,116,32,116,105,109,101,32,55,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,117,-98,-11,20,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,124,13,49,4,7,1,22,5,0,35,-78,-19,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,16,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,57,32,97,116,32,116,105,109,101,32,56,46,48,0,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-126,44,-90,-16,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-120,115,48,-60,7,1,22,5,0,39,119,-99,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,24,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,48,32,97,116,32,116,105,109,101,32,57,46,48,0,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-114,-124,109,-84,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,63,-16,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-108,-51,82,-96,7,1,22,5,0,43,64,-9,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,49,32,97,116,32,116,105,109,101,32,49,48,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-101,-112,90,-60,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-95,-93,-50,20,7,1,22,5,0,47,47,-103,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,50,32,97,116,32,116,105,109,101,32,49,49,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-88,4,34,64,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,8,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-82,53,-108,-36,7,1,22,5,0,51,2,69,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,51,32,97,116,32,116,105,109,101,32,49,50,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-76,-114,108,60,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,16,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-70,-62,88,112,7,1,22,5,0,54,-39,-103,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,52,32,97,116,32,116,105,109,101,32,49,51,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-64,-7,3,-60,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,20,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-57,3,-92,-32,7,1,22,5,0,58,-103,-95,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,53,32,97,116,32,116,105,109,101,32,49,52,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-51,65,69,116,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,24,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-45,-2,8,-124,7,1,22,5,0,62,-116,-21,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,54,32,97,116,32,116,105,109,101,32,49,53,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-38,99,44,84,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,28,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-32,110,115,116,7,1,22,5,0,66,90,-17,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,55,32,97,116,32,116,105,109,101,32,49,54,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-25,-113,20,36,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,32,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-19,-107,-31,-12,7,1,22,5,0,70,96,-35,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,56,32,97,116,32,116,105,109,101,32,49,55,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,0,-12,111,23,112,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,34,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,0,-6,-96,-63,-124,7,1,22,5,0,74,93,123,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,49,57,32,97,116,32,116,105,109,101,32,49,56,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,1,-66,-51,68,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,63,-128,0,0,0,0,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,8,-110,40,-76,7,1,22,5,0,78,-97,-1,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,48,32,97,116,32,116,105,109,101,32,49,57,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,14,-111,115,20,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,21,15,78,-96,7,1,22,5,0,82,110,3,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,49,32,97,116,32,116,105,109,101,32,50,48,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,27,-124,-24,-28,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,33,-118,-86,88,7,1,22,5,0,86,60,5,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,50,32,97,116,32,116,105,109,101,32,50,49,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,40,43,9,12,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,46,-115,-113,-72,7,1,22,5,0,90,51,-7,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,51,32,97,116,32,116,105,109,101,32,50,50,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,52,-77,-45,112,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,58,-18,-110,32,7,1,22,5,0,93,-3,83,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,52,32,97,116,32,116,105,109,101,32,50,51,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,65,90,-52,0,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,72,-108,50,-32,7,1,22,5,0,98,40,-117,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,53,32,97,116,32,116,105,109,101,32,50,52,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,78,-35,63,-84,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,84,-35,22,72,7,1,22,5,0,101,-24,-109,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,54,32,97,116,32,116,105,109,101,32,50,53,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,91,66,1,116,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,98,30,86,-16,7,1,22,5,0,105,-9,-45,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,55,32,97,116,32,116,105,109,101,32,50,54,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,104,111,-78,76,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,111,71,-56,72,7,1,22,5,0,109,-3,-61,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,56,32,97,116,32,116,105,109,101,32,50,55,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,117,93,-4,72,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,63,-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,123,-97,48,-32,7,1,22,5,0,113,-62,115,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,50,57,32,97,116,32,116,105,109,101,32,50,56,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-126,33,32,-12,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,0,0,0,0,-65,-128,0,0,0,0,0,0,64,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-120,-1,-23,-56,7,1,22,5,0,117,-42,93,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,48,32,97,116,32,116,105,109,101,32,50,57,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-113,26,-7,-20,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-107,-124,24,24,7,1,22,5,0,121,-87,9,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,49,32,97,116,32,116,105,109,101,32,51,48,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-101,-103,-12,-104,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-95,-100,19,48,7,1,22,5,0,125,91,21,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,50,32,97,116,32,116,105,109,101,32,51,49,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-88,17,104,80,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-82,106,25,104,7,1,22,5,0,-127,69,15,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,51,32,97,116,32,116,105,109,101,32,51,50,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-76,-51,-79,-24,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-70,-20,-118,4,7,1,22,5,0,-123,23,-69,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,52,32,97,116,32,116,105,109,101,32,51,51,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-63,-68,-81,-108,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-56,4,-59,-28,7,1,22,5,0,-119,20,87,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,53,32,97,116,32,116,105,109,101,32,51,52,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-50,16,92,-76,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-43,112,118,56,7,1,22,5,0,-115,44,-21,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,54,32,97,116,32,116,105,109,101,32,51,53,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-37,-41,-124,68,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-31,-43,-113,-128,7,1,22,5,0,-112,-10,69,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,55,32,97,116,32,116,105,109,101,32,51,54,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-25,-35,-38,44,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-18,73,3,-56,7,1,22,5,0,-108,-60,71,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,56,32,97,116,32,116,105,109,101,32,51,55,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,1,-12,-72,21,0,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,63,-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,1,-6,-5,55,-68,7,1,22,5,0,-104,-92,-17,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,51,57,32,97,116,32,116,105,109,101,32,51,56,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,2,1,108,-105,-108,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,2,7,-49,-51,-92,7,1,22,5,0,-100,-109,-111,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,52,48,32,97,116,32,116,105,109,101,32,51,57,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,2,14,1,-110,-84,7,1,1,1,0,0,4,-87,0,-112,40,0,0,1,0,2,0,3,1,0,1,3,0,-51,62,2,1,0,0,0,0,-31,0,0,0,0,-65,-128,0,0,0,0,0,0,0,0,0,0,-65,-16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,116,114,97,99,107,32,112,97,116,104,0,0,0,0 # DisPduType 01 ENTITY_STATE
+0,0,0,2,20,67,-55,20,7,1,22,5,0,-96,97,-109,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,-81,-46,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,0,-81,-46,0,0,1,32,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,108,111,111,112,32,52,49,32,97,116,32,116,105,109,101,32,52,48,46,48,0,0,0,0 # DisPduType 22 COMMENT
+0,0,0,2,27,1,-1,-96,7,1,22,5,0,-94,102,-33,0,32,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,9,90,-90,0,0,0,-24,77,86,51,53,48,48,32,84,114,97,99,107,83,105,109,117,108,97,116,105,111,110,80,114,111,103,114,97,109,0,0,0,0,9,90,-90,0,0,1,48,114,117,110,83,105,109,117,108,97,116,105,111,110,40,41,32,99,111,109,112,108,101,116,101,100,32,115,117,99,99,101,115,115,102,117,108,108,121,0,0 # DisPduType 22 COMMENT
+# Finish, ENCODING_PLAINTEXT, [PduRecorder] 20220605_214104, DIS capture file, .\pduLog\PduCaptureLog.dislog