/home/llmeval/.local/share/uv/tools/cubbi/lib/python3.12/site-packages/click/core.py:1213: UserWarning: The parameter -m is used more than once. Remove its duplicate as parameters should be unique. parser = self.make_parser(ctx) /home/llmeval/.local/share/uv/tools/cubbi/lib/python3.12/site-packages/click/core.py:1206: UserWarning: The parameter -m is used more than once. Remove its duplicate as parameters should be unique. self.parse_args(ctx, args) Using UID: 1000, GID: 1000 Forwarding environment variable OPENROUTER_API_KEY to container Mounting local directory /home/llmeval/llmeval/runs/run_20260128_150105/task5_dedup_contact/openrouter-openai-gpt-oss-20b/workspace to /app No project_name provided - skipping configuration directory setup. Session created successfully! Session ID: a580b2e9 Image: opencode Executing command and waiting for completion... Container will exit after command completes. Command logs: Initializing opencode v1.0.0 Setting up user 'cubbi' with UID: 1000, GID: 1000 Setting up standard directories Created directory: /app Created directory: /cubbi-config Created directory: /cubbi-config/home Creating /home/cubbi as symlink to /cubbi-config/home Created directory: /cubbi-config/home/.local Copied /root/.local/bin to user directory Running opencode-specific initialization Added litellm custom provider with 153 models to OpenCode configuration Added openrouter standard provider with 347 models to OpenCode configuration Set default model to openrouter/openai/gpt-oss-20b Updated OpenCode configuration at /home/cubbi/.config/opencode/config.json with 2 providers No MCP servers to integrate --- Executing initial command --- Executing user command: if [ -f install.sh ]; then bash install.sh; fi; echo "--- TASK BEGIN ---"; cat task.md; echo "--- TASK END ---"; cd input && opencode run --print-logs < ../task.md Executing as cubbi: sh -c if [ -f install.sh ]; then bash install.sh; fi; echo "--- TASK BEGIN ---"; cat task.md; echo "--- TASK END ---"; cd input && opencode run --print-logs < ../task.md Created contacts.csv with 50 contacts (35 unique + 15 duplicates) --- TASK BEGIN --- # Contact List Deduplicator You have a CSV file `contacts.csv` containing contact information with potential duplicates. Your task is to identify and merge duplicate contacts based on matching criteria, then generate a JSON report. ## Duplicate Detection Rules Two contacts are duplicates if ANY of the following match: 1. **Phone numbers match** (after normalization - remove spaces, dashes, parentheses) 2. **Email addresses match** (case-insensitive) 3. **Names are very similar** (exact match ignoring case, or initials match with same last name) ## Requirements 1. Read `contacts.csv` 2. Identify all duplicate contacts 3. Generate `deduped.json` with this exact structure: ```json { "original_count": 100, "unique_count": 85, "duplicates_found": 15, "duplicate_groups": [ { "primary": { "name": "John Smith", "email": "john.smith@example.com", "phone": "555-1234", "company": "Acme Corp" }, "duplicates": [ { "name": "J. Smith", "email": "jsmith@example.com", "phone": "555-1234", "company": "Acme Corp" } ], "match_reason": "phone" } ] } ``` ## Important Notes - The primary contact should be the one with the most complete information (fewest empty fields) - Normalize phone numbers before comparison: remove all spaces, dashes, and parentheses - Email matching should be case-insensitive - Match reasons can be: "phone", "email", "name", or combinations like "phone_and_email" - Each duplicate group should list the primary contact and all its duplicates - Original count includes all contacts, unique count is after deduplication - Duplicates found is the number of duplicate entries (not the number of groups) PS: You are currently working in an automated system and cannot ask any question or have back and forth with an user. --- TASK END --- INFO 2026-01-28T15:57:25 +784ms service=default version=1.1.17 args=["run","--print-logs"] opencode INFO 2026-01-28T15:57:25 +2ms service=default directory=/app/input creating instance INFO 2026-01-28T15:57:25 +1ms service=project directory=/app/input fromDirectory INFO 2026-01-28T15:57:25 +4ms service=storage index=0 running migration ERROR 2026-01-28T15:57:25 +2ms service=storage index=0 failed to run migration INFO 2026-01-28T15:57:25 +0ms service=storage index=1 running migration INFO 2026-01-28T15:57:25 +4ms service=default directory=/app/input bootstrapping INFO 2026-01-28T15:57:25 +4ms service=config path=/home/cubbi/.config/opencode/config.json loading INFO 2026-01-28T15:57:25 +63ms service=config path=/home/cubbi/.config/opencode/opencode.json loading INFO 2026-01-28T15:57:25 +0ms service=config path=/home/cubbi/.config/opencode/opencode.jsonc loading INFO 2026-01-28T15:57:25 +10ms service=bun cmd=["/opt/node/lib/node_modules/opencode-ai/node_modules/opencode-linux-x64/bin/opencode","add","@opencode-ai/plugin@1.1.17","--exact"] cwd=/home/cubbi/.config/opencode running INFO 2026-01-28T15:57:26 +550ms service=bun code=0 stdout=bun add v1.3.5 (1e86cebd) installed @opencode-ai/plugin@1.1.17 3 packages installed [530.00ms] stderr=Resolving dependencies Resolved, downloaded and extracted [12] Saved lockfile done INFO 2026-01-28T15:57:26 +0ms service=bun cmd=["/opt/node/lib/node_modules/opencode-ai/node_modules/opencode-linux-x64/bin/opencode","install"] cwd=/home/cubbi/.config/opencode running INFO 2026-01-28T15:57:26 +11ms service=bun code=0 stdout=bun install v1.3.5 (1e86cebd) Checked 3 installs across 4 packages (no changes) [3.00ms] stderr= done INFO 2026-01-28T15:57:26 +16ms service=plugin name=CodexAuthPlugin loading internal plugin INFO 2026-01-28T15:57:26 +1ms service=plugin path=opencode-copilot-auth@0.0.12 loading plugin INFO 2026-01-28T15:57:26 +2ms service=bun pkg=opencode-copilot-auth version=0.0.12 installing package using Bun's default registry resolution INFO 2026-01-28T15:57:26 +0ms service=bun cmd=["/opt/node/lib/node_modules/opencode-ai/node_modules/opencode-linux-x64/bin/opencode","add","--force","--exact","--cwd","/home/cubbi/.cache/opencode","opencode-copilot-auth@0.0.12"] cwd=/home/cubbi/.cache/opencode running INFO 2026-01-28T15:57:26 +155ms service=bun code=0 stdout=bun add v1.3.5 (1e86cebd) installed opencode-copilot-auth@0.0.12 1 package installed [144.00ms] stderr=Resolving dependencies Resolved, downloaded and extracted [4] Saved lockfile done INFO 2026-01-28T15:57:26 +4ms service=plugin path=opencode-anthropic-auth@0.0.8 loading plugin INFO 2026-01-28T15:57:26 +0ms service=bun pkg=opencode-anthropic-auth version=0.0.8 installing package using Bun's default registry resolution INFO 2026-01-28T15:57:26 +0ms service=bun cmd=["/opt/node/lib/node_modules/opencode-ai/node_modules/opencode-linux-x64/bin/opencode","add","--force","--exact","--cwd","/home/cubbi/.cache/opencode","opencode-anthropic-auth@0.0.8"] cwd=/home/cubbi/.cache/opencode running INFO 2026-01-28T15:57:26 +709ms service=bun code=0 stdout=bun add v1.3.5 (1e86cebd) + opencode-copilot-auth@0.0.12 installed opencode-anthropic-auth@0.0.8 14 packages installed [691.00ms] stderr=Resolving dependencies Resolved, downloaded and extracted [50] Saved lockfile done INFO 2026-01-28T15:57:27 +44ms service=bus type=* subscribing INFO 2026-01-28T15:57:27 +0ms service=bus type=session.updated subscribing INFO 2026-01-28T15:57:27 +1ms service=bus type=message.updated subscribing INFO 2026-01-28T15:57:27 +0ms service=bus type=message.part.updated subscribing INFO 2026-01-28T15:57:27 +0ms service=bus type=session.updated subscribing INFO 2026-01-28T15:57:27 +0ms service=bus type=message.updated subscribing INFO 2026-01-28T15:57:27 +0ms service=bus type=message.part.updated subscribing INFO 2026-01-28T15:57:27 +0ms service=bus type=session.diff subscribing INFO 2026-01-28T15:57:27 +0ms service=format init INFO 2026-01-28T15:57:27 +0ms service=bus type=file.edited subscribing INFO 2026-01-28T15:57:27 +1ms service=lsp serverIds=deno, typescript, vue, eslint, oxlint, biome, gopls, ruby-lsp, pyright, elixir-ls, zls, csharp, fsharp, sourcekit-lsp, rust, clangd, svelte, astro, jdtls, kotlin-ls, yaml-ls, lua-ls, php intelephense, prisma, dart, ocaml-lsp, bash, terraform, texlab, dockerfile, gleam, clojure-lsp, nixd, tinymist, haskell-language-server enabled LSP servers INFO 2026-01-28T15:57:27 +3ms service=bus type=command.executed subscribing INFO 2026-01-28T15:57:27 +37ms service=server method=POST path=/session request INFO 2026-01-28T15:57:27 +1ms service=server status=started method=POST path=/session request INFO 2026-01-28T15:57:27 +3ms service=session id=ses_3faad1153ffeItbZ6q20hgk0UR version=1.1.17 projectID=global directory=/app/input title=New session - 2026-01-28T15:57:27.085Z time={"created":1769615847085,"updated":1769615847085} created INFO 2026-01-28T15:57:27 +5ms service=bus type=session.created publishing INFO 2026-01-28T15:57:27 +0ms service=bus type=session.updated publishing INFO 2026-01-28T15:57:27 +5ms service=server status=completed duration=13 method=POST path=/session request INFO 2026-01-28T15:57:27 +2ms service=server method=GET path=/config request INFO 2026-01-28T15:57:27 +0ms service=server status=started method=GET path=/config request INFO 2026-01-28T15:57:27 +1ms service=server status=completed duration=1 method=GET path=/config request INFO 2026-01-28T15:57:27 +4ms service=server method=GET path=/event request INFO 2026-01-28T15:57:27 +0ms service=server status=started method=GET path=/event request INFO 2026-01-28T15:57:27 +1ms service=server method=POST path=/session/ses_3faad1153ffeItbZ6q20hgk0UR/message request INFO 2026-01-28T15:57:27 +1ms service=server status=started method=POST path=/session/ses_3faad1153ffeItbZ6q20hgk0UR/message request INFO 2026-01-28T15:57:27 +0ms service=server event connected INFO 2026-01-28T15:57:27 +2ms service=bus type=* subscribing INFO 2026-01-28T15:57:27 +7ms service=server status=completed duration=11 method=GET path=/event request INFO 2026-01-28T15:57:27 +2ms service=server status=completed duration=11 method=POST path=/session/ses_3faad1153ffeItbZ6q20hgk0UR/message request INFO 2026-01-28T15:57:27 +7ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:27 +3ms service=provider status=started state INFO 2026-01-28T15:57:27 +5ms service=models.dev file={} refreshing INFO 2026-01-28T15:57:27 +39ms service=provider init INFO 2026-01-28T15:57:27 +9ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:27 +3ms service=bus type=session.updated publishing INFO 2026-01-28T15:57:27 +4ms service=bus type=session.status publishing INFO 2026-01-28T15:57:27 +0ms service=session.prompt step=0 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T15:57:27 +29ms service=provider providerID=openrouter found INFO 2026-01-28T15:57:27 +0ms service=provider providerID=opencode found INFO 2026-01-28T15:57:27 +0ms service=provider providerID=litellm found INFO 2026-01-28T15:57:27 +0ms service=provider status=completed duration=89 state INFO 2026-01-28T15:57:27 +5ms service=llm providerID=openrouter modelID=anthropic/claude-haiku-4.5 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=true agent=title stream INFO 2026-01-28T15:57:27 +1ms service=provider status=started providerID=openrouter getSDK INFO 2026-01-28T15:57:27 +0ms service=provider providerID=openrouter pkg=@ai-sdk/openai-compatible using bundled provider INFO 2026-01-28T15:57:27 +0ms service=provider status=completed duration=0 providerID=openrouter getSDK INFO 2026-01-28T15:57:27 +2ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:27 +2ms service=session.prompt status=started resolveTools INFO 2026-01-28T15:57:27 +24ms service=tool.registry status=started invalid INFO 2026-01-28T15:57:27 +1ms service=tool.registry status=started question INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=started bash INFO 2026-01-28T15:57:27 +1ms service=bash-tool shell=/usr/bin/bash bash tool using shell INFO 2026-01-28T15:57:27 +2ms service=tool.registry status=started read INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=started glob INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=started grep INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=started edit INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=started write INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=started task INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=started webfetch INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=started todowrite INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=started todoread INFO 2026-01-28T15:57:27 +1ms service=tool.registry status=started skill INFO 2026-01-28T15:57:27 +1ms service=tool.registry status=completed duration=6 invalid INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=completed duration=5 question INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=completed duration=2 read INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=completed duration=2 glob INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=completed duration=2 grep INFO 2026-01-28T15:57:27 +1ms service=tool.registry status=completed duration=3 edit INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=completed duration=3 write INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=completed duration=3 webfetch INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=completed duration=3 todowrite INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=completed duration=3 todoread INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=completed duration=6 bash INFO 2026-01-28T15:57:27 +0ms service=permission permission=task pattern=general ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T15:57:27 +1ms service=permission permission=task pattern=explore ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T15:57:27 +0ms service=tool.registry status=completed duration=4 task INFO 2026-01-28T15:57:27 +2ms service=tool.registry status=completed duration=4 skill INFO 2026-01-28T15:57:27 +6ms service=session.prompt status=completed duration=40 resolveTools INFO 2026-01-28T15:57:27 +10ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:27 +1ms service=llm providerID=openrouter modelID=anthropic/claude-haiku-4.5 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=true agent=title stream INFO 2026-01-28T15:57:27 +0ms service=bus type=session.updated publishing INFO 2026-01-28T15:57:27 +15ms service=bus type=session.diff publishing INFO 2026-01-28T15:57:27 +12ms service=session.processor process INFO 2026-01-28T15:57:27 +0ms service=llm providerID=openrouter modelID=openai/gpt-oss-20b sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=false agent=build stream INFO 2026-01-28T15:57:27 +0ms service=provider status=started providerID=openrouter getSDK INFO 2026-01-28T15:57:27 +0ms service=provider status=completed duration=0 providerID=openrouter getSDK INFO 2026-01-28T15:57:27 +17ms service=bus type=session.status publishing INFO 2026-01-28T15:57:28 +733ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +157ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +169ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +147ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:28 +90ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:29 +708ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:30 +530ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:30 +75ms service=permission permission=glob pattern=contacts.csv ruleset=[{"permission":"*","pattern":"*","action":"allow"},{"permission":"doom_loop","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","pattern":"*","action":"deny"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","pattern":"*","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T15:57:30 +0ms service=permission permission=glob pattern=contacts.csv action={"permission":"*","pattern":"*","action":"allow"} evaluated INFO 2026-01-28T15:57:30 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:30 +24ms service=bus type=message.part.updated publishing |  Glob app/input INFO 2026-01-28T15:57:30 +10ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:30 +1ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:30 +13ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:30 +0ms service=bus type=session.status publishing INFO 2026-01-28T15:57:30 +1ms service=session.prompt step=1 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T15:57:30 +7ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:30 +2ms service=llm providerID=openrouter modelID=anthropic/claude-haiku-4.5 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=true agent=title stream INFO 2026-01-28T15:57:30 +1ms service=bus type=session.updated publishing INFO 2026-01-28T15:57:30 +2ms service=bus type=session.diff publishing INFO 2026-01-28T15:57:30 +5ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:30 +0ms service=session.prompt status=started resolveTools INFO 2026-01-28T15:57:30 +1ms service=tool.registry status=started invalid INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=started question INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=started bash INFO 2026-01-28T15:57:30 +0ms service=bash-tool shell=/usr/bin/bash bash tool using shell INFO 2026-01-28T15:57:30 +2ms service=tool.registry status=started read INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=started glob INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=started grep INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=started edit INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=started write INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=started task INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=started webfetch INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=started todowrite INFO 2026-01-28T15:57:30 +1ms service=tool.registry status=started todoread INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=started skill INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=3 invalid INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=3 question INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=1 read INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=1 glob INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=1 grep INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=1 edit INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=1 write INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=1 webfetch INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=1 todowrite INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=0 todoread INFO 2026-01-28T15:57:30 +0ms service=tool.registry status=completed duration=3 bash INFO 2026-01-28T15:57:30 +1ms service=tool.registry status=completed duration=0 skill INFO 2026-01-28T15:57:30 +0ms service=permission permission=task pattern=general ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T15:57:30 +0ms service=permission permission=task pattern=explore ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T15:57:30 +2ms service=tool.registry status=completed duration=4 task INFO 2026-01-28T15:57:30 +15ms service=session.prompt status=completed duration=22 resolveTools INFO 2026-01-28T15:57:30 +13ms service=session.processor process INFO 2026-01-28T15:57:30 +0ms service=llm providerID=openrouter modelID=openai/gpt-oss-20b sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=false agent=build stream INFO 2026-01-28T15:57:30 +11ms service=bus type=session.status publishing INFO 2026-01-28T15:57:31 +767ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:31 +216ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:31 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:31 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:31 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:31 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:31 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:31 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:31 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:31 +75ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:31 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +198ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +77ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +78ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +83ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +87ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +84ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:32 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +97ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +74ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +72ms service=session.summary title=Contact deduplication title INFO 2026-01-28T15:57:33 +8ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:33 +4ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +85ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +7ms service=bus type=session.updated publishing INFO 2026-01-28T15:57:33 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:33 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +87ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +78ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +74ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +75ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:34 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +76ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +94ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:35 +27ms service=session.summary title=Contact deduplication title INFO 2026-01-28T15:57:35 +0ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:36 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +79ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +74ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +74ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:36 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +90ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +75ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:37 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +79ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +107ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +22ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +80ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:38 +78ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:39 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:39 +74ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:39 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:39 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:39 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:40 +946ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:41 +1267ms service=permission permission=read pattern=/app/input/contacts.csv ruleset=[{"permission":"*","pattern":"*","action":"allow"},{"permission":"doom_loop","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","pattern":"*","action":"deny"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","pattern":"*","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T15:57:41 +0ms service=permission permission=read pattern=/app/input/contacts.csv action={"permission":"read","pattern":"*","action":"allow"} evaluated INFO 2026-01-28T15:57:41 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:41 +11ms service=lsp file=/app/input/contacts.csv touching file INFO 2026-01-28T15:57:41 +0ms service=file.time sessionID=ses_3faad1153ffeItbZ6q20hgk0UR file=/app/input/contacts.csv read INFO 2026-01-28T15:57:41 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:41 +6ms service=bus type=message.part.updated publishing |  Read app/input/contacts.csv INFO 2026-01-28T15:57:41 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:41 +1ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:41 +8ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:41 +0ms service=bus type=session.status publishing INFO 2026-01-28T15:57:41 +0ms service=session.prompt step=2 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T15:57:41 +10ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:41 +7ms service=bus type=session.updated publishing INFO 2026-01-28T15:57:41 +1ms service=bus type=session.diff publishing INFO 2026-01-28T15:57:41 +17ms service=bus type=message.updated publishing INFO 2026-01-28T15:57:41 +0ms service=session.prompt status=started resolveTools INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started invalid INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started question INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started bash INFO 2026-01-28T15:57:41 +1ms service=bash-tool shell=/usr/bin/bash bash tool using shell INFO 2026-01-28T15:57:41 +1ms service=tool.registry status=started read INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started glob INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started grep INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started edit INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started write INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started task INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started webfetch INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started todowrite INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started todoread INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=started skill INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=2 invalid INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=2 question INFO 2026-01-28T15:57:41 +1ms service=tool.registry status=completed duration=1 read INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=1 glob INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=1 grep INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=1 edit INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=1 write INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=1 webfetch INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=1 todowrite INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=1 todoread INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=3 bash INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=1 skill INFO 2026-01-28T15:57:41 +0ms service=permission permission=task pattern=general ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T15:57:41 +0ms service=permission permission=task pattern=explore ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T15:57:41 +0ms service=tool.registry status=completed duration=1 task INFO 2026-01-28T15:57:41 +6ms service=session.prompt status=completed duration=9 resolveTools INFO 2026-01-28T15:57:41 +15ms service=session.processor process INFO 2026-01-28T15:57:41 +1ms service=llm providerID=openrouter modelID=openai/gpt-oss-20b sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=false agent=build stream INFO 2026-01-28T15:57:41 +19ms service=bus type=session.status publishing INFO 2026-01-28T15:57:42 +731ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:42 +158ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:42 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:42 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:42 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:42 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:42 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:42 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:42 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:42 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +100ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:43 +77ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:44 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:45 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +229ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +75ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:46 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +74ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:47 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:48 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:49 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:50 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:51 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:52 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:53 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:54 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +104ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +118ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +99ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:55 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +201ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:56 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +79ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:57 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:58 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +80ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:57:59 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +81ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +86ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:00 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +80ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:01 +76ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:02 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:03 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:04 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +83ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +84ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:05 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +83ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:06 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +88ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:07 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +146ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +124ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +6ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:08 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +283ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:09 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:10 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:11 +74ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:12 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +85ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:13 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:14 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +74ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:15 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +78ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:16 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:17 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +106ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +82ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:18 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +74ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +93ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +86ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:19 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +76ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:20 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +130ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:21 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +168ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:22 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:23 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +82ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +188ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +20ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:24 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:25 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:26 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:27 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +89ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:28 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:29 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +328ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +14ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +5ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +4ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:30 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +77ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:31 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:32 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:33 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:33 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:33 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:33 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:33 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:33 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:33 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:33 +79ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:33 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:33 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:58:34 +828ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:59:57 +83124ms service=permission permission=edit pattern=app/input/dedup.py ruleset=[{"permission":"*","pattern":"*","action":"allow"},{"permission":"doom_loop","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","pattern":"*","action":"deny"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","pattern":"*","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T15:59:57 +0ms service=permission permission=edit pattern=app/input/dedup.py action={"permission":"*","pattern":"*","action":"allow"} evaluated INFO 2026-01-28T15:59:57 +0ms service=bus type=file.edited publishing INFO 2026-01-28T15:59:57 +1ms service=format file=/app/input/dedup.py formatting INFO 2026-01-28T15:59:57 +5ms service=format name=zig ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=uv format ext=.py checking INFO 2026-01-28T15:59:57 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:59:57 +18ms service=format name=uv format ext=.py enabled INFO 2026-01-28T15:59:57 +0ms service=format name=terraform ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=standardrb ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=shfmt ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=rustfmt ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=ruff ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=rubocop ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=air ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=prettier ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=oxfmt ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=ocamlformat ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=nixfmt ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=mix ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=latexindent ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=ktlint ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=htmlbeautifier ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=gofmt ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=gleam ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=dart ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=clang-format ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=cargofmt ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format name=biome ext=.py checking INFO 2026-01-28T15:59:57 +0ms service=format command=["uv","format","--","$FILE"] running INFO 2026-01-28T15:59:57 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T15:59:57 +355ms service=file.time sessionID=ses_3faad1153ffeItbZ6q20hgk0UR file=/app/input/dedup.py read INFO 2026-01-28T15:59:57 +0ms service=lsp file=/app/input/dedup.py touching file ���� Resolving [1/1]  ���� pyright [7/6]  ���� pyright [7/6]  ���� Saving lockfile... INFO 2026-01-28T15:59:58 +1084ms service=lsp serverID=pyright spawned lsp server INFO 2026-01-28T15:59:58 +2ms service=lsp.client serverID=pyright starting client INFO 2026-01-28T15:59:58 +11ms service=lsp.client serverID=pyright sending initialize INFO 2026-01-28T15:59:59 +929ms service=lsp.client serverID=pyright initialized INFO 2026-01-28T15:59:59 +0ms service=bus type=lsp.updated publishing INFO 2026-01-28T15:59:59 +1ms service=lsp.client serverID=pyright path=/app/input/dedup.py waiting for diagnostics INFO 2026-01-28T15:59:59 +0ms service=bus type=lsp.client.diagnostics subscribing INFO 2026-01-28T15:59:59 +7ms service=lsp.client serverID=pyright path=/app/input/dedup.py workspace/didChangeWatchedFiles INFO 2026-01-28T15:59:59 +9ms service=lsp.client serverID=pyright path=/app/input/dedup.py textDocument/didOpen INFO 2026-01-28T16:00:02 +2991ms service=bus type=lsp.client.diagnostics unsubscribing INFO 2026-01-28T16:00:02 +18ms service=bus type=message.part.updated publishing |  Write app/input/dedup.py INFO 2026-01-28T16:00:02 +4ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:02 +1ms service=bus type=message.updated publishing INFO 2026-01-28T16:00:02 +7ms service=bus type=message.updated publishing INFO 2026-01-28T16:00:02 +1ms service=bus type=session.status publishing INFO 2026-01-28T16:00:02 +0ms service=session.prompt step=3 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T16:00:03 +45ms service=bus type=message.updated publishing INFO 2026-01-28T16:00:03 +2ms service=bus type=message.updated publishing INFO 2026-01-28T16:00:03 +9ms service=session.prompt status=started resolveTools INFO 2026-01-28T16:00:03 +1ms service=tool.registry status=started invalid INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started question INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started bash INFO 2026-01-28T16:00:03 +1ms service=bash-tool shell=/usr/bin/bash bash tool using shell INFO 2026-01-28T16:00:03 +1ms service=tool.registry status=started read INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started glob INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started grep INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started edit INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started write INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started task INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started webfetch INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started todowrite INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started todoread INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=started skill INFO 2026-01-28T16:00:03 +1ms service=tool.registry status=completed duration=3 invalid INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=3 question INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=1 read INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=1 glob INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=1 grep INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=1 edit INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=1 write INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=1 webfetch INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=1 todowrite INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=1 todoread INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=3 bash INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=1 skill INFO 2026-01-28T16:00:03 +0ms service=permission permission=task pattern=general ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:00:03 +1ms service=permission permission=task pattern=explore ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:00:03 +0ms service=tool.registry status=completed duration=2 task INFO 2026-01-28T16:00:03 +5ms service=session.prompt status=completed duration=10 resolveTools INFO 2026-01-28T16:00:03 +2ms service=bus type=session.updated publishing INFO 2026-01-28T16:00:03 +1ms service=bus type=session.diff publishing INFO 2026-01-28T16:00:03 +93ms service=session.processor process INFO 2026-01-28T16:00:03 +2ms service=llm providerID=openrouter modelID=openai/gpt-oss-20b sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=false agent=build stream INFO 2026-01-28T16:00:03 +26ms service=bus type=session.status publishing INFO 2026-01-28T16:00:03 +610ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:03 +141ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:03 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +77ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:04 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +19ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +79ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +40ms service=lsp.client serverID=pyright path=/app/input/dedup.py count=0 textDocument/publishDiagnostics INFO 2026-01-28T16:00:05 +0ms service=bus type=lsp.client.diagnostics publishing INFO 2026-01-28T16:00:05 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:05 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:06 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:07 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:08 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:09 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:10 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +89ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +17ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:11 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +161ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +141ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +14ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:12 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +282ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +10ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +4ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +22ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:13 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:14 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:15 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:16 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:17 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:18 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +126ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +21ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:19 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +85ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:20 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +71ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:21 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +75ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +69ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:22 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:23 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +76ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:24 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:25 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:26 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +75ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:27 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:28 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +142ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:29 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +75ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +75ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:30 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +74ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +73ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:31 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:32 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:33 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:34 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:35 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:36 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:37 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:38 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +109ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +218ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +4ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:39 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +87ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +21ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:40 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +59ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:41 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:42 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:43 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:43 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:43 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:43 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:43 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:43 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:43 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:43 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:44 +778ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:45 +1390ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:45 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:45 +61ms service=permission permission=bash pattern=python3 /app/input/dedup.py ruleset=[{"permission":"*","pattern":"*","action":"allow"},{"permission":"doom_loop","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","pattern":"*","action":"deny"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","pattern":"*","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:00:45 +5ms service=permission permission=bash pattern=python3 /app/input/dedup.py action={"permission":"*","pattern":"*","action":"allow"} evaluated INFO 2026-01-28T16:00:45 +8ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +309ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +11ms service=bus type=message.part.updated publishing |  Bash Run dedup script Traceback (most recent call last): File "/app/input/dedup.py", line 176, in main() File "/app/input/dedup.py", line 167, in main result = deduplicate(contacts) ^^^^^^^^^^^^^^^^^^^^^ File "/app/input/dedup.py", line 127, in deduplicate dup_idx = idxs.index(dup) if dup in [contacts[i] for i in idxs] else None ^^^^^^^^^^^^^^^ ValueError: {'name': 'J. Smith', 'email': 'jsmith@example.com', 'phone': '555-1234', 'company': 'Acme Corp', 'phone_norm': '5551234', 'email_norm': 'jsmith@example.com'} is not in list INFO 2026-01-28T16:00:46 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +0ms service=bus type=message.updated publishing INFO 2026-01-28T16:00:46 +18ms service=bus type=message.updated publishing INFO 2026-01-28T16:00:46 +1ms service=bus type=session.status publishing INFO 2026-01-28T16:00:46 +0ms service=session.prompt step=4 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T16:00:46 +30ms service=bus type=message.updated publishing INFO 2026-01-28T16:00:46 +3ms service=bus type=session.updated publishing INFO 2026-01-28T16:00:46 +1ms service=bus type=session.diff publishing INFO 2026-01-28T16:00:46 +2ms service=bus type=message.updated publishing INFO 2026-01-28T16:00:46 +1ms service=session.prompt status=started resolveTools INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started invalid INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started question INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started bash INFO 2026-01-28T16:00:46 +0ms service=bash-tool shell=/usr/bin/bash bash tool using shell INFO 2026-01-28T16:00:46 +1ms service=tool.registry status=started read INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started glob INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started grep INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started edit INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started write INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started task INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started webfetch INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started todowrite INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started todoread INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=started skill INFO 2026-01-28T16:00:46 +1ms service=tool.registry status=completed duration=2 invalid INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=2 question INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=1 read INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=1 glob INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=1 grep INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=1 edit INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=1 write INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=1 webfetch INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=1 todowrite INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=1 todoread INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=2 bash INFO 2026-01-28T16:00:46 +0ms service=tool.registry status=completed duration=1 skill INFO 2026-01-28T16:00:46 +0ms service=permission permission=task pattern=general ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:00:46 +0ms service=permission permission=task pattern=explore ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:00:46 +1ms service=tool.registry status=completed duration=2 task INFO 2026-01-28T16:00:46 +2ms service=session.prompt status=completed duration=5 resolveTools INFO 2026-01-28T16:00:46 +14ms service=session.processor process INFO 2026-01-28T16:00:46 +0ms service=llm providerID=openrouter modelID=openai/gpt-oss-20b sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=false agent=build stream INFO 2026-01-28T16:00:46 +7ms service=bus type=session.status publishing INFO 2026-01-28T16:00:46 +495ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +107ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:46 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +108ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +15ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:47 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +9ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +315ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:48 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +22ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +19ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:49 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:50 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:51 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +17ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:52 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +21ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:53 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +19ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:54 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:55 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +102ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +70ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:56 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +22ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:57 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +9ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +171ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:58 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +14ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +22ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:00:59 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:00 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +20ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:01 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:02 +446ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:07 +5913ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:07 +17ms service=permission permission=edit pattern=app/input/dedup.py ruleset=[{"permission":"*","pattern":"*","action":"allow"},{"permission":"doom_loop","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","pattern":"*","action":"deny"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","pattern":"*","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:07 +0ms service=permission permission=edit pattern=app/input/dedup.py action={"permission":"*","pattern":"*","action":"allow"} evaluated INFO 2026-01-28T16:01:07 +0ms service=bus type=file.edited publishing INFO 2026-01-28T16:01:07 +0ms service=format file=/app/input/dedup.py formatting INFO 2026-01-28T16:01:07 +0ms service=format name=zig ext=.py checking INFO 2026-01-28T16:01:07 +1ms service=format name=uv format ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=uv format ext=.py enabled INFO 2026-01-28T16:01:07 +0ms service=format name=terraform ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=standardrb ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=shfmt ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=rustfmt ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=ruff ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=rubocop ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=air ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=prettier ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=oxfmt ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=ocamlformat ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=nixfmt ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=mix ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=latexindent ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=ktlint ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=htmlbeautifier ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=gofmt ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=gleam ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=dart ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=clang-format ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=cargofmt ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format name=biome ext=.py checking INFO 2026-01-28T16:01:07 +0ms service=format command=["uv","format","--","$FILE"] running INFO 2026-01-28T16:01:08 +33ms service=bus type=message.part.updated publishing ERROR 2026-01-28T16:01:08 +28ms service=format command=["uv","format","--","$FILE"] failed INFO 2026-01-28T16:01:08 +1ms service=file.time sessionID=ses_3faad1153ffeItbZ6q20hgk0UR file=/app/input/dedup.py read INFO 2026-01-28T16:01:08 +2ms service=lsp file=/app/input/dedup.py touching file INFO 2026-01-28T16:01:08 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:08 +1ms service=lsp.client serverID=pyright path=/app/input/dedup.py waiting for diagnostics INFO 2026-01-28T16:01:08 +1ms service=bus type=lsp.client.diagnostics subscribing INFO 2026-01-28T16:01:08 +0ms service=lsp.client serverID=pyright path=/app/input/dedup.py workspace/didChangeWatchedFiles INFO 2026-01-28T16:01:08 +1ms service=lsp.client serverID=pyright path=/app/input/dedup.py version=1 textDocument/didChange INFO 2026-01-28T16:01:09 +1185ms service=lsp.client serverID=pyright path=/app/input/dedup.py count=1 textDocument/publishDiagnostics INFO 2026-01-28T16:01:09 +1ms service=bus type=lsp.client.diagnostics publishing INFO 2026-01-28T16:01:09 +154ms service=lsp.client serverID=pyright path=/app/input/dedup.py got diagnostics INFO 2026-01-28T16:01:09 +1ms service=bus type=lsp.client.diagnostics unsubscribing INFO 2026-01-28T16:01:09 +0ms service=bus type=lsp.client.diagnostics unsubscribing INFO 2026-01-28T16:01:09 +2ms service=bus type=message.part.updated publishing |  Edit app/input/dedup.py INFO 2026-01-28T16:01:09 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:09 +2ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:09 +7ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:09 +0ms service=bus type=session.status publishing INFO 2026-01-28T16:01:09 +0ms service=session.prompt step=5 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T16:01:09 +19ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:09 +1ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:09 +1ms service=session.prompt status=started resolveTools INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started invalid INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started question INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started bash INFO 2026-01-28T16:01:09 +0ms service=bash-tool shell=/usr/bin/bash bash tool using shell INFO 2026-01-28T16:01:09 +1ms service=tool.registry status=started read INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started glob INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started grep INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started edit INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started write INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started task INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started webfetch INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started todowrite INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started todoread INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=started skill INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=1 invalid INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=1 question INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=0 read INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=0 glob INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=0 grep INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=0 edit INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=0 write INFO 2026-01-28T16:01:09 +1ms service=tool.registry status=completed duration=1 webfetch INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=1 todowrite INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=1 todoread INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=2 bash INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=1 skill INFO 2026-01-28T16:01:09 +0ms service=permission permission=task pattern=general ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:09 +0ms service=permission permission=task pattern=explore ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:09 +0ms service=tool.registry status=completed duration=1 task INFO 2026-01-28T16:01:09 +2ms service=session.prompt status=completed duration=4 resolveTools INFO 2026-01-28T16:01:09 +1ms service=bus type=session.updated publishing INFO 2026-01-28T16:01:09 +1ms service=bus type=session.diff publishing INFO 2026-01-28T16:01:09 +2ms service=session.processor process INFO 2026-01-28T16:01:09 +0ms service=llm providerID=openrouter modelID=openai/gpt-oss-20b sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=false agent=build stream INFO 2026-01-28T16:01:09 +17ms service=bus type=session.status publishing INFO 2026-01-28T16:01:09 +337ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:09 +94ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:09 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:09 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:09 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:10 +425ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:11 +665ms service=permission permission=read pattern=/app/input/dedup.py ruleset=[{"permission":"*","pattern":"*","action":"allow"},{"permission":"doom_loop","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","pattern":"*","action":"deny"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","pattern":"*","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:11 +0ms service=permission permission=read pattern=/app/input/dedup.py action={"permission":"read","pattern":"*","action":"allow"} evaluated INFO 2026-01-28T16:01:11 +8ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:11 +38ms service=lsp file=/app/input/dedup.py touching file INFO 2026-01-28T16:01:11 +0ms service=file.time sessionID=ses_3faad1153ffeItbZ6q20hgk0UR file=/app/input/dedup.py read INFO 2026-01-28T16:01:11 +56ms service=bus type=message.part.updated publishing |  Read app/input/dedup.py INFO 2026-01-28T16:01:11 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:11 +7ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:11 +0ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:11 +35ms service=lsp.client serverID=pyright path=/app/input/dedup.py workspace/didChangeWatchedFiles INFO 2026-01-28T16:01:11 +4ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:11 +0ms service=bus type=session.status publishing INFO 2026-01-28T16:01:11 +0ms service=session.prompt step=6 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T16:01:11 +2ms service=lsp.client serverID=pyright path=/app/input/dedup.py version=2 textDocument/didChange INFO 2026-01-28T16:01:11 +86ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:11 +2ms service=bus type=session.updated publishing INFO 2026-01-28T16:01:11 +1ms service=bus type=session.diff publishing INFO 2026-01-28T16:01:11 +12ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:11 +0ms service=session.prompt status=started resolveTools INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started invalid INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started question INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started bash INFO 2026-01-28T16:01:11 +0ms service=bash-tool shell=/usr/bin/bash bash tool using shell INFO 2026-01-28T16:01:11 +5ms service=tool.registry status=started read INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started glob INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started grep INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started edit INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started write INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started task INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started webfetch INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started todowrite INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started todoread INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=started skill INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=5 invalid INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=5 question INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=0 read INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=0 glob INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=0 grep INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=0 edit INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=0 write INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=0 webfetch INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=0 todowrite INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=0 todoread INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=5 bash INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=0 skill INFO 2026-01-28T16:01:11 +1ms service=permission permission=task pattern=general ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:11 +0ms service=permission permission=task pattern=explore ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:11 +0ms service=tool.registry status=completed duration=1 task INFO 2026-01-28T16:01:11 +1ms service=session.prompt status=completed duration=7 resolveTools INFO 2026-01-28T16:01:11 +18ms service=session.processor process INFO 2026-01-28T16:01:11 +0ms service=llm providerID=openrouter modelID=openai/gpt-oss-20b sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=false agent=build stream INFO 2026-01-28T16:01:11 +12ms service=bus type=session.status publishing INFO 2026-01-28T16:01:12 +637ms service=lsp.client serverID=pyright path=/app/input/dedup.py count=1 textDocument/publishDiagnostics INFO 2026-01-28T16:01:12 +0ms service=bus type=lsp.client.diagnostics publishing INFO 2026-01-28T16:01:12 +99ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +94ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:12 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +12ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +22ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:13 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:14 +449ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:18 +4572ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:18 +5ms service=permission permission=edit pattern=app/input/dedup.py ruleset=[{"permission":"*","pattern":"*","action":"allow"},{"permission":"doom_loop","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","pattern":"*","action":"deny"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","pattern":"*","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:18 +0ms service=permission permission=edit pattern=app/input/dedup.py action={"permission":"*","pattern":"*","action":"allow"} evaluated INFO 2026-01-28T16:01:18 +0ms service=bus type=file.edited publishing INFO 2026-01-28T16:01:18 +0ms service=format file=/app/input/dedup.py formatting INFO 2026-01-28T16:01:18 +0ms service=format name=zig ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=uv format ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=uv format ext=.py enabled INFO 2026-01-28T16:01:18 +0ms service=format name=terraform ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=standardrb ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=shfmt ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=rustfmt ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=ruff ext=.py checking INFO 2026-01-28T16:01:18 +1ms service=format name=rubocop ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=air ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=prettier ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=oxfmt ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=ocamlformat ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=nixfmt ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=mix ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=latexindent ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=ktlint ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=htmlbeautifier ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=gofmt ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=gleam ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=dart ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=clang-format ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=cargofmt ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format name=biome ext=.py checking INFO 2026-01-28T16:01:18 +0ms service=format command=["uv","format","--","$FILE"] running INFO 2026-01-28T16:01:18 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:18 +2ms service=file.time sessionID=ses_3faad1153ffeItbZ6q20hgk0UR file=/app/input/dedup.py read INFO 2026-01-28T16:01:18 +1ms service=lsp file=/app/input/dedup.py touching file INFO 2026-01-28T16:01:18 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:18 +1ms service=lsp.client serverID=pyright path=/app/input/dedup.py waiting for diagnostics INFO 2026-01-28T16:01:18 +0ms service=bus type=lsp.client.diagnostics subscribing INFO 2026-01-28T16:01:18 +1ms service=lsp.client serverID=pyright path=/app/input/dedup.py workspace/didChangeWatchedFiles INFO 2026-01-28T16:01:18 +1ms service=lsp.client serverID=pyright path=/app/input/dedup.py version=3 textDocument/didChange INFO 2026-01-28T16:01:19 +658ms service=lsp.client serverID=pyright path=/app/input/dedup.py count=0 textDocument/publishDiagnostics INFO 2026-01-28T16:01:19 +0ms service=bus type=lsp.client.diagnostics publishing INFO 2026-01-28T16:01:19 +150ms service=lsp.client serverID=pyright path=/app/input/dedup.py got diagnostics INFO 2026-01-28T16:01:19 +0ms service=bus type=lsp.client.diagnostics unsubscribing INFO 2026-01-28T16:01:19 +0ms service=bus type=lsp.client.diagnostics unsubscribing INFO 2026-01-28T16:01:19 +10ms service=bus type=message.part.updated publishing |  Edit app/input/dedup.py INFO 2026-01-28T16:01:19 +4ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:19 +1ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:19 +10ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:19 +1ms service=bus type=session.status publishing INFO 2026-01-28T16:01:19 +0ms service=session.prompt step=7 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T16:01:19 +46ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:19 +6ms service=bus type=session.updated publishing INFO 2026-01-28T16:01:19 +0ms service=bus type=session.diff publishing INFO 2026-01-28T16:01:19 +15ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:19 +0ms service=session.prompt status=started resolveTools INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started invalid INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started question INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started bash INFO 2026-01-28T16:01:19 +0ms service=bash-tool shell=/usr/bin/bash bash tool using shell INFO 2026-01-28T16:01:19 +1ms service=tool.registry status=started read INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started glob INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started grep INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started edit INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started write INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started task INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started webfetch INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started todowrite INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started todoread INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=started skill INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=1 invalid INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=1 question INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=0 read INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=0 glob INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=0 grep INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=0 edit INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=0 write INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=0 webfetch INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=0 todowrite INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=0 todoread INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=1 bash INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=0 skill INFO 2026-01-28T16:01:19 +0ms service=permission permission=task pattern=general ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:19 +1ms service=permission permission=task pattern=explore ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:19 +0ms service=tool.registry status=completed duration=1 task INFO 2026-01-28T16:01:19 +4ms service=session.prompt status=completed duration=6 resolveTools INFO 2026-01-28T16:01:19 +20ms service=session.processor process INFO 2026-01-28T16:01:19 +0ms service=llm providerID=openrouter modelID=openai/gpt-oss-20b sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=false agent=build stream INFO 2026-01-28T16:01:19 +14ms service=bus type=session.status publishing INFO 2026-01-28T16:01:20 +794ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:20 +135ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:20 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:20 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:20 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:20 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:20 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:20 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:20 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:21 +628ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:22 +1127ms service=permission permission=bash pattern=python3 /app/input/dedup.py ruleset=[{"permission":"*","pattern":"*","action":"allow"},{"permission":"doom_loop","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","pattern":"*","action":"deny"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","pattern":"*","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:22 +0ms service=permission permission=bash pattern=python3 /app/input/dedup.py action={"permission":"*","pattern":"*","action":"allow"} evaluated INFO 2026-01-28T16:01:22 +11ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:22 +66ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:22 +173ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:22 +16ms service=bus type=message.part.updated publishing |  Bash Run dedup script Processed 50 contacts. 8 duplicates found. Unique count: 42 INFO 2026-01-28T16:01:22 +3ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:22 +1ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:22 +17ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:22 +0ms service=bus type=session.status publishing INFO 2026-01-28T16:01:22 +0ms service=session.prompt step=8 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T16:01:23 +48ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:23 +2ms service=bus type=session.updated publishing INFO 2026-01-28T16:01:23 +2ms service=bus type=session.diff publishing INFO 2026-01-28T16:01:23 +11ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:23 +1ms service=session.prompt status=started resolveTools INFO 2026-01-28T16:01:23 +1ms service=tool.registry status=started invalid INFO 2026-01-28T16:01:23 +1ms service=tool.registry status=started question INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=started bash INFO 2026-01-28T16:01:23 +0ms service=bash-tool shell=/usr/bin/bash bash tool using shell INFO 2026-01-28T16:01:23 +4ms service=tool.registry status=started read INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=started glob INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=started grep INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=started edit INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=started write INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=started task INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=started webfetch INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=started todowrite INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=started todoread INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=started skill INFO 2026-01-28T16:01:23 +1ms service=tool.registry status=completed duration=6 invalid INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=5 question INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=1 read INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=1 glob INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=1 grep INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=1 edit INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=1 write INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=1 webfetch INFO 2026-01-28T16:01:23 +1ms service=tool.registry status=completed duration=2 todowrite INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=2 todoread INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=6 bash INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=2 skill INFO 2026-01-28T16:01:23 +1ms service=permission permission=task pattern=general ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:23 +0ms service=permission permission=task pattern=explore ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:23 +0ms service=tool.registry status=completed duration=3 task INFO 2026-01-28T16:01:23 +6ms service=session.prompt status=completed duration=15 resolveTools INFO 2026-01-28T16:01:23 +19ms service=session.processor process INFO 2026-01-28T16:01:23 +1ms service=llm providerID=openrouter modelID=openai/gpt-oss-20b sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=false agent=build stream INFO 2026-01-28T16:01:23 +19ms service=bus type=session.status publishing INFO 2026-01-28T16:01:23 +354ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:23 +124ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:23 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:23 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:23 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:23 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:23 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:23 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:23 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:23 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +57ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +63ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:24 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:25 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:26 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +19ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +83ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +60ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:27 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +72ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +58ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +62ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:28 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +108ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +16ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:29 +586ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:30 +816ms service=permission permission=read pattern=/app/input/deduped.json ruleset=[{"permission":"*","pattern":"*","action":"allow"},{"permission":"doom_loop","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","pattern":"*","action":"deny"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","pattern":"*","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:30 +0ms service=permission permission=read pattern=/app/input/deduped.json action={"permission":"read","pattern":"*","action":"allow"} evaluated INFO 2026-01-28T16:01:30 +4ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:30 +4ms service=lsp file=/app/input/deduped.json touching file INFO 2026-01-28T16:01:30 +1ms service=file.time sessionID=ses_3faad1153ffeItbZ6q20hgk0UR file=/app/input/deduped.json read INFO 2026-01-28T16:01:30 +11ms service=bus type=message.part.updated publishing |  Read app/input/deduped.json INFO 2026-01-28T16:01:30 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:30 +5ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:30 +1ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:30 +5ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:30 +1ms service=bus type=session.status publishing INFO 2026-01-28T16:01:30 +0ms service=session.prompt step=9 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T16:01:30 +58ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:30 +24ms service=bus type=session.updated publishing INFO 2026-01-28T16:01:30 +2ms service=bus type=session.diff publishing INFO 2026-01-28T16:01:30 +23ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:30 +1ms service=session.prompt status=started resolveTools INFO 2026-01-28T16:01:30 +2ms service=tool.registry status=started invalid INFO 2026-01-28T16:01:30 +1ms service=tool.registry status=started question INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=started bash INFO 2026-01-28T16:01:30 +0ms service=bash-tool shell=/usr/bin/bash bash tool using shell INFO 2026-01-28T16:01:30 +3ms service=tool.registry status=started read INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=started glob INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=started grep INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=started edit INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=started write INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=started task INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=started webfetch INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=started todowrite INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=started todoread INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=started skill INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=4 invalid INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=3 question INFO 2026-01-28T16:01:30 +1ms service=tool.registry status=completed duration=1 read INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=1 glob INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=1 grep INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=1 edit INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=1 write INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=1 webfetch INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=1 todowrite INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=1 todoread INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=4 bash INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=1 skill INFO 2026-01-28T16:01:30 +0ms service=permission permission=task pattern=general ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:30 +0ms service=permission permission=task pattern=explore ruleset=[{"permission":"*","action":"allow","pattern":"*"},{"permission":"doom_loop","action":"ask","pattern":"*"},{"permission":"external_directory","pattern":"*","action":"ask"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"},{"permission":"question","action":"deny","pattern":"*"},{"permission":"read","pattern":"*","action":"allow"},{"permission":"read","pattern":"*.env","action":"ask"},{"permission":"read","pattern":"*.env.*","action":"ask"},{"permission":"read","pattern":"*.env.example","action":"allow"},{"permission":"question","action":"allow","pattern":"*"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output","action":"allow"},{"permission":"external_directory","pattern":"/home/cubbi/.local/share/opencode/tool-output/*","action":"allow"}] evaluate INFO 2026-01-28T16:01:30 +0ms service=tool.registry status=completed duration=1 task INFO 2026-01-28T16:01:31 +3ms service=session.prompt status=completed duration=10 resolveTools INFO 2026-01-28T16:01:31 +18ms service=session.processor process INFO 2026-01-28T16:01:31 +0ms service=llm providerID=openrouter modelID=openai/gpt-oss-20b sessionID=ses_3faad1153ffeItbZ6q20hgk0UR small=false agent=build stream INFO 2026-01-28T16:01:31 +18ms service=bus type=session.status publishing INFO 2026-01-28T16:01:31 +815ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:31 +106ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:31 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:32 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +148ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +143ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +5ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +15ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +50ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +22ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:33 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +305ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +4ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +6ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +8ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:34 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +76ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +54ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +16ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:35 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:36 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:37 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +158ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +4ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:38 +17ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +68ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +6ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:39 +65ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +9ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:40 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +52ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +19ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:41 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +46ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:42 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:43 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:44 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +47ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:45 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +64ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +17ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:46 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +20ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +25ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:47 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:48 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +96ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +147ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +5ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +1ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +4ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +0ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +12ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +51ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +21ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:49 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +23ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:50 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +27ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +53ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:51 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +7ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:52 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +55ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +238ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:53 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +32ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +43ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +61ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +12ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:54 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +41ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +28ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +42ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +31ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +56ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +48ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +21ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +40ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +30ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +26ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +34ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +45ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +18ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +36ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:55 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +35ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +39ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +33ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +38ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +44ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +29ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +49ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +24ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +37ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +67ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +2ms service=bus type=message.part.updated publishing The CSV has been successfully processed and deduplication performed. `deduped.json` contains the report in the requested format with: - original count, unique count, and number of duplicate entries founded - full duplicate groups with primary contact, duplicates, and match reasons You can find the JSON file at `/app/input/deduped.json`. INFO 2026-01-28T16:01:56 +2ms service=bus type=message.part.updated publishing INFO 2026-01-28T16:01:56 +0ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:56 +3ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:56 +0ms service=bus type=session.status publishing INFO 2026-01-28T16:01:56 +1ms service=session.prompt step=10 sessionID=ses_3faad1153ffeItbZ6q20hgk0UR loop INFO 2026-01-28T16:01:56 +46ms service=bus type=message.updated publishing INFO 2026-01-28T16:01:56 +3ms service=bus type=session.updated publishing INFO 2026-01-28T16:01:56 +1ms service=bus type=session.diff publishing INFO 2026-01-28T16:01:56 +0ms service=session.prompt sessionID=ses_3faad1153ffeItbZ6q20hgk0UR exiting loop INFO 2026-01-28T16:01:56 +1ms service=session.compaction pruning INFO 2026-01-28T16:01:56 +8ms service=session.prompt sessionID=ses_3faad1153ffeItbZ6q20hgk0UR cancel INFO 2026-01-28T16:01:56 +1ms service=bus type=session.status publishing INFO 2026-01-28T16:01:56 +0ms service=bus type=session.idle publishing INFO 2026-01-28T16:01:56 +1ms service=default directory=/app/input disposing instance INFO 2026-01-28T16:01:56 +0ms service=state key=/app/input waiting for state disposal to complete INFO 2026-01-28T16:01:56 +1ms service=lsp.client serverID=pyright shutting down INFO 2026-01-28T16:01:56 +3ms service=lsp.client serverID=pyright shutdown INFO 2026-01-28T16:01:56 +2ms service=state key=/app/input state disposal completed --- Initial command finished (exit code: 0) --- --- no_shell=true, exiting container without starting shell --- Command execution complete. Container has exited. Session has been cleaned up.