pumuki-ast-hooks 5.3.13 → 5.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +73 -22
- package/bin/install.js +0 -0
- package/docs/RELEASE_NOTES.md +36 -0
- package/package.json +4 -2
- package/scripts/hooks-system/.AI_TOKEN_STATUS.txt +1 -1
- package/scripts/hooks-system/.audit-reports/notifications.log +204 -0
- package/scripts/hooks-system/.audit-reports/token-monitor.log +612 -0
- package/scripts/hooks-system/application/services/installation/McpConfigurator.js +62 -66
- package/scripts/hooks-system/bin/pumuki-mcp.js +52 -12
- package/scripts/hooks-system/config/project.config.json +2 -21
package/README.md
CHANGED
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
|
|
31
31
|
### Visual Overview
|
|
32
32
|
|
|
33
|
-
<img src="
|
|
33
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ast_intelligence_01.png" alt="AST Intelligence System Overview" width="100%" />
|
|
34
34
|
|
|
35
|
-
<img src="
|
|
35
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ast_intelligence_02.png" alt="AST Intelligence Workflow" width="100%" />
|
|
36
36
|
|
|
37
|
-
<img src="
|
|
37
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ast_intelligence_03.png" alt="AST Intelligence Audit - Part 1" width="100%" />
|
|
38
38
|
|
|
39
|
-
<img src="
|
|
39
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ast_intelligence_04.png" alt="AST Intelligence Audit - Part 2" width="100%" />
|
|
40
40
|
|
|
41
|
-
<img src="
|
|
41
|
+
<img src="https://raw.githubusercontent.com/SwiftEnProfundidad/ast-intelligence-hooks/main/docs/images/ast_intelligence_05.png" alt="AST Intelligence Audit - Part 3" width="100%" />
|
|
42
42
|
|
|
43
43
|
---
|
|
44
44
|
|
|
@@ -332,17 +332,57 @@ This library was conceived to solve this fundamental problem by creating a **per
|
|
|
332
332
|
|
|
333
333
|
---
|
|
334
334
|
|
|
335
|
-
##
|
|
335
|
+
## Complete Architecture and Workflow
|
|
336
336
|
|
|
337
|
-
|
|
337
|
+
The library operates through a multi-phase process that integrates with Git and development workflows to ensure code quality and context persistence. Below is a high-level overview of the architecture and key components:
|
|
338
338
|
|
|
339
|
-
|
|
340
|
-
- ✅ **What rules apply**: All 798+ platform-specific rules loaded automatically
|
|
341
|
-
- ✅ **What patterns exist**: Architecture patterns detected and documented
|
|
342
|
-
- ✅ **What violations need fixing**: Real-time violation tracking with severity
|
|
343
|
-
- ✅ **How the architecture should be structured**: Clean Architecture, DDD, Feature-First validation
|
|
339
|
+
### Architectural Diagram
|
|
344
340
|
|
|
345
|
-
|
|
341
|
+
```mermaid
|
|
342
|
+
graph LR
|
|
343
|
+
A[Developer] -->|Runs `ai-start`| B(AI Evidence Initialization)
|
|
344
|
+
B --> C[.AI_EVIDENCE.json]
|
|
345
|
+
C --> D[Pre-Tool-Use Validator]
|
|
346
|
+
D --> E[AI Gate Check]
|
|
347
|
+
E --> F[Allow/Block Actions]
|
|
348
|
+
F --> G[Code Editing]
|
|
349
|
+
G --> H[Pre-Commit Analysis]
|
|
350
|
+
H --> I[Block Commit if Violations]
|
|
351
|
+
I --> J[Update Evidence]
|
|
352
|
+
J --> K[Commit]
|
|
353
|
+
```
|
|
354
|
+
|
|
355
|
+
### Key Components
|
|
356
|
+
1. **AI Evidence Initialization (`ai-start`)**
|
|
357
|
+
- Generates `.AI_EVIDENCE.json` with project context and rules.
|
|
358
|
+
- Answers three critical questions about the task.
|
|
359
|
+
- Example:
|
|
360
|
+
```bash
|
|
361
|
+
ai-start feature/user-authentication
|
|
362
|
+
```
|
|
363
|
+
|
|
364
|
+
2. **Pre-Tool-Use Validator**
|
|
365
|
+
- Validates `.AI_EVIDENCE.json` before every AI edit operation.
|
|
366
|
+
- Ensures context is fresh and rules are loaded.
|
|
367
|
+
|
|
368
|
+
3. **AI Gate Check**
|
|
369
|
+
- Checks for blocking violations before allowing actions.
|
|
370
|
+
- Enforces quality gates.
|
|
371
|
+
|
|
372
|
+
4. **Pre-Commit Analysis**
|
|
373
|
+
- Runs AST analysis on staged files.
|
|
374
|
+
- Blocks commits with critical violations.
|
|
375
|
+
|
|
376
|
+
5. **Evidence Update**
|
|
377
|
+
- Updates `.AI_EVIDENCE.json` before commits to maintain context.
|
|
378
|
+
|
|
379
|
+
### Example Workflow
|
|
380
|
+
1. Developer runs `ai-start` to initialize context.
|
|
381
|
+
2. AI uses context to perform edits.
|
|
382
|
+
3. Pre-commit hook analyzes code and blocks if violations exist.
|
|
383
|
+
4. Developer fixes violations and commits.
|
|
384
|
+
|
|
385
|
+
For a detailed architecture, see [ARCHITECTURE.md](ARCHITECTURE.md).
|
|
346
386
|
|
|
347
387
|
---
|
|
348
388
|
|
|
@@ -358,7 +398,7 @@ With this library, your AI assistant **always knows**:
|
|
|
358
398
|
- [Phase 4: Evidence Update Before Commits](#phase-4-evidence-update-before-commits)
|
|
359
399
|
- [Tools & Technologies](#️-tools--technologies)
|
|
360
400
|
- [What, How, and When: The Developer's Perspective](#-what-how-and-when-the-developers-perspective)
|
|
361
|
-
- [
|
|
401
|
+
- [Complete Architecture and Workflow](#complete-architecture-and-workflow)
|
|
362
402
|
- [What is it?](#what-is-it)
|
|
363
403
|
- [What problems does it solve?](#what-problems-does-it-solve)
|
|
364
404
|
- [Features](#features)
|
|
@@ -394,7 +434,7 @@ With this library, your AI assistant **always knows**:
|
|
|
394
434
|
#### 🔍 Code Validation
|
|
395
435
|
- ✅ **798+ validation rules** across all platforms with severity-based quality gates
|
|
396
436
|
- ✅ **Multi-platform support**: iOS (Swift/SwiftUI), Android (Kotlin/Jetpack Compose), Backend (TypeScript/NestJS), Frontend (React/Next.js)
|
|
397
|
-
- ✅ **Automatic architecture detection**:
|
|
437
|
+
- ✅ **Automatic architecture detection**: Identifies multiple patterns per platform (iOS: MVVM, MVVM-C, MVP, VIPER, TCA, Clean Swift, Feature-First + Clean + DDD; Backend: Clean Architecture, DDD, CQRS; Frontend: Feature-First, Component-Based, Atomic Design; Android: MVVM, MVI, MVP, Clean Architecture)
|
|
398
438
|
- ✅ **BDD→TDD workflow enforcement**: CRITICAL priority - ensures feature files exist before implementation and tests before code
|
|
399
439
|
- ✅ **Pre-commit Git hooks**: Automatic validation blocks commits with CRITICAL/HIGH violations
|
|
400
440
|
- ✅ **AST analysis engine**: Deep static code analysis using Abstract Syntax Trees
|
|
@@ -919,11 +959,6 @@ export HOOK_GUARD_AUTO_REFRESH=true
|
|
|
919
959
|
export AUTO_COMMIT_ENABLED=true
|
|
920
960
|
export AUTO_PUSH_ENABLED=true
|
|
921
961
|
export AUTO_PR_ENABLED=false
|
|
922
|
-
|
|
923
|
-
# Analysis mode
|
|
924
|
-
export AUDIT_STRICT=false
|
|
925
|
-
export AUDIT_STAGED_ONLY=false
|
|
926
|
-
export AUDIT_CRITICAL_HIGH_ONLY=false
|
|
927
962
|
```
|
|
928
963
|
|
|
929
964
|
### Configuration Files
|
|
@@ -1023,7 +1058,7 @@ Start by fixing CRITICAL and HIGH. MEDIUM and LOW are warnings and don't block c
|
|
|
1023
1058
|
```bash
|
|
1024
1059
|
# Automatically via MCP
|
|
1025
1060
|
# Or manually
|
|
1026
|
-
|
|
1061
|
+
bash scripts/hooks-system/infrastructure/shell/orchestrators/audit-orchestrator.sh
|
|
1027
1062
|
```
|
|
1028
1063
|
|
|
1029
1064
|
For more questions, check the issues on GitHub.
|
|
@@ -1121,4 +1156,20 @@ Developed by **Pumuki Team®**
|
|
|
1121
1156
|
|
|
1122
1157
|
---
|
|
1123
1158
|
|
|
1124
|
-
**⭐ If this project is useful to you, please consider giving it a star on GitHub.**
|
|
1159
|
+
**⭐ If this project is useful to you, please consider giving it a star on GitHub.**
|
|
1160
|
+
|
|
1161
|
+
### Run the Audit
|
|
1162
|
+
|
|
1163
|
+
To start the interactive audit menu, run:
|
|
1164
|
+
|
|
1165
|
+
```bash
|
|
1166
|
+
bash scripts/hooks-system/infrastructure/shell/orchestrators/audit-orchestrator.sh
|
|
1167
|
+
```
|
|
1168
|
+
|
|
1169
|
+
This will present a menu with options for different audit modes.
|
|
1170
|
+
|
|
1171
|
+
For non-interactive use, specify the mode directly:
|
|
1172
|
+
|
|
1173
|
+
```bash
|
|
1174
|
+
bash scripts/hooks-system/infrastructure/shell/orchestrators/audit-orchestrator.sh analyze # Full repository analysis
|
|
1175
|
+
bash scripts/hooks-system/infrastructure/shell/orchestrators/audit-orchestrator.sh staged # Analyze only staged files (pre-commit mode)
|
package/bin/install.js
CHANGED
|
File without changes
|
package/docs/RELEASE_NOTES.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
# Release Notes - v5.3.15
|
|
2
|
+
|
|
3
|
+
**Release Date**: December 30, 2025
|
|
4
|
+
**Type**: Patch Release
|
|
5
|
+
**Compatibility**: Fully backward compatible with 5.3.x
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 🎯 Overview
|
|
10
|
+
|
|
11
|
+
Esta versión corrige la configuración MCP en Windsurf para evitar colisiones entre proyectos abiertos en paralelo. Ahora se usa una única entrada global con ruta absoluta al binario local del repo y se elimina el hardcode legacy en el configurador CLI.
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## 🐛 Bug Fixes
|
|
16
|
+
|
|
17
|
+
### Fixed: Colisión de MCP al abrir varios repos en Windsurf
|
|
18
|
+
- **Issue**: Se generaban MCP por workspace y un ID legacy fijo, causando duplicados/cancelaciones del `ai_gate_check`.
|
|
19
|
+
- **Resolution**: Configuración solo en `~/.codeium/windsurf/mcp_config.json` con ID fijo `ast-intelligence-automation` apuntando al binario local; se elimina el hardcode legacy en `pumuki-mcp.js`.
|
|
20
|
+
- **Impact**: El MCP ya no colisiona al trabajar con varios repos simultáneamente.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 📚 Documentation
|
|
25
|
+
- Nueva guía: `docs/MCP_CONFIGURATION.md` explicando configuración global y validación del `ai_gate_check` en Windsurf.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## 📦 Installation / Upgrade
|
|
30
|
+
```bash
|
|
31
|
+
npm install --save-dev pumuki-ast-hooks@5.3.15
|
|
32
|
+
npm run install-hooks
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
1
37
|
# Release Notes - v5.3.9
|
|
2
38
|
|
|
3
39
|
**Release Date**: December 29, 2025
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pumuki-ast-hooks",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.15",
|
|
4
4
|
"description": "Enterprise-grade AST Intelligence System with multi-platform support (iOS, Android, Backend, Frontend) and Feature-First + DDD + Clean Architecture enforcement. Includes dynamic violations API for intelligent querying.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -39,7 +39,9 @@
|
|
|
39
39
|
"lint": "npm run lint:hooks",
|
|
40
40
|
"lint:hooks": "eslint \"scripts/hooks-system/application/**/*.js\" \"bin/**/*.js\"",
|
|
41
41
|
"build:ts": "tsc --noEmit",
|
|
42
|
-
"typecheck": "tsc --noEmit"
|
|
42
|
+
"typecheck": "tsc --noEmit",
|
|
43
|
+
"ast:refresh": "node scripts/hooks-system/bin/update-evidence.sh",
|
|
44
|
+
"ast:audit": "node scripts/hooks-system/infrastructure/ast/ast-intelligence.js"
|
|
43
45
|
},
|
|
44
46
|
"keywords": [
|
|
45
47
|
"ast",
|
|
@@ -594,3 +594,207 @@
|
|
|
594
594
|
{"timestamp":"2025-12-29T19:33:51.632Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"95e721b6-13ba-443d-8cb6-7485750440d1","type":"token_ok"},"context":{}}
|
|
595
595
|
{"timestamp":"2025-12-29T19:36:51.751Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7203938f-3440-48d7-b780-1a198fe19681","type":"token_ok"},"context":{}}
|
|
596
596
|
{"timestamp":"2025-12-29T19:39:51.870Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"5b96e4e6-155a-4f67-82e5-75dd5ac6849e","type":"token_ok"},"context":{}}
|
|
597
|
+
{"timestamp":"2025-12-29T19:42:51.978Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"909428e7-94e1-4c32-abde-46fdb06dad3c","type":"token_ok"},"context":{}}
|
|
598
|
+
{"timestamp":"2025-12-29T19:45:52.098Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ac06950e-a384-48da-97b2-e7b96fbb88a9","type":"token_ok"},"context":{}}
|
|
599
|
+
{"timestamp":"2025-12-29T19:48:52.213Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ac476099-68c6-41b9-b841-156bf5985429","type":"token_ok"},"context":{}}
|
|
600
|
+
{"timestamp":"2025-12-29T19:51:52.331Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"93b1c38f-6e59-48ce-9e09-77831df45310","type":"token_ok"},"context":{}}
|
|
601
|
+
{"timestamp":"2025-12-29T19:54:52.449Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8cccb651-3b42-4d41-b5f7-45515bde3dc1","type":"token_ok"},"context":{}}
|
|
602
|
+
{"timestamp":"2025-12-29T19:57:52.571Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"cf73e78c-0c66-4336-83b0-c21e1ff8a1da","type":"token_ok"},"context":{}}
|
|
603
|
+
{"timestamp":"2025-12-29T20:00:52.678Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"bd74a461-2b77-408b-be61-96af9f30005d","type":"token_ok"},"context":{}}
|
|
604
|
+
{"timestamp":"2025-12-29T20:03:52.793Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"90fb6e65-d427-468f-a612-200b5adefc92","type":"token_ok"},"context":{}}
|
|
605
|
+
{"timestamp":"2025-12-29T20:06:52.909Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8294e094-8734-413d-ba84-748993251c52","type":"token_ok"},"context":{}}
|
|
606
|
+
{"timestamp":"2025-12-29T20:09:53.011Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"44f41f1a-9d01-4426-a139-de9e40b23516","type":"token_ok"},"context":{}}
|
|
607
|
+
{"timestamp":"2025-12-29T20:12:53.129Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"6a00b793-be8f-41e8-ad13-67a2d45ec8c9","type":"token_ok"},"context":{}}
|
|
608
|
+
{"timestamp":"2025-12-29T20:15:53.250Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"838fe04a-d3ba-4245-854a-d2c76ad24066","type":"token_ok"},"context":{}}
|
|
609
|
+
{"timestamp":"2025-12-29T20:18:53.397Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"89e914fe-b914-434b-8f39-005b7e7c4e4c","type":"token_ok"},"context":{}}
|
|
610
|
+
{"timestamp":"2025-12-29T20:21:53.527Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"75f2efa9-aafd-4be5-a843-70c498ffde7a","type":"token_ok"},"context":{}}
|
|
611
|
+
{"timestamp":"2025-12-29T20:24:53.650Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"f0fe50f1-b2fa-4c1b-99f6-ddd9dbc84149","type":"token_ok"},"context":{}}
|
|
612
|
+
{"timestamp":"2025-12-29T20:27:53.769Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"b671667e-b808-4241-81a4-85051726f18e","type":"token_ok"},"context":{}}
|
|
613
|
+
{"timestamp":"2025-12-29T20:30:53.889Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7734f56b-f074-4bef-8071-32f174061c94","type":"token_ok"},"context":{}}
|
|
614
|
+
{"timestamp":"2025-12-29T20:33:54.008Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"471e2095-a4b7-4092-8292-72ac32d904a8","type":"token_ok"},"context":{}}
|
|
615
|
+
{"timestamp":"2025-12-29T20:36:54.125Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"0b06ab05-e254-4fa1-be9f-aa812fb18ad9","type":"token_ok"},"context":{}}
|
|
616
|
+
{"timestamp":"2025-12-29T20:39:54.238Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"fc8e185a-34cf-4d09-b9cd-9b2a3e99e864","type":"token_ok"},"context":{}}
|
|
617
|
+
{"timestamp":"2025-12-29T20:42:54.353Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"6b8042bd-0a15-47fe-b32b-bdd5583f583c","type":"token_ok"},"context":{}}
|
|
618
|
+
{"timestamp":"2025-12-29T20:45:54.471Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8fc1e753-0fb8-4254-989d-e1883445540e","type":"token_ok"},"context":{}}
|
|
619
|
+
{"timestamp":"2025-12-29T20:48:54.588Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"eac17460-d542-47a4-8762-80f71066a70e","type":"token_ok"},"context":{}}
|
|
620
|
+
{"timestamp":"2025-12-29T20:51:54.707Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7c7019e6-6ba4-4d7d-9b8f-3639778600b1","type":"token_ok"},"context":{}}
|
|
621
|
+
{"timestamp":"2025-12-29T20:54:54.803Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"5d275c0a-5606-4f66-a949-fb0cfa1b37f2","type":"token_ok"},"context":{}}
|
|
622
|
+
{"timestamp":"2025-12-29T20:57:54.907Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"c0181a3a-b3ad-4b57-86c2-ec92ec1b7a36","type":"token_ok"},"context":{}}
|
|
623
|
+
{"timestamp":"2025-12-29T21:00:55.025Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"41549720-044d-4edf-927b-1ef301733c76","type":"token_ok"},"context":{}}
|
|
624
|
+
{"timestamp":"2025-12-29T21:03:55.133Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"a88a1915-1b47-44df-9274-669cf165f6d5","type":"token_ok"},"context":{}}
|
|
625
|
+
{"timestamp":"2025-12-29T21:06:55.250Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"d7fe424d-eb9f-4175-bd94-6e584153d357","type":"token_ok"},"context":{}}
|
|
626
|
+
{"timestamp":"2025-12-29T21:09:55.348Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ed2822c8-5d5d-4eb6-8db5-5e6fdaea7712","type":"token_ok"},"context":{}}
|
|
627
|
+
{"timestamp":"2025-12-29T21:12:55.454Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"32f83b5b-1fab-4ffe-a2f9-d568237ae9ed","type":"token_ok"},"context":{}}
|
|
628
|
+
{"timestamp":"2025-12-29T21:15:55.560Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"4061a9c4-e80d-4ec5-b21c-d65df69c4a36","type":"token_ok"},"context":{}}
|
|
629
|
+
{"timestamp":"2025-12-29T21:18:55.651Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ff5bd256-02f3-4925-a883-0fd3ef90c159","type":"token_ok"},"context":{}}
|
|
630
|
+
{"timestamp":"2025-12-29T21:21:55.743Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"2b5b4a9f-e708-48e8-854b-bd2cc1896221","type":"token_ok"},"context":{}}
|
|
631
|
+
{"timestamp":"2025-12-29T21:24:55.844Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"2ffd3c39-6008-40bf-9ae7-a3da7c443942","type":"token_ok"},"context":{}}
|
|
632
|
+
{"timestamp":"2025-12-29T21:27:55.946Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"70a68010-079a-4cf8-94ab-9e67a6f03785","type":"token_ok"},"context":{}}
|
|
633
|
+
{"timestamp":"2025-12-29T21:30:56.052Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"9dcf6043-43f6-4b39-be55-2ed3f003ee2c","type":"token_ok"},"context":{}}
|
|
634
|
+
{"timestamp":"2025-12-29T21:33:56.164Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"9678337b-638f-4edf-b733-096a8c362e2f","type":"token_ok"},"context":{}}
|
|
635
|
+
{"timestamp":"2025-12-29T21:36:56.279Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"cc9aa5d0-2bcc-44cc-a16f-d1bfdcecb8d0","type":"token_ok"},"context":{}}
|
|
636
|
+
{"timestamp":"2025-12-29T21:39:56.396Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"3fd953f2-9ca6-44cf-8e93-f5c3bf877d90","type":"token_ok"},"context":{}}
|
|
637
|
+
{"timestamp":"2025-12-29T21:42:56.511Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"5992d787-60ee-407f-b251-0b46153a55cd","type":"token_ok"},"context":{}}
|
|
638
|
+
{"timestamp":"2025-12-29T21:45:56.624Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"85a75572-33db-4261-9f88-32fb081bcf0f","type":"token_ok"},"context":{}}
|
|
639
|
+
{"timestamp":"2025-12-29T21:48:56.740Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"6e79d43c-5852-40f2-ad92-e2410e521a03","type":"token_ok"},"context":{}}
|
|
640
|
+
{"timestamp":"2025-12-29T21:51:56.853Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"2d2d6467-7074-496f-8a71-565c373d86cc","type":"token_ok"},"context":{}}
|
|
641
|
+
{"timestamp":"2025-12-29T21:54:56.962Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"84f6c6a5-bbcc-44c1-b00c-dc6155ee0b8a","type":"token_ok"},"context":{}}
|
|
642
|
+
{"timestamp":"2025-12-29T21:57:57.078Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"9da43959-f738-4154-a9f3-abd649ea83ea","type":"token_ok"},"context":{}}
|
|
643
|
+
{"timestamp":"2025-12-29T22:00:57.197Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"9e13eb17-de2c-4ba6-b843-30c0046149e5","type":"token_ok"},"context":{}}
|
|
644
|
+
{"timestamp":"2025-12-29T22:03:57.313Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"c6b800b8-7b35-4372-a4d5-4755411414ad","type":"token_ok"},"context":{}}
|
|
645
|
+
{"timestamp":"2025-12-29T22:06:57.429Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7f15d4ab-60c5-4c77-aa24-1ded07141253","type":"token_ok"},"context":{}}
|
|
646
|
+
{"timestamp":"2025-12-29T22:09:57.547Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"e6b0ba25-3d90-4aa6-aea4-453e642820c2","type":"token_ok"},"context":{}}
|
|
647
|
+
{"timestamp":"2025-12-29T22:12:57.663Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8a618c25-eeb3-4633-974a-b359ddb71a09","type":"token_ok"},"context":{}}
|
|
648
|
+
{"timestamp":"2025-12-29T22:15:57.781Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8803508a-d5b3-4f53-b3d5-664c959db324","type":"token_ok"},"context":{}}
|
|
649
|
+
{"timestamp":"2025-12-29T22:18:57.896Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8f3b0acf-09ac-4e07-8995-f3bdd7af1b2a","type":"token_ok"},"context":{}}
|
|
650
|
+
{"timestamp":"2025-12-29T22:21:58.015Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"90a0faa4-9225-4ba9-b4e4-56b895c64b5f","type":"token_ok"},"context":{}}
|
|
651
|
+
{"timestamp":"2025-12-29T22:24:58.134Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"07515bba-1343-4096-a14b-7ea20c8afb31","type":"token_ok"},"context":{}}
|
|
652
|
+
{"timestamp":"2025-12-29T22:27:58.253Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"3bb2dcc6-0b24-44d1-8a4c-cff7ae83e452","type":"token_ok"},"context":{}}
|
|
653
|
+
{"timestamp":"2025-12-29T22:30:58.368Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"31b20d35-8ca9-4e01-b3ce-84e4b7b86842","type":"token_ok"},"context":{}}
|
|
654
|
+
{"timestamp":"2025-12-29T22:33:58.483Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"3e7099e7-76b0-4c26-b3c0-7fee7a3f6abc","type":"token_ok"},"context":{}}
|
|
655
|
+
{"timestamp":"2025-12-29T22:36:58.597Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"a0ceb050-b332-4fee-81f6-5308eb424241","type":"token_ok"},"context":{}}
|
|
656
|
+
{"timestamp":"2025-12-29T22:39:58.714Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"095433c4-c57f-4879-b360-abbfc1e62635","type":"token_ok"},"context":{}}
|
|
657
|
+
{"timestamp":"2025-12-29T22:42:58.832Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"4e069e67-f5d1-4ed4-8a79-50e9ed487832","type":"token_ok"},"context":{}}
|
|
658
|
+
{"timestamp":"2025-12-29T22:45:58.952Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"b25ea960-4cd7-4c39-b78d-5c35584125e9","type":"token_ok"},"context":{}}
|
|
659
|
+
{"timestamp":"2025-12-29T22:48:59.067Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"de6778fe-a0ba-4635-a431-cd3cdfe85aff","type":"token_ok"},"context":{}}
|
|
660
|
+
{"timestamp":"2025-12-29T22:51:59.183Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"d61c7d9a-af60-4a44-a5a5-f58a21257d8f","type":"token_ok"},"context":{}}
|
|
661
|
+
{"timestamp":"2025-12-29T22:54:59.299Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"3f585e81-f6ea-47a5-8f71-cf193790eb69","type":"token_ok"},"context":{}}
|
|
662
|
+
{"timestamp":"2025-12-29T22:57:59.415Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"0fcc8284-d09f-409f-a114-e1199da0e4b7","type":"token_ok"},"context":{}}
|
|
663
|
+
{"timestamp":"2025-12-29T23:00:59.535Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ef4ec51e-4ec6-4f3f-b942-1a16a4c2f3eb","type":"token_ok"},"context":{}}
|
|
664
|
+
{"timestamp":"2025-12-29T23:03:59.652Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ee812294-0666-4654-a3dc-ac3633d562fd","type":"token_ok"},"context":{}}
|
|
665
|
+
{"timestamp":"2025-12-29T23:06:59.766Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"9d1aa66a-88b5-4144-955b-54d305bda220","type":"token_ok"},"context":{}}
|
|
666
|
+
{"timestamp":"2025-12-29T23:09:59.883Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"1141b03c-b3e8-46fa-adb9-6b78c26f10a9","type":"token_ok"},"context":{}}
|
|
667
|
+
{"timestamp":"2025-12-29T23:12:59.998Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"965334ef-f8ba-461c-b2aa-edf30827bd2b","type":"token_ok"},"context":{}}
|
|
668
|
+
{"timestamp":"2025-12-29T23:16:00.116Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"122f2728-4ded-43fb-b616-aa835715093b","type":"token_ok"},"context":{}}
|
|
669
|
+
{"timestamp":"2025-12-29T23:19:00.232Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"df8fe229-e04c-4eb0-a290-5c8d27d6fcee","type":"token_ok"},"context":{}}
|
|
670
|
+
{"timestamp":"2025-12-29T23:22:00.346Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"f3e466ff-4ecb-4517-a232-57735e9bbaa0","type":"token_ok"},"context":{}}
|
|
671
|
+
{"timestamp":"2025-12-29T23:25:00.464Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"97d7d2cb-6703-4000-b368-8c762550e895","type":"token_ok"},"context":{}}
|
|
672
|
+
{"timestamp":"2025-12-29T23:28:00.580Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"57dacd3f-c291-46f0-95f4-9dbe40b42e32","type":"token_ok"},"context":{}}
|
|
673
|
+
{"timestamp":"2025-12-29T23:31:00.696Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"b6e71769-c652-4162-a04d-d005e37f5048","type":"token_ok"},"context":{}}
|
|
674
|
+
{"timestamp":"2025-12-29T23:34:00.813Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"3638a91c-bdb2-40eb-890b-af718e00ca73","type":"token_ok"},"context":{}}
|
|
675
|
+
{"timestamp":"2025-12-29T23:37:00.927Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"e71ace2a-defe-41c3-b01c-01f2fab8d09d","type":"token_ok"},"context":{}}
|
|
676
|
+
{"timestamp":"2025-12-29T23:40:01.044Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"53392f9d-5462-4e2a-9718-02fe53f807ff","type":"token_ok"},"context":{}}
|
|
677
|
+
{"timestamp":"2025-12-29T23:43:01.161Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ffa11b43-b672-4c07-90f8-a518b9933fc2","type":"token_ok"},"context":{}}
|
|
678
|
+
{"timestamp":"2025-12-29T23:46:01.275Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"a134eb83-d2a2-4cae-9176-1abb066b7ee7","type":"token_ok"},"context":{}}
|
|
679
|
+
{"timestamp":"2025-12-29T23:49:01.393Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"fd929191-5f2b-454c-9965-5aba332ed1f7","type":"token_ok"},"context":{}}
|
|
680
|
+
{"timestamp":"2025-12-29T23:52:01.507Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"3c5f2a19-c5a4-4853-85c2-19c3f6f1dc71","type":"token_ok"},"context":{}}
|
|
681
|
+
{"timestamp":"2025-12-29T23:55:01.622Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"fe587eab-488c-41e8-b91f-95b6486edb73","type":"token_ok"},"context":{}}
|
|
682
|
+
{"timestamp":"2025-12-29T23:58:01.740Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"bb23e1a3-1259-4e35-a086-ed1ac3e29981","type":"token_ok"},"context":{}}
|
|
683
|
+
{"timestamp":"2025-12-30T00:01:01.856Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"d9b6aec9-c586-4d64-a614-76cf637c7b21","type":"token_ok"},"context":{}}
|
|
684
|
+
{"timestamp":"2025-12-30T00:04:01.975Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"750cb1af-ba4e-4be9-9fac-b956a8b7c77a","type":"token_ok"},"context":{}}
|
|
685
|
+
{"timestamp":"2025-12-30T00:07:02.094Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"1d0e5b16-45de-4cb3-989c-90411055fdd6","type":"token_ok"},"context":{}}
|
|
686
|
+
{"timestamp":"2025-12-30T00:10:02.211Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"c8811647-d3e1-42d7-8e37-bab7cc01ac42","type":"token_ok"},"context":{}}
|
|
687
|
+
{"timestamp":"2025-12-30T00:13:02.329Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"fe803d0c-666a-49a3-b9af-43a6ca66b109","type":"token_ok"},"context":{}}
|
|
688
|
+
{"timestamp":"2025-12-30T00:16:02.445Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"93c02c77-4632-4d5f-95ff-57e0549600bb","type":"token_ok"},"context":{}}
|
|
689
|
+
{"timestamp":"2025-12-30T00:19:02.560Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7c180b53-1fd6-4e8b-bbc3-c24c4e9de755","type":"token_ok"},"context":{}}
|
|
690
|
+
{"timestamp":"2025-12-30T00:22:02.679Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"2196746c-0711-47eb-b1e8-a8b3996cf520","type":"token_ok"},"context":{}}
|
|
691
|
+
{"timestamp":"2025-12-30T00:25:02.794Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"c7e14d5a-f3bd-4eb7-9286-80bef8515df4","type":"token_ok"},"context":{}}
|
|
692
|
+
{"timestamp":"2025-12-30T00:28:02.910Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"96ea4cd6-b649-4bd9-a14d-dae1caf09e0e","type":"token_ok"},"context":{}}
|
|
693
|
+
{"timestamp":"2025-12-30T00:31:03.025Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"9c44ec3c-12c7-4ade-aeae-472f17322948","type":"token_ok"},"context":{}}
|
|
694
|
+
{"timestamp":"2025-12-30T00:34:03.142Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"70cca1e3-b4f4-49b4-bf5c-32fcf10b9b29","type":"token_ok"},"context":{}}
|
|
695
|
+
{"timestamp":"2025-12-30T00:37:03.257Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ea9872b9-4acf-4931-ada4-3578be8808db","type":"token_ok"},"context":{}}
|
|
696
|
+
{"timestamp":"2025-12-30T00:40:03.371Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"0fbc1e79-1eb3-41a1-b66e-04d5a02428e4","type":"token_ok"},"context":{}}
|
|
697
|
+
{"timestamp":"2025-12-30T00:43:03.488Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7d37d820-4e46-49bb-bac0-c737461f1da0","type":"token_ok"},"context":{}}
|
|
698
|
+
{"timestamp":"2025-12-30T00:46:03.605Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"70a1afbb-1932-423e-b249-2fb6126335d1","type":"token_ok"},"context":{}}
|
|
699
|
+
{"timestamp":"2025-12-30T00:49:03.720Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"074da1a4-2f61-4240-9172-dd6f5e14a0d5","type":"token_ok"},"context":{}}
|
|
700
|
+
{"timestamp":"2025-12-30T00:52:03.836Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"12f7ff10-a60b-4ae7-a927-bd1c0f655d6f","type":"token_ok"},"context":{}}
|
|
701
|
+
{"timestamp":"2025-12-30T00:55:03.951Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"a87db4ca-e66f-49af-8ef5-1056e451903a","type":"token_ok"},"context":{}}
|
|
702
|
+
{"timestamp":"2025-12-30T00:58:04.067Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ba4aa2ee-d9ba-44e3-9f3b-61d0f1948299","type":"token_ok"},"context":{}}
|
|
703
|
+
{"timestamp":"2025-12-30T01:01:04.185Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"473e5215-7d6b-4814-8a64-1db2444acec0","type":"token_ok"},"context":{}}
|
|
704
|
+
{"timestamp":"2025-12-30T01:04:04.302Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"f49635b0-e910-4c14-90e7-5e7181a47517","type":"token_ok"},"context":{}}
|
|
705
|
+
{"timestamp":"2025-12-30T01:07:04.422Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"2564311c-4a3b-473b-b20f-f2adac3f34d0","type":"token_ok"},"context":{}}
|
|
706
|
+
{"timestamp":"2025-12-30T01:10:04.541Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"bb157bcb-307d-41ea-8ed5-941a17608a33","type":"token_ok"},"context":{}}
|
|
707
|
+
{"timestamp":"2025-12-30T01:13:04.658Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"28a31dd3-4f07-47b5-88ef-1406450dcb17","type":"token_ok"},"context":{}}
|
|
708
|
+
{"timestamp":"2025-12-30T01:16:04.773Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"c0ca4b60-41ba-40e2-b4e4-4e0c6838a86e","type":"token_ok"},"context":{}}
|
|
709
|
+
{"timestamp":"2025-12-30T01:19:04.871Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"dea324ae-4fb9-49ad-90fa-80fe990dd450","type":"token_ok"},"context":{}}
|
|
710
|
+
{"timestamp":"2025-12-30T01:22:04.992Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"14ed9aca-122b-4a6b-a475-b88d0b6c35b2","type":"token_ok"},"context":{}}
|
|
711
|
+
{"timestamp":"2025-12-30T01:25:05.109Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"87217ac3-7167-4861-b274-88d0a7f193d2","type":"token_ok"},"context":{}}
|
|
712
|
+
{"timestamp":"2025-12-30T01:28:05.225Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"c8927982-6924-4b5c-9df5-69dbd151fa9e","type":"token_ok"},"context":{}}
|
|
713
|
+
{"timestamp":"2025-12-30T01:31:05.341Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"455364e3-a6d2-46fe-abf7-9e39a9f88294","type":"token_ok"},"context":{}}
|
|
714
|
+
{"timestamp":"2025-12-30T01:34:05.456Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"33b9d8f3-d6ba-4af7-a9d0-904321c0dc82","type":"token_ok"},"context":{}}
|
|
715
|
+
{"timestamp":"2025-12-30T01:37:05.573Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"b70caa94-317e-47a1-8324-19bee74fa4fe","type":"token_ok"},"context":{}}
|
|
716
|
+
{"timestamp":"2025-12-30T01:40:05.687Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ae96f565-fe48-42bb-8429-949d8836d084","type":"token_ok"},"context":{}}
|
|
717
|
+
{"timestamp":"2025-12-30T01:43:05.806Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"71e277db-bb37-42d0-8f93-128dac681c01","type":"token_ok"},"context":{}}
|
|
718
|
+
{"timestamp":"2025-12-30T01:46:05.920Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"3a821a4b-0697-42c7-b0ce-df4b29a3ecfd","type":"token_ok"},"context":{}}
|
|
719
|
+
{"timestamp":"2025-12-30T01:49:06.036Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"56a882a3-8726-419e-a889-ff3b44913f1e","type":"token_ok"},"context":{}}
|
|
720
|
+
{"timestamp":"2025-12-30T01:52:06.154Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7f563dca-fa25-45ea-bdf3-5eec8e862c2c","type":"token_ok"},"context":{}}
|
|
721
|
+
{"timestamp":"2025-12-30T01:55:06.271Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"fea27148-457c-418c-9ccb-e6176a80e942","type":"token_ok"},"context":{}}
|
|
722
|
+
{"timestamp":"2025-12-30T01:58:06.386Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"e73a2722-cef8-4627-93f7-d6c019ee1d5b","type":"token_ok"},"context":{}}
|
|
723
|
+
{"timestamp":"2025-12-30T02:01:06.502Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"defee889-71d0-4b97-b2c6-fcdd12e1d7d9","type":"token_ok"},"context":{}}
|
|
724
|
+
{"timestamp":"2025-12-30T02:04:06.619Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"02d1af83-ca82-4154-b056-6a726e85c1ba","type":"token_ok"},"context":{}}
|
|
725
|
+
{"timestamp":"2025-12-30T02:07:06.737Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ed938fee-32e5-4b0e-97a1-775360bf464c","type":"token_ok"},"context":{}}
|
|
726
|
+
{"timestamp":"2025-12-30T02:10:06.853Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"ea3dcef9-3779-43b2-bb30-4918798f567b","type":"token_ok"},"context":{}}
|
|
727
|
+
{"timestamp":"2025-12-30T02:13:06.968Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7e922672-df81-4477-8708-f101b289fede","type":"token_ok"},"context":{}}
|
|
728
|
+
{"timestamp":"2025-12-30T02:16:07.086Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"129ad023-6253-467d-b712-60ddc6d636be","type":"token_ok"},"context":{}}
|
|
729
|
+
{"timestamp":"2025-12-30T02:19:07.202Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"5e7cb938-f3bd-460f-ab03-abf1993ce122","type":"token_ok"},"context":{}}
|
|
730
|
+
{"timestamp":"2025-12-30T02:22:07.317Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"a53e7aff-31a0-45e3-bbe6-d7398a51e520","type":"token_ok"},"context":{}}
|
|
731
|
+
{"timestamp":"2025-12-30T02:25:07.434Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"848ef268-12b4-4d66-97e6-859bd167269b","type":"token_ok"},"context":{}}
|
|
732
|
+
{"timestamp":"2025-12-30T02:28:07.551Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"6f363bb9-eee0-4bc2-88c2-4d8ea1f8fb8b","type":"token_ok"},"context":{}}
|
|
733
|
+
{"timestamp":"2025-12-30T02:31:07.665Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8d0d817a-fd1f-42fd-ace6-ac0cf17e57ca","type":"token_ok"},"context":{}}
|
|
734
|
+
{"timestamp":"2025-12-30T02:34:07.783Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"4f2345ce-97a3-4de3-a8e3-e70c44b2401f","type":"token_ok"},"context":{}}
|
|
735
|
+
{"timestamp":"2025-12-30T02:37:07.899Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"29f6bce6-0fab-4285-8a4f-082618001f46","type":"token_ok"},"context":{}}
|
|
736
|
+
{"timestamp":"2025-12-30T02:40:08.017Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"f4496927-3ef8-4f77-a6a4-2c3be517645b","type":"token_ok"},"context":{}}
|
|
737
|
+
{"timestamp":"2025-12-30T02:43:08.133Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"81087ead-a75b-4057-9f08-5c0b6befc08b","type":"token_ok"},"context":{}}
|
|
738
|
+
{"timestamp":"2025-12-30T02:46:08.249Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"3da2cd92-f93b-48d1-9c63-1b25452a260f","type":"token_ok"},"context":{}}
|
|
739
|
+
{"timestamp":"2025-12-30T02:49:08.364Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"5634ee3c-ee39-40a2-aa17-d44dc16a714d","type":"token_ok"},"context":{}}
|
|
740
|
+
{"timestamp":"2025-12-30T02:52:08.478Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7e23fb43-2354-4f4d-b3e6-6154a3cecb3f","type":"token_ok"},"context":{}}
|
|
741
|
+
{"timestamp":"2025-12-30T02:55:08.590Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"eb36b2a5-5935-4e1f-a564-cb3a2ce20ba1","type":"token_ok"},"context":{}}
|
|
742
|
+
{"timestamp":"2025-12-30T02:58:08.707Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"d6ccc2d9-5f55-4274-b5b3-6bb3fafa65c2","type":"token_ok"},"context":{}}
|
|
743
|
+
{"timestamp":"2025-12-30T03:01:08.822Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"37a3d3db-6458-467f-b756-0a111587d73b","type":"token_ok"},"context":{}}
|
|
744
|
+
{"timestamp":"2025-12-30T03:04:08.935Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"c329b0ff-6205-429b-bcdb-cd49f4c87a26","type":"token_ok"},"context":{}}
|
|
745
|
+
{"timestamp":"2025-12-30T03:07:09.049Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"b21aeab9-7cc2-458b-acda-c98f96499515","type":"token_ok"},"context":{}}
|
|
746
|
+
{"timestamp":"2025-12-30T03:10:09.163Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"9b15fdc3-4d0f-4bc3-af51-db357c73ccac","type":"token_ok"},"context":{}}
|
|
747
|
+
{"timestamp":"2025-12-30T03:13:09.285Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"5730d813-6a4a-4f3a-a39e-dd7040aec415","type":"token_ok"},"context":{}}
|
|
748
|
+
{"timestamp":"2025-12-30T03:16:09.403Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"4daa2214-5b25-4a21-aa33-5b51cb8abb52","type":"token_ok"},"context":{}}
|
|
749
|
+
{"timestamp":"2025-12-30T03:19:09.518Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7db04633-5fd9-4db4-a980-7324a952c111","type":"token_ok"},"context":{}}
|
|
750
|
+
{"timestamp":"2025-12-30T03:22:09.625Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"46215ad7-8f04-454e-875c-0b7a2a8dba4a","type":"token_ok"},"context":{}}
|
|
751
|
+
{"timestamp":"2025-12-30T03:25:09.726Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"e961c0a1-c96f-4bc3-9bd3-e967a0645b47","type":"token_ok"},"context":{}}
|
|
752
|
+
{"timestamp":"2025-12-30T03:28:09.840Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"4ab959cd-0b73-49ca-82ca-150dc6fcd986","type":"token_ok"},"context":{}}
|
|
753
|
+
{"timestamp":"2025-12-30T03:31:09.954Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"0bfdd76a-9839-44eb-8faa-4bb35bf87e70","type":"token_ok"},"context":{}}
|
|
754
|
+
{"timestamp":"2025-12-30T03:34:10.071Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"a3fa01f1-c3e5-4508-a88c-19bd75d8fad3","type":"token_ok"},"context":{}}
|
|
755
|
+
{"timestamp":"2025-12-30T03:37:10.186Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"935ec26a-f11f-44f2-846f-35a552e85585","type":"token_ok"},"context":{}}
|
|
756
|
+
{"timestamp":"2025-12-30T03:40:10.305Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"6d1f4c3d-9f40-4434-83c4-0acf1aab7951","type":"token_ok"},"context":{}}
|
|
757
|
+
{"timestamp":"2025-12-30T03:43:10.421Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"5d9f2a34-79ad-4bcf-afa3-5fbc27cd20a7","type":"token_ok"},"context":{}}
|
|
758
|
+
{"timestamp":"2025-12-30T03:46:10.536Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"df36498c-4a44-4917-abbe-0f2c088da70c","type":"token_ok"},"context":{}}
|
|
759
|
+
{"timestamp":"2025-12-30T03:49:10.651Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7ed4565d-5230-4541-a8c3-911328400a5e","type":"token_ok"},"context":{}}
|
|
760
|
+
{"timestamp":"2025-12-30T03:52:10.765Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"3a1855c7-be40-4ce6-8fd6-0a78db3694a0","type":"token_ok"},"context":{}}
|
|
761
|
+
{"timestamp":"2025-12-30T03:55:10.879Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"cc705fb2-1716-4515-bfaa-0b35b0c7bc17","type":"token_ok"},"context":{}}
|
|
762
|
+
{"timestamp":"2025-12-30T03:58:10.995Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"a54b2ead-430c-4e1b-ace6-51909871e768","type":"token_ok"},"context":{}}
|
|
763
|
+
{"timestamp":"2025-12-30T04:01:11.111Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"9c523d89-10f4-47f2-97cd-bf1b04ca9cbf","type":"token_ok"},"context":{}}
|
|
764
|
+
{"timestamp":"2025-12-30T04:04:11.225Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8172e06f-0267-43d7-8ece-cdb6933555e9","type":"token_ok"},"context":{}}
|
|
765
|
+
{"timestamp":"2025-12-30T04:07:11.342Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7389dc99-0648-4b38-8e7d-3e27468f4692","type":"token_ok"},"context":{}}
|
|
766
|
+
{"timestamp":"2025-12-30T04:10:11.457Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8f806a76-6aa2-49b6-b82d-f01ff483ca6a","type":"token_ok"},"context":{}}
|
|
767
|
+
{"timestamp":"2025-12-30T04:13:11.576Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"994eb96e-24d9-47ed-aff5-95f1dab5c678","type":"token_ok"},"context":{}}
|
|
768
|
+
{"timestamp":"2025-12-30T04:16:11.691Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"bd01cc63-0d9c-463a-8222-b58e34c9a0f8","type":"token_ok"},"context":{}}
|
|
769
|
+
{"timestamp":"2025-12-30T04:19:11.807Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"e9c701cb-ebea-42f0-a8d9-9f7a10e4e9e4","type":"token_ok"},"context":{}}
|
|
770
|
+
{"timestamp":"2025-12-30T04:22:11.922Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"90488ce2-24b8-4551-814d-8c371be42cb5","type":"token_ok"},"context":{}}
|
|
771
|
+
{"timestamp":"2025-12-30T04:25:12.032Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"f357dbcf-bcde-4bbd-8711-8d123cf72136","type":"token_ok"},"context":{}}
|
|
772
|
+
{"timestamp":"2025-12-30T04:28:12.149Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8b8c4488-b055-4918-8155-008a6020a983","type":"token_ok"},"context":{}}
|
|
773
|
+
{"timestamp":"2025-12-30T04:31:12.266Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"15e217ea-9eac-4846-91ae-c9c691393d0e","type":"token_ok"},"context":{}}
|
|
774
|
+
{"timestamp":"2025-12-30T04:34:12.382Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"8427ba22-907c-42ec-a0b5-a2ec6b099c5f","type":"token_ok"},"context":{}}
|
|
775
|
+
{"timestamp":"2025-12-30T04:37:12.499Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"f3407e21-d49e-4eb7-8fe1-fd0283fb01be","type":"token_ok"},"context":{}}
|
|
776
|
+
{"timestamp":"2025-12-30T04:40:12.618Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"311a7745-6243-47cc-80a0-55973d921645","type":"token_ok"},"context":{}}
|
|
777
|
+
{"timestamp":"2025-12-30T04:43:12.734Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"cb853836-12ad-4a0c-b42e-2167a9f08814","type":"token_ok"},"context":{}}
|
|
778
|
+
{"timestamp":"2025-12-30T04:46:12.849Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"a223c460-50b3-425d-aa5a-16e38151c18b","type":"token_ok"},"context":{}}
|
|
779
|
+
{"timestamp":"2025-12-30T04:49:12.956Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"068ad6d6-53a4-482a-bcec-5790dc6f9112","type":"token_ok"},"context":{}}
|
|
780
|
+
{"timestamp":"2025-12-30T04:52:13.070Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"f70d20a2-0943-46eb-a918-16eee7e6bdc2","type":"token_ok"},"context":{}}
|
|
781
|
+
{"timestamp":"2025-12-30T04:55:13.185Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"585059df-53c4-4f88-a728-3bf8a6d09709","type":"token_ok"},"context":{}}
|
|
782
|
+
{"timestamp":"2025-12-30T04:58:13.302Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"41d1e8d7-2b20-4787-a34f-92825f392c0b","type":"token_ok"},"context":{}}
|
|
783
|
+
{"timestamp":"2025-12-30T05:01:13.417Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"b48acf23-e031-451e-b5dc-8f504b3dc973","type":"token_ok"},"context":{}}
|
|
784
|
+
{"timestamp":"2025-12-30T05:04:13.534Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"6c37e034-ff99-4d51-988c-edbb22dce200","type":"token_ok"},"context":{}}
|
|
785
|
+
{"timestamp":"2025-12-30T05:07:13.649Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"e179add7-5fb8-471b-818c-ca24961cd629","type":"token_ok"},"context":{}}
|
|
786
|
+
{"timestamp":"2025-12-30T05:10:13.766Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"6e5c0761-56bf-429c-971d-8966a987a852","type":"token_ok"},"context":{}}
|
|
787
|
+
{"timestamp":"2025-12-30T05:13:13.883Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"db54135a-93cf-4047-af53-b4951994bda5","type":"token_ok"},"context":{}}
|
|
788
|
+
{"timestamp":"2025-12-30T05:16:13.994Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"bda2ec2f-c13f-4b10-9970-2b4869016c81","type":"token_ok"},"context":{}}
|
|
789
|
+
{"timestamp":"2025-12-30T05:19:14.109Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"219003de-7b3b-46a7-a90e-b8021ee267be","type":"token_ok"},"context":{}}
|
|
790
|
+
{"timestamp":"2025-12-30T05:22:14.225Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"27c9ff9f-5e24-434e-bab1-4272c947c3fb","type":"token_ok"},"context":{}}
|
|
791
|
+
{"timestamp":"2025-12-30T05:25:14.338Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"802ded10-906e-4c0e-ab06-aa8980542a73","type":"token_ok"},"context":{}}
|
|
792
|
+
{"timestamp":"2025-12-30T05:28:14.444Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"df845eab-439f-4f29-b3e5-262b5c9f1425","type":"token_ok"},"context":{}}
|
|
793
|
+
{"timestamp":"2025-12-30T05:31:14.554Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"e35c64dc-c27a-4e20-b1a8-08e68af3b7bd","type":"token_ok"},"context":{}}
|
|
794
|
+
{"timestamp":"2025-12-30T05:34:14.664Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"84eb0857-8a28-46a8-9436-a4618d4c4d26","type":"token_ok"},"context":{}}
|
|
795
|
+
{"timestamp":"2025-12-30T05:37:14.780Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"41c52597-b732-4b8f-ba76-f8816fb9b106","type":"token_ok"},"context":{}}
|
|
796
|
+
{"timestamp":"2025-12-30T05:40:14.879Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"5ea8e5dd-f3f8-4b79-a2cf-a9fb31251286","type":"token_ok"},"context":{}}
|
|
797
|
+
{"timestamp":"2025-12-30T05:43:14.993Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"62c4558d-d521-4f2b-9ecc-4b1027ba2bd1","type":"token_ok"},"context":{}}
|
|
798
|
+
{"timestamp":"2025-12-30T05:46:15.082Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"2cca3a88-8da2-43af-a312-e3afaf195e15","type":"token_ok"},"context":{}}
|
|
799
|
+
{"timestamp":"2025-12-30T05:49:15.199Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"89b54d29-cdc7-4098-9824-baccf1d32184","type":"token_ok"},"context":{}}
|
|
800
|
+
{"timestamp":"2025-12-30T05:52:15.297Z","level":"debug","component":"NotificationCenter","event":"Notification enqueued","data":{"id":"7b5026e8-99bd-406e-a80e-6d76dc650bcc","type":"token_ok"},"context":{}}
|