diff --git a/MICRORETICULUM_BUGS.md b/MICRORETICULUM_BUGS.md
new file mode 100644
index 0000000..a785e04
--- /dev/null
+++ b/MICRORETICULUM_BUGS.md
@@ -0,0 +1,275 @@
+# microReticulum Bug Report
+
+## 1. Copy-vs-Reference Bugs in Transport.cpp
+
+### Summary
+
+Several locations in `Transport.cpp` retrieve `LinkEntry` or `DestinationEntry` values from `std::map` containers **by copy** instead of **by reference**. Subsequent mutations (setting `_validated`, updating `_timestamp`) only affect the local copy — the actual map entry is never updated.
+
+This is a Python→C++ porting issue: in Python, `dict[key]` returns a reference to the value, so `transport.link_table[link_id][0] = time.time()` mutates the dict entry in place. In C++, `(*iter).second` returns a copy when assigned to a non-reference variable.
+
+### Bug 1a — LRPROOF handler: `_validated` never set on map entry (CRITICAL)
+
+**File:** `Transport.cpp`, LRPROOF handling section
+**Code (before fix):**
+```cpp
+LinkEntry link_entry = (*_link_table.find(packet.destination_hash())).second; // COPY
+// ... later:
+link_entry._validated = true; // Only updates local copy
+```
+
+**Impact:** The link_table entry's `_validated` stays `false`. The culling code in `jobs()` checks:
+```cpp
+if (link_entry._validated) {
+ if (OS::time() > (link_entry._timestamp + LINK_TIMEOUT)) { ... } // 15 minutes
+} else {
+ if (OS::time() > link_entry._proof_timeout) { ... } // 6-18 seconds
+}
+```
+Since `_validated` is never set to `true`, the entry is culled at `proof_timeout` (6 × hops = **6–18 seconds**) instead of `LINK_TIMEOUT` (15 minutes). All subsequent link data packets (resource chunks, keepalives, etc.) are silently dropped once the entry is removed.
+
+**Symptom:** Resource transfers start successfully but fail after a few seconds. Link establishes, some data transfers, then all traffic stops. Affects both directions.
+
+**Fix:** Change to reference:
+```cpp
+LinkEntry& link_entry = (*_link_table.find(packet.destination_hash())).second;
+```
+
+### Bug 1b — Link transport handler: `_timestamp` never refreshed (CRITICAL)
+
+**File:** `Transport.cpp`, link transport handling section
+**Code (before fix):**
+```cpp
+LinkEntry link_entry = (*link_iter).second; // COPY
+// ... later:
+link_entry._timestamp = OS::time(); // Only updates local copy
+```
+
+**Impact:** Even with Bug 1a fixed, the link_table entry's `_timestamp` is set once (at LINKREQUEST time) and never refreshed during ongoing link data forwarding. For long-running transfers exceeding `LINK_TIMEOUT` (KEEPALIVE=360s, STALE_TIME=720s, LINK_TIMEOUT=900s = 15 minutes), the entry is eventually culled and the transfer fails.
+
+**Fix:** Change to reference:
+```cpp
+LinkEntry& link_entry = (*link_iter).second;
+```
+
+### Bug 1c — Standard inbound transport forwarding: `_timestamp` never refreshed
+
+**File:** `Transport.cpp`, inbound transport forwarding (HEADER_2 packets where we are the designated next-hop)
+**Code (before fix):**
+```cpp
+DestinationEntry destination_entry = (*destination_iter).second; // COPY
+// ... later:
+destination_entry._timestamp = OS::time(); // Only updates local copy
+```
+
+**Impact:** Path timestamps are never refreshed when packets are actively being forwarded along that path. Paths could be culled while still in active use, though the timeout is typically long enough (DESTINATION_TIMEOUT) that this is less likely to cause issues than the link_table bugs.
+
+**Fix:** Change to reference:
+```cpp
+DestinationEntry& destination_entry = (*destination_iter).second;
+```
+
+### Bug 1d — Outbound transport forwarding: `_timestamp` never refreshed
+
+**File:** `Transport.cpp`, `outbound()` method
+**Code (before fix):**
+```cpp
+DestinationEntry destination_entry = (*_destination_table.find(packet.destination_hash())).second; // COPY
+// ... later:
+destination_entry._timestamp = OS::time(); // Only updates local copy
+```
+
+**Impact:** Same as 1c — outbound path forwarding never refreshes the path timestamp.
+
+**Fix:** Change to reference:
+```cpp
+DestinationEntry& destination_entry = (*_destination_table.find(packet.destination_hash())).second;
+```
+
+### How to audit for more
+
+Search for the pattern: assignments from map iterators without `&`:
+```
+grep -n "Entry [a-z_]* = " Transport.cpp
+```
+Any line matching `SomeEntry variable_name = (*iter).second;` (without `&` after the type) that later mutates a field of `variable_name` is a bug.
+
+---
+
+## 2. Potential additional copy-vs-reference instances (non-mutating — safe but wasteful)
+
+The following locations also copy entries but only read from them (no mutation). They are not bugs but are unnecessarily copying large structs:
+
+- `for_local_client` check: `LinkEntry link_entry = (*link_iter).second;` — read-only, safe
+- `for_local_client` check: `DestinationEntry destination_entry = (*destination_iter).second;` — read-only, safe
+- `proof_for_local_client` check: `ReverseEntry reverse_entry = (*reverse_iter).second;` — read-only, safe
+- Several `DestinationEntry` copies in `has_path()`, `hops_to()`, `next_hop()`, `next_hop_interface()` — read-only, safe
+
+These could be changed to `const auto&` for efficiency but are not correctness bugs.
+
+---
+
+## 3. `std::map::insert()` silently fails on existing keys
+
+### Summary
+
+In Python, `dict[key] = value` always overwrites. In C++, `std::map::insert({key, value})` is a **no-op** if the key already exists — it silently discards the new value and returns the old entry.
+
+### Bug 3a — `_destination_table` path updates silently ignored
+
+**File:** `Transport.cpp`, path table update code
+**Code (before fix):**
+```cpp
+_destination_table.insert({destination_hash, new_destination_entry});
+// If destination_hash already exists, the insert does NOTHING.
+// The old (stale) path entry remains.
+```
+
+**Impact:** When a destination announces a new path (e.g. it roamed to a different transport node), the path table keeps the old stale entry. Packets continue to be routed to the old path, which may no longer work.
+
+**Fix:** Erase before insert:
+```cpp
+_destination_table.erase(destination_hash);
+_destination_table.insert({destination_hash, new_destination_entry});
+```
+
+**Note:** This same pattern (`insert` without `erase`) should be audited across ALL map insertions in the codebase. Any map that might receive updated entries for existing keys needs the erase-before-insert pattern, or should use `operator[]` or `insert_or_assign()`.
+
+---
+
+## 4. Memory Leaks — Unbounded Data Structures
+
+### Bug 4a — `_boundary_local_addresses`: no cap, no eviction (HIGH RISK)
+
+**File:** `Transport.cpp`
+
+The `_boundary_local_addresses` set accumulates every local device address seen via LoRa announces. There is no size cap and no eviction mechanism. On a long-running boundary node that sees many transient devices, this grows without bound.
+
+**Impact:** Slow heap exhaustion over days/weeks of operation. Particularly problematic on ESP32 with limited RAM.
+
+**Fix needed:** Add a size cap (e.g. 200) with timestamp-based or LRU eviction, similar to how `_boundary_mentioned_addresses` is capped.
+
+### Bug 4b — `_held_announces`: no cap, can orphan
+
+**File:** `Transport.cpp`
+
+The `_held_announces` map stores announces waiting to be retransmitted. There is no size cap. If the retransmit never triggers (e.g. the outbound interface disappears), entries can be orphaned and accumulate indefinitely.
+
+**Impact:** Slow memory leak, exacerbated on busy networks with many announces.
+
+**Fix needed:** Add a size cap or timeout-based eviction.
+
+### Bug 4c — `_pending_local_path_requests`: entries never erased
+
+**File:** `Transport.cpp`
+**Status:** Fixed (added `.erase(iter)` call)
+
+Entries in `_pending_local_path_requests` were inserted but never removed after the path request was fulfilled. Over time the map grew without bound.
+
+### Bug 4d — `_path_requests`: entries never culled
+
+**File:** `Transport.cpp`
+**Status:** Fixed (added `DESTINATION_TIMEOUT`-based culling in `jobs()`)
+
+The `_path_requests` map recorded timestamps of path requests but entries were never removed. Each unique destination hash that triggered a path request stayed in the map forever.
+
+---
+
+## 5. Spurious Path Request Broadcasts
+
+### Bug 5a — Boundary Path A sends PATH REQUEST for every link data packet
+
+**File:** `Transport.cpp`, boundary mode local→backbone forwarding
+**Code (before fix):**
+```cpp
+// Boundary Path A: local device packet, no path in _destination_table
+else {
+ DEBUG("BOUNDARY: No path to " + packet.destination_hash().toHex() + " for local packet. Requesting path.");
+ request_path(packet.destination_hash());
+}
+```
+
+**Impact:** Link data packets are addressed to a `link_id` (the link's unique identifier), not a destination hash. The `link_id` will never be found in `_destination_table` — it's only in `_link_table`. So **every** link data packet from a local device triggers a `request_path(link_id)` call, which broadcasts a PATH REQUEST for a hash that is not any destination.
+
+For a resource transfer with 100 chunks, this sends 100 useless PATH REQUEST broadcasts over LoRa (with no deduplication — `request_path()` always sends). This wastes radio airtime and can cause congestion-related timeouts on slow LoRa links.
+
+**Fix:** Check if the destination is a known link_id before requesting a path:
+```cpp
+else {
+ if (_link_table.find(packet.destination_hash()) == _link_table.end()) {
+ DEBUG("BOUNDARY: No path to " + packet.destination_hash().toHex() + " for local packet. Requesting path.");
+ request_path(packet.destination_hash());
+ }
+}
+```
+
+### Bug 5b — Same issue in standard transport HEADER_2 fallback path
+
+**File:** `Transport.cpp`, inbound transport forwarding (where we are designated next-hop but destination_table lookup fails)
+
+Same pattern: for link data packets with HEADER_2/TRANSPORT headers where the transport_id matches us, if the destination_hash (which is a link_id) isn't in the destination table, the code requests a path for the link_id — another spurious broadcast.
+
+**Fix:** Same guard — check `_link_table` before calling `request_path()`.
+
+---
+
+## 6. General Audit Recommendations
+
+### 6a — Systematic `insert()` audit
+
+Every `std::map::insert()` call in the codebase should be reviewed. The ones that are intentional "insert-if-not-exists" semantics are fine. The ones ported from Python `dict[key] = value` (which overwrites) need to use erase+insert or `insert_or_assign()`.
+
+### 6b — Systematic copy-vs-reference audit
+
+Run:
+```bash
+grep -n "Entry [a-z_]* = .*\.second" Transport.cpp
+```
+Any match where the variable is later mutated (assigned to `._timestamp`, `._validated`, etc.) is a bug.
+
+### 6c — Data structure caps
+
+Every `std::map` and `std::set` in Transport that accumulates entries over time needs:
+1. A size cap appropriate for ESP32 memory constraints
+2. An eviction strategy (timestamp-based, LRU, or lexicographic)
+3. Culling in the `jobs()` periodic task
+
+---
+
+## 7. Packet Hashlist Timing Bug — Link Transport Breakage on Shared Media
+
+### Bug 7a — Premature packet hash insertion breaks link transport (FIXED)
+
+**File:** `Transport.cpp`, inbound() after packet_filter
+
+**Bug:** The C++ code unconditionally added every accepted packet's hash to
+`_packet_hashlist` immediately (line ~1505), before link transport or proof
+handling ran:
+```cpp
+_packet_hashlist.insert(packet.packet_hash()); // Always, immediately
+```
+
+The Python reference implementation (`Transport.py` lines 1362-1373)
+**defers** insertion for two cases:
+1. Packets whose `destination_hash` is in `link_table` (link data packets)
+2. LRPROOF packets (type=PROOF, context=LRPROOF)
+
+For link data: the hash is added later, **inside** the link transport
+forwarding block, only after a valid outbound direction is confirmed
+(`Transport.py` line 1544).
+
+For LRPROOF: the hash is **never** added (allowing duplicate proofs to be
+processed on multiple interfaces).
+
+**Impact:** On shared-medium interfaces (e.g. LoRa), a packet belonging to a
+link that transports through this node may arrive on the "wrong" interface
+first (e.g. received on LoRa before it arrives via TCP backbone). The
+premature hash insertion causes the correct arrival to be filtered as a
+duplicate for non-resource contexts (DATA ctx=0, LINKIDENTIFY, LRRTT,
+LINKCLOSE). Resource contexts (RESOURCE, RESOURCE_REQ, RESOURCE_PRF)
+are unaffected because they bypass the hashlist check in `packet_filter`.
+
+**Fix:** Defer hash insertion for link-table and LRPROOF packets, matching
+the Python reference implementation. Add `_packet_hashlist.insert()` inside
+the link transport forwarding block after direction is confirmed.
+
diff --git a/RNode_Firmware.ino b/RNode_Firmware.ino
index b9afe48..e8d5255 100755
--- a/RNode_Firmware.ino
+++ b/RNode_Firmware.ino
@@ -693,7 +693,11 @@ void setup() {
HEAD("Boundary Mode: TCP backbone DISABLED", RNS::LOG_TRACE);
}
- // Register local TCP server if enabled (MODE_ACCESS_POINT — no announce forwarding)
+ // Register local TCP server if enabled
+ // MODE_GATEWAY allows announce rebroadcasts so local TCP clients
+ // can discover each other and receive backbone announces.
+ // (MODE_ACCESS_POINT blocks all announce broadcasts in outbound(),
+ // which prevented local clients from finding paths to each other.)
if (boundary_state.wifi_enabled && boundary_state.ap_tcp_enabled) {
local_tcp_interface_ptr = new TcpInterface(
TCP_IF_MODE_SERVER,
@@ -706,12 +710,12 @@ void setup() {
// to prevent unnecessary reconnection cycles that leak lwIP memory
local_tcp_interface_ptr->setReadTimeout(600000);
local_tcp_rns_interface = local_tcp_interface_ptr;
- local_tcp_rns_interface.mode(RNS::Type::Interface::MODE_ACCESS_POINT);
+ local_tcp_rns_interface.mode(RNS::Type::Interface::MODE_GATEWAY);
RNS::Transport::register_interface(local_tcp_rns_interface);
{
char _bm_msg[128];
- snprintf(_bm_msg, sizeof(_bm_msg), "Local TCP server: port %d (ACCESS_POINT mode)",
+ snprintf(_bm_msg, sizeof(_bm_msg), "Local TCP server: port %d (GATEWAY mode)",
boundary_state.ap_tcp_port);
HEAD(_bm_msg, RNS::LOG_TRACE);
}
diff --git a/Release/bootloader.bin b/Release/bootloader.bin
new file mode 100644
index 0000000..247411e
Binary files /dev/null and b/Release/bootloader.bin differ
diff --git a/Release/partitions.bin b/Release/partitions.bin
new file mode 100644
index 0000000..71dc012
Binary files /dev/null and b/Release/partitions.bin differ
diff --git a/Release/rnode_firmware_heltec32v4_boundary.bin b/Release/rnode_firmware_heltec32v4_boundary.bin
new file mode 100644
index 0000000..a6efffe
Binary files /dev/null and b/Release/rnode_firmware_heltec32v4_boundary.bin differ
diff --git a/platformio.ini.bak b/platformio.ini.bak
new file mode 100755
index 0000000..90f8a59
--- /dev/null
+++ b/platformio.ini.bak
@@ -0,0 +1,557 @@
+; PlatformIO Project Configuration File
+;
+; Build options: build flags, source filter
+; Upload options: custom upload port, speed and extra flags
+; Library options: dependencies, extra library storages
+; Advanced options: extra scripting
+;
+; Please visit documentation for the other options and examples
+; https://docs.platformio.org/page/projectconf.html
+
+[platformio]
+; Change source and include directories to root of project since RNode places them here
+include_dir = .
+src_dir = .
+
+[env]
+framework = arduino
+monitor_speed = 115200
+upload_speed = 460800
+build_flags =
+ -Wall
+ ;-Wextra
+ -Wno-missing-field-initializers
+ -Wno-format
+ -I.
+ ; CBA Define following to disable DEBUG build
+ ;-DNDEBUG
+ ; CBA Define following to include RNS stack
+ -DHAS_RNS
+ -DRNS_USE_FS
+ -DRNS_PERSIST_PATHS
+ -DMSGPACK_USE_BOOST=OFF
+ ; CBA Define following to disable LFS asserts
+ ;-DLFS_NO_ASSERT
+ ; ???
+ ;-DLFS_YES_TRACE
+ ; ???
+ ;-DCORE_DEBUG_LEVEL=5
+ ; ??? NO
+ ;-DLOG_LOCAL_LEVEL=5
+ ;-DCONFIG_LOG_DEFAULT_LEVEL=5
+lib_deps =
+ ArduinoJson@^7.4.2
+ MsgPack@^0.4.2
+ adafruit/Adafruit SSD1306@^2.5.9
+ https://github.com/attermann/Crypto.git
+; Exclude directories in root from sources
+build_src_filter = +<*> -
+extra_scripts = pre:extra_script.py
+
+[env:rnode-ng-20]
+platform = espressif32
+board = ttgo-lora32-v2
+custom_variant = ng20
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_RNODE_NG_20
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ adafruit/Adafruit NeoPixel@^1.12.0
+ attermann/microReticulum
+
+[env:rnode-ng-21]
+platform = espressif32
+board = ttgo-lora32-v21
+custom_variant = ng21
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_RNODE_NG_21
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ adafruit/Adafruit NeoPixel@^1.12.0
+ attermann/microReticulum
+
+[env:ttgo-t-beam]
+platform = espressif32
+board = ttgo-t-beam
+custom_variant = tbeam
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_TBEAM
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:ttgo-t-beam-sx1262]
+platform = espressif32
+board = ttgo-t-beam
+custom_variant = tbeam_sx1262
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_TBEAM
+ -DMODEM=SX1262
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:ttgo-t-beam-supreme]
+platform = espressif32
+board = ttgo-t-beam
+custom_variant = tbeam_supreme
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_TBEAM_S_V1
+ -DMODEM=SX1262
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ Adafruit_SH110X
+ adafruit/Adafruit SH110X@^2.1.14
+ attermann/microReticulum
+
+[env:lilygo-t3-s3]
+platform = espressif32
+board = lilygo-t3-s3
+custom_variant = t3s3
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_T3S3
+ -DMODEM=SX1262
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:lilygo-t3-s3-sx127x]
+platform = espressif32
+board = lilygo-t3-s3
+custom_variant = t3s3_sx127x
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_T3S3
+ -DMODEM=SX1276
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:lilygo-t3-s3-sx1280-pa]
+platform = espressif32
+board = lilygo-t3-s3
+custom_variant = t3s3_sx1280_pa
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_T3S3
+ -DMODEM=SX1280
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:lilygo-t-deck]
+platform = espressif32
+board = esp32-s3-devkitc-1
+custom_variant = tdeck
+board_build.filesystem = littlefs
+; Flash / memory layout
+board_upload.flash_size = 16MB
+board_upload.maximum_size = 16777216
+board_build.partitions = default_16MB.csv
+; Enable PSRAM + correct flash mode
+board_build.flash_mode = qio
+board_build.psram_type = opi
+board_build.arduino.memory_type = qio_opi
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_TDECK
+ -DBOARD_HAS_PSRAM=1
+ -DARDUINO_USB_MODE=1
+ -DCORE_DEBUG_LEVEL=1
+ ; Enable UARDUINO_ USB_ CDC_ ON_ BOOT will start printing and wait for terminal access during startup
+ -DARDUINO_USB_CDC_ON_BOOT=1
+ ; Enable UARDUINO_USB_CDC_ON_BOOT will turn off printing and will not block when using the battery
+ ; -UARDUINO_USB_CDC_ON_BOOT
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:ttgo-lora32-v1]
+platform = espressif32
+board = ttgo-lora32-v1
+custom_variant = lora32v10
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_LORA32_V1_0
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:ttgo-lora32-v2]
+platform = espressif32
+board = ttgo-lora32-v2
+custom_variant = lora32v20
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_LORA32_V2_0
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:ttgo-lora32-v2-extled]
+platform = espressif32
+board = ttgo-lora32-v2
+custom_variant = lora32v20_extled
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_LORA32_V1_0
+ -DEXTERNAL_LEDS=true
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:ttgo-lora32-v21]
+platform = espressif32
+board = ttgo-lora32-v21
+custom_variant = lora32v21
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_LORA32_V2_1
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:ttgo-lora32-v21-extled]
+platform = espressif32
+board = ttgo-lora32-v21
+custom_variant = lora32v21_extled
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_LORA32_V2_1
+ -DEXTERNAL_LEDS=true
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:ttgo-lora32-v21-tcxo]
+platform = espressif32
+board = ttgo-lora32-v21
+custom_variant = lora32v21_extled
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_LORA32_V2_1
+ -DENABLE_TCXO=true
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:heltec_wifi_lora_32_V2]
+platform = espressif32
+board = heltec_wifi_lora_32_V2
+custom_variant = heltec32v2
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_LORA32_V2_1
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:heltec_wifi_lora_32_V2-extled]
+platform = espressif32
+board = heltec_wifi_lora_32_V2
+custom_variant = heltec32v2_extled
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_LORA32_V2_1
+ -DEXTERNAL_LEDS=true
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:heltec_wifi_lora_32_V3]
+platform = espressif32
+board = heltec_wifi_lora_32_V3
+custom_variant = heltec32v3
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_HELTEC32_V3
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:heltec_wifi_lora_32_V4]
+platform = espressif32
+board = esp32-s3-devkitc-1
+custom_variant = heltec32v4
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_HELTEC32_V4
+ -DARDUINO_USB_CDC_ON_BOOT=1
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:heltec_V4_boundary]
+platform = espressif32
+board = esp32-s3-devkitc-1
+custom_variant = heltec32v4_boundary
+board_build.filesystem = littlefs
+; Flash / memory layout for 16MB flash + 2MB PSRAM
+board_upload.flash_size = 16MB
+board_upload.maximum_size = 16777216
+board_build.partitions = default_16MB.csv
+board_build.flash_mode = qio
+board_build.psram_type = qio
+board_build.arduino.memory_type = qio_qspi
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_HELTEC32_V4
+ -DARDUINO_USB_CDC_ON_BOOT=1
+ -DBOARD_HAS_PSRAM=1
+ -DBOUNDARY_MODE
+ ; --- Boundary mode defaults (override via EEPROM at runtime) ---
+ ; TCP server mode (0=server, 1=client)
+ -DBOUNDARY_TCP_MODE=0
+ ; TCP listen/connect port
+ -DBOUNDARY_TCP_PORT=4242
+ ; Backbone host for client mode (empty = server mode)
+ ; -DBOUNDARY_BACKBONE_HOST=\"192.168.1.100\"
+ ; -DBOUNDARY_BACKBONE_PORT=4242
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+monitor_filters = esp32_exception_decoder
+
+[env:heltec_V4_boundary-local]
+platform = espressif32
+board = esp32-s3-devkitc-1
+custom_variant = heltec32v4_boundary_local
+board_build.filesystem = littlefs
+board_upload.flash_size = 16MB
+board_upload.maximum_size = 16777216
+board_build.partitions = default_16MB.csv
+board_build.flash_mode = qio
+board_build.psram_type = qio
+board_build.arduino.memory_type = qio_qspi
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_HELTEC32_V4
+ -DARDUINO_USB_CDC_ON_BOOT=1
+ -DBOARD_HAS_PSRAM=1
+ -DBOUNDARY_MODE
+ -DBOUNDARY_TCP_MODE=0
+ -DBOUNDARY_TCP_PORT=4242
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ microReticulum=symlink://../microReticulum
+monitor_filters = esp32_exception_decoder
+
+[env:featheresp32]
+platform = espressif32
+board = featheresp32
+custom_variant = featheresp32
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_HUZZAH32
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:seeed_xiao_esp32s3]
+platform = espressif32
+board = seeed_xiao_esp32s3
+custom_variant = xiao_esp32s3
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_XIAO_S3
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:generic-esp32]
+platform = espressif32
+board = esp32dev
+custom_variant = esp32_generic
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_GENERIC_ESP32
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ attermann/microReticulum
+
+[env:wiscore_rak4631]
+platform = nordicnrf52
+board = rak4630
+custom_variant = rak4631
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_src_filter = ${env.build_src_filter} +
+build_flags =
+ ${env.build_flags}
+ -I variants/rak4630
+ -fexceptions
+ -DBOARD_MODEL=BOARD_RAK4631
+ -DRNS_USE_TLSF=1
+ -DRNS_USE_ALLOCATOR=1
+lib_deps =
+ ${env.lib_deps}
+ attermann/microReticulum
+
+
+
+[env:ttgo-t-beam-local]
+platform = espressif32
+board = ttgo-t-beam
+upload_speed = 460800
+custom_variant = tbeam_local
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -fexceptions
+ -DBOARD_MODEL=BOARD_TBEAM
+ ; CBA TEST
+ ;-DUSE_FLASHFS=1
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ microReticulum=symlink://../microReticulum
+ Adafruit_SPIFlash=symlink://../Adafruit_SPIFlash
+monitor_filters = esp32_exception_decoder
+
+[env:ttgo-lora32-v21-local]
+platform = espressif32
+board = ttgo-lora32-v21
+upload_speed = 460800
+custom_variant = lora32v21_local
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_LORA32_V2_1
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ microReticulum=symlink://../microReticulum
+monitor_filters = esp32_exception_decoder
+
+[env:heltec_wifi_lora_32_V4-local]
+platform = espressif32
+board = esp32-s3-devkitc-1
+custom_variant = heltec32v4_local
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -DBOARD_MODEL=BOARD_HELTEC32_V4
+ -DARDUINO_USB_CDC_ON_BOOT=1
+lib_deps =
+ ${env.lib_deps}
+ XPowersLib@^0.2.1
+ microReticulum=symlink://../microReticulum
+monitor_filters = esp32_exception_decoder
+
+[env:wiscore_rak4631-local]
+platform = nordicnrf52
+board = rak4630
+custom_variant = rak4631_local
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_src_filter = ${env.build_src_filter} +
+build_flags =
+ ${env.build_flags}
+ -I variants/rak4630
+ -fexceptions
+ -DBOARD_MODEL=BOARD_RAK4631
+ ; CBA TEST
+ -DRNS_USE_TLSF=1
+ -DRNS_USE_ALLOCATOR=1
+ ;-DUSE_FLASHFS=1
+build_unflags = -fno-exceptions
+lib_deps =
+ ${env.lib_deps}
+ microReticulum=symlink://../microReticulum
+ Adafruit_SPIFlash=symlink://../Adafruit_SPIFlash
+
+[env:heltec_t114_local]
+;upload_port = /dev/cu.usbmodem1101
+platform = nordicnrf52
+board = nrf52840_dk_adafruit
+custom_variant = heltec_t114_local
+board_build.partitions = no_ota.csv
+board_build.filesystem = littlefs
+build_flags =
+ ${env.build_flags}
+ -fexceptions
+ -DBOARD_MODEL=BOARD_HELTEC_T114
+ ; CBA TEST
+ -DRNS_USE_TLSF=1
+ -DRNS_USE_ALLOCATOR=1
+build_unflags = -fno-exceptions
+lib_deps =
+ ${env.lib_deps}
+ https://github.com/liamcottle/esp8266-oled-ssd1306#e16cee124fe26490cb14880c679321ad8ac89c95
+ adafruit/Adafruit NeoPixel@^1.12.0
+ microReticulum=symlink://../microReticulum
diff --git a/rnodethv3.log b/rnodethv3.log
new file mode 100644
index 0000000..a0128dc
--- /dev/null
+++ b/rnodethv3.log
@@ -0,0 +1,2841 @@
+01:46:01.397 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=10 phl=9)
+01:46:01.400 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=172892 pin=152 bma=10 phl=10 lt=0 revr=0)
+01:46:01.681 [VRB] mem: 173748 (54%) [-2324] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:46:01.683 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 9 cdsts: 2 chshs: 2
+01:46:01.684 [VRB] phl: 10 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:46:01.684 [VRB] bla: 0 bma: 10
+01:46:01.685 [VRB] pin: 152 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:46:17.770 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=11 phl=10)
+01:46:17.773 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=172604 pin=176 bma=11 phl=11 lt=0 revr=0)
+01:46:21.362 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=12 phl=11)
+01:46:21.365 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=171760 pin=178 bma=12 phl=12 lt=0 revr=0)
+01:46:21.370 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=13 phl=12)
+01:46:21.373 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=171300 pin=179 bma=13 phl=13 lt=0 revr=0)
+01:46:31.505 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=14 phl=13)
+01:46:31.508 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=171036 pin=185 bma=14 phl=14 lt=0 revr=0)
+01:46:41.855 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=15 phl=14)
+01:46:41.858 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=170548 pin=198 bma=15 phl=15 lt=0 revr=0)
+01:46:46.846 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=16 phl=15)
+01:46:46.849 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=170104 pin=203 bma=16 phl=16 lt=0 revr=0)
+01:46:51.969 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=17 phl=16)
+01:46:51.972 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=169648 pin=207 bma=17 phl=17 lt=0 revr=0)
+01:47:17.381 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=18 phl=17)
+01:47:17.384 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=169192 pin=234 bma=18 phl=18 lt=0 revr=0)
+01:47:17.682 [VRB] mem: 170060 (53%) [-3688] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:47:17.684 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 17 cdsts: 2 chshs: 2
+01:47:17.685 [VRB] phl: 18 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:47:17.685 [VRB] bla: 0 bma: 18
+01:47:17.686 [VRB] pin: 234 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:47:19.727 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=19 phl=18)
+01:47:19.730 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=168716 pin=235 bma=19 phl=19 lt=0 revr=0)
+01:47:25.912 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=20 phl=19)
+01:47:25.915 [VRB] [HEAP-TEL] inbound: -796 bytes (heap=168300 pin=241 bma=20 phl=20 lt=0 revr=0)
+01:47:32.829 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=21 phl=20)
+01:47:32.832 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=167988 pin=251 bma=21 phl=21 lt=0 revr=0)
+01:47:50.810 [VRB] [HEAP-TEL] jobs: 140 bytes (heap=168676)
+01:48:40.935 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=22 phl=21)
+01:48:40.938 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=167536 pin=298 bma=22 phl=22 lt=0 revr=0)
+01:48:41.159 [VRB] mem: 168224 (52%) [-1836] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:48:41.161 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 21 cdsts: 2 chshs: 2
+01:48:41.162 [VRB] phl: 22 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:48:41.162 [VRB] bla: 0 bma: 22
+01:48:41.163 [VRB] pin: 298 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:48:58.118 [VRB] [HEAP-TEL] jobs: -2328 bytes (heap=165896)
+01:49:55.992 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=23 phl=22)
+01:49:55.995 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=166896 pin=368 bma=23 phl=23 lt=0 revr=0)
+01:49:56.130 [VRB] mem: 167752 (52%) [-472] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:49:56.132 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 22 cdsts: 2 chshs: 2
+01:49:56.132 [VRB] phl: 23 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:49:56.133 [VRB] bla: 0 bma: 23
+01:49:56.134 [VRB] pin: 368 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:50:24.861 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=24 phl=23)
+01:50:24.864 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=166608 pin=391 bma=24 phl=24 lt=0 revr=0)
+01:50:50.991 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=25 phl=24)
+01:50:50.994 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=166152 pin=416 bma=25 phl=25 lt=0 revr=0)
+01:51:04.533 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=26 phl=25)
+01:51:04.536 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=165700 pin=426 bma=26 phl=26 lt=0 revr=0)
+01:51:04.829 [VRB] mem: 166388 (52%) [-1364] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:51:04.831 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 25 cdsts: 2 chshs: 2
+01:51:04.832 [VRB] phl: 26 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:51:04.833 [VRB] bla: 0 bma: 26
+01:51:04.833 [VRB] pin: 426 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:51:11.069 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=27 phl=26)
+01:51:11.072 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=165064 pin=434 bma=27 phl=27 lt=0 revr=0)
+01:51:26.409 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=28 phl=27)
+01:51:26.412 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=164604 pin=445 bma=28 phl=28 lt=0 revr=0)
+01:52:26.435 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=29 phl=28)
+01:52:26.438 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=164136 pin=502 bma=29 phl=29 lt=0 revr=0)
+01:52:27.380 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=30 phl=29)
+01:52:27.383 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=163660 pin=505 bma=30 phl=30 lt=0 revr=0)
+01:52:27.501 [VRB] mem: 164532 (51%) [-1856] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:52:27.503 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 29 cdsts: 2 chshs: 2
+01:52:27.504 [VRB] phl: 30 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:52:27.504 [VRB] bla: 0 bma: 30
+01:52:27.505 [VRB] pin: 505 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:52:34.923 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=31 phl=30)
+01:52:34.926 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=163220 pin=508 bma=31 phl=31 lt=0 revr=0)
+01:52:47.816 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=32 phl=31)
+01:52:47.819 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=162748 pin=522 bma=32 phl=32 lt=0 revr=0)
+01:53:11.859 [VRB] [HEAP-TEL] jobs: -2328 bytes (heap=161292)
+01:53:41.093 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=33 phl=32)
+01:53:41.096 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=162308 pin=614 bma=33 phl=33 lt=0 revr=0)
+01:53:41.371 [VRB] mem: 163164 (51%) [-1368] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:53:41.373 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+01:53:41.374 [VRB] phl: 33 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:53:41.375 [VRB] bla: 0 bma: 33
+01:53:41.375 [VRB] pin: 614 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:54:00.225 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=34 phl=33)
+01:54:00.228 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=161852 pin=651 bma=34 phl=34 lt=0 revr=0)
+01:54:00.396 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=162864)
+01:54:05.335 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=35 phl=34)
+01:54:05.338 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=161516 pin=657 bma=35 phl=35 lt=0 revr=0)
+01:54:05.347 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=162544)
+01:54:20.496 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=36 phl=35)
+01:54:20.499 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=161216 pin=669 bma=36 phl=36 lt=0 revr=0)
+01:54:20.506 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=162228)
+01:54:22.141 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=37 phl=36)
+01:54:22.144 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=160904 pin=671 bma=37 phl=37 lt=0 revr=0)
+01:54:22.356 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=161916)
+01:54:56.066 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=38 phl=37)
+01:54:56.069 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=160588 pin=722 bma=38 phl=38 lt=0 revr=0)
+01:54:56.292 [VRB] mem: 161588 (51%) [-1576] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:54:56.294 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+01:54:56.295 [VRB] phl: 38 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:54:56.295 [VRB] bla: 0 bma: 38
+01:54:56.296 [VRB] pin: 722 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:54:56.297 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=161588)
+01:54:57.473 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=39 phl=38)
+01:54:57.476 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=160436 pin=724 bma=39 phl=39 lt=0 revr=0)
+01:54:57.553 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=161280)
+01:55:04.833 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=40 phl=39)
+01:55:04.836 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=160108 pin=732 bma=40 phl=40 lt=0 revr=0)
+01:55:04.873 [VRB] [HEAP-TEL] jobs: 180 bytes (heap=160976)
+01:55:14.356 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=41 phl=40)
+01:55:14.359 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=159800 pin=747 bma=41 phl=41 lt=0 revr=0)
+01:55:14.526 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=160644)
+01:55:27.472 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=42 phl=41)
+01:55:27.475 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=159320 pin=768 bma=42 phl=42 lt=0 revr=0)
+01:55:27.576 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=160332)
+01:55:31.229 [VRB] [HEAP-TEL] jobs: -148 bytes (heap=157856)
+01:55:50.500 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=43 phl=42)
+01:55:50.503 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=159028 pin=805 bma=43 phl=43 lt=0 revr=0)
+01:55:50.558 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=159880)
+01:55:57.575 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=44 phl=43)
+01:55:57.578 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=158716 pin=816 bma=44 phl=44 lt=0 revr=0)
+01:55:57.680 [VRB] mem: 159716 (50%) [-1872] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:55:57.682 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+01:55:57.683 [VRB] phl: 44 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:55:57.684 [VRB] bla: 0 bma: 44
+01:55:57.684 [VRB] pin: 816 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:55:57.685 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=159716)
+01:56:05.054 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=45 phl=44)
+01:56:05.057 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=158388 pin=830 bma=45 phl=45 lt=0 revr=0)
+01:56:05.211 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=159408)
+01:56:11.087 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=46 phl=45)
+01:56:11.090 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=158112 pin=845 bma=46 phl=46 lt=0 revr=0)
+01:56:11.205 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=159112)
+01:56:27.590 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=47 phl=46)
+01:56:27.593 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=157592 pin=870 bma=47 phl=47 lt=0 revr=0)
+01:56:27.631 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=158800)
+01:56:28.948 [VRB] [HEAP-TEL] boundary: -656 bytes (bma=47 phl=47)
+01:56:28.951 [VRB] [HEAP-TEL] inbound: -812 bytes (heap=157688 pin=874 bma=47 phl=47 lt=0 revr=0)
+01:56:28.954 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=158800)
+01:56:31.581 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=48 phl=47)
+01:56:31.585 [VRB] [HEAP-TEL] inbound: -824 bytes (heap=157456 pin=878 bma=48 phl=48 lt=0 revr=0)
+01:56:31.809 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=158480)
+01:56:50.415 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=49 phl=48)
+01:56:50.418 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=157136 pin=901 bma=49 phl=49 lt=0 revr=0)
+01:56:50.622 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=157948)
+01:56:57.689 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=50 phl=49)
+01:56:57.691 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=156844 pin=910 bma=50 phl=50 lt=0 revr=0)
+01:56:57.708 [VRB] mem: 157844 (50%) [-1872] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:56:57.710 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+01:56:57.711 [VRB] phl: 50 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:56:57.712 [VRB] bla: 0 bma: 50
+01:56:57.712 [VRB] pin: 910 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:56:57.713 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=157844)
+01:57:02.083 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=51 phl=50)
+01:57:02.086 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=156520 pin=916 bma=51 phl=51 lt=0 revr=0)
+01:57:02.118 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=157540)
+01:57:05.875 [VRB] [HEAP-TEL] boundary: -836 bytes (bma=52 phl=51)
+01:57:05.878 [VRB] [HEAP-TEL] inbound: -1040 bytes (heap=156232 pin=918 bma=52 phl=52 lt=0 revr=0)
+01:57:10.785 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=53 phl=52)
+01:57:10.788 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=155772 pin=925 bma=53 phl=53 lt=0 revr=0)
+01:57:11.000 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=156936)
+01:57:26.071 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=54 phl=53)
+01:57:26.074 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=155636 pin=941 bma=54 phl=54 lt=0 revr=0)
+01:57:26.143 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=156640)
+01:57:27.814 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=55 phl=54)
+01:57:27.817 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=155316 pin=942 bma=55 phl=55 lt=0 revr=0)
+01:57:32.097 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=56 phl=55)
+01:57:32.100 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=154796 pin=947 bma=56 phl=56 lt=0 revr=0)
+01:57:33.218 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=57 phl=56)
+01:57:33.221 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=154164 pin=949 bma=57 phl=57 lt=0 revr=0)
+01:57:33.226 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=58 phl=57)
+01:57:33.229 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=153712 pin=950 bma=58 phl=58 lt=0 revr=0)
+01:57:33.233 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=155180)
+01:57:35.164 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=59 phl=58)
+01:57:35.167 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=154240 pin=952 bma=59 phl=59 lt=0 revr=0)
+01:57:35.307 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=155084)
+01:57:41.016 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=60 phl=59)
+01:57:41.019 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=153760 pin=958 bma=60 phl=60 lt=0 revr=0)
+01:57:41.056 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=154772)
+01:57:53.282 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=61 phl=60)
+01:57:53.285 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=153468 pin=975 bma=61 phl=61 lt=0 revr=0)
+01:57:53.321 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=154468)
+01:57:53.596 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=62 phl=61)
+01:57:53.599 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=153156 pin=976 bma=62 phl=62 lt=0 revr=0)
+01:57:53.601 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=154156)
+01:57:57.693 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=63 phl=62)
+01:57:57.696 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=152616 pin=984 bma=63 phl=63 lt=0 revr=0)
+01:57:57.799 [VRB] mem: 153692 (49%) [-4152] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:57:57.800 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+01:57:57.801 [VRB] phl: 63 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:57:57.802 [VRB] bla: 0 bma: 63
+01:57:57.802 [VRB] pin: 984 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:57:57.803 [VRB] [HEAP-TEL] jobs: 296 bytes (heap=153832)
+01:58:27.711 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=64 phl=63)
+01:58:27.714 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=152520 pin=1013 bma=64 phl=64 lt=0 revr=0)
+01:58:27.785 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=153532)
+01:58:35.275 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=65 phl=64)
+01:58:35.278 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=152192 pin=1016 bma=65 phl=65 lt=0 revr=0)
+01:58:35.368 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=153228)
+01:58:41.129 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=66 phl=65)
+01:58:41.132 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=151872 pin=1022 bma=66 phl=66 lt=0 revr=0)
+01:58:41.363 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=152904)
+01:58:47.638 [VRB] [HEAP-TEL] jobs: -140 bytes (heap=150436)
+01:58:50.426 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=67 phl=66)
+01:58:50.429 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=151584 pin=1032 bma=67 phl=67 lt=0 revr=0)
+01:58:50.519 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=152596)
+01:58:57.830 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=68 phl=67)
+01:58:57.833 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=151288 pin=1042 bma=68 phl=68 lt=0 revr=0)
+01:58:57.869 [VRB] mem: 152288 (48%) [-1404] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:58:57.871 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+01:58:57.872 [VRB] phl: 68 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:58:57.873 [VRB] bla: 0 bma: 68
+01:58:57.873 [VRB] pin: 1042 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:58:57.874 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=152288)
+01:59:00.664 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=69 phl=68)
+01:59:00.667 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=151128 pin=1044 bma=69 phl=69 lt=0 revr=0)
+01:59:00.691 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=151972)
+01:59:23.516 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=70 phl=69)
+01:59:23.519 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=150648 pin=1059 bma=70 phl=70 lt=0 revr=0)
+01:59:23.675 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=151660)
+01:59:27.916 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=71 phl=70)
+01:59:27.919 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=150500 pin=1062 bma=71 phl=71 lt=0 revr=0)
+01:59:28.130 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=151344)
+01:59:35.093 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=72 phl=71)
+01:59:35.096 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=150016 pin=1068 bma=72 phl=72 lt=0 revr=0)
+01:59:35.166 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=151028)
+01:59:48.400 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=73 phl=72)
+01:59:48.403 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=149708 pin=1086 bma=73 phl=73 lt=0 revr=0)
+01:59:48.498 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=148732)
+01:59:53.731 [VRB] [HEAP-TEL] boundary: -704 bytes (bma=74 phl=73)
+01:59:53.735 [VRB] [HEAP-TEL] inbound: -708 bytes (heap=149400 pin=1091 bma=74 phl=74 lt=0 revr=0)
+01:59:56.180 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=75 phl=74)
+01:59:56.183 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=149112 pin=1097 bma=75 phl=75 lt=0 revr=0)
+01:59:56.329 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=150112)
+01:59:58.016 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=76 phl=75)
+01:59:58.019 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=148776 pin=1100 bma=76 phl=76 lt=0 revr=0)
+01:59:58.203 [VRB] mem: 149796 (48%) [-2492] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+01:59:58.205 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+01:59:58.206 [VRB] phl: 76 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+01:59:58.207 [VRB] bla: 0 bma: 76
+01:59:58.207 [VRB] pin: 1100 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+01:59:58.208 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=149796)
+02:00:03.850 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=77 phl=76)
+02:00:03.853 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=148644 pin=1104 bma=77 phl=77 lt=0 revr=0)
+02:00:03.910 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=149488)
+02:00:14.103 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=78 phl=77)
+02:00:14.106 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=148168 pin=1117 bma=78 phl=78 lt=0 revr=0)
+02:00:14.109 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=149188)
+02:00:19.225 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=79 phl=78)
+02:00:19.228 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=147860 pin=1125 bma=79 phl=79 lt=0 revr=0)
+02:00:19.338 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=148872)
+02:00:28.016 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=80 phl=79)
+02:00:28.019 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=147552 pin=1135 bma=80 phl=80 lt=0 revr=0)
+02:00:28.156 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=148552)
+02:00:34.571 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=81 phl=80)
+02:00:34.574 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=147236 pin=1141 bma=81 phl=81 lt=0 revr=0)
+02:00:34.695 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=148248)
+02:00:54.961 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=82 phl=81)
+02:00:54.964 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=146940 pin=1163 bma=82 phl=82 lt=0 revr=0)
+02:00:55.062 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=147940)
+02:00:56.108 [VRB] [HEAP-TEL] jobs: 120 bytes (heap=147624)
+02:00:58.034 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=83 phl=82)
+02:00:58.037 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=146632 pin=1166 bma=83 phl=83 lt=0 revr=0)
+02:01:11.262 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=84 phl=83)
+02:01:11.265 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=146152 pin=1195 bma=84 phl=84 lt=0 revr=0)
+02:01:11.321 [VRB] mem: 147320 (47%) [-2476] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:01:11.323 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:01:11.324 [VRB] phl: 84 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:01:11.324 [VRB] bla: 0 bma: 84
+02:01:11.325 [VRB] pin: 1195 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:01:11.326 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=147320)
+02:01:28.165 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=85 phl=84)
+02:01:28.170 [VRB] [HEAP-TEL] inbound: -800 bytes (heap=145800 pin=1221 bma=85 phl=85 lt=0 revr=0)
+02:01:41.256 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=86 phl=85)
+02:01:41.259 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=145696 pin=1256 bma=86 phl=86 lt=0 revr=0)
+02:01:41.394 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=146704)
+02:02:27.322 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=87 phl=86)
+02:02:27.325 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=145396 pin=1324 bma=87 phl=87 lt=0 revr=0)
+02:02:27.448 [VRB] mem: 146400 (47%) [-920] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:02:27.450 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:02:27.451 [VRB] phl: 87 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:02:27.452 [VRB] bla: 0 bma: 87
+02:02:27.452 [VRB] pin: 1324 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:02:27.453 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=146400)
+02:02:32.435 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=88 phl=87)
+02:02:32.438 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=142680 pin=1327 bma=88 phl=88 lt=0 revr=0)
+02:02:32.444 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=89 phl=88)
+02:02:32.448 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=144588 pin=1328 bma=89 phl=89 lt=0 revr=0)
+02:02:32.680 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=145796)
+02:02:49.550 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=90 phl=89)
+02:02:49.553 [VRB] [HEAP-TEL] inbound: -812 bytes (heap=144464 pin=1345 bma=90 phl=90 lt=0 revr=0)
+02:02:49.673 [VRB] [HEAP-TEL] jobs: 164 bytes (heap=145484)
+02:03:02.954 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=91 phl=90)
+02:03:02.957 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=144176 pin=1356 bma=91 phl=91 lt=0 revr=0)
+02:03:02.985 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=145188)
+02:03:33.792 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=92 phl=91)
+02:03:33.795 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=143860 pin=1414 bma=92 phl=92 lt=0 revr=0)
+02:03:33.878 [VRB] mem: 144860 (46%) [-1540] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:03:33.880 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:03:33.881 [VRB] phl: 92 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:03:33.882 [VRB] bla: 0 bma: 92
+02:03:33.883 [VRB] pin: 1414 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:03:33.885 [VRB] [HEAP-TEL] jobs: -192 bytes (heap=144512)
+02:03:41.253 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=93 phl=92)
+02:03:41.256 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=143716 pin=1421 bma=93 phl=93 lt=0 revr=0)
+02:03:41.413 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=144560)
+02:03:42.807 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=94 phl=93)
+02:03:42.812 [VRB] [HEAP-TEL] inbound: -3736 bytes (heap=140508 pin=1422 bma=94 phl=94 lt=0 revr=0)
+02:03:46.360 [VRB] [HEAP-TEL] jobs: -2328 bytes (heap=141764)
+02:04:02.248 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=95 phl=94)
+02:04:02.251 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=142732 pin=1443 bma=95 phl=95 lt=0 revr=0)
+02:04:04.392 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=96 phl=95)
+02:04:04.395 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=142328 pin=1447 bma=96 phl=96 lt=0 revr=0)
+02:04:12.076 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=97 phl=96)
+02:04:12.079 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=141840 pin=1454 bma=97 phl=97 lt=0 revr=0)
+02:04:12.218 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=143112)
+02:04:37.801 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=98 phl=97)
+02:04:37.804 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=142008 pin=1483 bma=98 phl=98 lt=0 revr=0)
+02:04:38.033 [VRB] mem: 143020 (46%) [-1840] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:04:38.035 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:04:38.036 [VRB] phl: 98 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:04:38.036 [VRB] bla: 0 bma: 98
+02:04:38.037 [VRB] pin: 1483 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:04:38.038 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=143020)
+02:04:51.516 [VRB] [HEAP-TEL] boundary: -604 bytes (bma=99 phl=98)
+02:04:51.519 [VRB] [HEAP-TEL] inbound: -808 bytes (heap=141856 pin=1503 bma=99 phl=99 lt=0 revr=0)
+02:04:51.601 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=142704)
+02:04:56.320 [VRB] [HEAP-TEL] boundary: -1132 bytes (bma=100 phl=99)
+02:04:56.326 [VRB] [HEAP-TEL] inbound: -5636 bytes (heap=134376 pin=1515 bma=100 phl=100 lt=0 revr=0)
+02:04:57.033 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=101 phl=100)
+02:04:57.036 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=140900 pin=1520 bma=101 phl=101 lt=0 revr=0)
+02:04:57.076 [VRB] [HEAP-TEL] jobs: 484 bytes (heap=142156)
+02:04:58.460 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=102 phl=100)
+02:04:58.463 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=140712 pin=1523 bma=102 phl=101 lt=0 revr=0)
+02:04:58.468 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=103 phl=101)
+02:04:58.472 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=140240 pin=1524 bma=103 phl=102 lt=0 revr=0)
+02:04:58.643 [VRB] [HEAP-TEL] jobs: 628 bytes (heap=141948)
+02:05:03.623 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=104 phl=100)
+02:05:03.626 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=140612 pin=1531 bma=104 phl=101 lt=0 revr=0)
+02:05:03.639 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=105 phl=101)
+02:05:03.642 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=140160 pin=1534 bma=105 phl=102 lt=0 revr=0)
+02:05:03.645 [VRB] [HEAP-TEL] jobs: 652 bytes (heap=141684)
+02:05:34.401 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=106 phl=100)
+02:05:34.404 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=140348 pin=1578 bma=106 phl=101 lt=0 revr=0)
+02:05:34.448 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=141532)
+02:06:04.928 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=107 phl=100)
+02:06:04.931 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=140192 pin=1618 bma=107 phl=101 lt=0 revr=0)
+02:06:05.026 [VRB] mem: 141376 (45%) [-1644] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:06:05.027 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:06:05.028 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:06:05.029 [VRB] bla: 0 bma: 107
+02:06:05.029 [VRB] pin: 1618 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:06:05.030 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=141376)
+02:06:11.264 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=108 phl=100)
+02:06:11.267 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=140048 pin=1630 bma=108 phl=101 lt=0 revr=0)
+02:06:11.270 [VRB] [HEAP-TEL] jobs: 328 bytes (heap=141232)
+02:06:35.946 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=109 phl=100)
+02:06:35.949 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=139920 pin=1644 bma=109 phl=101 lt=0 revr=0)
+02:06:36.085 [VRB] [HEAP-TEL] jobs: 324 bytes (heap=141096)
+02:06:40.966 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=110 phl=100)
+02:06:40.969 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=139768 pin=1651 bma=110 phl=101 lt=0 revr=0)
+02:06:41.034 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=140932)
+02:06:56.231 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=111 phl=100)
+02:06:56.234 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=139564 pin=1668 bma=111 phl=101 lt=0 revr=0)
+02:06:56.453 [VRB] [HEAP-TEL] jobs: 324 bytes (heap=140784)
+02:07:06.395 [VRB] [HEAP-TEL] boundary: -836 bytes (bma=112 phl=100)
+02:07:06.398 [VRB] [HEAP-TEL] inbound: -1040 bytes (heap=139444 pin=1680 bma=112 phl=101 lt=0 revr=0)
+02:07:06.436 [VRB] mem: 140616 (45%) [-760] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:07:06.437 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:07:06.438 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:07:06.439 [VRB] bla: 0 bma: 112
+02:07:06.440 [VRB] pin: 1680 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:07:06.441 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=140616)
+02:07:16.497 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=113 phl=100)
+02:07:16.500 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=139284 pin=1687 bma=113 phl=101 lt=0 revr=0)
+02:07:16.656 [VRB] [HEAP-TEL] jobs: 344 bytes (heap=140460)
+02:07:26.332 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=114 phl=100)
+02:07:26.335 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=139136 pin=1701 bma=114 phl=101 lt=0 revr=0)
+02:07:26.530 [VRB] [HEAP-TEL] jobs: 332 bytes (heap=140336)
+02:07:26.741 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=115 phl=100)
+02:07:26.744 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=139008 pin=1702 bma=115 phl=101 lt=0 revr=0)
+02:07:26.801 [VRB] [HEAP-TEL] jobs: 324 bytes (heap=140192)
+02:07:36.896 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=116 phl=100)
+02:07:36.899 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=138860 pin=1712 bma=116 phl=101 lt=0 revr=0)
+02:07:36.904 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=117 phl=101)
+02:07:36.907 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=138396 pin=1713 bma=117 phl=102 lt=0 revr=0)
+02:07:36.969 [VRB] [HEAP-TEL] jobs: 636 bytes (heap=139892)
+02:08:07.704 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=118 phl=100)
+02:08:07.707 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=138564 pin=1744 bma=118 phl=101 lt=0 revr=0)
+02:08:07.789 [VRB] mem: 139720 (45%) [-896] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:08:07.790 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:08:07.791 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:08:07.792 [VRB] bla: 0 bma: 118
+02:08:07.793 [VRB] pin: 1744 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:08:07.794 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=139720)
+02:08:22.896 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=119 phl=100)
+02:08:22.899 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=138412 pin=1756 bma=119 phl=101 lt=0 revr=0)
+02:08:22.902 [VRB] [HEAP-TEL] jobs: 336 bytes (heap=139592)
+02:08:28.289 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=120 phl=100)
+02:08:28.292 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=138264 pin=1761 bma=120 phl=101 lt=0 revr=0)
+02:08:28.363 [VRB] [HEAP-TEL] jobs: -1996 bytes (heap=137112)
+02:08:38.217 [VRB] [HEAP-TEL] boundary: -916 bytes (bma=121 phl=100)
+02:08:38.221 [VRB] [HEAP-TEL] inbound: -1240 bytes (heap=137900 pin=1770 bma=121 phl=101 lt=0 revr=0)
+02:08:38.285 [VRB] [HEAP-TEL] jobs: 324 bytes (heap=139276)
+02:08:39.850 [VRB] [HEAP-TEL] jobs: 80 bytes (heap=139276)
+02:08:41.604 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=122 phl=100)
+02:08:41.607 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=138124 pin=1774 bma=122 phl=101 lt=0 revr=0)
+02:08:41.692 [VRB] [HEAP-TEL] jobs: 268 bytes (heap=136612)
+02:09:03.831 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=123 phl=100)
+02:09:03.834 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=137792 pin=1801 bma=123 phl=101 lt=0 revr=0)
+02:09:03.875 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=138968)
+02:09:05.889 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=124 phl=100)
+02:09:05.892 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=137660 pin=1803 bma=124 phl=101 lt=0 revr=0)
+02:09:05.962 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=138836)
+02:09:08.851 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=125 phl=100)
+02:09:08.854 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=137496 pin=1808 bma=125 phl=101 lt=0 revr=0)
+02:09:08.911 [VRB] mem: 138716 (45%) [-1004] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:09:08.913 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:09:08.914 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:09:08.914 [VRB] bla: 0 bma: 125
+02:09:08.915 [VRB] pin: 1808 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:09:08.916 [VRB] [HEAP-TEL] jobs: 344 bytes (heap=138716)
+02:09:18.848 [VRB] [HEAP-TEL] jobs: -140 bytes (heap=134664)
+02:09:19.089 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=126 phl=100)
+02:09:19.092 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=137364 pin=1818 bma=126 phl=101 lt=0 revr=0)
+02:09:19.129 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=138548)
+02:09:24.304 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=127 phl=100)
+02:09:24.307 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=137224 pin=1824 bma=127 phl=101 lt=0 revr=0)
+02:09:24.351 [VRB] [HEAP-TEL] jobs: 328 bytes (heap=138280)
+02:09:42.354 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=128 phl=100)
+02:09:42.358 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=137060 pin=1840 bma=128 phl=101 lt=0 revr=0)
+02:09:42.362 [VRB] [HEAP-TEL] jobs: 328 bytes (heap=138284)
+02:09:56.378 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=129 phl=100)
+02:09:56.381 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=136944 pin=1852 bma=129 phl=101 lt=0 revr=0)
+02:09:56.452 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=138124)
+02:09:57.601 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=130 phl=100)
+02:09:57.604 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=136788 pin=1854 bma=130 phl=101 lt=0 revr=0)
+02:09:57.772 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=137984)
+02:10:05.671 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=131 phl=100)
+02:10:05.674 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=136820 pin=1856 bma=131 phl=101 lt=0 revr=0)
+02:10:05.859 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=137820)
+02:10:07.725 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=132 phl=100)
+02:10:07.728 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=136496 pin=1858 bma=132 phl=101 lt=0 revr=0)
+02:10:07.949 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=137456)
+02:10:09.056 [VRB] mem: 137664 (44%) [-1052] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:10:09.058 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:10:09.059 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:10:09.059 [VRB] bla: 0 bma: 132
+02:10:09.060 [VRB] pin: 1858 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:10:12.936 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=133 phl=100)
+02:10:12.939 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=136352 pin=1861 bma=133 phl=101 lt=0 revr=0)
+02:10:51.341 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=134 phl=101)
+02:10:51.344 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=135896 pin=1911 bma=134 phl=102 lt=0 revr=0)
+02:10:51.599 [VRB] [HEAP-TEL] jobs: 640 bytes (heap=137380)
+02:11:11.331 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=135 phl=100)
+02:11:11.334 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=136020 pin=1945 bma=135 phl=101 lt=0 revr=0)
+02:11:11.528 [VRB] mem: 137248 (44%) [-416] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:11:11.530 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:11:11.531 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:11:11.531 [VRB] bla: 0 bma: 135
+02:11:11.532 [VRB] pin: 1945 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:11:11.533 [VRB] [HEAP-TEL] jobs: 124 bytes (heap=137040)
+02:11:34.667 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=136 phl=100)
+02:11:34.670 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=135924 pin=1965 bma=136 phl=101 lt=0 revr=0)
+02:11:34.822 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=137104)
+02:11:35.966 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=137 phl=100)
+02:11:35.969 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=135356 pin=1969 bma=137 phl=101 lt=0 revr=0)
+02:11:36.117 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=136956)
+02:11:55.033 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=138 phl=100)
+02:11:55.036 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=135632 pin=1986 bma=138 phl=101 lt=0 revr=0)
+02:11:55.193 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=136820)
+02:11:59.376 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=139 phl=100)
+02:11:59.379 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=135292 pin=1989 bma=139 phl=101 lt=0 revr=0)
+02:11:59.383 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=136468)
+02:12:26.478 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=140 phl=100)
+02:12:26.481 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=135504 pin=2009 bma=140 phl=101 lt=0 revr=0)
+02:12:26.578 [VRB] mem: 136528 (44%) [-720] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:12:26.580 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:12:26.581 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:12:26.582 [VRB] bla: 0 bma: 140
+02:12:26.582 [VRB] pin: 2009 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:12:26.583 [VRB] [HEAP-TEL] jobs: 336 bytes (heap=136528)
+02:13:16.034 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=141 phl=100)
+02:13:16.037 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=135204 pin=2046 bma=141 phl=101 lt=0 revr=0)
+02:13:16.104 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=136384)
+02:13:31.608 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=142 phl=100)
+02:13:31.611 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=135224 pin=2061 bma=142 phl=101 lt=0 revr=0)
+02:13:31.787 [VRB] mem: 135888 (44%) [-640] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:13:31.789 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:13:31.790 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:13:31.791 [VRB] bla: 0 bma: 142
+02:13:31.791 [VRB] pin: 2061 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:13:31.792 [VRB] [HEAP-TEL] jobs: 568 bytes (heap=136028)
+02:13:39.067 [VRB] [HEAP-TEL] jobs: 80 bytes (heap=136236)
+02:13:41.435 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=143 phl=100)
+02:13:41.438 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=135068 pin=2068 bma=143 phl=101 lt=0 revr=0)
+02:13:41.683 [VRB] [HEAP-TEL] jobs: 324 bytes (heap=136080)
+02:13:41.783 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=144 phl=100)
+02:13:41.786 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=134768 pin=2069 bma=144 phl=101 lt=0 revr=0)
+02:13:41.954 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=135940)
+02:13:51.576 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=145 phl=100)
+02:13:51.579 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=134792 pin=2080 bma=145 phl=101 lt=0 revr=0)
+02:13:51.605 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=135800)
+02:14:56.500 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=146 phl=100)
+02:14:56.503 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=134472 pin=2138 bma=146 phl=101 lt=0 revr=0)
+02:14:56.677 [VRB] mem: 135660 (44%) [-228] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:14:56.679 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:14:56.680 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:14:56.681 [VRB] bla: 0 bma: 146
+02:14:56.681 [VRB] pin: 2138 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:14:56.682 [VRB] [HEAP-TEL] jobs: 332 bytes (heap=135660)
+02:15:02.849 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=147 phl=100)
+02:15:02.852 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=134344 pin=2140 bma=147 phl=101 lt=0 revr=0)
+02:15:02.901 [VRB] [HEAP-TEL] jobs: 324 bytes (heap=135524)
+02:15:06.225 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=148 phl=100)
+02:15:06.228 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=134188 pin=2145 bma=148 phl=101 lt=0 revr=0)
+02:15:06.290 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=135356)
+02:15:16.487 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=149 phl=100)
+02:15:16.490 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=134016 pin=2158 bma=149 phl=101 lt=0 revr=0)
+02:15:16.492 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=135204)
+02:15:23.461 [VRB] [HEAP-TEL] boundary: -1128 bytes (bma=150 phl=100)
+02:15:23.465 [VRB] [HEAP-TEL] inbound: -1240 bytes (heap=133664 pin=2167 bma=150 phl=101 lt=0 revr=0)
+02:15:23.533 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=135052)
+02:15:46.775 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=151 phl=100)
+02:15:46.778 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=133512 pin=2190 bma=151 phl=101 lt=0 revr=0)
+02:15:46.999 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=134696)
+02:15:59.028 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=152 phl=100)
+02:15:59.031 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=132928 pin=2207 bma=152 phl=101 lt=0 revr=0)
+02:15:59.036 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=153 phl=101)
+02:15:59.040 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=132468 pin=2208 bma=153 phl=102 lt=0 revr=0)
+02:15:59.311 [VRB] mem: 134596 (44%) [-1064] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:15:59.313 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:15:59.314 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:15:59.315 [VRB] bla: 0 bma: 153
+02:15:59.315 [VRB] pin: 2208 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:15:59.316 [VRB] [HEAP-TEL] jobs: 636 bytes (heap=134596)
+02:16:11.493 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=154 phl=100)
+02:16:11.496 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=133048 pin=2224 bma=154 phl=101 lt=0 revr=0)
+02:16:11.550 [VRB] [HEAP-TEL] jobs: 324 bytes (heap=134240)
+02:16:36.340 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=155 phl=100)
+02:16:36.343 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=133108 pin=2236 bma=155 phl=101 lt=0 revr=0)
+02:16:36.352 [VRB] [HEAP-TEL] jobs: 328 bytes (heap=134304)
+02:16:39.821 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=156 phl=100)
+02:16:39.824 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=132980 pin=2242 bma=156 phl=101 lt=0 revr=0)
+02:16:40.009 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=134152)
+02:17:00.200 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=157 phl=100)
+02:17:00.203 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=132832 pin=2262 bma=157 phl=101 lt=0 revr=0)
+02:17:00.438 [VRB] mem: 134008 (43%) [-588] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:17:00.440 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:17:00.441 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:17:00.441 [VRB] bla: 0 bma: 157
+02:17:00.442 [VRB] pin: 2262 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:17:00.443 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=134008)
+02:17:15.881 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=158 phl=100)
+02:17:15.884 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=132260 pin=2289 bma=158 phl=101 lt=0 revr=0)
+02:17:16.053 [VRB] [HEAP-TEL] jobs: 324 bytes (heap=133856)
+02:17:16.684 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=159 phl=100)
+02:17:16.687 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=132544 pin=2290 bma=159 phl=101 lt=0 revr=0)
+02:17:16.850 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=133420)
+02:17:26.610 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=160 phl=100)
+02:17:26.613 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=132392 pin=2304 bma=160 phl=101 lt=0 revr=0)
+02:17:26.780 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=133568)
+02:18:05.943 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=161 phl=100)
+02:18:05.946 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=132252 pin=2334 bma=161 phl=101 lt=0 revr=0)
+02:18:06.015 [VRB] mem: 133428 (43%) [-580] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:18:06.016 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:18:06.017 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:18:06.018 [VRB] bla: 0 bma: 161
+02:18:06.019 [VRB] pin: 2334 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:18:06.020 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=133428)
+02:18:06.200 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=162 phl=100)
+02:18:06.203 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=132116 pin=2335 bma=162 phl=101 lt=0 revr=0)
+02:18:06.289 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=133288)
+02:18:16.915 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=163 phl=100)
+02:18:16.918 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=131964 pin=2348 bma=163 phl=101 lt=0 revr=0)
+02:18:16.983 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=132788)
+02:18:36.455 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=164 phl=100)
+02:18:36.458 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=131824 pin=2359 bma=164 phl=101 lt=0 revr=0)
+02:18:36.584 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=132996)
+02:18:41.675 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=165 phl=100)
+02:18:41.678 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=131676 pin=2368 bma=165 phl=101 lt=0 revr=0)
+02:18:41.809 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=132856)
+02:18:42.290 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=166 phl=100)
+02:18:42.293 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=131536 pin=2369 bma=166 phl=101 lt=0 revr=0)
+02:18:42.331 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=132716)
+02:18:57.856 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=167 phl=100)
+02:18:57.859 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=131552 pin=2382 bma=167 phl=101 lt=0 revr=0)
+02:18:58.003 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=132560)
+02:19:01.560 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=168 phl=100)
+02:19:01.563 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=131404 pin=2385 bma=168 phl=101 lt=0 revr=0)
+02:19:01.658 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=132416)
+02:19:17.943 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=169 phl=100)
+02:19:17.946 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=130680 pin=2402 bma=169 phl=101 lt=0 revr=0)
+02:19:18.184 [VRB] mem: 129944 (42%) [-3484] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:19:18.185 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:19:18.186 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:19:18.187 [VRB] bla: 0 bma: 169
+02:19:18.188 [VRB] pin: 2402 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:19:18.188 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=132272)
+02:19:38.410 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=170 phl=100)
+02:19:38.413 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=131108 pin=2414 bma=170 phl=101 lt=0 revr=0)
+02:19:38.463 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=131980)
+02:19:56.633 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=171 phl=100)
+02:19:56.636 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=130780 pin=2433 bma=171 phl=101 lt=0 revr=0)
+02:19:56.740 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=131948)
+02:20:02.162 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=172 phl=100)
+02:20:02.165 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=130628 pin=2436 bma=172 phl=101 lt=0 revr=0)
+02:20:02.217 [VRB] [HEAP-TEL] jobs: 352 bytes (heap=131836)
+02:20:05.974 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=173 phl=100)
+02:20:05.977 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=130496 pin=2441 bma=173 phl=101 lt=0 revr=0)
+02:20:06.143 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=131324)
+02:20:32.687 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=174 phl=100)
+02:20:32.690 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=130524 pin=2463 bma=174 phl=101 lt=0 revr=0)
+02:20:32.827 [VRB] mem: 131528 (43%) [1584] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:20:32.829 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:20:32.830 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:20:32.831 [VRB] bla: 0 bma: 174
+02:20:32.831 [VRB] pin: 2463 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:20:32.832 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=131528)
+02:20:34.737 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=175 phl=100)
+02:20:34.740 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=130200 pin=2465 bma=175 phl=101 lt=0 revr=0)
+02:20:34.895 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=131368)
+02:21:03.295 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=176 phl=100)
+02:21:03.298 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=130040 pin=2496 bma=176 phl=101 lt=0 revr=0)
+02:21:03.358 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=131228)
+02:21:11.546 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=177 phl=100)
+02:21:11.549 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=129900 pin=2504 bma=177 phl=101 lt=0 revr=0)
+02:21:11.711 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=131084)
+02:21:13.338 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=178 phl=100)
+02:21:13.341 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=129760 pin=2505 bma=178 phl=101 lt=0 revr=0)
+02:21:13.551 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=130728)
+02:21:54.106 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=179 phl=100)
+02:21:54.109 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=129612 pin=2552 bma=179 phl=101 lt=0 revr=0)
+02:21:54.181 [VRB] mem: 130788 (43%) [-740] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:21:54.183 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:21:54.184 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:21:54.185 [VRB] bla: 0 bma: 179
+02:21:54.186 [VRB] pin: 2552 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:21:54.187 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=130788)
+02:22:04.456 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=180 phl=100)
+02:22:04.459 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=129640 pin=2561 bma=180 phl=101 lt=0 revr=0)
+02:22:04.601 [VRB] [HEAP-TEL] jobs: 416 bytes (heap=130304)
+02:22:22.638 [VRB] [HEAP-TEL] jobs: -2328 bytes (heap=128324)
+02:22:26.662 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=181 phl=100)
+02:22:26.665 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=129272 pin=2581 bma=181 phl=101 lt=0 revr=0)
+02:22:26.797 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=130484)
+02:22:32.695 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=182 phl=100)
+02:22:32.698 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=129340 pin=2584 bma=182 phl=101 lt=0 revr=0)
+02:22:32.813 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=130344)
+02:22:34.845 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=183 phl=100)
+02:22:34.848 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=129020 pin=2586 bma=183 phl=101 lt=0 revr=0)
+02:22:34.905 [VRB] [HEAP-TEL] jobs: 104 bytes (heap=129896)
+02:22:35.734 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=184 phl=100)
+02:22:35.737 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=129048 pin=2588 bma=184 phl=101 lt=0 revr=0)
+02:22:35.951 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=130052)
+02:22:45.005 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=185 phl=100)
+02:22:45.008 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=128724 pin=2596 bma=185 phl=101 lt=0 revr=0)
+02:22:45.080 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=129896)
+02:23:05.465 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=186 phl=100)
+02:23:05.468 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=128576 pin=2613 bma=186 phl=101 lt=0 revr=0)
+02:23:05.758 [VRB] mem: 129408 (42%) [-1380] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:23:05.760 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:23:05.761 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:23:05.762 [VRB] bla: 0 bma: 186
+02:23:05.762 [VRB] pin: 2613 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:23:05.763 [VRB] [HEAP-TEL] jobs: 464 bytes (heap=129548)
+02:23:06.491 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=187 phl=100)
+02:23:06.494 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=128220 pin=2615 bma=187 phl=101 lt=0 revr=0)
+02:23:06.517 [VRB] [HEAP-TEL] jobs: 324 bytes (heap=129620)
+02:23:42.132 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=188 phl=100)
+02:23:42.135 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=128464 pin=2642 bma=188 phl=101 lt=0 revr=0)
+02:23:42.275 [VRB] [HEAP-TEL] jobs: 324 bytes (heap=129128)
+02:23:50.933 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=189 phl=100)
+02:23:50.936 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=128324 pin=2653 bma=189 phl=101 lt=0 revr=0)
+02:23:51.153 [VRB] [HEAP-TEL] jobs: 320 bytes (heap=129332)
+02:24:01.603 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=190 phl=100)
+02:24:01.606 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=128004 pin=2658 bma=190 phl=101 lt=0 revr=0)
+02:24:01.609 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=129180)
+02:24:04.864 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=191 phl=100)
+02:24:04.867 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=127436 pin=2663 bma=191 phl=101 lt=0 revr=0)
+02:24:04.945 [VRB] [HEAP-TEL] jobs: 328 bytes (heap=129040)
+02:24:05.379 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=192 phl=100)
+02:24:05.382 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=127712 pin=2664 bma=192 phl=101 lt=0 revr=0)
+02:24:05.449 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=128892)
+02:24:06.015 [VRB] mem: 128892 (42%) [-516] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:24:06.017 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:24:06.018 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:24:06.019 [VRB] bla: 0 bma: 192
+02:24:06.019 [VRB] pin: 2664 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:24:38.867 [VRB] [HEAP-TEL] jobs: -208 bytes (heap=128596)
+02:24:57.100 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=193 phl=100)
+02:24:57.103 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=127560 pin=2706 bma=193 phl=101 lt=0 revr=0)
+02:24:57.160 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=128752)
+02:24:57.310 [VRB] [HEAP-TEL] boundary: -612 bytes (bma=194 phl=100)
+02:24:57.315 [VRB] [HEAP-TEL] inbound: -3184 bytes (heap=117936 pin=2707 bma=194 phl=101 lt=0 revr=0)
+02:25:06.668 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=195 phl=101)
+02:25:06.671 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=127124 pin=2721 bma=195 phl=102 lt=0 revr=0)
+02:25:06.844 [VRB] mem: 128444 (42%) [-448] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:25:06.845 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:25:06.846 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:25:06.847 [VRB] bla: 0 bma: 195
+02:25:06.848 [VRB] pin: 2721 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:25:06.848 [VRB] [HEAP-TEL] jobs: 632 bytes (heap=128444)
+02:25:07.529 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=196 phl=100)
+02:25:07.532 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=127100 pin=2722 bma=196 phl=101 lt=0 revr=0)
+02:25:07.602 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=128292)
+02:25:53.411 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=197 phl=100)
+02:25:53.414 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=126932 pin=2768 bma=197 phl=101 lt=0 revr=0)
+02:25:53.527 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=127912)
+02:26:03.763 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=198 phl=100)
+02:26:03.766 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126572 pin=2788 bma=198 phl=101 lt=0 revr=0)
+02:26:03.971 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=127972)
+02:26:11.735 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=199 phl=100)
+02:26:11.738 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126636 pin=2799 bma=199 phl=101 lt=0 revr=0)
+02:26:11.876 [VRB] mem: 127824 (42%) [-620] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:26:11.877 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:26:11.878 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:26:11.879 [VRB] bla: 0 bma: 199
+02:26:11.880 [VRB] pin: 2799 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:26:11.880 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=127824)
+02:26:20.706 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=200 phl=100)
+02:26:20.709 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126488 pin=2810 bma=200 phl=101 lt=0 revr=0)
+02:26:20.967 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=127676)
+02:27:00.068 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:27:00.071 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=126348 pin=2857 bma=201 phl=101 lt=0 revr=0)
+02:27:00.328 [VRB] [HEAP-TEL] jobs: 476 bytes (heap=127700)
+02:27:05.600 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:27:05.603 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=126396 pin=2864 bma=201 phl=101 lt=0 revr=0)
+02:27:05.804 [VRB] [HEAP-TEL] jobs: 456 bytes (heap=127700)
+02:27:21.890 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:27:21.893 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=126328 pin=2876 bma=201 phl=101 lt=0 revr=0)
+02:27:25.411 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=202 phl=101)
+02:27:25.415 [VRB] [HEAP-TEL] inbound: -832 bytes (heap=125848 pin=2882 bma=202 phl=102 lt=0 revr=0)
+02:27:25.463 [VRB] mem: 127688 (42%) [-136] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:27:25.466 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:27:25.467 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:27:25.468 [VRB] bla: 0 bma: 200
+02:27:25.468 [VRB] pin: 2882 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:27:25.469 [VRB] [HEAP-TEL] jobs: 960 bytes (heap=127688)
+02:27:35.614 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:27:35.618 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126320 pin=2894 bma=201 phl=101 lt=0 revr=0)
+02:27:35.680 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=127480)
+02:27:37.076 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:27:37.078 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=126340 pin=2896 bma=201 phl=101 lt=0 revr=0)
+02:27:37.247 [VRB] [HEAP-TEL] jobs: 476 bytes (heap=127680)
+02:27:44.079 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:27:44.082 [VRB] [HEAP-TEL] inbound: -1036 bytes (heap=125984 pin=2902 bma=201 phl=101 lt=0 revr=0)
+02:27:44.287 [VRB] [HEAP-TEL] jobs: 496 bytes (heap=127684)
+02:27:45.845 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:27:45.848 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126528 pin=2908 bma=201 phl=101 lt=0 revr=0)
+02:27:45.853 [VRB] [HEAP-TEL] jobs: 476 bytes (heap=127692)
+02:28:41.754 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:28:41.757 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126348 pin=2963 bma=201 phl=101 lt=0 revr=0)
+02:28:41.852 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=202 phl=101)
+02:28:41.855 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=125868 pin=2964 bma=202 phl=102 lt=0 revr=0)
+02:28:41.951 [VRB] mem: 127656 (42%) [-32] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:28:41.953 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:28:41.954 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:28:41.954 [VRB] bla: 0 bma: 200
+02:28:41.955 [VRB] pin: 2964 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:28:41.956 [VRB] [HEAP-TEL] jobs: 916 bytes (heap=127656)
+02:28:46.999 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:28:47.002 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126496 pin=2972 bma=201 phl=101 lt=0 revr=0)
+02:28:47.153 [VRB] [HEAP-TEL] jobs: 464 bytes (heap=127648)
+02:29:27.941 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:29:27.944 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126500 pin=3012 bma=201 phl=101 lt=0 revr=0)
+02:29:28.095 [VRB] [HEAP-TEL] jobs: 476 bytes (heap=127664)
+02:29:35.336 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:29:35.339 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126340 pin=3015 bma=201 phl=101 lt=0 revr=0)
+02:29:35.411 [VRB] [HEAP-TEL] jobs: 560 bytes (heap=127320)
+02:29:36.953 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=201 phl=100)
+02:29:36.956 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126508 pin=3017 bma=201 phl=101 lt=0 revr=0)
+02:29:36.975 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127656)
+02:29:37.982 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:29:37.985 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126328 pin=3019 bma=201 phl=101 lt=0 revr=0)
+02:29:38.030 [VRB] [HEAP-TEL] jobs: 504 bytes (heap=127564)
+02:29:53.340 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=201 phl=100)
+02:29:53.343 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=126516 pin=3035 bma=201 phl=101 lt=0 revr=0)
+02:29:53.474 [VRB] mem: 127592 (42%) [-64] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:29:53.476 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:29:53.477 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:29:53.478 [VRB] bla: 0 bma: 200
+02:29:53.478 [VRB] pin: 3035 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:29:53.479 [VRB] [HEAP-TEL] jobs: 268 bytes (heap=127472)
+02:29:56.841 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=201 phl=100)
+02:29:56.844 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126484 pin=3039 bma=201 phl=101 lt=0 revr=0)
+02:29:57.094 [VRB] [HEAP-TEL] jobs: 488 bytes (heap=127660)
+02:30:35.322 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:30:35.325 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=126312 pin=3091 bma=201 phl=101 lt=0 revr=0)
+02:30:35.435 [VRB] [HEAP-TEL] jobs: 468 bytes (heap=127652)
+02:31:05.870 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:31:05.874 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=125912 pin=3128 bma=201 phl=101 lt=0 revr=0)
+02:31:05.961 [VRB] mem: 127672 (42%) [80] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:31:05.963 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:31:05.964 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:31:05.965 [VRB] bla: 0 bma: 200
+02:31:05.965 [VRB] pin: 3128 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:31:05.966 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=127672)
+02:31:11.905 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=201 phl=100)
+02:31:11.908 [VRB] [HEAP-TEL] inbound: -808 bytes (heap=123952 pin=3139 bma=201 phl=101 lt=0 revr=0)
+02:31:29.502 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=202 phl=101)
+02:31:29.505 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=125860 pin=3162 bma=202 phl=102 lt=0 revr=0)
+02:31:29.667 [VRB] [HEAP-TEL] jobs: 940 bytes (heap=127672)
+02:31:37.274 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:31:37.277 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126336 pin=3168 bma=201 phl=101 lt=0 revr=0)
+02:31:37.499 [VRB] [HEAP-TEL] jobs: 480 bytes (heap=127688)
+02:31:38.605 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=201 phl=100)
+02:31:38.608 [VRB] [HEAP-TEL] inbound: -1036 bytes (heap=126340 pin=3169 bma=201 phl=101 lt=0 revr=0)
+02:31:38.819 [VRB] [HEAP-TEL] jobs: 468 bytes (heap=127664)
+02:31:54.085 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:31:54.088 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126512 pin=3188 bma=201 phl=101 lt=0 revr=0)
+02:31:54.228 [VRB] [HEAP-TEL] jobs: 468 bytes (heap=127668)
+02:32:04.209 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:32:04.212 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126308 pin=3195 bma=201 phl=101 lt=0 revr=0)
+02:32:04.217 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=202 phl=101)
+02:32:04.220 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=125848 pin=3196 bma=202 phl=102 lt=0 revr=0)
+02:32:04.433 [VRB] [HEAP-TEL] jobs: 920 bytes (heap=127664)
+02:32:24.788 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:32:24.791 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126328 pin=3224 bma=201 phl=101 lt=0 revr=0)
+02:32:24.881 [VRB] mem: 127664 (42%) [-8] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:32:24.883 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:32:24.884 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:32:24.884 [VRB] bla: 0 bma: 200
+02:32:24.885 [VRB] pin: 3224 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:32:24.886 [VRB] [HEAP-TEL] jobs: 464 bytes (heap=127664)
+02:32:26.953 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:32:26.956 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126328 pin=3228 bma=201 phl=101 lt=0 revr=0)
+02:32:27.169 [VRB] [HEAP-TEL] jobs: 464 bytes (heap=127664)
+02:32:50.186 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:32:50.189 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126328 pin=3247 bma=201 phl=101 lt=0 revr=0)
+02:32:50.425 [VRB] [HEAP-TEL] jobs: 456 bytes (heap=127656)
+02:32:59.135 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:32:59.138 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126312 pin=3256 bma=201 phl=101 lt=0 revr=0)
+02:32:59.302 [VRB] [HEAP-TEL] jobs: 452 bytes (heap=127644)
+02:33:25.945 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:33:25.948 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126304 pin=3284 bma=201 phl=101 lt=0 revr=0)
+02:33:26.049 [VRB] mem: 127644 (42%) [-20] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:33:26.051 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:33:26.052 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:33:26.053 [VRB] bla: 0 bma: 200
+02:33:26.053 [VRB] pin: 3284 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:33:26.054 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127644)
+02:33:30.943 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=201 phl=100)
+02:33:30.946 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=126308 pin=3285 bma=201 phl=101 lt=0 revr=0)
+02:33:30.989 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=127636)
+02:33:41.901 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:33:41.904 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126312 pin=3290 bma=201 phl=101 lt=0 revr=0)
+02:33:41.954 [VRB] [HEAP-TEL] jobs: 496 bytes (heap=127664)
+02:34:01.568 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=201 phl=100)
+02:34:01.571 [VRB] [HEAP-TEL] inbound: -1040 bytes (heap=126480 pin=3321 bma=201 phl=101 lt=0 revr=0)
+02:34:01.814 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=127640)
+02:34:07.511 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=201 phl=100)
+02:34:07.514 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=121164 pin=3333 bma=201 phl=101 lt=0 revr=0)
+02:34:56.961 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=202 phl=101)
+02:34:56.965 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=125632 pin=3408 bma=202 phl=102 lt=0 revr=0)
+02:34:57.128 [VRB] mem: 127628 (42%) [-16] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:34:57.130 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:34:57.131 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:34:57.132 [VRB] bla: 0 bma: 200
+02:34:57.132 [VRB] pin: 3408 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:34:57.133 [VRB] [HEAP-TEL] jobs: 928 bytes (heap=127628)
+02:35:06.019 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:35:06.022 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126060 pin=3412 bma=201 phl=101 lt=0 revr=0)
+02:35:06.265 [VRB] [HEAP-TEL] jobs: 480 bytes (heap=127644)
+02:35:31.475 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:35:31.478 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126488 pin=3433 bma=201 phl=101 lt=0 revr=0)
+02:35:31.587 [VRB] [HEAP-TEL] jobs: 468 bytes (heap=127644)
+02:35:45.806 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:35:45.809 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=126308 pin=3446 bma=201 phl=101 lt=0 revr=0)
+02:35:45.958 [VRB] [HEAP-TEL] jobs: 476 bytes (heap=127644)
+02:36:05.362 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:36:05.365 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126316 pin=3459 bma=201 phl=101 lt=0 revr=0)
+02:36:05.558 [VRB] mem: 127652 (42%) [24] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:36:05.560 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:36:05.561 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:36:05.562 [VRB] bla: 0 bma: 200
+02:36:05.562 [VRB] pin: 3459 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:36:05.563 [VRB] [HEAP-TEL] jobs: 480 bytes (heap=127652)
+02:36:06.927 [VRB] [HEAP-TEL] boundary: -592 bytes (bma=201 phl=100)
+02:36:06.930 [VRB] [HEAP-TEL] inbound: -800 bytes (heap=126128 pin=3466 bma=201 phl=101 lt=0 revr=0)
+02:36:07.103 [VRB] [HEAP-TEL] jobs: 500 bytes (heap=127688)
+02:36:08.367 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:36:08.370 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126368 pin=3469 bma=201 phl=101 lt=0 revr=0)
+02:36:08.421 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=127556)
+02:36:12.367 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:36:12.370 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=126156 pin=3474 bma=201 phl=101 lt=0 revr=0)
+02:36:12.611 [VRB] [HEAP-TEL] jobs: 476 bytes (heap=127696)
+02:36:35.774 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=201 phl=100)
+02:36:35.777 [VRB] [HEAP-TEL] inbound: -1036 bytes (heap=126516 pin=3489 bma=201 phl=101 lt=0 revr=0)
+02:36:35.846 [VRB] [HEAP-TEL] jobs: 492 bytes (heap=127696)
+02:36:37.624 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=201 phl=100)
+02:36:37.627 [VRB] [HEAP-TEL] inbound: -1036 bytes (heap=126516 pin=3493 bma=201 phl=101 lt=0 revr=0)
+02:36:37.687 [VRB] [HEAP-TEL] jobs: 468 bytes (heap=127672)
+02:36:52.978 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:36:52.981 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126516 pin=3509 bma=201 phl=101 lt=0 revr=0)
+02:36:53.091 [VRB] [HEAP-TEL] jobs: 468 bytes (heap=127672)
+02:37:08.349 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:37:08.352 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126520 pin=3519 bma=201 phl=101 lt=0 revr=0)
+02:37:08.535 [VRB] mem: 127680 (42%) [28] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:37:08.537 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:37:08.538 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:37:08.538 [VRB] bla: 0 bma: 200
+02:37:08.539 [VRB] pin: 3519 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:37:08.540 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=127680)
+02:37:26.998 [VRB] [HEAP-TEL] boundary: -1004 bytes (bma=201 phl=100)
+02:37:27.001 [VRB] [HEAP-TEL] inbound: -916 bytes (heap=126356 pin=3536 bma=201 phl=101 lt=0 revr=0)
+02:37:27.004 [VRB] [HEAP-TEL] jobs: 452 bytes (heap=127676)
+02:37:28.744 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:37:28.747 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126328 pin=3540 bma=201 phl=101 lt=0 revr=0)
+02:37:28.816 [VRB] [HEAP-TEL] jobs: 480 bytes (heap=127696)
+02:37:38.873 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:37:38.876 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=126552 pin=3545 bma=201 phl=101 lt=0 revr=0)
+02:37:39.018 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127612)
+02:37:40.501 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=201 phl=100)
+02:37:40.505 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=126352 pin=3547 bma=201 phl=101 lt=0 revr=0)
+02:37:40.584 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=127688)
+02:38:04.374 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:38:04.377 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=125944 pin=3574 bma=201 phl=101 lt=0 revr=0)
+02:38:04.483 [VRB] [HEAP-TEL] jobs: 452 bytes (heap=127676)
+02:38:05.257 [VRB] [HEAP-TEL] jobs: 2328 bytes (heap=127676)
+02:38:18.412 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:38:18.415 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126344 pin=3583 bma=201 phl=101 lt=0 revr=0)
+02:38:18.622 [VRB] mem: 127464 (42%) [-216] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:38:18.624 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:38:18.625 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:38:18.626 [VRB] bla: 0 bma: 200
+02:38:18.626 [VRB] pin: 3583 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:38:18.627 [VRB] [HEAP-TEL] jobs: 672 bytes (heap=127672)
+02:38:24.962 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:38:24.965 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=126352 pin=3593 bma=201 phl=101 lt=0 revr=0)
+02:38:42.275 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=202 phl=101)
+02:38:42.278 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=125896 pin=3611 bma=202 phl=102 lt=0 revr=0)
+02:38:42.348 [VRB] [HEAP-TEL] jobs: 916 bytes (heap=127676)
+02:39:00.697 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:39:00.700 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126520 pin=3631 bma=201 phl=101 lt=0 revr=0)
+02:39:00.910 [VRB] [HEAP-TEL] jobs: 468 bytes (heap=127468)
+02:39:23.096 [VRB] [HEAP-TEL] jobs: 2328 bytes (heap=127596)
+02:39:23.923 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:39:23.926 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=126360 pin=3656 bma=201 phl=101 lt=0 revr=0)
+02:39:24.188 [VRB] mem: 127676 (42%) [212] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:39:24.189 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:39:24.190 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:39:24.191 [VRB] bla: 0 bma: 200
+02:39:24.191 [VRB] pin: 3656 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:39:24.192 [VRB] [HEAP-TEL] jobs: 456 bytes (heap=127676)
+02:39:36.016 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:39:36.019 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126312 pin=3665 bma=201 phl=101 lt=0 revr=0)
+02:39:46.764 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=202 phl=101)
+02:39:46.767 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=125848 pin=3672 bma=202 phl=102 lt=0 revr=0)
+02:39:46.866 [VRB] [HEAP-TEL] jobs: 952 bytes (heap=127676)
+02:39:57.140 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:39:57.143 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=126360 pin=3682 bma=201 phl=101 lt=0 revr=0)
+02:39:57.309 [VRB] [HEAP-TEL] jobs: 452 bytes (heap=127672)
+02:40:02.029 [VRB] [HEAP-TEL] boundary: -712 bytes (bma=201 phl=100)
+02:40:02.033 [VRB] [HEAP-TEL] inbound: -720 bytes (heap=126344 pin=3685 bma=201 phl=101 lt=0 revr=0)
+02:40:02.264 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127664)
+02:40:07.233 [VRB] [HEAP-TEL] jobs: -2328 bytes (heap=125336)
+02:40:09.390 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:40:09.393 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=126140 pin=3686 bma=201 phl=101 lt=0 revr=0)
+02:40:09.398 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=202 phl=101)
+02:40:09.401 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=125680 pin=3687 bma=202 phl=102 lt=0 revr=0)
+02:40:09.572 [VRB] [HEAP-TEL] jobs: 912 bytes (heap=127660)
+02:40:25.002 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:40:25.005 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126348 pin=3702 bma=201 phl=101 lt=0 revr=0)
+02:40:25.010 [VRB] [HEAP-TEL] boundary: -836 bytes (bma=202 phl=101)
+02:40:25.013 [VRB] [HEAP-TEL] inbound: -1040 bytes (heap=125852 pin=3703 bma=202 phl=102 lt=0 revr=0)
+02:40:25.074 [VRB] mem: 127624 (42%) [-52] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:40:25.076 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:40:25.077 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:40:25.078 [VRB] bla: 0 bma: 200
+02:40:25.078 [VRB] pin: 3703 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:40:25.079 [VRB] [HEAP-TEL] jobs: 920 bytes (heap=127624)
+02:41:12.180 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:41:12.183 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126308 pin=3744 bma=201 phl=101 lt=0 revr=0)
+02:41:12.352 [VRB] [HEAP-TEL] jobs: 464 bytes (heap=127624)
+02:41:20.663 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:41:20.665 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126304 pin=3751 bma=201 phl=101 lt=0 revr=0)
+02:41:20.708 [VRB] [HEAP-TEL] jobs: 328 bytes (heap=127460)
+02:41:51.196 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:41:51.199 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126304 pin=3777 bma=201 phl=101 lt=0 revr=0)
+02:41:51.344 [VRB] mem: 127612 (42%) [-12] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:41:51.346 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:41:51.347 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:41:51.348 [VRB] bla: 0 bma: 200
+02:41:51.348 [VRB] pin: 3777 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:41:51.349 [VRB] [HEAP-TEL] jobs: 456 bytes (heap=127612)
+02:42:06.364 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:42:06.367 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126288 pin=3786 bma=201 phl=101 lt=0 revr=0)
+02:42:06.437 [VRB] [HEAP-TEL] jobs: 480 bytes (heap=127620)
+02:42:21.490 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:42:21.493 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=126288 pin=3793 bma=201 phl=101 lt=0 revr=0)
+02:42:21.530 [VRB] [HEAP-TEL] jobs: 496 bytes (heap=127636)
+02:42:27.124 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=201 phl=100)
+02:42:27.127 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=126304 pin=3802 bma=201 phl=101 lt=0 revr=0)
+02:42:27.234 [VRB] [HEAP-TEL] jobs: 464 bytes (heap=127264)
+02:42:36.335 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:42:36.338 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126464 pin=3803 bma=201 phl=101 lt=0 revr=0)
+02:42:36.363 [VRB] [HEAP-TEL] jobs: 468 bytes (heap=127620)
+02:42:37.775 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:42:37.779 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126304 pin=3805 bma=201 phl=101 lt=0 revr=0)
+02:42:37.933 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127612)
+02:43:07.668 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:43:07.671 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=126280 pin=3824 bma=201 phl=101 lt=0 revr=0)
+02:43:07.712 [VRB] mem: 127612 (42%) [0] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:43:07.714 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:43:07.715 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:43:07.716 [VRB] bla: 0 bma: 200
+02:43:07.717 [VRB] pin: 3824 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:43:07.718 [VRB] [HEAP-TEL] jobs: 344 bytes (heap=127472)
+02:43:07.829 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:43:07.832 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=126280 pin=3825 bma=201 phl=101 lt=0 revr=0)
+02:43:07.970 [VRB] [HEAP-TEL] jobs: 484 bytes (heap=127612)
+02:43:22.830 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:43:22.833 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=126280 pin=3835 bma=201 phl=101 lt=0 revr=0)
+02:43:22.839 [VRB] [HEAP-TEL] jobs: 484 bytes (heap=127612)
+02:43:42.203 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:43:42.206 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126452 pin=3849 bma=201 phl=101 lt=0 revr=0)
+02:43:42.428 [VRB] [HEAP-TEL] jobs: 464 bytes (heap=127604)
+02:44:49.772 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:44:49.775 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126276 pin=3910 bma=201 phl=101 lt=0 revr=0)
+02:44:49.846 [VRB] mem: 127600 (42%) [-12] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:44:49.847 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:44:49.848 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:44:49.849 [VRB] bla: 0 bma: 200
+02:44:49.850 [VRB] pin: 3910 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:44:49.851 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127600)
+02:44:55.824 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:44:55.827 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126260 pin=3920 bma=201 phl=101 lt=0 revr=0)
+02:44:56.080 [VRB] [HEAP-TEL] jobs: 452 bytes (heap=127588)
+02:44:57.256 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:44:57.259 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=126268 pin=3924 bma=201 phl=101 lt=0 revr=0)
+02:44:57.355 [VRB] [HEAP-TEL] jobs: 2820 bytes (heap=127588)
+02:45:43.850 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:45:43.853 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126440 pin=3960 bma=201 phl=101 lt=0 revr=0)
+02:45:44.045 [VRB] [HEAP-TEL] jobs: 452 bytes (heap=127372)
+02:46:12.204 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:46:12.207 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=126412 pin=3994 bma=201 phl=101 lt=0 revr=0)
+02:46:12.299 [VRB] mem: 127580 (42%) [-20] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:46:12.301 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:46:12.302 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:46:12.303 [VRB] bla: 0 bma: 200
+02:46:12.303 [VRB] pin: 3994 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:46:12.304 [VRB] [HEAP-TEL] jobs: 296 bytes (heap=127372)
+02:47:05.471 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=201 phl=100)
+02:47:05.474 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=126416 pin=4038 bma=201 phl=101 lt=0 revr=0)
+02:47:05.511 [VRB] [HEAP-TEL] jobs: 476 bytes (heap=127580)
+02:47:11.092 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=201 phl=100)
+02:47:11.095 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=126416 pin=4047 bma=201 phl=101 lt=0 revr=0)
+02:47:11.258 [VRB] [HEAP-TEL] jobs: 452 bytes (heap=127556)
+02:47:20.709 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:47:20.712 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=126236 pin=4060 bma=201 phl=101 lt=0 revr=0)
+02:47:20.963 [VRB] mem: 127024 (42%) [-556] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:47:20.965 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:47:20.966 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:47:20.967 [VRB] bla: 0 bma: 200
+02:47:20.968 [VRB] pin: 4060 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:47:20.969 [VRB] [HEAP-TEL] jobs: 804 bytes (heap=127360)
+02:47:27.262 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:47:27.265 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126252 pin=4071 bma=201 phl=101 lt=0 revr=0)
+02:47:27.393 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127572)
+02:47:42.806 [VRB] [HEAP-TEL] jobs: -140 bytes (heap=125104)
+02:47:56.444 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:47:56.447 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=126396 pin=4102 bma=201 phl=101 lt=0 revr=0)
+02:47:56.574 [VRB] [HEAP-TEL] jobs: 488 bytes (heap=127572)
+02:48:06.380 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:48:06.383 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126252 pin=4107 bma=201 phl=101 lt=0 revr=0)
+02:48:06.498 [VRB] [HEAP-TEL] jobs: 456 bytes (heap=127568)
+02:48:17.725 [VRB] [HEAP-TEL] jobs: -2324 bytes (heap=125244)
+02:48:42.125 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:48:42.128 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126200 pin=4133 bma=201 phl=101 lt=0 revr=0)
+02:48:42.203 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=202 phl=101)
+02:48:42.206 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=125764 pin=4134 bma=202 phl=102 lt=0 revr=0)
+02:48:42.348 [VRB] mem: 127560 (42%) [536] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:48:42.350 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:48:42.351 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:48:42.352 [VRB] bla: 0 bma: 200
+02:48:42.352 [VRB] pin: 4134 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:48:42.353 [VRB] [HEAP-TEL] jobs: 940 bytes (heap=127560)
+02:48:47.270 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:48:47.273 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126236 pin=4142 bma=201 phl=101 lt=0 revr=0)
+02:48:47.275 [VRB] [HEAP-TEL] jobs: 456 bytes (heap=127556)
+02:49:08.164 [VRB] [HEAP-TEL] boundary: -800 bytes (bma=201 phl=100)
+02:49:08.167 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126216 pin=4160 bma=201 phl=101 lt=0 revr=0)
+02:49:08.170 [VRB] [HEAP-TEL] jobs: 476 bytes (heap=127568)
+02:49:36.490 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:49:36.493 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126084 pin=4178 bma=201 phl=101 lt=0 revr=0)
+02:49:36.604 [VRB] [HEAP-TEL] jobs: 456 bytes (heap=127552)
+02:49:57.301 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=201 phl=100)
+02:49:57.304 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=126220 pin=4204 bma=201 phl=101 lt=0 revr=0)
+02:49:57.525 [VRB] mem: 127552 (42%) [-8] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:49:57.527 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:49:57.528 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:49:57.529 [VRB] bla: 0 bma: 200
+02:49:57.529 [VRB] pin: 4204 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:49:57.530 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127552)
+02:50:30.258 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:50:30.261 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=126216 pin=4231 bma=201 phl=101 lt=0 revr=0)
+02:50:30.282 [VRB] [HEAP-TEL] jobs: 456 bytes (heap=127336)
+02:50:33.541 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=201 phl=100)
+02:50:33.544 [VRB] [HEAP-TEL] inbound: -828 bytes (heap=123988 pin=4235 bma=201 phl=101 lt=0 revr=0)
+02:50:33.550 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=202 phl=101)
+02:50:33.553 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=125904 pin=4236 bma=202 phl=102 lt=0 revr=0)
+02:50:33.690 [VRB] [HEAP-TEL] jobs: 948 bytes (heap=127540)
+02:50:42.746 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:50:42.749 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126200 pin=4244 bma=201 phl=101 lt=0 revr=0)
+02:50:42.817 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=127540)
+02:51:12.240 [VRB] [HEAP-TEL] boundary: -676 bytes (bma=201 phl=100)
+02:51:12.243 [VRB] [HEAP-TEL] inbound: -884 bytes (heap=126192 pin=4277 bma=201 phl=101 lt=0 revr=0)
+02:51:12.354 [VRB] mem: 127540 (42%) [-12] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:51:12.356 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:51:12.356 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:51:12.357 [VRB] bla: 0 bma: 200
+02:51:12.358 [VRB] pin: 4277 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:51:12.359 [VRB] [HEAP-TEL] jobs: 264 bytes (heap=127332)
+02:51:17.048 [VRB] [HEAP-TEL] jobs: 2328 bytes (heap=127464)
+02:51:19.512 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:51:19.515 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=126372 pin=4283 bma=201 phl=101 lt=0 revr=0)
+02:51:19.657 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127520)
+02:51:29.765 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:51:29.767 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=125992 pin=4290 bma=201 phl=101 lt=0 revr=0)
+02:51:29.833 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127520)
+02:51:44.988 [VRB] [HEAP-TEL] jobs: -2328 bytes (heap=125052)
+02:52:08.457 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=201 phl=100)
+02:52:08.460 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126360 pin=4344 bma=201 phl=101 lt=0 revr=0)
+02:52:08.494 [VRB] [HEAP-TEL] jobs: 480 bytes (heap=127528)
+02:52:26.086 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:52:26.089 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=126188 pin=4365 bma=201 phl=101 lt=0 revr=0)
+02:52:27.408 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=202 phl=101)
+02:52:27.411 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=125720 pin=4368 bma=202 phl=102 lt=0 revr=0)
+02:52:51.990 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=203 phl=102)
+02:52:51.993 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=125244 pin=4409 bma=203 phl=103 lt=0 revr=0)
+02:52:52.170 [VRB] mem: 127540 (42%) [0] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:52:52.172 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:52:52.173 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:52:52.173 [VRB] bla: 0 bma: 200
+02:52:52.174 [VRB] pin: 4409 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:52:52.175 [VRB] [HEAP-TEL] jobs: 1424 bytes (heap=127540)
+02:52:58.923 [VRB] [HEAP-TEL] jobs: -140 bytes (heap=125072)
+02:53:32.739 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+02:53:32.742 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=126204 pin=4449 bma=201 phl=101 lt=0 revr=0)
+02:53:32.862 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=127540)
+02:53:36.661 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=201 phl=100)
+02:53:36.664 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=126192 pin=4451 bma=201 phl=101 lt=0 revr=0)
+02:53:36.769 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=127540)
+02:53:42.363 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=201 phl=100)
+02:53:42.366 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=126376 pin=4458 bma=201 phl=101 lt=0 revr=0)
+02:53:42.524 [VRB] [HEAP-TEL] jobs: 464 bytes (heap=127536)
+02:53:53.012 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=201 phl=100)
+02:53:53.015 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=126184 pin=4469 bma=201 phl=101 lt=0 revr=0)
+02:53:53.282 [VRB] mem: 127396 (42%) [-144] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:53:53.283 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:53:53.284 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:53:53.285 [VRB] bla: 0 bma: 200
+02:53:53.286 [VRB] pin: 4469 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:53:53.287 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=127536)
+02:54:06.741 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=201 phl=100)
+02:54:06.744 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=126184 pin=4481 bma=201 phl=101 lt=0 revr=0)
+02:54:06.826 [VRB] [HEAP-TEL] jobs: 480 bytes (heap=127540)
+02:54:12.848 [VRB] [HEAP-TEL] boundary: -836 bytes (bma=201 phl=100)
+02:54:12.852 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=126340 pin=4486 bma=201 phl=101 lt=0 revr=0)
+02:54:13.091 [VRB] [HEAP-TEL] jobs: 504 bytes (heap=127540)
+02:54:36.771 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=201 phl=100)
+02:54:36.774 [VRB] [HEAP-TEL] inbound: -1036 bytes (heap=126180 pin=4503 bma=201 phl=101 lt=0 revr=0)
+02:54:36.839 [VRB] [HEAP-TEL] jobs: 484 bytes (heap=127540)
+02:54:57.342 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=201 phl=100)
+02:54:57.345 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=125996 pin=4523 bma=201 phl=101 lt=0 revr=0)
+02:55:01.160 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=202 phl=101)
+02:55:01.163 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=125732 pin=4527 bma=202 phl=102 lt=0 revr=0)
+02:55:01.221 [VRB] mem: 127544 (42%) [148] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:55:01.223 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:55:01.224 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:55:01.225 [VRB] bla: 0 bma: 200
+02:55:01.225 [VRB] pin: 4527 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:55:01.226 [VRB] [HEAP-TEL] jobs: 792 bytes (heap=127404)
+02:55:08.719 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+02:55:08.722 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=126332 pin=4533 bma=202 phl=101 lt=0 revr=0)
+02:55:08.831 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127544)
+02:55:21.907 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+02:55:21.910 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126156 pin=4539 bma=202 phl=101 lt=0 revr=0)
+02:55:22.144 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127532)
+02:55:37.377 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+02:55:37.380 [VRB] [HEAP-TEL] inbound: -1080 bytes (heap=126136 pin=4549 bma=202 phl=101 lt=0 revr=0)
+02:55:37.502 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127512)
+02:55:47.526 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+02:55:47.528 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=126112 pin=4561 bma=202 phl=101 lt=0 revr=0)
+02:55:47.698 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=127380)
+02:56:02.678 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+02:56:02.681 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126144 pin=4572 bma=202 phl=101 lt=0 revr=0)
+02:56:02.912 [VRB] mem: 127508 (42%) [-36] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:56:02.914 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:56:02.915 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:56:02.916 [VRB] bla: 0 bma: 200
+02:56:02.917 [VRB] pin: 4572 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:56:02.918 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127508)
+02:56:07.779 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+02:56:07.783 [VRB] [HEAP-TEL] inbound: -848 bytes (heap=126148 pin=4581 bma=202 phl=101 lt=0 revr=0)
+02:56:07.788 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=203 phl=101)
+02:56:07.791 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=125580 pin=4582 bma=203 phl=102 lt=0 revr=0)
+02:56:07.911 [VRB] [HEAP-TEL] jobs: 1064 bytes (heap=127504)
+02:56:12.384 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+02:56:12.387 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=126144 pin=4590 bma=202 phl=101 lt=0 revr=0)
+02:56:12.896 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=203 phl=101)
+02:56:12.899 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=125744 pin=4593 bma=203 phl=102 lt=0 revr=0)
+02:56:13.134 [VRB] [HEAP-TEL] jobs: 1072 bytes (heap=127516)
+02:56:21.916 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+02:56:21.919 [VRB] [HEAP-TEL] inbound: -1084 bytes (heap=126124 pin=4598 bma=202 phl=101 lt=0 revr=0)
+02:56:22.016 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=127516)
+02:56:36.654 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+02:56:36.657 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126312 pin=4604 bma=202 phl=101 lt=0 revr=0)
+02:56:36.890 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127516)
+02:56:38.612 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+02:56:38.615 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=121384 pin=4608 bma=202 phl=101 lt=0 revr=0)
+02:57:08.910 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=203 phl=101)
+02:57:08.913 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=125612 pin=4631 bma=203 phl=102 lt=0 revr=0)
+02:57:09.095 [VRB] mem: 127556 (42%) [48] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:57:09.096 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:57:09.097 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:57:09.098 [VRB] bla: 0 bma: 200
+02:57:09.099 [VRB] pin: 4631 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:57:09.100 [VRB] [HEAP-TEL] jobs: -1292 bytes (heap=125184)
+02:57:18.540 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+02:57:18.543 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126188 pin=4645 bma=202 phl=101 lt=0 revr=0)
+02:57:27.339 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=203 phl=101)
+02:57:27.342 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=125632 pin=4657 bma=203 phl=102 lt=0 revr=0)
+02:57:27.432 [VRB] [HEAP-TEL] jobs: 1072 bytes (heap=127556)
+02:57:29.193 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+02:57:29.196 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126200 pin=4658 bma=202 phl=101 lt=0 revr=0)
+02:57:29.210 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127556)
+02:57:39.356 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+02:57:39.359 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126200 pin=4668 bma=202 phl=101 lt=0 revr=0)
+02:57:39.403 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127432)
+02:57:43.756 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+02:57:43.759 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126204 pin=4671 bma=202 phl=101 lt=0 revr=0)
+02:57:43.828 [VRB] [HEAP-TEL] jobs: 628 bytes (heap=127592)
+02:57:44.656 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+02:57:44.659 [VRB] [HEAP-TEL] inbound: -1080 bytes (heap=126212 pin=4673 bma=202 phl=101 lt=0 revr=0)
+02:57:44.880 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=127580)
+02:58:07.616 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+02:58:07.619 [VRB] [HEAP-TEL] inbound: -1088 bytes (heap=126192 pin=4691 bma=202 phl=101 lt=0 revr=0)
+02:58:07.622 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127556)
+02:58:08.839 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+02:58:08.842 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126196 pin=4693 bma=202 phl=101 lt=0 revr=0)
+02:58:08.914 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=127568)
+02:58:09.190 [VRB] mem: 127568 (42%) [12] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:58:09.192 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:58:09.193 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:58:09.194 [VRB] bla: 0 bma: 200
+02:58:09.194 [VRB] pin: 4693 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:58:30.430 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+02:58:30.433 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=126200 pin=4712 bma=202 phl=101 lt=0 revr=0)
+02:58:30.597 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=127568)
+02:58:42.710 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+02:58:42.713 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126352 pin=4720 bma=202 phl=101 lt=0 revr=0)
+02:58:42.857 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=127564)
+02:59:18.830 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+02:59:18.833 [VRB] [HEAP-TEL] inbound: -1080 bytes (heap=124756 pin=4750 bma=202 phl=101 lt=0 revr=0)
+02:59:18.914 [VRB] mem: 125960 (41%) [-1608] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+02:59:18.915 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+02:59:18.916 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+02:59:18.917 [VRB] bla: 0 bma: 200
+02:59:18.918 [VRB] pin: 4750 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+02:59:18.919 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=125960)
+02:59:21.630 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+02:59:21.633 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126172 pin=4753 bma=202 phl=101 lt=0 revr=0)
+02:59:21.779 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=127556)
+02:59:37.004 [VRB] [HEAP-TEL] boundary: -648 bytes (bma=202 phl=100)
+02:59:37.007 [VRB] [HEAP-TEL] inbound: -864 bytes (heap=123964 pin=4765 bma=202 phl=101 lt=0 revr=0)
+02:59:57.485 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=203 phl=101)
+02:59:57.488 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=125604 pin=4795 bma=203 phl=102 lt=0 revr=0)
+02:59:57.561 [VRB] [HEAP-TEL] jobs: 852 bytes (heap=127244)
+03:00:02.190 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:00:02.193 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126144 pin=4800 bma=202 phl=101 lt=0 revr=0)
+03:00:02.262 [VRB] [HEAP-TEL] jobs: 632 bytes (heap=127548)
+03:00:06.897 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:00:06.900 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126156 pin=4807 bma=202 phl=101 lt=0 revr=0)
+03:00:06.970 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127400)
+03:00:17.661 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:00:17.664 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126164 pin=4830 bma=202 phl=101 lt=0 revr=0)
+03:00:17.701 [VRB] [HEAP-TEL] jobs: 632 bytes (heap=127540)
+03:00:19.025 [VRB] mem: 127540 (42%) [1580] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:00:19.027 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:00:19.028 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:00:19.029 [VRB] bla: 0 bma: 200
+03:00:19.029 [VRB] pin: 4830 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:00:31.485 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:00:31.488 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126164 pin=4840 bma=202 phl=101 lt=0 revr=0)
+03:00:31.491 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127544)
+03:01:12.422 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:01:12.425 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126164 pin=4878 bma=202 phl=101 lt=0 revr=0)
+03:01:12.486 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=127536)
+03:01:17.645 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:01:17.648 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126168 pin=4883 bma=202 phl=101 lt=0 revr=0)
+03:01:17.709 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127452)
+03:01:38.025 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:01:38.028 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=126316 pin=4904 bma=202 phl=101 lt=0 revr=0)
+03:01:38.033 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=203 phl=101)
+03:01:38.036 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=125768 pin=4905 bma=203 phl=102 lt=0 revr=0)
+03:01:38.123 [VRB] mem: 127404 (42%) [-136] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:01:38.124 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:01:38.125 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:01:38.126 [VRB] bla: 0 bma: 200
+03:01:38.127 [VRB] pin: 4905 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:01:38.128 [VRB] [HEAP-TEL] jobs: 1228 bytes (heap=127544)
+03:01:39.051 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:01:39.054 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126164 pin=4906 bma=202 phl=101 lt=0 revr=0)
+03:01:39.133 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=127544)
+03:01:53.177 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:01:53.180 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=126160 pin=4917 bma=202 phl=101 lt=0 revr=0)
+03:01:53.230 [VRB] [HEAP-TEL] jobs: 648 bytes (heap=127544)
+03:02:27.483 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:02:27.486 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=126160 pin=4953 bma=202 phl=101 lt=0 revr=0)
+03:02:27.705 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=127544)
+03:02:28.720 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:02:28.723 [VRB] [HEAP-TEL] inbound: -868 bytes (heap=126160 pin=4955 bma=202 phl=101 lt=0 revr=0)
+03:02:28.749 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=127544)
+03:02:36.811 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:02:36.815 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=121028 pin=4958 bma=202 phl=101 lt=0 revr=0)
+03:02:38.861 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=203 phl=101)
+03:02:38.865 [VRB] [HEAP-TEL] inbound: -808 bytes (heap=125788 pin=4964 bma=203 phl=102 lt=0 revr=0)
+03:02:38.926 [VRB] mem: 127556 (42%) [152] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:02:38.927 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:02:38.928 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:02:38.929 [VRB] bla: 0 bma: 200
+03:02:38.930 [VRB] pin: 4964 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:02:38.931 [VRB] [HEAP-TEL] jobs: 1080 bytes (heap=127556)
+03:02:59.537 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:02:59.540 [VRB] [HEAP-TEL] inbound: -1080 bytes (heap=126168 pin=4975 bma=202 phl=101 lt=0 revr=0)
+03:02:59.761 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=127548)
+03:03:04.563 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+03:03:04.566 [VRB] [HEAP-TEL] inbound: -1092 bytes (heap=126148 pin=4978 bma=202 phl=101 lt=0 revr=0)
+03:03:04.736 [VRB] [HEAP-TEL] jobs: 640 bytes (heap=127408)
+03:03:14.692 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:03:14.697 [VRB] [HEAP-TEL] inbound: -940 bytes (heap=123888 pin=4989 bma=202 phl=101 lt=0 revr=0)
+03:03:14.704 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=203 phl=101)
+03:03:14.708 [VRB] [HEAP-TEL] inbound: -808 bytes (heap=125776 pin=4990 bma=203 phl=102 lt=0 revr=0)
+03:03:14.906 [VRB] [HEAP-TEL] jobs: 1084 bytes (heap=127548)
+03:03:39.064 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+03:03:39.067 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126332 pin=5009 bma=202 phl=101 lt=0 revr=0)
+03:03:39.279 [VRB] mem: 127548 (42%) [-8] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:03:39.281 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:03:39.282 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:03:39.282 [VRB] bla: 0 bma: 200
+03:03:39.283 [VRB] pin: 5009 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:03:39.284 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=127548)
+03:03:45.314 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+03:03:45.317 [VRB] [HEAP-TEL] inbound: -1092 bytes (heap=126148 pin=5021 bma=202 phl=101 lt=0 revr=0)
+03:03:45.320 [VRB] [HEAP-TEL] jobs: 640 bytes (heap=127548)
+03:03:45.514 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+03:03:45.518 [VRB] [HEAP-TEL] inbound: -1092 bytes (heap=125940 pin=5022 bma=202 phl=101 lt=0 revr=0)
+03:03:45.572 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127516)
+03:04:06.218 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:04:06.221 [VRB] [HEAP-TEL] inbound: -1084 bytes (heap=126128 pin=5041 bma=202 phl=101 lt=0 revr=0)
+03:04:06.224 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=127504)
+03:04:09.274 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+03:04:09.277 [VRB] [HEAP-TEL] inbound: -1092 bytes (heap=126112 pin=5044 bma=202 phl=101 lt=0 revr=0)
+03:04:09.356 [VRB] [HEAP-TEL] jobs: 640 bytes (heap=127504)
+03:04:29.439 [VRB] [HEAP-TEL] jobs: 2376 bytes (heap=127472)
+03:04:57.653 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+03:04:57.657 [VRB] [HEAP-TEL] inbound: -1088 bytes (heap=126116 pin=5123 bma=202 phl=101 lt=0 revr=0)
+03:04:57.735 [VRB] mem: 127504 (42%) [-44] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:04:57.736 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:04:57.737 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:04:57.738 [VRB] bla: 0 bma: 200
+03:04:57.739 [VRB] pin: 5123 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:04:57.740 [VRB] [HEAP-TEL] jobs: 636 bytes (heap=127504)
+03:05:07.434 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+03:05:07.437 [VRB] [HEAP-TEL] inbound: -1092 bytes (heap=126112 pin=5140 bma=202 phl=101 lt=0 revr=0)
+03:05:07.650 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127476)
+03:06:06.030 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:06:06.033 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=126108 pin=5205 bma=202 phl=101 lt=0 revr=0)
+03:06:06.259 [VRB] mem: 127456 (42%) [-48] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:06:06.260 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:06:06.261 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:06:06.262 [VRB] bla: 0 bma: 200
+03:06:06.262 [VRB] pin: 5205 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:06:06.263 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127456)
+03:06:12.669 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:06:12.672 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=126256 pin=5216 bma=202 phl=101 lt=0 revr=0)
+03:06:12.783 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127460)
+03:06:21.169 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:06:21.172 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126256 pin=5223 bma=202 phl=101 lt=0 revr=0)
+03:06:21.393 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=127476)
+03:06:21.589 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:06:21.592 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=126112 pin=5224 bma=202 phl=101 lt=0 revr=0)
+03:06:21.666 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=127476)
+03:06:39.293 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:06:39.296 [VRB] [HEAP-TEL] inbound: -852 bytes (heap=126272 pin=5243 bma=202 phl=101 lt=0 revr=0)
+03:06:47.784 [VRB] [HEAP-TEL] jobs: 2328 bytes (heap=126792)
+03:07:27.674 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=203 phl=101)
+03:07:27.677 [VRB] [HEAP-TEL] inbound: -1020 bytes (heap=125548 pin=5292 bma=203 phl=102 lt=0 revr=0)
+03:07:27.776 [VRB] mem: 127468 (42%) [12] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:07:27.778 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:07:27.779 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:07:27.779 [VRB] bla: 0 bma: 200
+03:07:27.780 [VRB] pin: 5292 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:07:27.781 [VRB] [HEAP-TEL] jobs: 1076 bytes (heap=127468)
+03:07:32.955 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:07:32.958 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126100 pin=5295 bma=202 phl=101 lt=0 revr=0)
+03:07:32.969 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127468)
+03:07:37.681 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+03:07:37.684 [VRB] [HEAP-TEL] inbound: -868 bytes (heap=123708 pin=5299 bma=202 phl=101 lt=0 revr=0)
+03:07:48.518 [VRB] [HEAP-TEL] boundary: -792 bytes (bma=203 phl=101)
+03:07:48.521 [VRB] [HEAP-TEL] inbound: -996 bytes (heap=125320 pin=5311 bma=203 phl=102 lt=0 revr=0)
+03:07:48.527 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=204 phl=102)
+03:07:48.530 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=124836 pin=5312 bma=204 phl=103 lt=0 revr=0)
+03:07:48.640 [VRB] [HEAP-TEL] jobs: 1536 bytes (heap=127444)
+03:08:08.895 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:08:08.898 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126076 pin=5330 bma=202 phl=101 lt=0 revr=0)
+03:08:09.012 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127444)
+03:08:39.408 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:08:39.411 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126076 pin=5372 bma=202 phl=101 lt=0 revr=0)
+03:08:39.612 [VRB] mem: 127444 (42%) [-24] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:08:39.614 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:08:39.615 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:08:39.616 [VRB] bla: 0 bma: 200
+03:08:39.616 [VRB] pin: 5372 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:08:39.617 [VRB] [HEAP-TEL] jobs: 804 bytes (heap=127444)
+03:08:42.684 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:08:42.687 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126076 pin=5379 bma=202 phl=101 lt=0 revr=0)
+03:08:42.724 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127444)
+03:08:54.769 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:08:54.772 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126076 pin=5393 bma=202 phl=101 lt=0 revr=0)
+03:08:54.994 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127444)
+03:09:09.624 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:09:09.628 [VRB] [HEAP-TEL] inbound: -840 bytes (heap=126076 pin=5412 bma=202 phl=101 lt=0 revr=0)
+03:09:09.887 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127444)
+03:09:52.626 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:09:52.629 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126076 pin=5442 bma=202 phl=101 lt=0 revr=0)
+03:09:52.688 [VRB] mem: 127468 (42%) [24] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:09:52.690 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:09:52.691 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:09:52.692 [VRB] bla: 0 bma: 200
+03:09:52.692 [VRB] pin: 5442 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:09:52.693 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=127468)
+03:09:56.288 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:09:56.291 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126092 pin=5445 bma=202 phl=101 lt=0 revr=0)
+03:09:56.294 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127460)
+03:09:57.756 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:09:57.759 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126092 pin=5446 bma=202 phl=101 lt=0 revr=0)
+03:09:57.861 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127460)
+03:10:07.196 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:10:07.199 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126092 pin=5452 bma=202 phl=101 lt=0 revr=0)
+03:10:07.269 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127252)
+03:10:11.266 [VRB] [HEAP-TEL] boundary: -552 bytes (bma=202 phl=100)
+03:10:11.269 [VRB] [HEAP-TEL] inbound: -760 bytes (heap=126092 pin=5455 bma=202 phl=101 lt=0 revr=0)
+03:10:11.449 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=124992)
+03:10:13.725 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:10:13.728 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126256 pin=5462 bma=202 phl=101 lt=0 revr=0)
+03:10:13.810 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127460)
+03:10:34.214 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:10:34.217 [VRB] [HEAP-TEL] inbound: -844 bytes (heap=126092 pin=5471 bma=202 phl=101 lt=0 revr=0)
+03:10:34.436 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127460)
+03:11:12.835 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:11:12.838 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126092 pin=5496 bma=202 phl=101 lt=0 revr=0)
+03:11:12.902 [VRB] mem: 127472 (42%) [4] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:11:12.904 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:11:12.905 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:11:12.906 [VRB] bla: 0 bma: 200
+03:11:12.906 [VRB] pin: 5496 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:11:12.907 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127472)
+03:11:30.018 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:11:30.021 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126096 pin=5509 bma=202 phl=101 lt=0 revr=0)
+03:11:30.078 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127472)
+03:11:31.646 [VRB] [HEAP-TEL] jobs: 2404 bytes (heap=127472)
+03:12:27.888 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:12:27.891 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126096 pin=5552 bma=202 phl=101 lt=0 revr=0)
+03:12:28.136 [VRB] mem: 127476 (42%) [4] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:12:28.138 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:12:28.138 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:12:28.139 [VRB] bla: 0 bma: 200
+03:12:28.140 [VRB] pin: 5552 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:12:28.141 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127476)
+03:12:30.634 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:12:30.637 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126108 pin=5553 bma=202 phl=101 lt=0 revr=0)
+03:12:30.747 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127476)
+03:12:49.828 [VRB] [HEAP-TEL] jobs: -140 bytes (heap=127312)
+03:13:23.682 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:13:23.685 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126108 pin=5614 bma=202 phl=101 lt=0 revr=0)
+03:13:23.779 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127476)
+03:13:42.830 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:13:42.833 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126100 pin=5631 bma=202 phl=101 lt=0 revr=0)
+03:13:43.066 [VRB] mem: 127476 (42%) [0] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:13:43.068 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:13:43.069 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:13:43.070 [VRB] bla: 0 bma: 200
+03:13:43.070 [VRB] pin: 5631 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:13:43.071 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127476)
+03:13:47.029 [VRB] [HEAP-TEL] boundary: -644 bytes (bma=202 phl=100)
+03:13:47.032 [VRB] [HEAP-TEL] inbound: -860 bytes (heap=126092 pin=5638 bma=202 phl=101 lt=0 revr=0)
+03:13:47.037 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=203 phl=101)
+03:13:47.040 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=125536 pin=5639 bma=203 phl=102 lt=0 revr=0)
+03:13:47.227 [VRB] [HEAP-TEL] jobs: 1084 bytes (heap=127480)
+03:13:52.149 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:13:52.152 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126276 pin=5644 bma=202 phl=101 lt=0 revr=0)
+03:13:52.198 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127480)
+03:14:07.814 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:14:07.817 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126104 pin=5664 bma=202 phl=101 lt=0 revr=0)
+03:14:07.870 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=127476)
+03:14:39.979 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:14:39.982 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126108 pin=5686 bma=202 phl=101 lt=0 revr=0)
+03:14:39.985 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127476)
+03:14:58.210 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:14:58.213 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126108 pin=5715 bma=202 phl=101 lt=0 revr=0)
+03:14:58.285 [VRB] mem: 127472 (42%) [-4] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:14:58.287 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:14:58.288 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:14:58.289 [VRB] bla: 0 bma: 200
+03:14:58.289 [VRB] pin: 5715 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:14:58.290 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127472)
+03:16:08.181 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:16:08.184 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126108 pin=5793 bma=202 phl=101 lt=0 revr=0)
+03:16:08.289 [VRB] mem: 127472 (42%) [0] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:16:08.290 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:16:08.291 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:16:08.292 [VRB] bla: 0 bma: 200
+03:16:08.293 [VRB] pin: 5793 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:16:08.294 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127472)
+03:16:12.954 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:16:12.957 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126108 pin=5798 bma=202 phl=101 lt=0 revr=0)
+03:16:12.964 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127472)
+03:16:17.661 [VRB] [HEAP-TEL] jobs: -2328 bytes (heap=125144)
+03:16:50.020 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:16:50.023 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126108 pin=5822 bma=202 phl=101 lt=0 revr=0)
+03:16:50.033 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=127480)
+03:16:54.732 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:16:54.735 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126104 pin=5825 bma=202 phl=101 lt=0 revr=0)
+03:16:54.737 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127480)
+03:17:00.055 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:17:00.058 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126104 pin=5831 bma=202 phl=101 lt=0 revr=0)
+03:17:00.228 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127480)
+03:17:27.927 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:17:27.930 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126104 pin=5871 bma=202 phl=101 lt=0 revr=0)
+03:17:27.976 [VRB] mem: 127476 (42%) [4] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:17:27.978 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:17:27.979 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:17:27.980 [VRB] bla: 0 bma: 200
+03:17:27.980 [VRB] pin: 5871 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:17:27.981 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=127476)
+03:17:38.260 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:17:38.263 [VRB] [HEAP-TEL] inbound: -840 bytes (heap=126112 pin=5883 bma=202 phl=101 lt=0 revr=0)
+03:17:38.293 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127476)
+03:18:10.205 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:18:10.208 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126112 pin=5909 bma=202 phl=101 lt=0 revr=0)
+03:18:37.043 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=203 phl=101)
+03:18:37.046 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=125540 pin=5928 bma=203 phl=102 lt=0 revr=0)
+03:18:37.346 [VRB] mem: 127480 (42%) [4] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:18:37.348 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:18:37.349 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:18:37.350 [VRB] bla: 0 bma: 200
+03:18:37.350 [VRB] pin: 5928 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:18:37.351 [VRB] [HEAP-TEL] jobs: 1068 bytes (heap=127480)
+03:18:42.926 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:18:42.929 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=126120 pin=5934 bma=202 phl=101 lt=0 revr=0)
+03:18:43.103 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=127480)
+03:18:47.272 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:18:47.275 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=126120 pin=5938 bma=202 phl=101 lt=0 revr=0)
+03:18:47.278 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=127468)
+03:18:52.395 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:18:52.398 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=123752 pin=5945 bma=202 phl=101 lt=0 revr=0)
+03:18:52.404 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=203 phl=101)
+03:18:52.407 [VRB] [HEAP-TEL] inbound: -1028 bytes (heap=125544 pin=5946 bma=203 phl=102 lt=0 revr=0)
+03:18:52.503 [VRB] [HEAP-TEL] jobs: 1056 bytes (heap=127448)
+03:19:27.928 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:19:27.931 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126252 pin=5966 bma=202 phl=101 lt=0 revr=0)
+03:19:27.971 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127448)
+03:19:58.031 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:19:58.033 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126084 pin=5993 bma=202 phl=101 lt=0 revr=0)
+03:19:58.337 [VRB] mem: 127448 (42%) [-32] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:19:58.339 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:19:58.341 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:19:58.341 [VRB] bla: 0 bma: 200
+03:19:58.342 [VRB] pin: 5993 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:19:58.343 [VRB] [HEAP-TEL] jobs: -1768 bytes (heap=125072)
+03:19:58.348 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:19:58.351 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126252 pin=5994 bma=202 phl=101 lt=0 revr=0)
+03:19:58.611 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=127440)
+03:20:07.493 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:20:07.496 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126072 pin=6002 bma=202 phl=101 lt=0 revr=0)
+03:20:07.499 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127440)
+03:20:53.446 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:20:53.450 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=125864 pin=6052 bma=202 phl=101 lt=0 revr=0)
+03:20:53.654 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127232)
+03:21:12.996 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:21:12.999 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126072 pin=6067 bma=202 phl=101 lt=0 revr=0)
+03:21:13.254 [VRB] mem: 127456 (42%) [8] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:21:13.256 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:21:13.257 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:21:13.258 [VRB] bla: 0 bma: 200
+03:21:13.258 [VRB] pin: 6067 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:21:13.259 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=127456)
+03:21:13.613 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:21:13.616 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=126084 pin=6068 bma=202 phl=101 lt=0 revr=0)
+03:21:13.764 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=127456)
+03:21:39.206 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:21:39.209 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126088 pin=6093 bma=202 phl=101 lt=0 revr=0)
+03:21:39.368 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127456)
+03:22:09.848 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:22:09.851 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126088 pin=6125 bma=202 phl=101 lt=0 revr=0)
+03:22:09.922 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127456)
+03:22:28.054 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:22:28.057 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126088 pin=6142 bma=202 phl=101 lt=0 revr=0)
+03:22:28.223 [VRB] mem: 127456 (42%) [0] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:22:28.225 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:22:28.226 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:22:28.227 [VRB] bla: 0 bma: 200
+03:22:28.227 [VRB] pin: 6142 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:22:28.228 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127456)
+03:22:44.669 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:22:44.672 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126088 pin=6150 bma=202 phl=101 lt=0 revr=0)
+03:22:44.675 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127456)
+03:22:45.367 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:22:45.370 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126088 pin=6153 bma=202 phl=101 lt=0 revr=0)
+03:22:45.440 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127456)
+03:23:15.790 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:23:15.793 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126248 pin=6175 bma=202 phl=101 lt=0 revr=0)
+03:23:16.007 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=127448)
+03:23:31.558 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:23:31.561 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126080 pin=6191 bma=202 phl=101 lt=0 revr=0)
+03:23:31.646 [VRB] mem: 127448 (42%) [-8] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:23:31.648 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:23:31.649 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:23:31.649 [VRB] bla: 0 bma: 200
+03:23:31.650 [VRB] pin: 6191 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:23:31.651 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127448)
+03:23:43.121 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:23:43.124 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=126068 pin=6201 bma=202 phl=101 lt=0 revr=0)
+03:23:43.377 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=127448)
+03:23:45.671 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:23:45.674 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126072 pin=6205 bma=202 phl=101 lt=0 revr=0)
+03:23:45.715 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=127448)
+03:23:46.714 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:23:46.717 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126240 pin=6206 bma=202 phl=101 lt=0 revr=0)
+03:23:46.760 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=127312)
+03:24:10.559 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:24:10.561 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126068 pin=6226 bma=202 phl=101 lt=0 revr=0)
+03:24:10.801 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127432)
+03:24:17.339 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:24:17.342 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126076 pin=6231 bma=202 phl=101 lt=0 revr=0)
+03:24:17.345 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=127436)
+03:24:47.831 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:24:47.834 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=126064 pin=6260 bma=202 phl=101 lt=0 revr=0)
+03:24:47.932 [VRB] mem: 127440 (42%) [-8] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:24:47.933 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:24:47.934 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:24:47.935 [VRB] bla: 0 bma: 200
+03:24:47.935 [VRB] pin: 6260 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:24:47.936 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=127440)
+03:24:58.173 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:24:58.176 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=126060 pin=6272 bma=202 phl=101 lt=0 revr=0)
+03:24:58.337 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127436)
+03:25:18.567 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:25:18.570 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=126060 pin=6285 bma=202 phl=101 lt=0 revr=0)
+03:25:18.708 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127420)
+03:25:46.933 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:25:46.936 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126060 pin=6309 bma=202 phl=101 lt=0 revr=0)
+03:25:47.183 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127420)
+03:26:13.236 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:26:13.239 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126060 pin=6338 bma=202 phl=101 lt=0 revr=0)
+03:26:13.357 [VRB] mem: 127420 (42%) [-20] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:26:13.359 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:26:13.360 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:26:13.361 [VRB] bla: 0 bma: 200
+03:26:13.361 [VRB] pin: 6338 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:26:13.362 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127420)
+03:26:17.664 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:26:17.667 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126060 pin=6345 bma=202 phl=101 lt=0 revr=0)
+03:26:17.730 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127420)
+03:26:48.259 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:26:48.262 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126060 pin=6380 bma=202 phl=101 lt=0 revr=0)
+03:26:48.500 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127420)
+03:27:08.754 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:27:08.757 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126064 pin=6396 bma=202 phl=101 lt=0 revr=0)
+03:27:08.762 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=203 phl=101)
+03:27:08.765 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=125512 pin=6397 bma=203 phl=102 lt=0 revr=0)
+03:27:08.865 [VRB] [HEAP-TEL] jobs: 1068 bytes (heap=127432)
+03:27:13.859 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:27:13.862 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126224 pin=6403 bma=202 phl=101 lt=0 revr=0)
+03:27:14.154 [VRB] mem: 127440 (42%) [20] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:27:14.156 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:27:14.157 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:27:14.158 [VRB] bla: 0 bma: 200
+03:27:14.158 [VRB] pin: 6403 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:27:14.159 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=127440)
+03:27:28.215 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:27:28.218 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=126048 pin=6419 bma=202 phl=101 lt=0 revr=0)
+03:27:28.277 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127440)
+03:27:29.010 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:27:29.013 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=126048 pin=6420 bma=202 phl=101 lt=0 revr=0)
+03:27:29.071 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=127432)
+03:27:44.269 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:27:44.272 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126056 pin=6426 bma=202 phl=101 lt=0 revr=0)
+03:27:44.464 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127432)
+03:27:49.169 [VRB] [HEAP-TEL] jobs: 2328 bytes (heap=125700)
+03:28:39.892 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:28:39.895 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126236 pin=6467 bma=202 phl=101 lt=0 revr=0)
+03:28:40.069 [VRB] mem: 127424 (42%) [-16] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:28:40.071 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:28:40.072 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:28:40.072 [VRB] bla: 0 bma: 200
+03:28:40.073 [VRB] pin: 6467 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:28:40.074 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=127424)
+03:28:43.462 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127424)
+03:29:06.174 [VRB] [HEAP-TEL] jobs: 2328 bytes (heap=127424)
+03:29:09.775 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:29:09.778 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=126224 pin=6490 bma=202 phl=101 lt=0 revr=0)
+03:29:09.830 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=127424)
+03:29:11.020 [VRB] [HEAP-TEL] boundary: -728 bytes (bma=202 phl=100)
+03:29:11.023 [VRB] [HEAP-TEL] inbound: -988 bytes (heap=126036 pin=6494 bma=202 phl=101 lt=0 revr=0)
+03:29:11.149 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=127416)
+03:29:15.421 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:29:15.424 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126064 pin=6500 bma=202 phl=101 lt=0 revr=0)
+03:29:15.535 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127440)
+03:29:20.632 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:29:20.635 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126248 pin=6506 bma=202 phl=101 lt=0 revr=0)
+03:29:20.741 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127440)
+03:29:35.891 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:29:35.894 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126064 pin=6509 bma=202 phl=101 lt=0 revr=0)
+03:29:36.130 [VRB] [HEAP-TEL] jobs: 636 bytes (heap=127456)
+03:29:51.121 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+03:29:51.124 [VRB] [HEAP-TEL] inbound: -1088 bytes (heap=126064 pin=6526 bma=202 phl=101 lt=0 revr=0)
+03:29:51.306 [VRB] mem: 127456 (42%) [32] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:29:51.308 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:29:51.309 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:29:51.309 [VRB] bla: 0 bma: 200
+03:29:51.310 [VRB] pin: 6526 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:29:51.311 [VRB] [HEAP-TEL] jobs: 636 bytes (heap=127456)
+03:29:58.320 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+03:29:58.323 [VRB] [HEAP-TEL] inbound: -1104 bytes (heap=126208 pin=6536 bma=202 phl=101 lt=0 revr=0)
+03:29:58.360 [VRB] [HEAP-TEL] jobs: 652 bytes (heap=127456)
+03:30:07.767 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+03:30:07.770 [VRB] [HEAP-TEL] inbound: -1088 bytes (heap=126064 pin=6544 bma=202 phl=101 lt=0 revr=0)
+03:30:07.773 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=127420)
+03:30:39.498 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:30:39.501 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=126064 pin=6587 bma=202 phl=101 lt=0 revr=0)
+03:30:39.549 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=127412)
+03:30:42.431 [VRB] [HEAP-TEL] jobs: -2328 bytes (heap=125084)
+03:31:10.918 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:31:10.921 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126060 pin=6634 bma=202 phl=101 lt=0 revr=0)
+03:31:11.194 [VRB] mem: 127432 (42%) [-24] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:31:11.196 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:31:11.197 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:31:11.198 [VRB] bla: 0 bma: 200
+03:31:11.198 [VRB] pin: 6634 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:31:11.199 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=127432)
+03:31:13.277 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+03:31:13.280 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=126060 pin=6639 bma=202 phl=101 lt=0 revr=0)
+03:31:38.363 [VRB] [HEAP-TEL] boundary: -656 bytes (bma=202 phl=101)
+03:31:38.366 [VRB] [HEAP-TEL] inbound: -656 bytes (heap=126016 pin=6672 bma=202 phl=101 lt=0 revr=0)
+03:31:46.353 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=203 phl=101)
+03:31:46.356 [VRB] [HEAP-TEL] inbound: -1004 bytes (heap=125496 pin=6684 bma=203 phl=102 lt=0 revr=0)
+03:31:46.358 [VRB] [HEAP-TEL] jobs: 1096 bytes (heap=127452)
+03:32:28.335 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:32:28.338 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126244 pin=6727 bma=202 phl=101 lt=0 revr=0)
+03:32:28.428 [VRB] mem: 127288 (42%) [-144] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:32:28.429 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:32:28.430 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:32:28.431 [VRB] bla: 0 bma: 200
+03:32:28.432 [VRB] pin: 6727 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:32:28.433 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127288)
+03:32:33.764 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:32:33.767 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126068 pin=6731 bma=202 phl=101 lt=0 revr=0)
+03:32:33.886 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127440)
+03:32:37.893 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:32:37.896 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126084 pin=6739 bma=202 phl=101 lt=0 revr=0)
+03:32:38.065 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127440)
+03:32:43.018 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:32:43.021 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126084 pin=6746 bma=202 phl=101 lt=0 revr=0)
+03:32:43.029 [VRB] [HEAP-TEL] jobs: 632 bytes (heap=127476)
+03:33:13.704 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:33:13.707 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126272 pin=6791 bma=202 phl=101 lt=0 revr=0)
+03:33:13.859 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127476)
+03:33:43.396 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:33:43.399 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=126100 pin=6825 bma=202 phl=101 lt=0 revr=0)
+03:33:43.462 [VRB] mem: 127464 (42%) [176] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:33:43.464 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:33:43.465 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:33:43.466 [VRB] bla: 0 bma: 200
+03:33:43.466 [VRB] pin: 6825 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:33:43.467 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=127464)
+03:33:52.818 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:33:52.821 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=126112 pin=6841 bma=202 phl=101 lt=0 revr=0)
+03:33:53.057 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127468)
+03:34:09.206 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:34:09.209 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126096 pin=6855 bma=202 phl=101 lt=0 revr=0)
+03:34:39.212 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=203 phl=101)
+03:34:39.215 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=125536 pin=6884 bma=203 phl=102 lt=0 revr=0)
+03:34:39.299 [VRB] [HEAP-TEL] jobs: 1068 bytes (heap=127468)
+03:34:56.325 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:34:56.328 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126264 pin=6908 bma=202 phl=101 lt=0 revr=0)
+03:34:56.546 [VRB] mem: 127468 (42%) [4] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:34:56.547 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:34:56.548 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:34:56.549 [VRB] bla: 0 bma: 200
+03:34:56.549 [VRB] pin: 6908 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:34:56.550 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127468)
+03:34:58.463 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:34:58.466 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126096 pin=6910 bma=202 phl=101 lt=0 revr=0)
+03:34:58.581 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127468)
+03:35:11.163 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:35:11.166 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=125884 pin=6922 bma=202 phl=101 lt=0 revr=0)
+03:35:11.217 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=203 phl=101)
+03:35:11.220 [VRB] [HEAP-TEL] inbound: -1000 bytes (heap=125536 pin=6923 bma=203 phl=102 lt=0 revr=0)
+03:35:11.389 [VRB] [HEAP-TEL] jobs: 1064 bytes (heap=127464)
+03:36:01.950 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:36:01.953 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=126260 pin=6970 bma=202 phl=101 lt=0 revr=0)
+03:36:02.094 [VRB] mem: 127476 (42%) [8] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:36:02.096 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:36:02.098 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:36:02.099 [VRB] bla: 0 bma: 200
+03:36:02.099 [VRB] pin: 6970 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:36:02.100 [VRB] [HEAP-TEL] jobs: 260 bytes (heap=127116)
+03:36:04.923 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+03:36:04.926 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126068 pin=6973 bma=202 phl=101 lt=0 revr=0)
+03:36:04.929 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127476)
+03:36:11.475 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+03:36:11.478 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=126068 pin=6983 bma=202 phl=101 lt=0 revr=0)
+03:36:11.706 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=127476)
+03:36:13.420 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:36:13.423 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=126052 pin=6987 bma=202 phl=101 lt=0 revr=0)
+03:36:13.526 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=127476)
+03:36:15.779 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+03:36:15.782 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=126068 pin=6989 bma=202 phl=101 lt=0 revr=0)
+03:36:20.905 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=203 phl=101)
+03:36:20.909 [VRB] [HEAP-TEL] inbound: -824 bytes (heap=125492 pin=6997 bma=203 phl=102 lt=0 revr=0)
+03:37:02.909 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=204 phl=102)
+03:37:02.912 [VRB] [HEAP-TEL] inbound: -1012 bytes (heap=125228 pin=7049 bma=204 phl=103 lt=0 revr=0)
+03:37:03.148 [VRB] mem: 127452 (42%) [-24] flash: 1556480 (98%) [0] paths: 0 dsts: 4 revr: 0 annc: 0 held: 0
+03:37:03.150 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:37:03.151 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:37:03.151 [VRB] bla: 0 bma: 200
+03:37:03.152 [VRB] pin: 7049 pout: 1 padd: 0 dpr: 1 ikd: 0 ia: 0
+
+03:37:03.153 [VRB] [HEAP-TEL] jobs: 1536 bytes (heap=127452)
+03:37:08.013 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:37:08.016 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126060 pin=7058 bma=202 phl=101 lt=0 revr=0)
+03:37:08.085 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127452)
+03:37:18.484 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:37:18.487 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126060 pin=7084 bma=202 phl=101 lt=0 revr=0)
+03:37:18.489 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127452)
+03:37:28.478 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:37:28.481 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=126060 pin=7091 bma=202 phl=101 lt=0 revr=0)
+03:37:28.652 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=127452)
+03:37:39.235 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:37:39.238 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126260 pin=7099 bma=202 phl=101 lt=0 revr=0)
+03:37:39.371 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=127452)
+03:37:44.352 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:37:44.355 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=126260 pin=7101 bma=202 phl=101 lt=0 revr=0)
+03:38:16.017 [VRB] [HEAP-TEL] boundary: -1008 bytes (bma=204 phl=101)
+[6897634][E][vfs_api.cpp:105] open(): /cache/753310b68c830dd97531cd660f68518b6075f39b10f6c7604f2adb71b8811522 does not exist, no permits for creation
+03:38:16.087 [VRB] [HEAP-TEL] inbound: -3824 bytes (heap=122444 pin=7134 bma=204 phl=102 lt=0 revr=0)
+03:38:16.232 [VRB] mem: 123292 (40%) [-4160] flash: 1552384 (98%) [-4096] paths: 1 dsts: 4 revr: 0 annc: 1 held: 0
+03:38:16.233 [VRB] preqs: 0 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:38:16.234 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:38:16.235 [VRB] bla: 1 bma: 200
+03:38:16.236 [VRB] pin: 7134 pout: 1 padd: 1 dpr: 1 ikd: 1 ia: 0
+
+03:38:16.236 [VRB] [HEAP-TEL] jobs: 848 bytes (heap=123292)
+03:38:25.325 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:38:25.328 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=121928 pin=7144 bma=202 phl=101 lt=0 revr=0)
+03:38:25.369 [VRB] [HEAP-TEL] jobs: -912 bytes (heap=121776)
+03:38:30.329 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=101)
+03:38:30.332 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=122184 pin=7147 bma=202 phl=102 lt=0 revr=0)
+03:38:30.589 [VRB] [HEAP-TEL] jobs: 764 bytes (heap=123544)
+03:38:43.538 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:38:43.541 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=122168 pin=7165 bma=202 phl=101 lt=0 revr=0)
+03:38:43.652 [VRB] [HEAP-TEL] jobs: -936 bytes (heap=122004)
+03:38:43.912 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=123552)
+03:38:52.358 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=202 phl=100)
+03:38:52.374 [VRB] [HEAP-TEL] inbound: -3336 bytes (heap=119628 pin=7178 bma=203 phl=102 lt=0 revr=0)
+03:38:52.530 [VRB] [HEAP-TEL] jobs: 2252 bytes (heap=123180)
+03:38:52.961 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:38:52.964 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=123392 pin=7179 bma=202 phl=101 lt=0 revr=0)
+03:38:53.052 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=124764)
+03:38:53.948 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:38:53.951 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=123116 pin=7183 bma=202 phl=101 lt=0 revr=0)
+03:38:54.097 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=124764)
+03:38:55.733 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:38:55.736 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=123392 pin=7185 bma=202 phl=101 lt=0 revr=0)
+03:38:55.908 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=124764)
+03:39:03.713 [VRB] [HEAP-TEL] boundary: -1008 bytes (bma=202 phl=100)
+03:39:03.724 [VRB] [HEAP-TEL] inbound: -3224 bytes (heap=120952 pin=7193 bma=202 phl=102 lt=0 revr=0)
+03:39:03.738 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=122884)
+03:39:06.222 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=202 phl=100)
+03:39:06.225 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=123124 pin=7201 bma=202 phl=101 lt=0 revr=0)
+03:39:06.377 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=124744)
+03:39:10.295 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=202 phl=100)
+03:39:10.298 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=123124 pin=7210 bma=202 phl=101 lt=0 revr=0)
+03:39:10.560 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=124744)
+03:39:11.608 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:39:11.611 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=123360 pin=7213 bma=202 phl=101 lt=0 revr=0)
+03:39:11.614 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=124744)
+03:39:14.295 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=202 phl=100)
+03:39:14.298 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=123124 pin=7215 bma=202 phl=101 lt=0 revr=0)
+03:39:14.467 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=124744)
+03:39:15.341 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:39:15.344 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=123112 pin=7219 bma=202 phl=101 lt=0 revr=0)
+03:39:15.510 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=124756)
+03:39:16.347 [VRB] mem: 124812 (41%) [1520] flash: 1552384 (98%) [0] paths: 1 dsts: 4 revr: 0 annc: 0 held: 0
+03:39:16.349 [VRB] preqs: 1 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:39:16.350 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:39:16.351 [VRB] bla: 1 bma: 200
+03:39:16.351 [VRB] pin: 7219 pout: 7 padd: 1 dpr: 1 ikd: 1 ia: 0
+
+03:39:16.352 [VRB] [HEAP-TEL] jobs: -4660 bytes (heap=120096)
+03:39:18.399 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=202 phl=100)
+03:39:18.418 [VRB] [HEAP-TEL] inbound: -3288 bytes (heap=120968 pin=7224 bma=203 phl=102 lt=0 revr=0)
+03:39:19.490 [VRB] [HEAP-TEL] boundary: -1080 bytes (bma=205 phl=102)
+[6961189][E][vfs_api.cpp:105] open(): /cache/93f888613570d540b088b348875490089d2dd8789ad3956c2b792d97be989bd6 does not exist, no permits for creation
+03:39:19.645 [VRB] [HEAP-TEL] inbound: -1984 bytes (heap=119400 pin=7225 bma=205 phl=103 lt=0 revr=0)
+03:39:19.648 [VRB] [HEAP-TEL] jobs: 1152 bytes (heap=121612)
+03:39:22.054 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:39:22.058 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=121604 pin=7229 bma=202 phl=101 lt=0 revr=0)
+03:39:22.061 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=122976)
+03:39:22.924 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=202 phl=100)
+03:39:22.955 [VRB] [HEAP-TEL] inbound: -1492 bytes (heap=121104 pin=7230 bma=202 phl=101 lt=0 revr=0)
+03:39:23.078 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=122740)
+03:39:25.805 [VRB] [HEAP-TEL] boundary: -1124 bytes (bma=203 phl=100)
+03:39:25.896 [VRB] [HEAP-TEL] inbound: -1172 bytes (heap=120968 pin=7235 bma=203 phl=101 lt=0 revr=0)
+03:39:25.944 [VRB] [HEAP-TEL] jobs: -988 bytes (heap=121176)
+03:39:26.199 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=122740)
+03:39:26.460 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:39:26.463 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=121368 pin=7236 bma=202 phl=101 lt=0 revr=0)
+03:39:26.466 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=122760)
+03:39:26.720 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=202 phl=100)
+03:39:26.736 [VRB] [HEAP-TEL] inbound: -3496 bytes (heap=118664 pin=7237 bma=203 phl=102 lt=0 revr=0)
+03:39:26.741 [VRB] [HEAP-TEL] jobs: 796 bytes (heap=120520)
+03:39:26.994 [VRB] [HEAP-TEL] jobs: 1356 bytes (heap=123876)
+03:39:34.825 [VRB] [HEAP-TEL] boundary: -1136 bytes (bma=203 phl=100)
+03:39:34.917 [VRB] [HEAP-TEL] inbound: -1184 bytes (heap=121468 pin=7244 bma=203 phl=101 lt=0 revr=0)
+03:39:34.921 [VRB] [HEAP-TEL] jobs: 588 bytes (heap=123252)
+03:39:58.604 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:39:58.607 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=121864 pin=7258 bma=202 phl=101 lt=0 revr=0)
+03:39:58.680 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=123244)
+03:40:34.578 [VRB] [HEAP-TEL] boundary: -1144 bytes (bma=203 phl=100)
+03:40:34.587 [VRB] [HEAP-TEL] inbound: -3556 bytes (heap=119092 pin=7281 bma=203 phl=101 lt=0 revr=1)
+03:40:34.710 [VRB] mem: 121616 (40%) [-3196] flash: 1544192 (98%) [-8192] paths: 2 dsts: 4 revr: 1 annc: 0 held: 0
+03:40:34.712 [VRB] preqs: 2 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:40:34.713 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:40:34.713 [VRB] bla: 1 bma: 200
+03:40:34.714 [VRB] pin: 7281 pout: 15 padd: 2 dpr: 1 ikd: 2 ia: 0
+
+03:40:34.715 [VRB] [HEAP-TEL] jobs: 860 bytes (heap=121756)
+03:40:34.878 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+03:40:34.881 [VRB] [HEAP-TEL] inbound: -856 bytes (heap=122168 pin=7282 bma=201 phl=101 lt=0 revr=1)
+03:40:34.968 [VRB] [HEAP-TEL] jobs: 296 bytes (heap=123352)
+03:40:37.112 [VRB] [HEAP-TEL] boundary: -1128 bytes (bma=203 phl=100)
+03:40:37.128 [VRB] [HEAP-TEL] inbound: -968 bytes (heap=121704 pin=7286 bma=203 phl=101 lt=0 revr=1)
+03:40:38.294 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=203 phl=101)
+[7039917][E][vfs_api.cpp:105] open(): /cache/eb0f4a27d1675b8ee4b149ad7cb4136be02842f03c85ea636b4aad24937300c8 does not exist, no permits for creation
+03:40:38.384 [VRB] [HEAP-TEL] inbound: -1356 bytes (heap=120816 pin=7290 bma=203 phl=101 lt=0 revr=1)
+03:40:38.422 [VRB] [HEAP-TEL] jobs: -956 bytes (heap=119860)
+03:41:13.662 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+03:41:13.665 [VRB] [HEAP-TEL] inbound: -1084 bytes (heap=120008 pin=7315 bma=202 phl=101 lt=0 revr=1)
+03:41:13.680 [VRB] [HEAP-TEL] jobs: -952 bytes (heap=119852)
+03:41:29.337 [VRB] [HEAP-TEL] boundary: -1004 bytes (bma=202 phl=100)
+[7090960][E][vfs_api.cpp:105] open(): /cache/65b6c704b364b0b7a7721d15d58fe3797f468b0b8ab084fc2f4f7a4904f5f4d0 does not exist, no permits for creation
+03:41:29.428 [VRB] [HEAP-TEL] inbound: -1204 bytes (heap=119628 pin=7325 bma=202 phl=101 lt=0 revr=1)
+03:41:29.464 [VRB] [HEAP-TEL] jobs: 1896 bytes (heap=122716)
+03:41:31.278 [VRB] [HEAP-TEL] boundary: -1136 bytes (bma=203 phl=100)
+03:41:31.295 [VRB] [HEAP-TEL] inbound: -1184 bytes (heap=121060 pin=7326 bma=203 phl=101 lt=0 revr=1)
+03:41:31.298 [VRB] [HEAP-TEL] jobs: 588 bytes (heap=122716)
+03:41:31.609 [VRB] [HEAP-TEL] boundary: -1020 bytes (bma=202 phl=100)
+[7093232][E][vfs_api.cpp:105] open(): /cache/7624a820dabed70b7a1a1b2eef572ae17bbb3c0b789d5a0e36846bb9ce1f94f9 does not exist, no permits for creation
+03:41:31.702 [VRB] [HEAP-TEL] inbound: -1256 bytes (heap=120860 pin=7327 bma=202 phl=101 lt=0 revr=1)
+03:41:31.802 [VRB] [HEAP-TEL] jobs: 272 bytes (heap=121132)
+03:41:32.866 [VRB] [HEAP-TEL] jobs: -1560 bytes (heap=119664)
+03:41:33.125 [VRB] [HEAP-TEL] jobs: 168 bytes (heap=121224)
+03:41:33.452 [VRB] [HEAP-TEL] boundary: -1164 bytes (bma=203 phl=100)
+03:41:33.469 [VRB] [HEAP-TEL] inbound: -1212 bytes (heap=119532 pin=7331 bma=203 phl=101 lt=0 revr=1)
+03:41:33.629 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=121224)
+03:41:34.941 [VRB] mem: 121224 (40%) [-392] flash: 1544192 (98%) [0] paths: 2 dsts: 4 revr: 1 annc: 1 held: 0
+03:41:34.944 [VRB] preqs: 2 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:41:34.945 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:41:34.945 [VRB] bla: 1 bma: 200
+03:41:34.946 [VRB] pin: 7331 pout: 18 padd: 2 dpr: 1 ikd: 2 ia: 0
+
+03:41:39.018 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:41:39.052 [VRB] [HEAP-TEL] inbound: -1600 bytes (heap=119036 pin=7336 bma=202 phl=101 lt=0 revr=1)
+03:41:39.094 [VRB] [HEAP-TEL] jobs: -980 bytes (heap=119092)
+03:41:49.480 [VRB] [HEAP-TEL] boundary: -1036 bytes (bma=202 phl=101)
+03:41:49.488 [VRB] [HEAP-TEL] inbound: -3444 bytes (heap=116472 pin=7349 bma=202 phl=102 lt=0 revr=2)
+03:41:49.552 [VRB] [HEAP-TEL] jobs: 520 bytes (heap=117204)
+03:41:49.829 [VRB] [HEAP-TEL] boundary: -888 bytes (bma=202 phl=101)
+03:41:49.831 [VRB] [HEAP-TEL] inbound: -936 bytes (heap=120508 pin=7350 bma=202 phl=102 lt=0 revr=2)
+03:41:49.834 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=121912)
+03:41:50.598 [VRB] [HEAP-TEL] jobs: 1332 bytes (heap=123244)
+03:41:51.958 [VRB] [HEAP-TEL] boundary: -1152 bytes (bma=203 phl=100)
+03:41:51.966 [VRB] [HEAP-TEL] inbound: -3388 bytes (heap=119256 pin=7353 bma=203 phl=101 lt=0 revr=2)
+03:41:52.165 [VRB] [HEAP-TEL] jobs: 588 bytes (heap=123244)
+03:41:54.099 [VRB] [HEAP-TEL] boundary: -1124 bytes (bma=203 phl=100)
+03:41:54.191 [VRB] [HEAP-TEL] inbound: -1172 bytes (heap=121472 pin=7354 bma=203 phl=101 lt=0 revr=2)
+03:41:54.254 [VRB] [HEAP-TEL] jobs: 576 bytes (heap=123244)
+03:41:55.016 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:41:55.048 [VRB] [HEAP-TEL] inbound: -2416 bytes (heap=120228 pin=7355 bma=202 phl=101 lt=0 revr=2)
+03:41:55.273 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=121860)
+03:41:58.503 [VRB] [HEAP-TEL] jobs: -1556 bytes (heap=120304)
+03:41:58.757 [VRB] [HEAP-TEL] jobs: 168 bytes (heap=121860)
+03:41:59.631 [VRB] [HEAP-TEL] inbound: -668 bytes (heap=120592 pin=7357 bma=200 phl=100 lt=0 revr=2)
+03:41:59.795 [VRB] [HEAP-TEL] jobs: 1356 bytes (heap=123216)
+03:42:01.828 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=202 phl=100)
+03:42:01.860 [VRB] [HEAP-TEL] inbound: -2376 bytes (heap=120240 pin=7362 bma=202 phl=101 lt=0 revr=2)
+03:42:02.526 [VRB] [HEAP-TEL] boundary: -788 bytes (bma=203 phl=101)
+03:42:02.558 [VRB] [HEAP-TEL] inbound: -1220 bytes (heap=119456 pin=7365 bma=203 phl=102 lt=0 revr=2)
+03:42:02.601 [VRB] [HEAP-TEL] jobs: -276 bytes (heap=120308)
+03:42:02.869 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=121880)
+03:42:04.796 [VRB] [HEAP-TEL] boundary: -1168 bytes (bma=203 phl=100)
+03:42:04.804 [VRB] [HEAP-TEL] inbound: -3432 bytes (heap=117848 pin=7367 bma=203 phl=101 lt=0 revr=3)
+03:42:04.965 [VRB] [HEAP-TEL] jobs: -956 bytes (heap=118416)
+03:42:05.174 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=101)
+03:42:05.177 [VRB] [HEAP-TEL] inbound: -904 bytes (heap=120312 pin=7368 bma=202 phl=102 lt=0 revr=3)
+03:42:05.220 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=121716)
+03:42:06.007 [VRB] [HEAP-TEL] jobs: 1336 bytes (heap=123052)
+03:42:07.143 [VRB] [HEAP-TEL] boundary: -1136 bytes (bma=203 phl=100)
+03:42:07.235 [VRB] [HEAP-TEL] inbound: -1188 bytes (heap=121272 pin=7371 bma=203 phl=101 lt=0 revr=3)
+03:42:07.303 [VRB] [HEAP-TEL] jobs: 580 bytes (heap=123052)
+03:42:09.624 [VRB] [HEAP-TEL] boundary: -1140 bytes (bma=203 phl=100)
+03:42:09.633 [VRB] [HEAP-TEL] inbound: -3404 bytes (heap=119056 pin=7372 bma=203 phl=101 lt=0 revr=4)
+03:42:09.883 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=122896)
+03:42:10.084 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=201 phl=100)
+03:42:10.087 [VRB] [HEAP-TEL] inbound: -868 bytes (heap=121868 pin=7373 bma=201 phl=101 lt=0 revr=4)
+03:42:10.136 [VRB] [HEAP-TEL] jobs: 296 bytes (heap=122896)
+03:42:19.052 [VRB] [HEAP-TEL] boundary: -1152 bytes (bma=203 phl=100)
+03:42:19.056 [VRB] [HEAP-TEL] inbound: -1372 bytes (heap=121056 pin=7377 bma=203 phl=101 lt=0 revr=5)
+03:42:19.059 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=122724)
+03:42:23.542 [VRB] [HEAP-TEL] boundary: -996 bytes (bma=202 phl=100)
+03:42:23.545 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=121088 pin=7384 bma=202 phl=101 lt=0 revr=5)
+03:42:23.654 [VRB] [HEAP-TEL] jobs: 436 bytes (heap=122724)
+03:42:26.066 [VRB] [HEAP-TEL] boundary: -1148 bytes (bma=203 phl=100)
+03:42:26.070 [VRB] [HEAP-TEL] inbound: -1368 bytes (heap=120888 pin=7389 bma=203 phl=101 lt=0 revr=6)
+03:42:26.082 [VRB] [HEAP-TEL] jobs: 588 bytes (heap=122552)
+03:42:28.037 [VRB] [HEAP-TEL] boundary: -996 bytes (bma=202 phl=100)
+03:42:28.041 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=120908 pin=7392 bma=202 phl=101 lt=0 revr=6)
+03:42:28.156 [VRB] [HEAP-TEL] jobs: 436 bytes (heap=122552)
+03:42:32.339 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:42:32.342 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=121192 pin=7395 bma=202 phl=101 lt=0 revr=6)
+03:42:32.353 [VRB] [HEAP-TEL] boundary: -1156 bytes (bma=205 phl=101)
+03:42:32.358 [VRB] [HEAP-TEL] inbound: -3748 bytes (heap=117740 pin=7397 bma=205 phl=102 lt=0 revr=7)
+03:42:32.364 [VRB] [HEAP-TEL] boundary: -816 bytes (bma=206 phl=102)
+03:42:32.366 [VRB] [HEAP-TEL] inbound: -1024 bytes (heap=117488 pin=7398 bma=206 phl=103 lt=0 revr=7)
+03:42:34.559 [VRB] [HEAP-TEL] boundary: -928 bytes (bma=207 phl=103)
+03:42:34.562 [VRB] [HEAP-TEL] inbound: -976 bytes (heap=118364 pin=7402 bma=207 phl=104 lt=0 revr=7)
+03:42:34.775 [VRB] [HEAP-TEL] jobs: 1952 bytes (heap=121604)
+03:42:35.069 [VRB] mem: 121604 (40%) [380] flash: 1544192 (98%) [0] paths: 2 dsts: 4 revr: 7 annc: 0 held: 0
+03:42:35.071 [VRB] preqs: 2 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:42:35.072 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:42:35.073 [VRB] bla: 1 bma: 200
+03:42:35.073 [VRB] pin: 7402 pout: 23 padd: 2 dpr: 1 ikd: 2 ia: 0
+
+03:42:36.576 [VRB] [HEAP-TEL] boundary: -992 bytes (bma=202 phl=100)
+03:42:36.580 [VRB] [HEAP-TEL] inbound: -828 bytes (heap=119976 pin=7405 bma=202 phl=101 lt=0 revr=7)
+03:42:36.594 [VRB] [HEAP-TEL] jobs: 436 bytes (heap=121604)
+03:42:36.723 [VRB] [HEAP-TEL] boundary: -840 bytes (bma=202 phl=100)
+03:42:36.726 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=120236 pin=7406 bma=202 phl=101 lt=0 revr=7)
+03:42:36.869 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=121608)
+03:42:38.053 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:42:38.056 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=120240 pin=7407 bma=202 phl=101 lt=0 revr=7)
+03:42:38.165 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=121608)
+03:42:41.449 [VRB] [HEAP-TEL] boundary: -1152 bytes (bma=203 phl=100)
+03:42:41.458 [VRB] [HEAP-TEL] inbound: -3424 bytes (heap=117596 pin=7411 bma=203 phl=101 lt=0 revr=8)
+03:42:41.580 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=119840)
+03:42:41.829 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+03:42:41.832 [VRB] [HEAP-TEL] inbound: -916 bytes (heap=120352 pin=7412 bma=202 phl=101 lt=0 revr=8)
+03:42:41.836 [VRB] [HEAP-TEL] jobs: 448 bytes (heap=121428)
+03:42:42.040 [VRB] [HEAP-TEL] boundary: -1164 bytes (bma=203 phl=100)
+03:42:42.044 [VRB] [HEAP-TEL] inbound: -1396 bytes (heap=119728 pin=7413 bma=203 phl=101 lt=0 revr=9)
+03:42:42.102 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=121248)
+03:42:42.397 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+03:42:42.404 [VRB] [HEAP-TEL] inbound: -2792 bytes (heap=117868 pin=7414 bma=202 phl=101 lt=0 revr=9)
+03:42:42.625 [VRB] [HEAP-TEL] jobs: 436 bytes (heap=119652)
+03:42:43.349 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:42:43.356 [VRB] [HEAP-TEL] inbound: -2936 bytes (heap=117712 pin=7415 bma=202 phl=101 lt=0 revr=9)
+03:42:43.397 [VRB] [HEAP-TEL] jobs: 444 bytes (heap=119644)
+03:42:55.976 [VRB] [HEAP-TEL] inbound: -672 bytes (heap=119976 pin=7435 bma=200 phl=100 lt=0 revr=9)
+03:42:56.927 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:42:56.934 [VRB] [HEAP-TEL] inbound: -2796 bytes (heap=117852 pin=7438 bma=202 phl=101 lt=0 revr=9)
+03:42:56.982 [VRB] [HEAP-TEL] jobs: 444 bytes (heap=119644)
+03:42:58.948 [VRB] [HEAP-TEL] boundary: -992 bytes (bma=202 phl=100)
+03:42:58.952 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=119604 pin=7442 bma=202 phl=101 lt=0 revr=9)
+03:42:59.073 [VRB] [HEAP-TEL] jobs: 444 bytes (heap=121236)
+03:43:00.997 [VRB] [HEAP-TEL] boundary: -992 bytes (bma=202 phl=100)
+03:43:01.000 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=119604 pin=7445 bma=202 phl=101 lt=0 revr=9)
+03:43:01.164 [VRB] [HEAP-TEL] jobs: 444 bytes (heap=121236)
+03:43:02.985 [VRB] [HEAP-TEL] boundary: -992 bytes (bma=202 phl=100)
+03:43:02.988 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=119604 pin=7446 bma=202 phl=101 lt=0 revr=9)
+03:43:02.992 [VRB] [HEAP-TEL] jobs: 444 bytes (heap=121236)
+03:43:05.003 [VRB] [HEAP-TEL] boundary: -992 bytes (bma=202 phl=100)
+03:43:05.006 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=119604 pin=7447 bma=202 phl=101 lt=0 revr=9)
+03:43:05.071 [VRB] [HEAP-TEL] jobs: 444 bytes (heap=121236)
+03:43:06.698 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:43:06.706 [VRB] [HEAP-TEL] inbound: -2796 bytes (heap=117852 pin=7451 bma=202 phl=101 lt=0 revr=9)
+03:43:06.918 [VRB] [HEAP-TEL] jobs: 444 bytes (heap=119644)
+03:43:07.650 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:43:07.657 [VRB] [HEAP-TEL] inbound: -2936 bytes (heap=117712 pin=7452 bma=202 phl=101 lt=0 revr=9)
+03:43:07.691 [VRB] [HEAP-TEL] jobs: 444 bytes (heap=119644)
+03:43:17.566 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+03:43:17.570 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=119496 pin=7454 bma=202 phl=101 lt=0 revr=9)
+03:43:20.446 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=204 phl=101)
+03:43:20.453 [VRB] [HEAP-TEL] inbound: -2940 bytes (heap=117092 pin=7463 bma=204 phl=102 lt=0 revr=9)
+03:43:20.696 [VRB] [HEAP-TEL] jobs: 1064 bytes (heap=121236)
+03:43:21.396 [VRB] [HEAP-TEL] inbound: -668 bytes (heap=119976 pin=7464 bma=200 phl=100 lt=0 revr=9)
+03:43:23.418 [VRB] [HEAP-TEL] boundary: -988 bytes (bma=202 phl=100)
+03:43:23.421 [VRB] [HEAP-TEL] inbound: -1048 bytes (heap=118016 pin=7465 bma=202 phl=101 lt=0 revr=9)
+03:43:23.557 [VRB] [HEAP-TEL] jobs: 448 bytes (heap=119652)
+03:43:25.436 [VRB] [HEAP-TEL] boundary: -1012 bytes (bma=202 phl=100)
+03:43:25.440 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=119576 pin=7469 bma=202 phl=101 lt=0 revr=9)
+03:43:25.660 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=121236)
+03:43:27.455 [VRB] [HEAP-TEL] boundary: -1012 bytes (bma=202 phl=100)
+03:43:27.458 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=119576 pin=7472 bma=202 phl=101 lt=0 revr=9)
+03:43:27.499 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=121236)
+03:43:29.473 [VRB] [HEAP-TEL] boundary: -1012 bytes (bma=202 phl=100)
+03:43:29.476 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=119576 pin=7474 bma=202 phl=101 lt=0 revr=9)
+03:43:29.588 [VRB] [HEAP-TEL] jobs: 472 bytes (heap=121236)
+03:43:32.826 [VRB] [HEAP-TEL] boundary: -1164 bytes (bma=203 phl=100)
+03:43:32.834 [VRB] [HEAP-TEL] inbound: -3420 bytes (heap=117228 pin=7475 bma=203 phl=101 lt=0 revr=10)
+03:43:32.972 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=119472)
+03:43:33.110 [VRB] [HEAP-TEL] boundary: -808 bytes (bma=201 phl=100)
+03:43:33.113 [VRB] [HEAP-TEL] inbound: -856 bytes (heap=119876 pin=7476 bma=201 phl=101 lt=0 revr=10)
+03:43:33.224 [VRB] [HEAP-TEL] jobs: 304 bytes (heap=120916)
+03:43:35.092 [VRB] [HEAP-TEL] boundary: -1160 bytes (bma=203 phl=100)
+03:43:35.100 [VRB] [HEAP-TEL] inbound: -2964 bytes (heap=117516 pin=7478 bma=203 phl=101 lt=0 revr=11)
+03:43:35.326 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=204 phl=101)
+03:43:35.329 [VRB] [HEAP-TEL] inbound: -856 bytes (heap=119284 pin=7480 bma=204 phl=102 lt=0 revr=11)
+03:43:35.642 [VRB] mem: 120876 (40%) [-728] flash: 1544192 (98%) [0] paths: 2 dsts: 4 revr: 11 annc: 0 held: 0
+03:43:35.643 [VRB] preqs: 2 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:43:35.644 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:43:35.645 [VRB] bla: 1 bma: 200
+03:43:35.646 [VRB] pin: 7480 pout: 23 padd: 2 dpr: 1 ikd: 2 ia: 0
+
+03:43:35.646 [VRB] [HEAP-TEL] jobs: 896 bytes (heap=120876)
+03:43:35.792 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=202 phl=100)
+03:43:35.835 [VRB] [HEAP-TEL] inbound: -1616 bytes (heap=118672 pin=7481 bma=202 phl=101 lt=0 revr=11)
+03:43:35.899 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=120292)
+03:43:36.748 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=202 phl=100)
+03:43:36.790 [VRB] [HEAP-TEL] inbound: -1260 bytes (heap=118444 pin=7484 bma=202 phl=101 lt=0 revr=11)
+03:43:36.907 [VRB] [HEAP-TEL] jobs: -740 bytes (heap=118728)
+03:43:37.175 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=120304)
+03:43:37.453 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=202 phl=100)
+03:43:37.496 [VRB] [HEAP-TEL] inbound: -1280 bytes (heap=118436 pin=7487 bma=202 phl=101 lt=0 revr=11)
+03:43:37.706 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=120064)
+03:43:37.961 [VRB] [HEAP-TEL] jobs: -1304 bytes (heap=118760)
+03:43:38.229 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=120292)
+03:43:39.004 [VRB] [HEAP-TEL] jobs: -1556 bytes (heap=118736)
+03:43:39.275 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=120152)
+03:43:39.839 [VRB] [HEAP-TEL] boundary: -1148 bytes (bma=203 phl=100)
+03:43:39.931 [VRB] [HEAP-TEL] inbound: -1196 bytes (heap=118508 pin=7489 bma=203 phl=101 lt=0 revr=11)
+03:43:40.049 [VRB] [HEAP-TEL] jobs: 1940 bytes (heap=121624)
+03:43:40.761 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:43:40.804 [VRB] [HEAP-TEL] inbound: -2400 bytes (heap=118644 pin=7490 bma=202 phl=101 lt=0 revr=11)
+03:43:40.842 [VRB] [HEAP-TEL] jobs: 628 bytes (heap=120296)
+03:43:41.842 [VRB] [HEAP-TEL] boundary: -968 bytes (bma=202 phl=100)
+03:43:41.846 [VRB] [HEAP-TEL] inbound: -1172 bytes (heap=118728 pin=7491 bma=202 phl=101 lt=0 revr=11)
+03:43:41.887 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=120296)
+03:43:42.142 [VRB] [HEAP-TEL] jobs: -1532 bytes (heap=118764)
+03:43:42.410 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=120296)
+03:43:43.183 [VRB] [HEAP-TEL] jobs: 1348 bytes (heap=121644)
+03:43:43.771 [VRB] [HEAP-TEL] boundary: -1124 bytes (bma=203 phl=100)
+03:43:43.862 [VRB] [HEAP-TEL] inbound: -1172 bytes (heap=119884 pin=7493 bma=203 phl=101 lt=0 revr=11)
+03:43:43.904 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=205 phl=101)
+03:43:43.907 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=119684 pin=7494 bma=205 phl=102 lt=0 revr=11)
+03:43:43.959 [VRB] [HEAP-TEL] jobs: 1184 bytes (heap=121644)
+03:43:44.686 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=202 phl=100)
+03:43:44.702 [VRB] [HEAP-TEL] inbound: -3032 bytes (heap=118024 pin=7496 bma=203 phl=102 lt=0 revr=11)
+03:43:44.713 [VRB] [HEAP-TEL] jobs: 828 bytes (heap=119876)
+03:43:47.073 [VRB] [HEAP-TEL] boundary: -1128 bytes (bma=203 phl=100)
+03:43:47.165 [VRB] [HEAP-TEL] inbound: -1176 bytes (heap=119696 pin=7501 bma=203 phl=101 lt=0 revr=11)
+03:43:47.286 [VRB] [HEAP-TEL] jobs: 580 bytes (heap=121460)
+03:44:13.707 [VRB] [HEAP-TEL] boundary: -1008 bytes (bma=202 phl=100)
+03:44:13.710 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=119816 pin=7528 bma=202 phl=101 lt=0 revr=11)
+03:44:13.933 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=121460)
+03:44:15.725 [VRB] [HEAP-TEL] boundary: -1008 bytes (bma=202 phl=100)
+03:44:15.729 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=119816 pin=7531 bma=202 phl=101 lt=0 revr=11)
+03:44:15.773 [VRB] [HEAP-TEL] jobs: 460 bytes (heap=121460)
+03:44:17.521 [VRB] [HEAP-TEL] boundary: -1084 bytes (bma=203 phl=100)
+[7259221][E][vfs_api.cpp:105] open(): /cache/cab4ff85e4906b54b5c3744468e34e963eca6a89ec2c0cf8d962513c6a40ab40 does not exist, no permits for creation
+03:44:17.666 [VRB] [HEAP-TEL] inbound: -2860 bytes (heap=118012 pin=7534 bma=203 phl=101 lt=0 revr=11)
+03:44:17.702 [VRB] [HEAP-TEL] jobs: 408 bytes (heap=119560)
+03:44:19.517 [VRB] [HEAP-TEL] boundary: -1000 bytes (bma=202 phl=100)
+03:44:19.521 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=117920 pin=7537 bma=202 phl=101 lt=0 revr=11)
+03:44:19.524 [VRB] [HEAP-TEL] jobs: 440 bytes (heap=119560)
+03:44:21.545 [VRB] [HEAP-TEL] boundary: -1000 bytes (bma=202 phl=100)
+03:44:21.548 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=117920 pin=7540 bma=202 phl=101 lt=0 revr=11)
+03:44:21.615 [VRB] [HEAP-TEL] jobs: 440 bytes (heap=119560)
+03:44:23.306 [VRB] [HEAP-TEL] boundary: -956 bytes (bma=202 phl=100)
+03:44:23.400 [VRB] [HEAP-TEL] inbound: -1008 bytes (heap=117964 pin=7541 bma=202 phl=101 lt=0 revr=11)
+03:44:23.453 [VRB] [HEAP-TEL] jobs: 456 bytes (heap=119560)
+03:44:23.757 [VRB] [HEAP-TEL] boundary: -656 bytes (bma=202 phl=100)
+03:44:23.760 [VRB] [HEAP-TEL] inbound: -872 bytes (heap=118160 pin=7543 bma=202 phl=101 lt=0 revr=11)
+03:44:23.977 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=119560)
+03:44:39.193 [VRB] [HEAP-TEL] jobs: 1584 bytes (heap=114796)
+03:44:58.488 [VRB] [HEAP-TEL] boundary: -1168 bytes (bma=203 phl=100)
+03:44:58.490 [VRB] [HEAP-TEL] inbound: -1228 bytes (heap=117788 pin=7579 bma=203 phl=101 lt=0 revr=11)
+03:44:58.600 [VRB] mem: 119664 (39%) [-1212] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 11 annc: 0 held: 0
+03:44:58.601 [VRB] preqs: 2 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:44:58.602 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:44:58.603 [VRB] bla: 2 bma: 200
+03:44:58.604 [VRB] pin: 7579 pout: 31 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:44:58.605 [VRB] [HEAP-TEL] jobs: 792 bytes (heap=119788)
+03:45:07.343 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:45:07.346 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=118580 pin=7585 bma=202 phl=101 lt=0 revr=11)
+03:45:07.483 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=119572)
+03:45:07.959 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+03:45:07.962 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=118568 pin=7586 bma=202 phl=101 lt=0 revr=11)
+03:45:08.005 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=119780)
+03:45:09.705 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+03:45:09.708 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=118568 pin=7589 bma=202 phl=101 lt=0 revr=11)
+03:45:09.847 [VRB] [HEAP-TEL] jobs: 756 bytes (heap=119780)
+03:45:09.887 [VRB] [HEAP-TEL] boundary: -1160 bytes (bma=203 phl=100)
+03:45:09.889 [VRB] [HEAP-TEL] inbound: -1216 bytes (heap=117976 pin=7590 bma=203 phl=101 lt=0 revr=11)
+03:45:10.100 [VRB] [HEAP-TEL] jobs: 588 bytes (heap=119780)
+03:45:12.879 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:45:12.935 [VRB] [HEAP-TEL] inbound: -1652 bytes (heap=117540 pin=7593 bma=202 phl=101 lt=0 revr=11)
+03:45:12.979 [VRB] [HEAP-TEL] jobs: 636 bytes (heap=119200)
+03:45:16.299 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:45:16.357 [VRB] [HEAP-TEL] inbound: -1284 bytes (heap=117328 pin=7600 bma=202 phl=101 lt=0 revr=11)
+03:45:16.368 [VRB] [HEAP-TEL] jobs: -684 bytes (heap=117668)
+03:45:21.477 [VRB] [HEAP-TEL] boundary: -1160 bytes (bma=203 phl=101)
+03:45:21.486 [VRB] [HEAP-TEL] inbound: -3576 bytes (heap=114880 pin=7603 bma=203 phl=102 lt=0 revr=12)
+03:45:21.612 [VRB] [HEAP-TEL] jobs: -812 bytes (heap=115880)
+03:45:23.992 [VRB] [HEAP-TEL] boundary: -836 bytes (bma=201 phl=101)
+03:45:23.995 [VRB] [HEAP-TEL] inbound: -884 bytes (heap=117640 pin=7604 bma=201 phl=102 lt=0 revr=12)
+03:45:30.208 [VRB] [HEAP-TEL] boundary: -1136 bytes (bma=204 phl=102)
+03:45:30.211 [VRB] [HEAP-TEL] inbound: -1356 bytes (heap=116504 pin=7616 bma=204 phl=103 lt=0 revr=13)
+03:45:30.390 [VRB] [HEAP-TEL] jobs: 2408 bytes (heap=120192)
+03:45:33.836 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=201 phl=100)
+03:45:33.843 [VRB] [HEAP-TEL] inbound: -2908 bytes (heap=116696 pin=7619 bma=201 phl=101 lt=0 revr=13)
+03:45:34.054 [VRB] [HEAP-TEL] jobs: 316 bytes (heap=118608)
+03:45:39.706 [VRB] [HEAP-TEL] boundary: -876 bytes (bma=202 phl=100)
+03:45:39.709 [VRB] [HEAP-TEL] inbound: -1092 bytes (heap=118200 pin=7623 bma=202 phl=101 lt=0 revr=13)
+03:45:39.814 [VRB] [HEAP-TEL] jobs: 640 bytes (heap=119228)
+03:45:50.157 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:45:50.160 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=118040 pin=7635 bma=202 phl=101 lt=0 revr=13)
+03:45:50.264 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=119436)
+03:46:13.961 [VRB] [HEAP-TEL] boundary: -1140 bytes (bma=203 phl=100)
+03:46:13.965 [VRB] [HEAP-TEL] inbound: -1376 bytes (heap=117580 pin=7663 bma=203 phl=101 lt=0 revr=14)
+03:46:13.970 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=205 phl=101)
+03:46:13.973 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=117268 pin=7664 bma=205 phl=102 lt=0 revr=14)
+03:46:14.113 [VRB] mem: 119268 (39%) [-396] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:46:14.115 [VRB] preqs: 2 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:46:14.116 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:46:14.117 [VRB] bla: 2 bma: 200
+03:46:14.117 [VRB] pin: 7664 pout: 33 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:46:14.118 [VRB] [HEAP-TEL] jobs: 1220 bytes (heap=119268)
+03:46:17.680 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=201 phl=100)
+03:46:17.687 [VRB] [HEAP-TEL] inbound: -2892 bytes (heap=115788 pin=7669 bma=201 phl=101 lt=0 revr=14)
+03:46:17.791 [VRB] [HEAP-TEL] jobs: 312 bytes (heap=117684)
+03:46:34.526 [VRB] [HEAP-TEL] boundary: -1184 bytes (bma=204 phl=100)
+03:46:34.529 [VRB] [HEAP-TEL] inbound: -1468 bytes (heap=117448 pin=7683 bma=204 phl=101 lt=1 revr=14)
+03:46:34.532 [VRB] [HEAP-TEL] jobs: 668 bytes (heap=118940)
+03:46:37.346 [VRB] [HEAP-TEL] boundary: -916 bytes (bma=202 phl=100)
+03:46:37.441 [VRB] [HEAP-TEL] inbound: -3020 bytes (heap=115332 pin=7687 bma=202 phl=101 lt=1 revr=14)
+03:46:37.577 [VRB] [HEAP-TEL] jobs: 464 bytes (heap=117356)
+03:46:37.702 [VRB] [HEAP-TEL] boundary: -892 bytes (bma=202 phl=100)
+03:46:37.705 [VRB] [HEAP-TEL] inbound: -944 bytes (heap=117824 pin=7688 bma=202 phl=101 lt=1 revr=14)
+03:46:37.736 [VRB] [HEAP-TEL] boundary: -1212 bytes (bma=203 phl=101)
+03:46:37.739 [VRB] [HEAP-TEL] inbound: -1260 bytes (heap=116468 pin=7689 bma=203 phl=102 lt=1 revr=14)
+03:46:37.852 [VRB] [HEAP-TEL] jobs: 764 bytes (heap=118932)
+03:46:45.019 [VRB] [HEAP-TEL] jobs: -140 bytes (heap=118768)
+03:46:45.307 [VRB] [HEAP-TEL] boundary: -920 bytes (bma=202 phl=100)
+03:46:45.322 [VRB] [HEAP-TEL] inbound: -5128 bytes (heap=113216 pin=7701 bma=202 phl=102 lt=1 revr=14)
+03:46:45.538 [VRB] [HEAP-TEL] jobs: 540 bytes (heap=115616)
+03:46:46.416 [VRB] [HEAP-TEL] boundary: -1296 bytes (bma=202 phl=100)
+03:46:46.419 [VRB] [HEAP-TEL] inbound: -1344 bytes (heap=109368 pin=7702 bma=202 phl=101 lt=1 revr=14)
+03:46:46.431 [VRB] [HEAP-TEL] boundary: -1228 bytes (bma=203 phl=101)
+03:46:46.434 [VRB] [HEAP-TEL] inbound: -1276 bytes (heap=108968 pin=7703 bma=203 phl=102 lt=1 revr=14)
+03:46:46.447 [VRB] [HEAP-TEL] boundary: -1228 bytes (bma=204 phl=102)
+03:46:46.450 [VRB] [HEAP-TEL] inbound: -1276 bytes (heap=115996 pin=7704 bma=204 phl=103 lt=1 revr=14)
+03:46:46.462 [VRB] [HEAP-TEL] boundary: -1220 bytes (bma=205 phl=103)
+03:46:46.465 [VRB] [HEAP-TEL] inbound: -1268 bytes (heap=115696 pin=7705 bma=205 phl=104 lt=1 revr=14)
+03:47:09.769 [VRB] [HEAP-TEL] boundary: -892 bytes (bma=206 phl=104)
+03:47:09.785 [VRB] [HEAP-TEL] inbound: -4608 bytes (heap=112204 pin=7719 bma=206 phl=106 lt=1 revr=14)
+03:47:09.797 [VRB] [HEAP-TEL] jobs: 1872 bytes (heap=115280)
+03:47:10.912 [VRB] [HEAP-TEL] boundary: -1288 bytes (bma=202 phl=100)
+03:47:10.914 [VRB] [HEAP-TEL] inbound: -1336 bytes (heap=116724 pin=7731 bma=202 phl=101 lt=1 revr=14)
+03:47:10.927 [VRB] [HEAP-TEL] boundary: -1232 bytes (bma=203 phl=101)
+03:47:10.930 [VRB] [HEAP-TEL] inbound: -1280 bytes (heap=116320 pin=7732 bma=203 phl=102 lt=1 revr=14)
+03:47:10.939 [VRB] [HEAP-TEL] jobs: 764 bytes (heap=118792)
+03:47:10.971 [VRB] [HEAP-TEL] boundary: -1288 bytes (bma=202 phl=100)
+03:47:10.975 [VRB] [HEAP-TEL] inbound: -1336 bytes (heap=116516 pin=7733 bma=202 phl=101 lt=1 revr=14)
+03:47:10.987 [VRB] [HEAP-TEL] boundary: -1232 bytes (bma=203 phl=101)
+03:47:10.990 [VRB] [HEAP-TEL] inbound: -1280 bytes (heap=116320 pin=7734 bma=203 phl=102 lt=1 revr=14)
+03:47:11.002 [VRB] [HEAP-TEL] boundary: -1244 bytes (bma=204 phl=102)
+03:47:11.005 [VRB] [HEAP-TEL] inbound: -1292 bytes (heap=116004 pin=7735 bma=204 phl=103 lt=1 revr=14)
+03:47:12.096 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=206 phl=103)
+03:47:12.099 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=116320 pin=7737 bma=206 phl=104 lt=1 revr=14)
+03:47:12.267 [VRB] [HEAP-TEL] jobs: 1672 bytes (heap=118632)
+03:47:51.660 [VRB] [HEAP-TEL] boundary: -904 bytes (bma=202 phl=100)
+03:47:51.676 [VRB] [HEAP-TEL] inbound: -4892 bytes (heap=111704 pin=7749 bma=202 phl=102 lt=1 revr=14)
+03:47:51.774 [VRB] mem: 113464 (37%) [-5804] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:47:51.776 [VRB] preqs: 3 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:47:51.777 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:47:51.778 [VRB] bla: 2 bma: 200
+03:47:51.778 [VRB] pin: 7749 pout: 36 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:47:51.779 [VRB] [HEAP-TEL] jobs: 792 bytes (heap=113596)
+03:47:53.565 [VRB] [HEAP-TEL] jobs: 160 bytes (heap=112604)
+03:47:56.007 [VRB] [HEAP-TEL] boundary: -1008 bytes (bma=202 phl=100)
+[7477625][E][vfs_api.cpp:105] open(): /cache/45e22fbdd74144d0be4b7b447d1235e606d1df0a13de4acd4a39fc316cc64e63 does not exist, no permits for creation
+03:47:56.074 [VRB] [HEAP-TEL] inbound: -1208 bytes (heap=110808 pin=7750 bma=202 phl=101 lt=0 revr=14)
+03:47:56.174 [VRB] [HEAP-TEL] jobs: 356 bytes (heap=112360)
+03:48:08.184 [VRB] [HEAP-TEL] jobs: 2400 bytes (heap=112360)
+03:48:29.011 [VRB] [HEAP-TEL] boundary: -900 bytes (bma=202 phl=100)
+03:48:29.022 [VRB] [HEAP-TEL] inbound: -3104 bytes (heap=107084 pin=7751 bma=202 phl=102 lt=0 revr=14)
+03:48:29.072 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=109196)
+03:48:52.053 [VRB] mem: 107652 (35%) [-5812] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:48:52.055 [VRB] preqs: 4 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:48:52.056 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:48:52.057 [VRB] bla: 2 bma: 200
+03:48:52.057 [VRB] pin: 7751 pout: 38 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:48:54.840 [VRB] [HEAP-TEL] boundary: -908 bytes (bma=202 phl=100)
+03:48:54.851 [VRB] [HEAP-TEL] inbound: -2696 bytes (heap=104368 pin=7752 bma=202 phl=102 lt=0 revr=14)
+03:48:54.859 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=106068)
+03:49:08.797 [VRB] [HEAP-TEL] boundary: -912 bytes (bma=202 phl=100)
+[TcpIF] Client 0 write failed (heap: 102960 -> 104284, delta: +1324)
+[TcpIF] Connecting to rmap.world:4242 (cached IP)...
+[TcpIF] Connected to backbone at rmap.world:4242
+03:49:19.098 [VRB] [HEAP-TEL] jobs: 628 bytes (heap=105156)
+03:49:23.277 [VRB] [HEAP-TEL] boundary: -924 bytes (bma=202 phl=100)
+03:49:23.288 [VRB] [HEAP-TEL] inbound: -2712 bytes (heap=102404 pin=7757 bma=202 phl=102 lt=0 revr=14)
+03:49:23.351 [VRB] [HEAP-TEL] jobs: 628 bytes (heap=104128)
+03:49:38.286 [VRB] [HEAP-TEL] boundary: -908 bytes (bma=202 phl=100)
+03:49:38.297 [VRB] [HEAP-TEL] inbound: -3124 bytes (heap=102000 pin=7768 bma=202 phl=102 lt=0 revr=14)
+03:49:38.305 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=204 phl=102)
+03:49:38.309 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=101868 pin=7769 bma=204 phl=103 lt=0 revr=14)
+03:49:38.456 [VRB] [HEAP-TEL] jobs: 1228 bytes (heap=104132)
+03:49:53.780 [VRB] [HEAP-TEL] boundary: -916 bytes (bma=202 phl=100)
+03:49:53.792 [VRB] [HEAP-TEL] inbound: -2996 bytes (heap=102136 pin=7788 bma=202 phl=102 lt=0 revr=14)
+03:49:54.002 [VRB] mem: 104140 (34%) [-3512] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:49:54.003 [VRB] preqs: 4 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:49:54.004 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:49:54.005 [VRB] bla: 2 bma: 200
+03:49:54.006 [VRB] pin: 7788 pout: 43 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:49:54.007 [VRB] [HEAP-TEL] jobs: 2212 bytes (heap=105724)
+03:49:58.992 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+03:49:58.995 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=104504 pin=7793 bma=202 phl=101 lt=0 revr=14)
+03:49:59.050 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=105724)
+03:50:09.874 [VRB] [HEAP-TEL] boundary: -920 bytes (bma=202 phl=100)
+03:50:09.884 [VRB] [HEAP-TEL] inbound: -3140 bytes (heap=101996 pin=7810 bma=202 phl=102 lt=0 revr=14)
+03:50:09.900 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=204 phl=102)
+03:50:09.903 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=102116 pin=7811 bma=204 phl=103 lt=0 revr=14)
+03:50:10.030 [VRB] [HEAP-TEL] jobs: 1228 bytes (heap=104000)
+03:50:26.357 [VRB] [HEAP-TEL] boundary: -920 bytes (bma=202 phl=100)
+03:50:26.368 [VRB] [HEAP-TEL] inbound: -2724 bytes (heap=102412 pin=7824 bma=202 phl=102 lt=0 revr=14)
+03:50:27.429 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=105712)
+03:50:34.826 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:50:34.829 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=104312 pin=7829 bma=202 phl=101 lt=0 revr=14)
+03:50:34.994 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=105704)
+03:50:40.177 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:50:40.180 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=104488 pin=7837 bma=202 phl=101 lt=0 revr=14)
+03:50:40.219 [VRB] [HEAP-TEL] jobs: 612 bytes (heap=105564)
+03:50:42.111 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:50:42.115 [VRB] [HEAP-TEL] inbound: -844 bytes (heap=104344 pin=7839 bma=202 phl=101 lt=0 revr=14)
+03:50:43.346 [VRB] [HEAP-TEL] boundary: -904 bytes (bma=204 phl=101)
+03:50:43.356 [VRB] [HEAP-TEL] inbound: -3136 bytes (heap=101388 pin=7841 bma=204 phl=103 lt=0 revr=14)
+03:50:43.361 [VRB] [HEAP-TEL] jobs: 1196 bytes (heap=103828)
+03:51:00.826 [VRB] [HEAP-TEL] boundary: -900 bytes (bma=202 phl=100)
+03:51:00.837 [VRB] [HEAP-TEL] inbound: -2976 bytes (heap=102144 pin=7865 bma=202 phl=102 lt=0 revr=14)
+03:51:01.041 [VRB] mem: 104124 (34%) [-16] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:51:01.043 [VRB] preqs: 4 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:51:01.044 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:51:01.044 [VRB] bla: 2 bma: 200
+03:51:01.045 [VRB] pin: 7865 pout: 47 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:51:01.046 [VRB] [HEAP-TEL] jobs: 2192 bytes (heap=105708)
+03:51:14.050 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:51:14.053 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=104348 pin=7878 bma=202 phl=101 lt=0 revr=14)
+03:51:14.173 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=105708)
+03:51:18.876 [VRB] [HEAP-TEL] boundary: -912 bytes (bma=202 phl=100)
+03:51:18.886 [VRB] [HEAP-TEL] inbound: -2720 bytes (heap=102400 pin=7883 bma=202 phl=102 lt=0 revr=14)
+03:51:18.890 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=104104)
+03:51:37.488 [VRB] [HEAP-TEL] boundary: -896 bytes (bma=202 phl=100)
+03:51:37.499 [VRB] [HEAP-TEL] inbound: -2984 bytes (heap=102128 pin=7901 bma=202 phl=102 lt=0 revr=14)
+03:51:56.306 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=203 phl=102)
+03:51:56.316 [VRB] [HEAP-TEL] inbound: -3076 bytes (heap=101424 pin=7920 bma=203 phl=104 lt=0 revr=14)
+03:51:56.353 [VRB] [HEAP-TEL] jobs: 1096 bytes (heap=104124)
+03:52:05.255 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:52:05.258 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=104340 pin=7932 bma=202 phl=101 lt=0 revr=14)
+03:52:05.503 [VRB] mem: 105708 (35%) [1584] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:52:05.505 [VRB] preqs: 4 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:52:05.506 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:52:05.507 [VRB] bla: 2 bma: 200
+03:52:05.507 [VRB] pin: 7932 pout: 50 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:52:05.508 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=105708)
+03:52:15.828 [VRB] [HEAP-TEL] boundary: -904 bytes (bma=202 phl=100)
+03:52:15.839 [VRB] [HEAP-TEL] inbound: -2972 bytes (heap=102148 pin=7947 bma=202 phl=102 lt=0 revr=14)
+03:52:15.947 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=104124)
+03:52:22.971 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:52:22.974 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=104284 pin=7961 bma=202 phl=101 lt=0 revr=14)
+03:52:23.186 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=105704)
+03:52:29.112 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:52:29.115 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=104332 pin=7966 bma=202 phl=101 lt=0 revr=14)
+03:52:29.186 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=105696)
+03:52:35.825 [VRB] [HEAP-TEL] boundary: -896 bytes (bma=202 phl=100)
+03:52:35.836 [VRB] [HEAP-TEL] inbound: -2716 bytes (heap=102392 pin=7968 bma=202 phl=102 lt=0 revr=14)
+03:52:35.976 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=104100)
+03:52:58.087 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:52:58.090 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=104336 pin=8000 bma=202 phl=101 lt=0 revr=14)
+03:53:01.579 [VRB] [HEAP-TEL] boundary: -804 bytes (bma=203 phl=101)
+03:53:01.582 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=103780 pin=8005 bma=203 phl=102 lt=0 revr=14)
+03:53:01.705 [VRB] [HEAP-TEL] jobs: 1064 bytes (heap=105704)
+03:53:12.551 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:53:12.554 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=104336 pin=8014 bma=202 phl=101 lt=0 revr=14)
+03:53:12.766 [VRB] mem: 105720 (35%) [12] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:53:12.768 [VRB] preqs: 4 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:53:12.769 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:53:12.770 [VRB] bla: 2 bma: 200
+03:53:12.770 [VRB] pin: 8014 pout: 52 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:53:12.771 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=105720)
+03:53:25.040 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:53:25.043 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=104356 pin=8025 bma=202 phl=101 lt=0 revr=14)
+03:53:25.046 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=105720)
+03:53:26.972 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:53:26.975 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=104356 pin=8027 bma=202 phl=101 lt=0 revr=14)
+03:53:27.126 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=105728)
+03:53:37.230 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+03:53:37.233 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=104348 pin=8031 bma=202 phl=101 lt=0 revr=14)
+03:53:37.303 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=105716)
+03:53:41.100 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:53:41.102 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=104348 pin=8037 bma=202 phl=101 lt=0 revr=14)
+03:53:41.251 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=105716)
+03:53:42.438 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:53:42.441 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=104508 pin=8038 bma=202 phl=101 lt=0 revr=14)
+03:53:42.546 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=105716)
+03:53:44.027 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:53:44.030 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=104348 pin=8043 bma=202 phl=101 lt=0 revr=14)
+03:53:44.080 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=105716)
+03:53:46.324 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:53:46.327 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=104348 pin=8047 bma=202 phl=101 lt=0 revr=14)
+03:53:46.553 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=105716)
+03:53:50.334 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+03:53:50.337 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=104348 pin=8050 bma=202 phl=101 lt=0 revr=14)
+03:53:50.477 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=105720)
+03:54:18.271 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+03:54:18.299 [VRB] [HEAP-TEL] inbound: -1432 bytes (heap=103980 pin=8080 bma=202 phl=101 lt=0 revr=14)
+03:54:18.459 [VRB] mem: 105364 (35%) [-356] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 1 held: 0
+03:54:18.460 [VRB] preqs: 4 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:54:18.461 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:54:18.462 [VRB] bla: 2 bma: 200
+03:54:18.463 [VRB] pin: 8080 pout: 52 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:54:18.464 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=105364)
+03:54:23.297 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+03:54:23.300 [VRB] [HEAP-TEL] inbound: -1088 bytes (heap=104132 pin=8085 bma=202 phl=101 lt=0 revr=14)
+03:54:23.403 [VRB] [HEAP-TEL] jobs: -932 bytes (heap=103804)
+03:54:23.663 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=105224)
+03:54:33.536 [VRB] [HEAP-TEL] boundary: -1148 bytes (bma=203 phl=100)
+03:54:33.628 [VRB] [HEAP-TEL] inbound: -1196 bytes (heap=103700 pin=8096 bma=203 phl=101 lt=0 revr=14)
+03:54:33.631 [VRB] [HEAP-TEL] jobs: 1848 bytes (heap=106612)
+03:54:34.458 [VRB] [HEAP-TEL] boundary: -984 bytes (bma=202 phl=100)
+03:54:34.475 [VRB] [HEAP-TEL] inbound: -776 bytes (heap=105160 pin=8097 bma=202 phl=100 lt=0 revr=14)
+03:54:34.637 [VRB] [HEAP-TEL] jobs: 280 bytes (heap=106612)
+03:54:40.597 [VRB] [HEAP-TEL] boundary: -984 bytes (bma=202 phl=100)
+03:54:40.614 [VRB] [HEAP-TEL] inbound: -776 bytes (heap=105160 pin=8102 bma=202 phl=100 lt=0 revr=14)
+03:54:40.651 [VRB] [HEAP-TEL] jobs: 280 bytes (heap=106612)
+03:54:58.826 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+03:54:58.829 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=104336 pin=8121 bma=202 phl=101 lt=0 revr=14)
+03:54:58.944 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=105696)
+03:54:59.231 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:54:59.234 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=104332 pin=8122 bma=202 phl=101 lt=0 revr=14)
+03:54:59.466 [VRB] [HEAP-TEL] jobs: 596 bytes (heap=105696)
+03:55:40.296 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:55:40.299 [VRB] [HEAP-TEL] inbound: -840 bytes (heap=104340 pin=8150 bma=202 phl=101 lt=0 revr=14)
+03:55:40.515 [VRB] mem: 105704 (35%) [340] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:55:40.517 [VRB] preqs: 4 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:55:40.518 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:55:40.519 [VRB] bla: 2 bma: 200
+03:55:40.519 [VRB] pin: 8150 pout: 53 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:55:40.520 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=105704)
+03:55:50.928 [VRB] [HEAP-TEL] jobs: 2328 bytes (heap=105568)
+03:56:02.544 [VRB] [HEAP-TEL] boundary: -992 bytes (bma=202 phl=100)
+[7964164][E][vfs_api.cpp:105] open(): /cache/bf321c829a109e847df7ff864bdb08072cfc910c295050d12aa9989f903c0e59 does not exist, no permits for creation
+03:56:02.621 [VRB] [HEAP-TEL] inbound: -1288 bytes (heap=103832 pin=8167 bma=202 phl=101 lt=0 revr=14)
+03:56:02.684 [VRB] [HEAP-TEL] jobs: 252 bytes (heap=104084)
+03:56:12.350 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+03:56:12.353 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=102708 pin=8177 bma=202 phl=101 lt=0 revr=14)
+03:56:14.198 [VRB] [HEAP-TEL] boundary: -824 bytes (bma=203 phl=101)
+03:56:14.201 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=102140 pin=8182 bma=203 phl=102 lt=0 revr=14)
+03:56:14.372 [VRB] [HEAP-TEL] jobs: -520 bytes (heap=102504)
+03:56:14.631 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=104084)
+03:56:15.534 [VRB] [HEAP-TEL] boundary: -996 bytes (bma=202 phl=100)
+03:56:15.550 [VRB] [HEAP-TEL] inbound: -1044 bytes (heap=102572 pin=8184 bma=202 phl=101 lt=0 revr=14)
+03:56:15.666 [VRB] [HEAP-TEL] jobs: 448 bytes (heap=104084)
+03:56:27.301 [VRB] [HEAP-TEL] boundary: -1200 bytes (bma=204 phl=100)
+03:56:27.304 [VRB] [HEAP-TEL] inbound: -1488 bytes (heap=102252 pin=8195 bma=204 phl=101 lt=1 revr=14)
+03:56:27.430 [VRB] [HEAP-TEL] jobs: -888 bytes (heap=102188)
+03:56:28.531 [VRB] [HEAP-TEL] jobs: 1592 bytes (heap=105176)
+03:56:30.140 [VRB] [HEAP-TEL] boundary: -904 bytes (bma=202 phl=100)
+03:56:30.235 [VRB] [HEAP-TEL] inbound: -2864 bytes (heap=101724 pin=8197 bma=202 phl=101 lt=1 revr=14)
+03:56:30.347 [VRB] [HEAP-TEL] jobs: 440 bytes (heap=103592)
+03:56:30.589 [VRB] [HEAP-TEL] boundary: -660 bytes (bma=202 phl=100)
+03:56:30.591 [VRB] [HEAP-TEL] inbound: -708 bytes (heap=101560 pin=8198 bma=202 phl=101 lt=1 revr=14)
+03:56:30.603 [VRB] [HEAP-TEL] boundary: -1244 bytes (bma=203 phl=101)
+03:56:30.606 [VRB] [HEAP-TEL] inbound: -1292 bytes (heap=100344 pin=8199 bma=203 phl=102 lt=1 revr=14)
+03:56:30.614 [VRB] [HEAP-TEL] boundary: -928 bytes (bma=204 phl=102)
+03:56:30.617 [VRB] [HEAP-TEL] inbound: -976 bytes (heap=103000 pin=8200 bma=204 phl=103 lt=1 revr=14)
+03:56:30.619 [VRB] [HEAP-TEL] jobs: 1060 bytes (heap=105176)
+03:56:39.853 [VRB] [HEAP-TEL] boundary: -916 bytes (bma=202 phl=100)
+03:56:39.868 [VRB] [HEAP-TEL] inbound: -4692 bytes (heap=99896 pin=8208 bma=202 phl=102 lt=1 revr=14)
+03:56:40.943 [VRB] [HEAP-TEL] boundary: -1232 bytes (bma=203 phl=102)
+03:56:40.947 [VRB] [HEAP-TEL] inbound: -1140 bytes (heap=95172 pin=8209 bma=203 phl=103 lt=1 revr=14)
+03:56:40.959 [VRB] [HEAP-TEL] boundary: -1216 bytes (bma=204 phl=103)
+03:56:40.962 [VRB] [HEAP-TEL] inbound: -1264 bytes (heap=95084 pin=8210 bma=204 phl=104 lt=1 revr=14)
+03:56:40.975 [VRB] [HEAP-TEL] boundary: -1232 bytes (bma=205 phl=104)
+03:56:40.978 [VRB] [HEAP-TEL] inbound: -1284 bytes (heap=101900 pin=8211 bma=205 phl=105 lt=1 revr=14)
+03:56:40.990 [VRB] [HEAP-TEL] boundary: -1220 bytes (bma=206 phl=105)
+03:56:40.993 [VRB] [HEAP-TEL] inbound: -1268 bytes (heap=101600 pin=8212 bma=206 phl=106 lt=1 revr=14)
+03:56:40.998 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=208 phl=106)
+03:56:41.001 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=101916 pin=8213 bma=208 phl=107 lt=1 revr=14)
+03:56:41.060 [VRB] mem: 104932 (35%) [-772] flash: 1540096 (97%) [-4096] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:56:41.062 [VRB] preqs: 5 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:56:41.063 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:56:41.063 [VRB] bla: 2 bma: 200
+03:56:41.064 [VRB] pin: 8213 pout: 56 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:56:41.065 [VRB] [HEAP-TEL] jobs: 2540 bytes (heap=105232)
+03:56:43.101 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=105388)
+03:57:03.951 [VRB] [HEAP-TEL] boundary: -844 bytes (bma=202 phl=100)
+03:57:03.954 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=99852 pin=8224 bma=202 phl=101 lt=0 revr=14)
+03:57:06.754 [VRB] [HEAP-TEL] boundary: -936 bytes (bma=204 phl=101)
+03:57:06.765 [VRB] [HEAP-TEL] inbound: -3160 bytes (heap=101024 pin=8227 bma=204 phl=103 lt=0 revr=14)
+03:57:06.802 [VRB] [HEAP-TEL] jobs: 1220 bytes (heap=103760)
+03:57:08.117 [VRB] [HEAP-TEL] boundary: -916 bytes (bma=202 phl=100)
+03:57:08.128 [VRB] [HEAP-TEL] inbound: -2720 bytes (heap=102036 pin=8228 bma=202 phl=102 lt=0 revr=14)
+03:57:08.371 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=105344)
+03:57:10.139 [VRB] [HEAP-TEL] boundary: -992 bytes (bma=202 phl=100)
+[8031759][E][vfs_api.cpp:105] open(): /cache/3325a2f1d893511101b4927db42eb7e2779965c11e34295bfe6771ff7e302722 does not exist, no permits for creation
+03:57:10.219 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=103700 pin=8229 bma=202 phl=101 lt=0 revr=14)
+03:57:10.223 [VRB] [HEAP-TEL] jobs: 344 bytes (heap=105236)
+03:57:25.145 [VRB] [HEAP-TEL] boundary: -908 bytes (bma=202 phl=100)
+03:57:25.156 [VRB] [HEAP-TEL] inbound: -2972 bytes (heap=101676 pin=8230 bma=202 phl=102 lt=0 revr=14)
+03:57:25.295 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=103656)
+03:57:41.141 [VRB] mem: 102072 (34%) [-2860] flash: 1540096 (97%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:57:41.143 [VRB] preqs: 5 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:57:41.144 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:57:41.145 [VRB] bla: 2 bma: 200
+03:57:41.145 [VRB] pin: 8230 pout: 60 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:57:46.377 [VRB] [HEAP-TEL] boundary: -904 bytes (bma=202 phl=100)
+03:57:46.388 [VRB] [HEAP-TEL] inbound: -2704 bytes (heap=98780 pin=8231 bma=202 phl=102 lt=0 revr=14)
+03:57:46.563 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=100484)
+03:58:01.244 [VRB] [HEAP-TEL] boundary: -904 bytes (bma=202 phl=100)
+03:58:01.255 [VRB] [HEAP-TEL] inbound: -2992 bytes (heap=96904 pin=8232 bma=202 phl=102 lt=0 revr=14)
+03:58:01.291 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=98900)
+03:58:16.634 [VRB] [HEAP-TEL] boundary: -924 bytes (bma=202 phl=100)
+03:58:16.644 [VRB] [HEAP-TEL] inbound: -3144 bytes (heap=93532 pin=8233 bma=202 phl=102 lt=0 revr=14)
+03:58:16.697 [VRB] [HEAP-TEL] jobs: 636 bytes (heap=95680)
+03:58:32.535 [VRB] [HEAP-TEL] boundary: -916 bytes (bma=202 phl=100)
+03:58:32.546 [VRB] [HEAP-TEL] inbound: -3008 bytes (heap=92084 pin=8234 bma=202 phl=102 lt=0 revr=14)
+03:58:32.608 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=94080)
+03:58:41.235 [VRB] mem: 92496 (30%) [-9576] flash: 1544192 (98%) [4096] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:58:41.236 [VRB] preqs: 5 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:58:41.237 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:58:41.238 [VRB] bla: 2 bma: 200
+03:58:41.239 [VRB] pin: 8234 pout: 64 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:58:48.821 [VRB] [HEAP-TEL] boundary: -908 bytes (bma=202 phl=100)
+[TcpIF] Client 0 write failed (heap: 89408 -> 90716, delta: +1308)
+[TcpIF] Connecting to rmap.world:4242 (cached IP)...
+[TcpIF] Connected to backbone at rmap.world:4242
+03:58:59.062 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=93364)
+03:59:05.702 [VRB] [HEAP-TEL] boundary: -900 bytes (bma=202 phl=100)
+03:59:05.714 [VRB] [HEAP-TEL] inbound: -2972 bytes (heap=88212 pin=8240 bma=202 phl=102 lt=0 revr=14)
+03:59:06.783 [VRB] [HEAP-TEL] jobs: -140 bytes (heap=91348)
+03:59:23.158 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=203 phl=102)
+03:59:23.169 [VRB] [HEAP-TEL] inbound: -3064 bytes (heap=87860 pin=8253 bma=203 phl=104 lt=0 revr=14)
+03:59:23.218 [VRB] [HEAP-TEL] jobs: 1072 bytes (heap=90536)
+03:59:41.004 [VRB] [HEAP-TEL] boundary: -920 bytes (bma=202 phl=100)
+03:59:41.014 [VRB] [HEAP-TEL] inbound: -3132 bytes (heap=88400 pin=8264 bma=202 phl=102 lt=0 revr=14)
+03:59:41.211 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=90536)
+03:59:42.150 [VRB] mem: 92120 (30%) [-376] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+03:59:42.151 [VRB] preqs: 5 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+03:59:42.152 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+03:59:42.153 [VRB] bla: 2 bma: 200
+03:59:42.153 [VRB] pin: 8264 pout: 68 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+03:59:43.927 [VRB] [HEAP-TEL] boundary: -896 bytes (bma=202 phl=100)
+03:59:43.938 [VRB] [HEAP-TEL] inbound: -2960 bytes (heap=88572 pin=8265 bma=202 phl=102 lt=0 revr=14)
+03:59:43.990 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=90536)
+03:59:59.273 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+03:59:59.276 [VRB] [HEAP-TEL] inbound: -852 bytes (heap=90732 pin=8277 bma=202 phl=101 lt=0 revr=14)
+03:59:59.328 [VRB] [HEAP-TEL] boundary: -908 bytes (bma=204 phl=101)
+03:59:59.340 [VRB] [HEAP-TEL] inbound: -2716 bytes (heap=88208 pin=8278 bma=204 phl=103 lt=0 revr=14)
+03:59:59.380 [VRB] [HEAP-TEL] jobs: 1232 bytes (heap=90536)
+04:00:12.896 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+04:00:12.899 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=90728 pin=8287 bma=202 phl=101 lt=0 revr=14)
+04:00:13.041 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=92120)
+04:00:18.233 [VRB] [HEAP-TEL] boundary: -920 bytes (bma=202 phl=100)
+04:00:18.244 [VRB] [HEAP-TEL] inbound: -2984 bytes (heap=88548 pin=8294 bma=202 phl=102 lt=0 revr=14)
+04:00:18.280 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=90536)
+04:00:37.518 [VRB] [HEAP-TEL] boundary: -920 bytes (bma=202 phl=100)
+04:00:37.529 [VRB] [HEAP-TEL] inbound: -2984 bytes (heap=88548 pin=8308 bma=202 phl=102 lt=0 revr=14)
+04:00:37.612 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=90536)
+04:00:42.603 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+04:00:42.606 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=90524 pin=8314 bma=202 phl=101 lt=0 revr=14)
+04:00:42.793 [VRB] mem: 92116 (30%) [-4] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 14 annc: 0 held: 0
+04:00:42.794 [VRB] preqs: 5 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+04:00:42.795 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+04:00:42.796 [VRB] bla: 2 bma: 200
+04:00:42.796 [VRB] pin: 8314 pout: 72 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+04:00:42.797 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=92116)
+04:00:44.129 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+04:00:44.132 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=90680 pin=8317 bma=202 phl=101 lt=0 revr=14)
+04:00:58.072 [VRB] [HEAP-TEL] boundary: -1152 bytes (bma=205 phl=101)
+04:00:58.081 [VRB] [HEAP-TEL] inbound: -3568 bytes (heap=87340 pin=8329 bma=205 phl=102 lt=0 revr=15)
+04:00:58.179 [VRB] [HEAP-TEL] jobs: 1200 bytes (heap=90352)
+04:00:58.366 [VRB] [HEAP-TEL] boundary: -864 bytes (bma=202 phl=100)
+04:00:58.369 [VRB] [HEAP-TEL] inbound: -912 bytes (heap=90484 pin=8331 bma=202 phl=101 lt=0 revr=15)
+04:00:58.465 [VRB] [HEAP-TEL] jobs: 444 bytes (heap=91936)
+04:00:59.560 [VRB] [HEAP-TEL] boundary: -908 bytes (bma=202 phl=100)
+04:00:59.571 [VRB] [HEAP-TEL] inbound: -3136 bytes (heap=88212 pin=8333 bma=202 phl=102 lt=0 revr=15)
+04:00:59.762 [VRB] [HEAP-TEL] jobs: 620 bytes (heap=90344)
+04:01:17.643 [VRB] [HEAP-TEL] boundary: -940 bytes (bma=202 phl=100)
+04:01:17.649 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=90588 pin=8347 bma=202 phl=101 lt=0 revr=15)
+04:01:17.714 [VRB] [HEAP-TEL] jobs: 600 bytes (heap=91948)
+04:01:17.844 [VRB] [HEAP-TEL] boundary: -904 bytes (bma=202 phl=100)
+04:01:17.855 [VRB] [HEAP-TEL] inbound: -2980 bytes (heap=88380 pin=8348 bma=202 phl=102 lt=0 revr=15)
+04:01:38.745 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=203 phl=102)
+04:01:38.755 [VRB] [HEAP-TEL] inbound: -3088 bytes (heap=87660 pin=8382 bma=203 phl=104 lt=0 revr=15)
+04:01:38.982 [VRB] [HEAP-TEL] jobs: 1100 bytes (heap=90364)
+04:01:39.873 [VRB] [HEAP-TEL] jobs: 208 bytes (heap=91948)
+04:01:53.266 [VRB] [HEAP-TEL] boundary: -1188 bytes (bma=204 phl=100)
+04:01:53.274 [VRB] [HEAP-TEL] inbound: -3504 bytes (heap=87856 pin=8397 bma=204 phl=101 lt=1 revr=15)
+04:01:53.468 [VRB] mem: 89904 (30%) [-2212] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 15 annc: 0 held: 0
+04:01:53.470 [VRB] preqs: 5 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+04:01:53.471 [VRB] phl: 100 rcp: 0 lt: 1 pl: 0 al: 0 tun: 0
+04:01:53.472 [VRB] bla: 2 bma: 200
+04:01:53.472 [VRB] pin: 8397 pout: 75 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+04:01:53.473 [VRB] [HEAP-TEL] jobs: 2388 bytes (heap=91628)
+04:01:53.574 [VRB] [HEAP-TEL] boundary: -924 bytes (bma=202 phl=100)
+04:01:53.665 [VRB] [HEAP-TEL] inbound: -976 bytes (heap=90456 pin=8398 bma=202 phl=101 lt=1 revr=15)
+04:01:53.727 [VRB] [HEAP-TEL] jobs: 464 bytes (heap=91280)
+04:02:00.073 [VRB] [HEAP-TEL] boundary: -920 bytes (bma=202 phl=100)
+04:02:00.083 [VRB] [HEAP-TEL] inbound: -3136 bytes (heap=87904 pin=8405 bma=202 phl=102 lt=1 revr=15)
+04:02:00.106 [VRB] [HEAP-TEL] jobs: 648 bytes (heap=89624)
+04:02:05.943 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+04:02:05.946 [VRB] [HEAP-TEL] inbound: -1076 bytes (heap=90248 pin=8411 bma=202 phl=101 lt=1 revr=15)
+04:02:06.100 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=91628)
+04:02:15.628 [VRB] [HEAP-TEL] boundary: -872 bytes (bma=202 phl=100)
+04:02:15.661 [VRB] [HEAP-TEL] inbound: -1680 bytes (heap=89360 pin=8423 bma=202 phl=101 lt=1 revr=15)
+04:02:17.300 [VRB] [HEAP-TEL] boundary: -788 bytes (bma=203 phl=101)
+04:02:17.331 [VRB] [HEAP-TEL] inbound: -1220 bytes (heap=88724 pin=8429 bma=203 phl=102 lt=1 revr=15)
+04:02:17.370 [VRB] [HEAP-TEL] jobs: -228 bytes (heap=89620)
+04:02:19.760 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=101)
+04:02:19.764 [VRB] [HEAP-TEL] inbound: -1080 bytes (heap=89636 pin=8432 bma=202 phl=102 lt=1 revr=15)
+04:02:19.770 [VRB] [HEAP-TEL] jobs: -804 bytes (heap=89604)
+04:02:24.589 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=101)
+04:02:24.592 [VRB] [HEAP-TEL] inbound: -1080 bytes (heap=89636 pin=8438 bma=202 phl=102 lt=1 revr=15)
+04:02:24.760 [VRB] [HEAP-TEL] jobs: 2120 bytes (heap=92528)
+04:02:25.226 [VRB] [HEAP-TEL] boundary: -1164 bytes (bma=204 phl=100)
+04:02:25.234 [VRB] [HEAP-TEL] inbound: -3480 bytes (heap=88460 pin=8441 bma=204 phl=101 lt=2 revr=15)
+04:02:25.285 [VRB] [HEAP-TEL] jobs: 636 bytes (heap=90620)
+04:02:25.639 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=201 phl=100)
+04:02:25.729 [VRB] [HEAP-TEL] inbound: -896 bytes (heap=90952 pin=8442 bma=201 phl=101 lt=2 revr=15)
+04:02:25.810 [VRB] [HEAP-TEL] jobs: 304 bytes (heap=92000)
+04:02:29.299 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+04:02:29.302 [VRB] [HEAP-TEL] inbound: -1084 bytes (heap=90980 pin=8444 bma=202 phl=101 lt=2 revr=15)
+04:02:29.542 [VRB] [HEAP-TEL] jobs: 416 bytes (heap=91916)
+04:02:43.012 [VRB] [HEAP-TEL] boundary: -868 bytes (bma=202 phl=100)
+04:02:43.015 [VRB] [HEAP-TEL] inbound: -1084 bytes (heap=90820 pin=8454 bma=202 phl=101 lt=2 revr=15)
+04:02:43.124 [VRB] [HEAP-TEL] jobs: 624 bytes (heap=92208)
+04:02:43.805 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+04:02:43.838 [VRB] [HEAP-TEL] inbound: -2384 bytes (heap=89236 pin=8455 bma=202 phl=101 lt=2 revr=15)
+04:02:43.923 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=90876)
+04:02:45.221 [VRB] [HEAP-TEL] jobs: -1548 bytes (heap=89328)
+04:02:49.169 [VRB] [HEAP-TEL] boundary: -1184 bytes (bma=204 phl=101)
+04:02:49.177 [VRB] [HEAP-TEL] inbound: -3356 bytes (heap=86776 pin=8460 bma=204 phl=102 lt=3 revr=15)
+04:02:49.415 [VRB] [HEAP-TEL] jobs: 2140 bytes (heap=91880)
+04:02:49.568 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=201 phl=100)
+04:02:49.661 [VRB] [HEAP-TEL] inbound: -900 bytes (heap=90784 pin=8461 bma=201 phl=101 lt=3 revr=15)
+04:02:49.698 [VRB] [HEAP-TEL] jobs: 296 bytes (heap=91880)
+04:02:51.149 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+04:02:51.152 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=90516 pin=8462 bma=202 phl=101 lt=3 revr=15)
+04:03:10.360 [VRB] [HEAP-TEL] boundary: -812 bytes (bma=203 phl=101)
+04:03:10.364 [VRB] [HEAP-TEL] inbound: -1016 bytes (heap=88960 pin=8479 bma=203 phl=102 lt=3 revr=15)
+04:03:10.369 [VRB] [HEAP-TEL] boundary: -828 bytes (bma=204 phl=102)
+04:03:10.372 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=88684 pin=8480 bma=204 phl=103 lt=3 revr=15)
+04:03:10.524 [VRB] mem: 91400 (30%) [1496] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 15 annc: 0 held: 0
+04:03:10.526 [VRB] preqs: 5 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+04:03:10.527 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+04:03:10.528 [VRB] bla: 2 bma: 200
+04:03:10.528 [VRB] pin: 8480 pout: 79 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+04:03:10.529 [VRB] [HEAP-TEL] jobs: 2368 bytes (heap=91756)
+04:03:10.823 [VRB] [HEAP-TEL] jobs: 156 bytes (heap=91896)
+04:03:11.023 [VRB] [HEAP-TEL] boundary: -832 bytes (bma=202 phl=100)
+04:03:11.060 [VRB] [HEAP-TEL] inbound: -1592 bytes (heap=89716 pin=8481 bma=202 phl=101 lt=0 revr=15)
+04:03:25.653 [VRB] [HEAP-TEL] boundary: -796 bytes (bma=203 phl=101)
+04:03:25.688 [VRB] [HEAP-TEL] inbound: -1244 bytes (heap=89056 pin=8498 bma=203 phl=102 lt=0 revr=15)
+04:03:25.727 [VRB] [HEAP-TEL] jobs: -232 bytes (heap=89948)
+04:03:30.834 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=101)
+04:03:30.837 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=89960 pin=8503 bma=202 phl=102 lt=0 revr=15)
+04:03:30.973 [VRB] [HEAP-TEL] jobs: -788 bytes (heap=89956)
+04:03:33.350 [VRB] [HEAP-TEL] jobs: 1500 bytes (heap=92840)
+04:03:40.876 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+04:03:40.879 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=91480 pin=8508 bma=202 phl=101 lt=0 revr=15)
+04:03:40.928 [VRB] [HEAP-TEL] jobs: 732 bytes (heap=92548)
+04:03:44.256 [VRB] [HEAP-TEL] boundary: -848 bytes (bma=202 phl=100)
+04:03:44.259 [VRB] [HEAP-TEL] inbound: -1052 bytes (heap=91480 pin=8511 bma=202 phl=101 lt=0 revr=15)
+04:03:44.336 [VRB] [HEAP-TEL] jobs: 592 bytes (heap=92840)
+04:03:45.412 [VRB] [HEAP-TEL] boundary: -832 bytes (bma=202 phl=100)
+04:03:45.447 [VRB] [HEAP-TEL] inbound: -2216 bytes (heap=90036 pin=8516 bma=202 phl=101 lt=0 revr=15)
+04:03:45.611 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=91676)
+04:03:53.597 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+04:03:53.600 [VRB] [HEAP-TEL] inbound: -1056 bytes (heap=90284 pin=8526 bma=202 phl=101 lt=0 revr=15)
+04:03:53.666 [VRB] [HEAP-TEL] jobs: -928 bytes (heap=90156)
+04:04:06.591 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=101)
+04:04:06.595 [VRB] [HEAP-TEL] inbound: -856 bytes (heap=89324 pin=8546 bma=202 phl=102 lt=0 revr=15)
+04:04:06.603 [VRB] [HEAP-TEL] jobs: 2020 bytes (heap=91940)
+04:04:15.408 [VRB] [HEAP-TEL] boundary: -852 bytes (bma=202 phl=100)
+04:04:15.411 [VRB] [HEAP-TEL] inbound: -1060 bytes (heap=90572 pin=8557 bma=202 phl=101 lt=0 revr=15)
+04:04:15.541 [VRB] mem: 91944 (30%) [544] flash: 1544192 (98%) [0] paths: 3 dsts: 4 revr: 15 annc: 0 held: 0
+04:04:15.542 [VRB] preqs: 5 dpreqs: 0 ppreqs: 0 dprt: 32 cdsts: 2 chshs: 2
+04:04:15.543 [VRB] phl: 100 rcp: 0 lt: 0 pl: 0 al: 0 tun: 0
+04:04:15.544 [VRB] bla: 2 bma: 200
+04:04:15.545 [VRB] pin: 8557 pout: 83 padd: 3 dpr: 1 ikd: 3 ia: 0
+
+04:04:15.546 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=91944)
+04:04:20.319 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+04:04:20.322 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=90572 pin=8566 bma=202 phl=101 lt=0 revr=15)
+04:04:20.468 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=91944)
+04:04:27.068 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+04:04:27.072 [VRB] [HEAP-TEL] inbound: -860 bytes (heap=90732 pin=8582 bma=202 phl=101 lt=0 revr=15)
+04:04:27.248 [VRB] [HEAP-TEL] jobs: 616 bytes (heap=91952)
+04:04:43.146 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+04:04:43.149 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=90564 pin=8601 bma=202 phl=101 lt=0 revr=15)
+04:04:43.152 [VRB] [HEAP-TEL] jobs: 604 bytes (heap=91952)
+04:04:58.299 [VRB] [HEAP-TEL] boundary: -856 bytes (bma=202 phl=100)
+04:04:58.302 [VRB] [HEAP-TEL] inbound: -1064 bytes (heap=90564 pin=8628 bma=202 phl=101 lt=0 revr=15)
+04:04:58.305 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=91956)
+04:04:59.345 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+04:04:59.348 [VRB] [HEAP-TEL] inbound: -1068 bytes (heap=90564 pin=8629 bma=202 phl=101 lt=0 revr=15)
+04:04:59.351 [VRB] [HEAP-TEL] jobs: 608 bytes (heap=91956)
+04:05:13.278 [VRB] [HEAP-TEL] boundary: -860 bytes (bma=202 phl=100)
+04:05:13.281 [VRB] [HEAP-TEL] inbound: -1072 bytes (heap=90556 pin=8640 bma=202 phl=101 lt=0 revr=15)
+04:05:13.411 [VRB] [HEAP-TEL] boundary: -820 bytes (bma=203 phl=101)
+04:05:13.415 [VRB] [HEAP-TEL] inbound: -1032 bytes (heap=90152 pin=8642 bma=203 phl=102 lt=0 revr=15)
+04:05:13.451 [VRB] [HEAP-TEL] jobs: 1092 bytes (heap=91940)
\ No newline at end of file
diff --git a/rnodethv3_firmware.bin b/rnodethv3_firmware.bin
new file mode 100755
index 0000000..64e3333
Binary files /dev/null and b/rnodethv3_firmware.bin differ