chore: track audit-runs summary artifacts (md/csv/diff/txt/json/etc)

Snapshot of every non-log artifact under audit-runs/ from audits 003
through 058: findings.md per audit, comparison CSVs, probe diffs,
schema docs, register-dump txts, lr-trace JSONL streams, the saved
canary patch diffs, etc. ~284 files / ~52 MB total.

Excluded (per .gitignore): probe stdout/stderr/log streams (the raw
firehose), guest-memory dumps under audit-026/027/029 (4.5 GB of
.bin files; *.bin pattern added to .gitignore this commit).

Also adds the orphan audit-058-sub825070F0-activation directory that
a subagent accidentally created at project-root instead of
under xenia-rs/audit-runs/; relocated to its proper home.

Purpose: cross-machine continuity. With these summaries committed,
a fresh clone gives the next session the full per-audit context
(findings + tables + cascade predictions) without dependence on
local-only working tree.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
MechaCat02
2026-05-10 21:36:41 +02:00
parent 609f586ed8
commit 8e709b0a24
284 changed files with 677656 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
diff --git a/src/xenia/cpu/backend/x64/x64_emitter.cc b/src/xenia/cpu/backend/x64/x64_emitter.cc
index 5da8f6adc..25181b36d 100644
--- a/src/xenia/cpu/backend/x64/x64_emitter.cc
+++ b/src/xenia/cpu/backend/x64/x64_emitter.cc
@@ -438,6 +438,19 @@ uint64_t TrapDebugBreak(void* raw_context, uint64_t address) {
return 0;
}
+// AUDIT-030: log LR + r3..r6 when `log_lr_on_pc` PC is reached.
+uint64_t TrapLogLR(void* raw_context, uint64_t address) {
+ auto* ctx = reinterpret_cast<ppc::PPCContext_s*>(raw_context);
+ XELOGI(
+ "TRACE-PC-LR pc={:08X} lr={:08X} r3={:08X} r4={:08X} r5={:08X} "
+ "r6={:08X} r31={:08X}",
+ static_cast<uint32_t>(cvars::log_lr_on_pc),
+ static_cast<uint32_t>(ctx->lr), static_cast<uint32_t>(ctx->r[3]),
+ static_cast<uint32_t>(ctx->r[4]), static_cast<uint32_t>(ctx->r[5]),
+ static_cast<uint32_t>(ctx->r[6]), static_cast<uint32_t>(ctx->r[31]));
+ return 0;
+}
+
void X64Emitter::Trap(uint16_t trap_type) {
switch (trap_type) {
case 20:
@@ -454,6 +467,10 @@ void X64Emitter::Trap(uint16_t trap_type) {
case 25:
// ?
break;
+ case 100:
+ // AUDIT-030: log LR + r3..r6 (set via --log_lr_on_pc).
+ CallNative(TrapLogLR, 0);
+ break;
default:
XELOGW("Unknown trap type {}", trap_type);
db(0xCC);
diff --git a/src/xenia/cpu/cpu_flags.cc b/src/xenia/cpu/cpu_flags.cc
index 3ff067e15..d1f02f516 100644
--- a/src/xenia/cpu/cpu_flags.cc
+++ b/src/xenia/cpu/cpu_flags.cc
@@ -57,3 +57,8 @@ DEFINE_bool(break_condition_truncate, true, "truncate value to 32-bits", "CPU");
DEFINE_bool(break_on_debugbreak, true, "int3 on JITed __debugbreak requests.",
"CPU");
+
+// AUDIT-030: log LR + r3..r6 each time the given guest PC executes.
+DEFINE_uint64(log_lr_on_pc, 0,
+ "Log LR + r3..r6 each time the given guest PC is executed.",
+ "CPU");
diff --git a/src/xenia/cpu/cpu_flags.h b/src/xenia/cpu/cpu_flags.h
index 38c4f98ba..ad3d78581 100644
--- a/src/xenia/cpu/cpu_flags.h
+++ b/src/xenia/cpu/cpu_flags.h
@@ -35,4 +35,6 @@ DECLARE_bool(break_condition_truncate);
DECLARE_bool(break_on_debugbreak);
+DECLARE_uint64(log_lr_on_pc);
+
#endif // XENIA_CPU_CPU_FLAGS_H_
diff --git a/src/xenia/cpu/ppc/ppc_hir_builder.cc b/src/xenia/cpu/ppc/ppc_hir_builder.cc
index 42d996cba..5db977ae7 100644
--- a/src/xenia/cpu/ppc/ppc_hir_builder.cc
+++ b/src/xenia/cpu/ppc/ppc_hir_builder.cc
@@ -174,6 +174,12 @@ bool PPCHIRBuilder::Emit(GuestFunction* function, uint32_t flags) {
MaybeBreakOnInstruction(address);
+ // AUDIT-030: log LR + r3..r6 each time `log_lr_on_pc` is reached.
+ if (cvars::log_lr_on_pc != 0 && address == cvars::log_lr_on_pc) {
+ Comment("--log-lr-on-pc target");
+ Trap(100);
+ }
+
InstrData i;
i.address = address;
i.code = code;

View File

@@ -0,0 +1,28 @@
# AUDIT-030 canary-side TRACE-PC-LR captures
# Build: xenia-canary (Debug Linux x86_64), 30-LOC patch reverted post-session.
# Patch: src/xenia/cpu/{cpu_flags.{cc,h},backend/x64/x64_emitter.cc,ppc/ppc_hir_builder.cc}.
# Mechanism: --log_lr_on_pc=N emits HIR Trap(100) on each PC=N exec; trap calls
# host TrapLogLR(raw_ctx) which XELOGI's PPCContext.lr + r3..r6, r31.
# ---- Run A: --log_lr_on_pc=0x824D2C08 (sub_824D2C08, audio init) ----
# Wall: 22 s, --disable_instruction_infocache=true, --log_level=3.
# 1 emit message, 1 capture (entry hit during audio init):
i> F8000008 AUDIT-030 emit log-lr trap at HIR pc=824D2C08
i> F8000008 TRACE-PC-LR pc=824D2C08 lr=824D3054 r3=BE628EDC r4=701CF4D0 r5=00000010 r6=00000018 r31=00000000
# Reading: caller is sub_824D2D14-area at lr=0x824D3054. r3 is host pointer
# (0xBE62...) into audio_system v80 memory. r4..r6 are init args.
# ---- Run B: --log_lr_on_pc=0x824D23B0 (sub_824D23B0, alleged per-frame entry) ----
# Wall: 2+ minutes (multiple attempts), --disable_instruction_infocache=true.
# 0 emit messages, 0 captures EVER, even after 21,399 KeReleaseSemaphore(0x828A3230)
# calls + VdSwap=1 in the *first* 2-min run (audio worker active, frame rendered).
# Second 2-min run got stuck at boot due to slow JIT warm-up post-rebuild
# (1190-1240 lines log only). 5-min run also stuck.
# 0/N captures => sub_824D23B0 (PC 0x824D23B0..0x824D2877) is NEVER ENTERED in canary
# during the title-menu loop.
# ---- Verification: --break_on_instruction=0x824D2C08 ----
# SIGTRAP (exit 133) at audio init => break-on-instruction mechanism is live.
# ---- Verification: --break_on_instruction=0x824D23B0 ----
# Process ALIVE for 25 s with audio worker firing => no SIGTRAP =>
# sub_824D23B0 entry not reached, consistent with Run B.

View File

@@ -0,0 +1,653 @@
Finished `release` profile [optimized] target(s) in 0.27s
Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --pc-probe=0x824D23B0,0x824D2C08,0x824D2878 -n 500000000`
2026-05-08T14:31:40.607342Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-08T14:31:40.608728Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-08T14:31:40.608746Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-08T14:31:40.685644Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696
2026-05-08T14:31:40.686032Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=77.0 path=sylpheed.iso bytes=3497984
2026-05-08T14:31:40.690772Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-08T14:31:40.690955Z  INFO cmd_exec: xenia_rs: pc probes armed: 3 (0x824d23b0, 0x824d2c08, 0x824d2878); consumer-snapshots: 0 path=sylpheed.iso
2026-05-08T14:31:40.691161Z  INFO cmd_exec: xenia_rs: starting execution limit=500000000 path=sylpheed.iso
2026-05-08T14:31:40.691171Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-08T14:31:40.696238Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:40.696291Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:40.696424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.070662Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.070762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.071246Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.071910Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.071948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=11 flags=0x00000400 result=0 lr=0x824a99a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.072002Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: args v1=0x02080002 v2=0x00000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.072032Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.072049Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.072295Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.072317Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.072520Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.072533Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.074191Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x102c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.074235Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.074247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.074331Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1034 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.074470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1038 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.074677Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x103c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.074810Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1040 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.075574Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1044 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.075826Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.075839Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x1054 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.076485Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1044) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.077886Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x105c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.077982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1060 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.078175Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1064 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.078208Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1068 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.078240Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x106c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.078474Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615" err=File not found: cache:/d4ea4615 handle=0x1070 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.078496Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615/e" err=File not found: cache:/d4ea4615/e handle=0x1074 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.078515Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1078 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.085763Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x107c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.089158Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x1088 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.089418Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x1088) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.090479Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x1090 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.090552Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1094 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.090919Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1098 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.091002Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x109c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.091062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.091323Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.091344Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/e" err=File not found: cache:/69d8e45c/e handle=0x10a8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.091362Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x10ac path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.097720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x10b4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.098438Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x10b4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.099332Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.099347Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10cc hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.100824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.100914Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x10d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.101532Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x10d8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.101622Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x10dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.101692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.102325Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10e4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.102352Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x10e8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.102372Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.111928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.112129Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0adcc000 size_bytes=4096 size_dwords=1024
2026-05-08T14:31:41.112150Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-08T14:31:41.112161Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:41.112170Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10fc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.014418Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b1d8000 width=1280 height=720
2026-05-08T14:31:42.049048Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.049085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x1108 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.051249Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x10b4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.053275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x111c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.053401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1120 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.054264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1124 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.054370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1128 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.054502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x112c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.055046Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x1130 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.055073Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3/a" err=File not found: cache:/aab216c3/a handle=0x1134 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.055095Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1138 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.377521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x1140 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.377989Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1140) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.383691Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1148 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.383762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x114c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.384183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1150 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.384240Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1154 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.384304Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1158 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.384555Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x115c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.384584Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x1160 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.384604Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1164 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.410671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x116c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.411180Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.412196Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x117c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.412310Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1180 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.413037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1184 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.413126Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1188 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.413246Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x118c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.413642Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1190 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.413660Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x1194 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.413675Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1198 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.482141Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.482161Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x119c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.482220Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.482232Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x11a0 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.482575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.565639Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.565971Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.566289Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.566491Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.566667Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.566997Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.567345Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.567644Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.567832Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.568172Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.568537Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.568870Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.569214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.569554Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.569904Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.570244Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.570667Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.571047Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.571469Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.571849Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.572157Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.572429Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.572809Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.573138Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.573416Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.573708Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.574013Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.574281Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.574615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.574815Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.574998Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.575340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.575674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.575973Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.576314Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.576653Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.576994Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.577229Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.577570Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.577909Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.578272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.578613Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.578953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.579306Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.579642Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.579982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.580327Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.580677Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.581018Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.581363Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.581709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.582069Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.582464Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.582779Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.583053Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.583401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.583686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.584024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.584298Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.584635Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.584969Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.585276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.585572Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.585768Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.585937Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.586115Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.586457Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.586694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.586836Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x116c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.590654Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.590670Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x12c0 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.591166Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.591177Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x12cc hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.593408Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x10b4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.595122Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12e4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.595244Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x12e8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.596222Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x12ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.596279Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x12f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.596389Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x12f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.597113Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x12f8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.597144Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3/5" err=File not found: cache:/aab216c3/5 handle=0x12fc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.597184Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x1300 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.598910Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.598922Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x1304 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.599046Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.599055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x130c hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.599107Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.599115Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x1310 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.604273Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x1318 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.611030Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x1324 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.611685Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x1324) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.612724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x132c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.612795Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1330 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.613427Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1334 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.613463Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1338 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.613505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x133c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.613854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1340 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.613878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/c" err=File not found: cache:/69d8e45c/c handle=0x1344 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.613904Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1348 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.614982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.616018Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.643106Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x1358 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.653492Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x135c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.660532Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.660792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.661297Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.661800Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.662230Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.662668Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.663070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.663669Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.664184Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.664554Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.664786Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.665025Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.665593Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.674520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.682959Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.683214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.683397Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.683564Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.683726Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.683891Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.684062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.684292Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.684535Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.684704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.684872Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.685085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.685388Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.685694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.686030Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.686398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.686768Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.686974Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.687218Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.687562Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.687893Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.688234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.688438Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.688673Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.688865Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.689085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.689514Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.689775Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.689981Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.690236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.690416Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.690698Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.691106Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.691348Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.691630Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.691958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.692250Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.692523Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.692816Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.693142Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.693471Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.693895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.694111Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.694445Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.694777Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.695124Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.695359Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.695568Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.695887Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.696205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x1318) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.700613Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.703488Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x1498 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.703531Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x149c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.703960Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.703999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.704085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14a8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.704480Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14ac path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.704582Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x14b0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.704608Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x14b4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.705409Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.706325Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.708860Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x14c0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.712083Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.720380Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14cc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.720432Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x14d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.721159Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.721191Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14d8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.721239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.721399Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.721420Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x14e4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.721444Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14e8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.722182Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.727758Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.728161Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.728461Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.728741Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.729103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.729392Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.729695Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.729996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.730301Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.730647Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.731000Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.731358Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.731706Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.732059Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.732351Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.732635Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.732966Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.733251Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.733515Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.733799Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.814846Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x1540 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.814917Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1544 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.815443Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1548 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.815480Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x154c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.815538Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1550 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.815720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1554 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.815735Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x1558 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.815755Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x155c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.816384Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.817954Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x1564 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.817999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1568 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.818563Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x156c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.818612Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1570 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.818670Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1574 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.818848Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1578 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.818862Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/2" err=File not found: cache:/87719002/2 handle=0x157c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.818874Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x1580 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.819434Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.822972Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.823201Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.823404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.823606Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.823814Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.824028Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.824245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.824451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.824659Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.824873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.859635Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x15b0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.859706Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15b4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.860318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x15b8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.860364Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x15bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.860430Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x15c0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.860608Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x15c4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.860624Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x15c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.860638Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x15cc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.861297Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(12) is_main=false cycle=18593977 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.861580Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.861632Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.861641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x15dc hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.864100Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.864130Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x15ec hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.868873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x15f8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.869002Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15fc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.870839Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1600 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.870920Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1604 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.871099Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.871112Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1614 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.871179Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1618 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.871286Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.871296Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1624 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.871407Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.871417Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=20 handle=0x162c hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.872077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1630 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.872110Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x1634 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.872143Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x1638 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:42.874584Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x1358) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.775130Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b1d8000 width=1280 height=720
2026-05-08T14:31:43.783459Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1640 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.783676Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1644 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.787179Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1648 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.787369Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x164c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.787722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1650 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.788721Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1654 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.788755Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/0" err=File not found: cache:/87719002/0 handle=0x1658 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.788785Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x165c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.792354Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.808323Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.809277Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.810032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.810924Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.811652Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.812413Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.813125Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.813832Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.814789Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.815531Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.816442Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.817379Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.818355Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.819220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.819938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.820396Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.821185Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.821851Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.822512Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.823053Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.823701Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.824476Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.825164Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.825569Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.826119Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.826570Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.827086Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.827856Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.828602Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.829035Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.829663Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.830265Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.831087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.831758Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.832556Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.833305Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.834205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.834881Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.835399Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.835839Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.836662Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.837388Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.838298Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.838856Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.839310Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.839724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.840316Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.841070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.841716Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.847664Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.863207Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.863917Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.864647Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.865442Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.866172Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.866859Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.867603Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.868316Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.868781Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.869520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.870343Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.870933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.871623Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.872135Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.872830Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.873557Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.874311Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.875095Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.875875Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.876600Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.877308Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.878133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.878546Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.879212Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.880164Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.880697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.881333Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.881967Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.882473Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.883116Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.883661Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.884293Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.884928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.885589Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.886391Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.887177Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.887822Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.888449Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.889205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.889791Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.890470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.891147Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.891987Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.892739Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.893200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.893868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.894619Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.895245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.895924Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.896567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.897461Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.898181Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.898592Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.899134Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.900061Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.900813Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.901643Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.902369Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.902778Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.903278Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.903739Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.904408Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.905099Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.905840Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.906591Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.907375Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.908264Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.908884Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.909622Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.910416Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.910999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.911782Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.912213Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.912963Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.913651Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.914407Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.915194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.915879Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.916468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.917231Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.917686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.918391Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.919019Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.919872Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.920389Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.920802Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.921625Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.922070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.922864Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.923509Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.924299Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.925169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.925874Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.926640Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.927396Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.928335Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.929077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.929792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.930633Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.931545Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.932484Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.932887Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.933618Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.934383Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.935136Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.936001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.936652Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.937227Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x135c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:31:43.945501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x14c0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:32:10.306301Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=500000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-08T14:32:10.308661Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-08T14:32:10.308895Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=29701 instructions=500000003 import_calls=5629668 unimplemented=0 path=sylpheed.iso
2026-05-08T14:32:10.318787Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=77.000 min=77.000 max=77.000 mean=77.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 2
counter kernel.calls{name=NtAllocateVirtualMemory} = 3
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 889115
counter kernel.calls{name=RtlLeaveCriticalSection} = 889115
counter kernel.calls{name=XexCheckExecutablePrivilege} = 2
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 2
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 395
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 90
counter kernel.calls{name=NtReadFile} = 347
counter kernel.calls{name=NtClose} = 548
counter kernel.calls{name=XeCryptSha} = 1
counter kernel.calls{name=XeKeysConsolePrivateKeySign} = 1
counter kernel.calls{name=NtWriteFile} = 63
counter kernel.calls{name=RtlInitAnsiString} = 173
counter kernel.calls{name=NtOpenFile} = 51
counter kernel.calls{name=NtDeviceIoControlFile} = 2
counter kernel.calls{name=IoDismountVolumeByFileHandle} = 1
counter kernel.calls{name=NtQueryVolumeInformationFile} = 18
counter kernel.calls{name=KeEnterCriticalRegion} = 4
counter kernel.calls{name=XamTaskSchedule} = 1
counter scheduler.spawn.ok = 19
counter kernel.calls{name=XamTaskCloseHandle} = 1
counter kernel.calls{name=KeWaitForSingleObject} = 5
counter kernel.calls{name=StfsCreateDevice} = 1
counter kernel.calls{name=ObCreateSymbolicLink} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 3
counter kernel.calls{name=KeSetEvent} = 1
counter kernel.calls{name=KeResetEvent} = 1
counter kernel.calls{name=KeLeaveCriticalRegion} = 4
counter kernel.calls{name=RtlNtStatusToDosError} = 35
counter kernel.calls{name=ExCreateThread} = 18
counter kernel.calls{name=ObReferenceObjectByHandle} = 15
counter kernel.calls{name=KeSetAffinityThread} = 12
counter kernel.calls{name=ObDereferenceObject} = 17
counter kernel.calls{name=XamContentCreateEnumerator} = 1
counter kernel.calls{name=XamEnumerate} = 1
counter kernel.calls{name=NtWaitForSingleObjectEx} = 1489785
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryInformationFile} = 380
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 865497
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtSetInformationFile} = 77
counter kernel.calls{name=NtSetEvent} = 3334
counter kernel.calls{name=MmFreePhysicalMemory} = 12
counter kernel.calls{name=XamNotifyCreateListener} = 1
counter kernel.calls{name=VdInitializeEngines} = 2
counter kernel.calls{name=VdShutdownEngines} = 1
counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1
counter kernel.calls{name=ExGetXConfigSetting} = 3
counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2
counter kernel.calls{name=MmGetPhysicalAddress} = 1
counter kernel.calls{name=VdInitializeRingBuffer} = 1
counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1
counter kernel.calls{name=KiApcNormalRoutineNop} = 1
counter kernel.calls{name=KeSetBasePriorityThread} = 3
counter kernel.calls{name=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 3
counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1
counter kernel.calls{name=VdGetSystemCommandBuffer} = 2
counter kernel.calls{name=VdSwap} = 2
counter gpu.interrupt.delivered{source=1} = 2
counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28
counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28
counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1
counter gpu.interrupt.delivered{source=0} = 3295
counter kernel.calls{name=VdSetDisplayMode} = 1
counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1
counter kernel.calls{name=RtlFillMemoryUlong} = 1
counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1
counter kernel.calls{name=VdPersistDisplay} = 1
counter kernel.calls{name=NtResumeThread} = 6
counter kernel.calls{name=XGetGameRegion} = 2
counter kernel.calls{name=KeInitializeSemaphore} = 1
counter kernel.calls{name=KeResumeThread} = 2
counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33
counter kernel.calls{name=KfLowerIrql} = 26
counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1
counter kernel.calls{name=ObLookupThreadByThreadId} = 2
counter kernel.calls{name=ObOpenObjectByPointer} = 2
counter kernel.calls{name=XNotifyPositionUI} = 1
counter kernel.calls{name=NtCreateTimer} = 1
counter kernel.calls{name=NtSetTimerEx} = 1
counter kernel.calls{name=XamInputGetCapabilities} = 8
counter kernel.calls{name=XNotifyGetNext} = 1489729
counter kernel.calls{name=XamUserGetSigninState} = 2
counter kernel.calls{name=XamUserGetXUID} = 1
counter kernel.calls{name=XamUserReadProfileSettings} = 2