From b2ae1d812041f45f2377d399f925266b8821a8e0 Mon Sep 17 00:00:00 2001 From: ViewWay <834740219@qq.com> Date: Sat, 4 Jul 2026 00:23:30 +0800 Subject: [PATCH 1/4] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E4=B8=8E=E9=85=8D=E7=BD=AE=E4=BB=A5=E6=98=8E=E7=A1=AE?= =?UTF-8?q?=E5=BC=83=E7=94=A8=20InfluxDB=20=E5=8F=8A=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将时序数据存储方案统一调整为 PostgreSQL 时序表,移除 InfluxDB 相关说明 - 更新 `.env.example` 环境变量模板,对齐后端配置项并补充 Redis/JWT 等配置 - 完善 `.gitignore` 规则,增加 Python 虚拟环境及缓存目录过滤 - 调整 `README.md` 与 `CLAUDE.md` 中的目录结构与测试分布说明 - 归档早期 UI 原型 HTML 文件,更新开发计划与测试策略等相关文档 --- .env.example | 39 +- .gitignore | 9 + CLAUDE.md | 10 +- README.md | 25 +- backend/app/core/config.py | 3 + backend/pyproject.toml | 2 +- backend/requirements.txt | 2 + docs/CHANGELOG.md | 18 + docs/archive/ui/aging-non-comm.html | 491 + docs/archive/ui/alarm-closure-sla.html | 387 + docs/archive/ui/alarm-trend-volume.html | 491 + docs/archive/ui/asset-mismatch.html | 449 + docs/archive/ui/battery-status-aging.html | 488 + docs/archive/ui/comm-latency-summary.html | 517 + .../archive/ui/comm-success-failure-rate.html | 944 + docs/archive/ui/compliance-reports.html | 448 + docs/archive/ui/config-change-log.html | 397 + docs/archive/ui/config-drift.html | 402 + docs/archive/ui/daily-comm-statistics.html | 585 + .../archive/ui/data-validation-rejection.html | 517 + docs/archive/ui/device-health-model.html | 381 + docs/archive/ui/duplicate-invalid-read.html | 469 + docs/archive/ui/firmware-distribution.html | 346 + .../archive/ui/firmware-upgrade-campaign.html | 398 + .../ui/firmware-upgrade-success-failure.html | 577 + docs/archive/ui/gis-comm-coverage-map.html | 422 + .../ui/gis-consumption-outlier-map.html | 387 + docs/archive/ui/gis-health-battery-map.html | 433 + .../archive/ui/gis-missing-read-area-map.html | 173 + .../ui/gis-missing-read-cluster-map.html | 453 + docs/archive/ui/gis-overload-pattern-map.html | 421 + docs/archive/ui/gis-phase-imbalance-map.html | 427 + .../ui/gis-power-quality-hotspot-map.html | 444 + .../ui/gis-reverse-power-flow-map.html | 457 + docs/archive/ui/gis-tamper-pattern-map.html | 460 + docs/archive/ui/gis-voltage-issue-map.html | 417 + docs/archive/ui/index.html | 343 + .../ui/interval-consumption-trend.html | 501 + docs/archive/ui/low-no-consumption.html | 510 + docs/archive/ui/meter-event-summary.html | 473 + docs/archive/ui/meter-failure-trend.html | 363 + docs/archive/ui/meter-time-drift.html | 378 + docs/archive/ui/non-comm-devices.html | 502 + docs/archive/ui/ondemand-history.html | 285 + docs/archive/ui/open-alarms.html | 435 + docs/archive/ui/partial-gapped-interval.html | 482 + docs/archive/ui/read-completeness.html | 487 + .../ui/report27-meter-customer-mapping.html | 551 + .../ui/report28-asset-data-mismatch.html | 672 + .../ui/report29-rogue-duplicate-meter.html | 662 + docs/archive/ui/report34-mimo-completion.html | 644 + .../ui/report35-manual-vs-ami-read.html | 588 + .../ui/report36-command-event-audit-log.html | 552 + .../ui/report37-read-lifecycle-audit.html | 605 + .../ui/report38-regulatory-compliance.html | 418 + docs/archive/ui/retry-analysis.html | 481 + docs/archive/ui/reverse-energy-flow.html | 524 + docs/archive/ui/scheduled-read-success.html | 476 + docs/archive/ui/signal-quality.html | 398 + docs/archive/ui/temp-threshold-alert.html | 551 + docs/archive/ui/time-sync-success.html | 361 + docs/design/tech-review-and-architecture.md | 10 +- docs/guides/testing-strategy.md | 57 +- docs/planning/development-plan.md | 54 +- docs/planning/phase-overview.md | 124 +- docs/tasks/prd-cloud-metering-system.md | 8 +- docs/testdata/Andromeda-01_DailyCheck.json | 79415 +++++++++++++++ docs/testdata/Cusk-01_DCPP_DailyCheck.json | 79425 ++++++++++++++++ docs/testdata/Draco-01_DCPP_DailyCheck.json | 79415 +++++++++++++++ docs/testdata/generate_testdata.py | 233 + docs/testdata/generate_testdata_mongo.py | 239 + docs/testdata/meter_data_20251101_094706.json | 68337 +++++++++++++ docs/testdata/template_meter.json | 1 + lefthook.yml | 56 +- 74 files changed, 332335 insertions(+), 170 deletions(-) create mode 100644 docs/archive/ui/aging-non-comm.html create mode 100644 docs/archive/ui/alarm-closure-sla.html create mode 100644 docs/archive/ui/alarm-trend-volume.html create mode 100644 docs/archive/ui/asset-mismatch.html create mode 100644 docs/archive/ui/battery-status-aging.html create mode 100644 docs/archive/ui/comm-latency-summary.html create mode 100644 docs/archive/ui/comm-success-failure-rate.html create mode 100644 docs/archive/ui/compliance-reports.html create mode 100644 docs/archive/ui/config-change-log.html create mode 100644 docs/archive/ui/config-drift.html create mode 100644 docs/archive/ui/daily-comm-statistics.html create mode 100644 docs/archive/ui/data-validation-rejection.html create mode 100644 docs/archive/ui/device-health-model.html create mode 100644 docs/archive/ui/duplicate-invalid-read.html create mode 100644 docs/archive/ui/firmware-distribution.html create mode 100644 docs/archive/ui/firmware-upgrade-campaign.html create mode 100644 docs/archive/ui/firmware-upgrade-success-failure.html create mode 100644 docs/archive/ui/gis-comm-coverage-map.html create mode 100644 docs/archive/ui/gis-consumption-outlier-map.html create mode 100644 docs/archive/ui/gis-health-battery-map.html create mode 100644 docs/archive/ui/gis-missing-read-area-map.html create mode 100644 docs/archive/ui/gis-missing-read-cluster-map.html create mode 100644 docs/archive/ui/gis-overload-pattern-map.html create mode 100644 docs/archive/ui/gis-phase-imbalance-map.html create mode 100644 docs/archive/ui/gis-power-quality-hotspot-map.html create mode 100644 docs/archive/ui/gis-reverse-power-flow-map.html create mode 100644 docs/archive/ui/gis-tamper-pattern-map.html create mode 100644 docs/archive/ui/gis-voltage-issue-map.html create mode 100644 docs/archive/ui/index.html create mode 100644 docs/archive/ui/interval-consumption-trend.html create mode 100644 docs/archive/ui/low-no-consumption.html create mode 100644 docs/archive/ui/meter-event-summary.html create mode 100644 docs/archive/ui/meter-failure-trend.html create mode 100644 docs/archive/ui/meter-time-drift.html create mode 100644 docs/archive/ui/non-comm-devices.html create mode 100644 docs/archive/ui/ondemand-history.html create mode 100644 docs/archive/ui/open-alarms.html create mode 100644 docs/archive/ui/partial-gapped-interval.html create mode 100644 docs/archive/ui/read-completeness.html create mode 100644 docs/archive/ui/report27-meter-customer-mapping.html create mode 100644 docs/archive/ui/report28-asset-data-mismatch.html create mode 100644 docs/archive/ui/report29-rogue-duplicate-meter.html create mode 100644 docs/archive/ui/report34-mimo-completion.html create mode 100644 docs/archive/ui/report35-manual-vs-ami-read.html create mode 100644 docs/archive/ui/report36-command-event-audit-log.html create mode 100644 docs/archive/ui/report37-read-lifecycle-audit.html create mode 100644 docs/archive/ui/report38-regulatory-compliance.html create mode 100644 docs/archive/ui/retry-analysis.html create mode 100644 docs/archive/ui/reverse-energy-flow.html create mode 100644 docs/archive/ui/scheduled-read-success.html create mode 100644 docs/archive/ui/signal-quality.html create mode 100644 docs/archive/ui/temp-threshold-alert.html create mode 100644 docs/archive/ui/time-sync-success.html create mode 100644 docs/testdata/Andromeda-01_DailyCheck.json create mode 100644 docs/testdata/Cusk-01_DCPP_DailyCheck.json create mode 100644 docs/testdata/Draco-01_DCPP_DailyCheck.json create mode 100644 docs/testdata/generate_testdata.py create mode 100644 docs/testdata/generate_testdata_mongo.py create mode 100644 docs/testdata/meter_data_20251101_094706.json create mode 100644 docs/testdata/template_meter.json diff --git a/.env.example b/.env.example index 1f72c43..f12462d 100644 --- a/.env.example +++ b/.env.example @@ -1,10 +1,35 @@ -# Database Configuration -DATABASE_TYPE=postgresql # postgresql, mysql, or mongodb -DATABASE_URL=postgresql+asyncpg://user:password@localhost:5432/minihes -# DATABASE_URL=mysql+aiomysql://user:password@localhost:3306/minihes -# DATABASE_URL=mongodb://localhost:27017/minihes +# ============================================================================= +# MiniHES 后端环境变量模板 +# 复制为 .env 后修改实际值。字段对齐 backend/app/core/config.py 的 Settings。 +# ============================================================================= -# API Configuration -API_V1_PREFIX=/api/v1 +# ---- 应用 ---- PROJECT_NAME=MiniHES +API_V1_PREFIX=/api/v1 DEBUG=true + +# ---- 数据库(PostgreSQL)---- +DATABASE_URL=postgresql+asyncpg://minihes:minihes@localhost:5432/minihes +DB_POOL_SIZE=20 +DB_MAX_OVERFLOW=10 + +# ---- Redis ---- +REDIS_URL=redis://localhost:6379/0 + +# ---- JWT 认证 ---- +SECRET_KEY=change-me-in-production +ACCESS_TOKEN_EXPIRE_MINUTES=60 +REFRESH_TOKEN_EXPIRE_DAYS=7 + +# ---- 采集器 ---- +COLLECTOR_MAX_WORKERS=10 +COLLECTOR_DEFAULT_TIMEOUT=30 +COLLECTOR_RETRY_TIMES=3 + +# ---- DEPRECATED: InfluxDB(已弃用)---- +# 时序数据改用 PostgreSQL 时序表(col_meter_reading + col_reading_daily_summary)。 +# 配置项保留备未来高并发场景复用,当前无代码读写 InfluxDB。 +# INFLUXDB_URL=http://localhost:8086 +# INFLUXDB_TOKEN= +# INFLUXDB_ORG=metering +# INFLUXDB_BUCKET=metering diff --git a/.gitignore b/.gitignore index c6a9924..9d7fe18 100644 --- a/.gitignore +++ b/.gitignore @@ -37,6 +37,15 @@ .DS_Store Thumbs.db +# Python venv (anywhere,防误装到 docs 等) +**/lib/python*/site-packages/ + +# Agent/tool caches +**/.omc/ + +# Temp/junk +docs/testdata/~/ + # Claude local settings .claude/settings.local.json **/.claude/settings.local.json diff --git a/CLAUDE.md b/CLAUDE.md index e67cede..2c9bd40 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -8,7 +8,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co - **前端:** vue-vben-admin 5.7.0 (Vue 3 + TypeScript + Ant Design Vue + Vite) - **后端:** FastAPI + Python 3.12 (uv 管理) -- **数据库:** PostgreSQL + Redis + InfluxDB +- **数据库:** PostgreSQL + Redis(时序数据使用 PG 时序表 `col_meter_reading`/`col_reading_daily_summary`,InfluxDB 已弃用) - **包管理:** uv (后端), pnpm (前端) - **部署:** Docker Compose + systemd 双支持 - **DLMS协议:** 使用私有库(替换当前简化实现) @@ -83,8 +83,10 @@ MiniHES/ │ └── .venv/ # Python 3.12 虚拟环境 │ ├── tests/ # 测试 -│ ├── e2e/ # Playwright E2E 测试 -│ └── backend/ # pytest 后端测试 +│ ├── e2e/ # Playwright E2E 测试 (9 个) +│ └── backend/ # 早期占位测试(仅 5 个 stub,真实测试在 backend/tests/) +│ +└── backend/tests/ # pytest 后端测试 (83 个,CI 实际运行) │ └── docs/ # 项目文档 ``` @@ -179,8 +181,10 @@ class NewAdapter(CommunicationAdapter): # 后端 DATABASE_URL=postgresql+asyncpg://... REDIS_URL=redis://localhost:6379 +SECRET_KEY=your-secret-key DLMS_DEFAULT_TIMEOUT=30 COLLECTOR_MAX_WORKERS=10 +# 注:InfluxDB 已弃用,时序数据使用 PG 时序表,不再需要 INFLUXDB_* 变量 ``` ## 后端依赖 diff --git a/README.md b/README.md index 130a89c..7a0b228 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,13 @@ | 前端 | vue-vben-admin 5.7.0 (Vue 3 + TypeScript + Ant Design Vue + Vite) | | 图表 | ECharts + useChartTheme 主题适配 | | 后端 | Python FastAPI + SQLAlchemy 2.0 (async) | -| 数据库 | PostgreSQL (业务数据) + InfluxDB (时序数据) | +| 数据库 | PostgreSQL (业务数据 + 时序数据,使用 `col_meter_reading`/`col_reading_daily_summary` 时序表) | | 缓存 | Redis | | 包管理 | uv (后端) + pnpm (前端) | | CI/CD | GitHub Actions (ruff lint + pytest + vue-tsc typecheck) | +> **存储决策说明**:早期选型曾考虑 InfluxDB 作为时序数据库,经评估后**已弃用**,时序抄读数据统一存入 PostgreSQL 时序表,简化部署与运维。 + ## 系统架构 ``` @@ -38,7 +40,7 @@ │ ├── 红外 │ 4G/5G │ NB-IoT │ M-Bus │ LoRaWAN │ G3-PLC │ ├─────────────────────────────────────────────────────────────────┤ │ 数据存储 │ -│ ├── PostgreSQL (业务数据) ├── InfluxDB (时序数据) ├── Redis │ +│ ├── PostgreSQL (业务数据 + 时序数据) ├── Redis (缓存) │ └─────────────────────────────────────────────────────────────────┘ ``` @@ -70,13 +72,17 @@ MiniHES/ │ ├── docs/ # 项目文档 │ ├── tasks/ # PRD 需求文档 -│ ├── design/ # 架构设计文档 -│ ├── api/ # API 文档 -│ ├── guides/ # 开发指南 -│ └── reports/ # 审查报告 +│ ├── design/ # 架构设计文档 + 数据库表结构 +│ ├── planning/ # 开发排期 + 阶段概览 +│ ├── guides/ # 开发指南(测试策略等) +│ ├── archive/ # 历史归档(早期 UI 原型等) +│ └── CHANGELOG.md # 变更日志 +│ # 注:API 文档见 FastAPI 启动后的 /docs Swagger UI │ -├── tests/ # 测试 -│ └── backend/ # pytest 后端测试 (83 个) +├── backend/tests/ # pytest 后端测试 (83 个,CI 实际运行) +├── tests/ # 其他测试 +│ ├── backend/ # 早期占位(仅 5 个 stub) +│ └── e2e/ # Playwright E2E 测试 (9 个,CI 未运行) │ └── .github/workflows/ # CI/CD (lint + test + typecheck) ``` @@ -101,7 +107,7 @@ MiniHES/ - Python >= 3.11 - uv (Python 包管理器) - pnpm (前端包管理器) -- PostgreSQL + Redis + InfluxDB +- PostgreSQL + Redis ### 前端 @@ -129,7 +135,6 @@ VITE_NITRO_MOCK=false # false=对接真实后端, true=使用 mock # 后端 (.env) DATABASE_URL=postgresql+asyncpg://postgres:password@localhost:5432/metering_db REDIS_URL=redis://localhost:6379/0 -INFLUXDB_URL=http://localhost:8086 SECRET_KEY=your-secret-key ``` diff --git a/backend/app/core/config.py b/backend/app/core/config.py index 656d520..84a8fb7 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -19,6 +19,9 @@ class Settings(BaseSettings): REDIS_URL: str = "redis://localhost:6379/0" + # DEPRECATED: InfluxDB 已弃用,时序数据改用 PostgreSQL 时序表 + # (col_meter_reading + col_reading_daily_summary)。 + # 配置项保留备未来高并发场景复用,当前无任何代码读写 InfluxDB。 INFLUXDB_URL: str = "http://localhost:8086" INFLUXDB_TOKEN: str = "" INFLUXDB_ORG: str = "metering" diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 764b30b..5144ca6 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -10,7 +10,7 @@ dependencies = [ "apscheduler==3.10.4", "asyncpg==0.30.0", "fastapi==0.115.0", - "influxdb-client>=1.50.0", + "influxdb-client>=1.50.0", # DEPRECATED: InfluxDB 已弃用,时序用 PG 时序表,暂保留避免破坏 lockfile "motor==3.6.0", "numpy==1.26.0", "pandas==2.2.0", diff --git a/backend/requirements.txt b/backend/requirements.txt index 059f53b..1059937 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -1,3 +1,5 @@ +# DEPRECATED: 依赖已迁移到 pyproject.toml(uv 管理),本文件不再维护,仅保留历史参考。 +# 正确安装方式:cd backend && uv sync fastapi==0.115.0 uvicorn[standard]==0.32.0 sqlalchemy==2.0.36 diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 3fcb9db..3741bd1 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -6,6 +6,24 @@ --- +## [0.6.1] - 2026-07-04 + +### 文档对齐(消除文档与代码的 4 类严重矛盾 + 4 类中等问题) + +- **统一 InfluxDB 表述**:标注已弃用,时序数据使用 PostgreSQL 时序表(`col_meter_reading`/`col_reading_daily_summary`)。涉及 README、CLAUDE、PRD、tech-review 架构文档、config.py 注释、pyproject.toml 依赖标注 +- **修正测试目录指引**:真实 83 个测试位于 `backend/tests/`(CI 实际运行),非 `tests/backend/`(仅 5 个 stub)。修正 README、CLAUDE、testing-strategy.md +- **重写 phase-overview.md**:按实际代码进度重新标注各 Phase 完成状态(Phase 1/2/5 ✅,Phase 3/4 🟡 部分完成) +- **修复幽灵目录**:移除 README 项目结构中对不存在的 `docs/api/`、`docs/reports/` 的引用 +- **补全 .env.example**:对齐 config.py 实际配置项(补充 REDIS_URL/SECRET_KEY/JWT/采集器配置) +- **启用 lefthook.yml**:替换纯注释示例为实际生效的 pre-commit ruff 检查(lint + format) +- **标注 requirements.txt 弃用**:依赖已迁移到 pyproject.toml(uv 管理) +- **更新 development-plan.md**:资产盘点表改为实际数据(31 模型/16 service/105 路由/83 测试),里程碑 M1/M2 标完成、M3-M5 标部分完成 +- **清理 docs/testdata/**:删除误装的 Python 虚拟环境(site-packages)、.ruff_cache、.omc、临时文件;保留数据脚本和 JSON 样本 +- **归档 docs/ui/**:54 个早期 HTML 原型移至 docs/archive/ui/ 作为历史快照 +- **补充 .gitignore**:新增规则防止 site-packages/.omc 等再次混入 + +--- + ## [0.6.0] - 2026-05-17 ### 新增 diff --git a/docs/archive/ui/aging-non-comm.html b/docs/archive/ui/aging-non-comm.html new file mode 100644 index 0000000..3041b39 --- /dev/null +++ b/docs/archive/ui/aging-non-comm.html @@ -0,0 +1,491 @@ + + + + + +Aging Non-Communicating Meters — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+
Aging Overview
+
Device List
+
+ + +
+
+ + + + + + + + + + +
+ + +
+
+
Total Non-Comm Meters
+
482
+
Out of 8,540 total
+
▲ 18 vs prev week
+
+
+
+
7-Day Bucket
+
198
+
41.1% of non-comm
+
▼ 12 vs prev week
+
+
+
+
14-Day Bucket
+
128
+
26.6% of non-comm
+
▲ 15 vs prev week
+
+
+
+
30-Day Bucket
+
95
+
19.7% of non-comm
+
▲ 8 vs prev week
+
+
+
+
60+ Day Bucket
+
61
+
12.7% — critical
+
▲ 7 vs prev week
+
+
+
+ + +
+
+
Non-Communicating Meter Trend by Aging Bucket
+ +
+
+
+
+
Aging Bucket Distribution (Current)
+ +
+
+
Non-Comm by Geographic Area
+ +
+
+
+
+
Non-Comm by DCU
+ +
+
+
Recovery Rate by Bucket (Last 4 Weeks)
+ +
+
+ + + + + + +
AreaTotal MetersNon-Comm7d14d30d60d+Non-Comm %
+
+ + + +
+
+ + + + diff --git a/docs/archive/ui/alarm-closure-sla.html b/docs/archive/ui/alarm-closure-sla.html new file mode 100644 index 0000000..49185a2 --- /dev/null +++ b/docs/archive/ui/alarm-closure-sla.html @@ -0,0 +1,387 @@ + + + + + +Alarm Closure Time & SLA — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ + +
+
+ + + + + + + + + +
+ + +
+
+
Total Closed (Apr)
+
8,420
+
Alarms resolved this month
+
+
+
+
SLA Compliance
+
87.2%
+
7,342 within SLA
+
▲ 2.1% vs Mar
+
+
+
+
Avg Closure Time
+
3.2h
+
Target: ≤ 4h
+
▼ 0.4h vs Mar
+
+
+
+
P90 Closure Time
+
8.5h
+
90th percentile
+
▼ 1.2h vs Mar
+
+
+
+
Max Closure Time
+
72h
+
Worst case
+
▲ 8h vs Mar
+
+
+
+ + +
+
+
Monthly SLA Compliance Trend (6 Months)
+ +
+
+
+
+
Closure Time Distribution (Apr)
+ +
+
+
Avg Closure Time by Alarm Type
+ +
+
+
+
+
Avg Closure Time by Severity
+ +
+
+
SLA Miss Rate by Type (Worst Performers)
+ +
+
+ + + + + + +
MonthClosedSLA MetSLA MissedCompliance %Avg (h)P90 (h)Max (h)
+ + + + + + +
TypeSeverityClosedAvg (h)P90 (h)Max (h)SLA Target (h)SLA MetSLA MissedCompliance
+
+
+
+ + + + diff --git a/docs/archive/ui/alarm-trend-volume.html b/docs/archive/ui/alarm-trend-volume.html new file mode 100644 index 0000000..81a5947 --- /dev/null +++ b/docs/archive/ui/alarm-trend-volume.html @@ -0,0 +1,491 @@ + + + + + +Alarm Trend & Volume — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+
Trend Analysis
+
Geographic Breakdown
+
+ + +
+
+ + + + + + + + + + +
+ + +
+
+
Total Alarms (16 weeks)
+
142,580
+
Jan 5 – Apr 21
+
+
+
+
Weekly Average
+
8,911
+
Per week
+
▲ 4.2% trend
+
+
+
+
Peak Week
+
W16
+
10,420 alarms
+
+
+
+
Emerging: Tamper ↑
+
+28%
+
Last 4 weeks vs prior 4
+
⚠ Investigate
+
+
+
+
Improving: Outage ↓
+
-15%
+
Last 4 weeks vs prior 4
+
✓ Improving
+
+
+
+ + +
+
+
Weekly Alarm Volume Trend by Type (16 Weeks)
+ +
+
+
+
+
Weekly Alarm Volume by Severity
+ +
+
+
Alarm Type — 4-Week Moving Average
+ +
+
+
+
+
Month-over-Month Comparison
+ +
+
+
Alarm Type Change (Last 4w vs Prior 4w)
+ +
+
+ + + + + + +
WeekTotalVoltageTamperOutageCommLeakOtherWoW Change
+
+ + + +
+
+ + + + diff --git a/docs/archive/ui/asset-mismatch.html b/docs/archive/ui/asset-mismatch.html new file mode 100644 index 0000000..3260043 --- /dev/null +++ b/docs/archive/ui/asset-mismatch.html @@ -0,0 +1,449 @@ + + + + + +Asset Data Mismatch Report — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 22/04/2026 11:05:44Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ +
+ +
+ + + + + + + + Last Scan: Apr 22, 2026 02:00 +
+ + +
+
+
Total Mismatches
+
156
+
of 7,002 meters (2.2%)
+
▲ 8 vs last scan
+
+
+
+
Critical
+
23
+
Serial / CT Ratio changes
+
▲ 3 vs last scan
+
+
+
+
Major
+
68
+
Model / Firmware drifts
+
▲ 4 vs last scan
+
+
+
+
Minor
+
65
+
Meter constant / Phase config
+
▲ 1 vs last scan
+
+
+
+
Resolution Rate (30d)
+
72%
+
113 of 156 resolved
+
▲ 5% vs prev month
+
+
+
+ + +
+
+
Mismatch Count by Type
+ +
+
+
Mismatch Count by Region
+ +
+
+
Severity Distribution
+ +
+
+
30-Day Mismatch Trend
+ +
+
+ + + +
+ + +
+
+ + + + diff --git a/docs/archive/ui/battery-status-aging.html b/docs/archive/ui/battery-status-aging.html new file mode 100644 index 0000000..f237eda --- /dev/null +++ b/docs/archive/ui/battery-status-aging.html @@ -0,0 +1,488 @@ + + + + + +Battery Status & Aging (DCUs / RF Nodes) — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ + +
+ +
+ Month: + + + + + + + +
+ + +
+
+
Total DCUs / RF Nodes
+
186
+
6 DCUs + 180 RF Nodes
+
+
+
+
Good (> 60%)
+
142
+
76.3% of fleet
+
+
+
+
Warning (30–60%)
+
32
+
17.2% — plan replacement
+
▲ 4 vs Mar
+
+
+
+
Critical (< 30%)
+
12
+
6.5% — replace ASAP
+
▲ 2 vs Mar
+
+
+
+
Avg Remaining Life
+
3.2 yr
+
Fleet average estimate
+
▼ 0.1 yr vs Mar
+
+
+
+ + +
+
+
Battery Health Trend — DCUs & RF Nodes (Last 6 Months)
+ +
+
+
+
+
Health Category Distribution
+ +
+
+
Battery Level Distribution (% Bands)
+ +
+
+
+
+
Warning & Critical by Area
+ +
+
+
Estimated Remaining Life Distribution
+ +
+
+ + + + + + +
AreaDCUsRF NodesTotalGoodWarningCriticalAvg Battery %Avg Remaining Life
+ + +
+ + Warning & Critical Devices — Replacement Planning + +
+ + +
+ + + + + + + +
+ +
+ +
+
+
+ + + + diff --git a/docs/archive/ui/comm-latency-summary.html b/docs/archive/ui/comm-latency-summary.html new file mode 100644 index 0000000..fd52713 --- /dev/null +++ b/docs/archive/ui/comm-latency-summary.html @@ -0,0 +1,517 @@ + + + + + +Communication Latency Summary — Reporting + + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+
Latency Overview
+
Device Latency Detail
+
+ + +
+
+ + + + + + + + + +
+ + +
+
+
Avg Latency
+
1.6s
+
All comm attempts
+
▼ 0.2s vs prev week
+
+
+
+
P95 Latency
+
4.8s
+
95th percentile
+
▼ 0.5s vs prev week
+
+
+
+
Max Latency
+
28.3s
+
Worst single response
+
▲ 3.1s vs prev week
+
+
+
+
SLA Breach (>5s)
+
312
+
4.5% of total attempts
+
▲ 28 vs prev week
+
+
+
+
Median Latency
+
1.2s
+
50th percentile
+
▼ 0.1s vs prev week
+
+
+
+ + +
+
+
Weekly Latency Trend (Avg / P95 / Max)
+ +
+
+ + +
+
+
Latency Distribution (Histogram)
+ +
+
+
Avg Latency by Comm Technology
+ +
+
+ +
+
+
Avg Latency by DCU
+ +
+
+
Top 10 Highest Latency Devices
+ +
+
+ + + + + + + + +
WeekTotal AttemptsAvg (s)Median (s)P95 (s)Max (s)SLA BreachBreach %
+
+ + + +
+
+ + + + diff --git a/docs/archive/ui/comm-success-failure-rate.html b/docs/archive/ui/comm-success-failure-rate.html new file mode 100644 index 0000000..f786597 --- /dev/null +++ b/docs/archive/ui/comm-success-failure-rate.html @@ -0,0 +1,944 @@ + + + + + +Communication Success & Failure Rate — Reporting + + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Installation ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + VEE ▾ + Report ▾ + + 21/04/2026 15:06:54 + Online: 118 +
+ +
+ + + + +
+ +
+ + + +
+ +
+ +
+ +
+
+
+ +
+
+
+ +
+
+
+
+
+ + + +
+
+
+ + +
+ +
+
Summary
+
Communication Detail
+
+ + +
+ + +
+ + + + + + + + + +
+ + +
+
+
Total Comm Attempts
+
48,562
+
Last 7 days
+
▲ 3.2% vs prev period
+
+
+
+
Success Rate
+
94.7%
+
45,988 successful
+
▲ 0.8% vs prev period
+
+
+
+
Failure Rate
+
5.3%
+
2,574 failed
+
▼ 0.8% vs prev period
+
+
+
+
Avg Response Time
+
2.4s
+
Median: 1.8s
+
▲ 0.3s improvement
+
+
+
+ + +
+
+
Daily Communication Success & Failure Trend
+ +
+
+ + +
+
+
Failure Reason Breakdown
+ +
+
+
Success Rate by Comm Technology
+ +
+
+
Success Rate by DCU
+ +
+
+
Top 10 Comm Abnormal TR Ranking
+ +
+
+ + + + + + + + + + + +
DateTotal AttemptsSuccessFailedSuccess RateTimeoutProtocol ErrorDevice OfflineOther
+
+ + + +
+
+ + + + diff --git a/docs/archive/ui/compliance-reports.html b/docs/archive/ui/compliance-reports.html new file mode 100644 index 0000000..afe8b72 --- /dev/null +++ b/docs/archive/ui/compliance-reports.html @@ -0,0 +1,448 @@ + + + + + +Regulatory & Compliance Reporting — Report + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 22/04/2026 11:20:08Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ +
+ + + +
+ + +
+
+
Reports Generated (This Month)
+
24
+
18 auto + 6 on-demand
+
+
+
+
System Availability (MTD)
+
99.82%
+
Target: ≥ 99.7%
+
+
+
+
Data Completeness (MTD)
+
97.3%
+
Target: ≥ 95%
+
+
+
+
SLA Breaches (MTD)
+
3
+
RPO: 0 | RTO: 1 | Avail: 2
+
+
+
+ + +
+
+
Monthly Report Generation Count
+ +
+
+
SLA Achievement — Last 6 Months
+ +
+
+ + + +
+ + + + + +
+
+ + +
+
+ + + + + + + diff --git a/docs/archive/ui/config-change-log.html b/docs/archive/ui/config-change-log.html new file mode 100644 index 0000000..01783b3 --- /dev/null +++ b/docs/archive/ui/config-change-log.html @@ -0,0 +1,397 @@ + + + + + +Configuration Change Log — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ +
+ + + + + + + + + + +
+ + +
+
+
Total Config Changes
+
1,842
+
Mar 1 – Apr 21
+
+
+
+
Success Rate
+
94.8%
+
1,746 successful
+
+
+
+
Failed
+
62
+
3.4% failure rate
+
+
+
+
Pending
+
28
+
Awaiting confirmation
+
+
+
+
Rollback
+
6
+
Reverted changes
+
+
+
+ + +
+
+
Daily Configuration Change Volume
+ +
+
+
+
+
Changes by Parameter Type
+ +
+
+
Changes by Operator
+ +
+
+
+
+
Execution Result Distribution
+ +
+
+
Top 10 Most-Changed Meters
+ +
+
+ + + +
+ +
+
+
+ + + + diff --git a/docs/archive/ui/config-drift.html b/docs/archive/ui/config-drift.html new file mode 100644 index 0000000..4b0fd0a --- /dev/null +++ b/docs/archive/ui/config-drift.html @@ -0,0 +1,402 @@ + + + + + +Configuration Drift — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ +
+ Scan Date: + + + + + + + + + +
+ + +
+
+
Total Meters Scanned
+
8,540
+
Last scan: Apr 21, 2026
+
+
+
+
Compliant
+
8,128
+
95.2% match baseline
+
▲ 0.3% vs last scan
+
+
+
+
Drifted Meters
+
412
+
4.8% deviation
+
▲ 18 vs last scan
+
+
+
+
Critical Drift
+
35
+
Security / Auth params
+
+
+
+
Total Deviations
+
628
+
Avg 1.5 per drifted meter
+
+
+
+ + +
+
+
Monthly Drift Trend (Drifted Meters vs Compliant)
+ +
+
+
+
+
Deviations by Parameter Type
+ +
+
+
Deviations by Severity
+ +
+
+
+
+
Drift by Meter Model / Group
+ +
+
+
Top 10 Most-Drifted Meters
+ +
+
+ + + +
+ +
+
+
+ + + + diff --git a/docs/archive/ui/daily-comm-statistics.html b/docs/archive/ui/daily-comm-statistics.html new file mode 100644 index 0000000..85ce3e6 --- /dev/null +++ b/docs/archive/ui/daily-comm-statistics.html @@ -0,0 +1,585 @@ + + + + + +Daily Communication Statistics Monitoring — Report + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Installation ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + VEE ▾ + Report ▾ + + 22/04/2026 10:15:32 + Online: 118 +
+ +
+ + + + +
+
+ + + +
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ + +
+ + + + + + + Report Date: Apr 21, 2026  |  Auto-generated daily at 01:00 +
+ + +
+
+
Total Comm Attempts (Today)
+
7,002
+
6,631 success + 371 failed
+
▲ 0.3% vs yesterday
+
+
+
+
Success Rate
+
94.7%
+
Target: ≥ 95%
+
▼ 0.1% vs yesterday (94.8%)
+
+
+
+
Total Retries
+
1,248
+
Avg 1.8 retries per failed attempt
+
▲ 52 vs yesterday
+
+
+
+
Devices Needing Attention
+
83
+
Failed ≥ 3 times or retry ≥ 5
+
▲ 7 vs yesterday
+
+
+
+ + +
+
+
7-Day Communication Success Rate Trend (today highlighted)
+ +
+
+ + +
+
+
Today — Failure Reason Breakdown
+ +
+
+
Today — Success Rate by Region
+ +
+
+
Today — Success Rate by Comm Technology
+ +
+
+
Today — Top 10 Worst DCU / TR
+ +
+
+ + + + + + + + + +
DateTotal AttemptsSuccessFailedSuccess RateRetriesTimeoutProtocol ErrDevice OfflineSignal WeakOthervs Prev Day
+ + + +
+ + + + + +
+
+ + +
+
+
+ + + + diff --git a/docs/archive/ui/data-validation-rejection.html b/docs/archive/ui/data-validation-rejection.html new file mode 100644 index 0000000..75c734f --- /dev/null +++ b/docs/archive/ui/data-validation-rejection.html @@ -0,0 +1,517 @@ + + + + + +Data Validation / Rejection Summary — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 22/04/2026 09:44:18Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ + +
+ Month: + + + + + + + +
+ + +
+
+
Total Records Validated
+
2,184,600
+
Apr 2026 — all meters
+
+
+
+
Passed Validation
+
2,121,480
+
97.1% pass rate
+
▲ +0.4% vs Mar 2026
+
+
+
+
Total Rejected
+
63,120
+
2.9% rejection rate
+
▼ improved vs Mar 2026
+
+
+
+
Affected Meters
+
1,248
+
14.6% of fleet
+
+
+
+
Systematic Problem Meters
+
87
+
>10% rejection rate
+
▲ 12 vs Mar 2026
+
+
+
+ + +
+
+
Rejection by Reason
+ +
+
+
Rejection Rate by Model
+ +
+
+ + +
+
+
Monthly Rejection Rate Trend (Last 6 Months)
+ +
+
+ + +
+
+
Rejection Count by Area
+ +
+
+
Daily Rejection Volume — Apr 2026
+ +
+
+ + + +
+ + + +
+ +
+
+
+ + +
+
+
+ Meter Detail + +
+
+
+ + + + diff --git a/docs/archive/ui/device-health-model.html b/docs/archive/ui/device-health-model.html new file mode 100644 index 0000000..0f21de1 --- /dev/null +++ b/docs/archive/ui/device-health-model.html @@ -0,0 +1,381 @@ + + + + + +Device Health (by Model) — Reporting + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ +
+ +
+ Month: + + + + + + + +
+ + +
+
Meter Models Tracked
5
Across 5 firmware versions
+
Fleet Health Score
92.4
Weighted composite (0–100)
▲ 0.8 vs Mar
+
Models at "Alert"
1
KFM-S100 v2.1.0
+
Avg Comm Failure Rate
3.8%
Fleet average
▼ 0.4% vs Mar
+
Avg Data Quality
99.1%
Valid reads / total reads
+
+ + +
+
Health Score by Model × Firmware — Comparative View
+
+
+
Comm Failure Rate by Model
+
Event Rate by Model (events/meter/month)
+
+
+
Data Quality by Model
+
Health Score Trend (Last 6 Months)
+
+ + + + + + +
ModelFirmwareCountComm Fail %Event RateData QualityHealth ScoreStatusvs Last Month
+ + +
Watch & Alert Models — Root Cause Investigation
+ + +
+ + + + + + +
+
+ +
+
+
+ + + + diff --git a/docs/archive/ui/duplicate-invalid-read.html b/docs/archive/ui/duplicate-invalid-read.html new file mode 100644 index 0000000..ecbfb19 --- /dev/null +++ b/docs/archive/ui/duplicate-invalid-read.html @@ -0,0 +1,469 @@ + + + + + +Duplicate / Invalid Read — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ + +
+ +
+ Week: + + + + + + + +
+ + +
+
+
Total Flagged Records
+
1,847
+
Week 16 (Apr 14–20)
+
▼ 186 vs W15
+
+
+
+
Duplicate Records
+
842
+
45.6% of flagged
+
+
+
+
Invalid Timestamps
+
438
+
23.7% of flagged
+
+
+
+
Out-of-Range Values
+
362
+
19.6% of flagged
+
+
+
+
Affected Meters
+
218
+
2.6% of 8,540 fleet
+
▼ 14 vs W15
+
+
+
+ + +
+
+
Weekly Data Quality Trend — Flagged Records (Last 8 Weeks)
+ +
+
+
+
+
Issue Type Breakdown
+ +
+
+
Flagged Records by Area
+ +
+
+
+
+
Issue Type by Meter Group
+ +
+
+
Root Cause Analysis
+ +
+
+ + + + + + +
AreaTotal RecordsFlaggedDuplicateInvalid TSOut-of-RangeCorruptAffected MetersQuality Rate
+ + +
+ + Flagged Record Detail — Investigation + +
+ + +
+ + + + + + +
+ +
+ +
+
+
+ + + + diff --git a/docs/archive/ui/firmware-distribution.html b/docs/archive/ui/firmware-distribution.html new file mode 100644 index 0000000..3dadc04 --- /dev/null +++ b/docs/archive/ui/firmware-distribution.html @@ -0,0 +1,346 @@ + + + + + +Firmware Version Distribution — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+
+ Snapshot: + + + + + + + +
+ + +
+
+
Total Meters
+
8,540
+
Across all models
+
+
+
+
Latest Firmware
+
6,280
+
73.5% of fleet
+
▲ 320 vs last month
+
+
+
+
Supported (N-1)
+
1,420
+
16.6% of fleet
+
+
+
+
Outdated (N-2+)
+
680
+
8.0% — upgrade needed
+
+
+
+
Vulnerable
+
160
+
1.9% — critical risk
+
▲ 12 vs last month
+
+
+
+ + +
+
+
Firmware Version Distribution (All Models)
+ +
+
+
Version Status Breakdown
+ +
+
+
+
+
Firmware Distribution by Model
+ +
+
+
+
+
Firmware Distribution by Area
+ +
+
+
Monthly Upgrade Progress
+ +
+
+ + + +
+
+
+
+ + + + diff --git a/docs/archive/ui/firmware-upgrade-campaign.html b/docs/archive/ui/firmware-upgrade-campaign.html new file mode 100644 index 0000000..54f73ac --- /dev/null +++ b/docs/archive/ui/firmware-upgrade-campaign.html @@ -0,0 +1,398 @@ + + + + + +Firmware Upgrade Success / Failure — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+
Campaign Dashboard
+
Per-Meter Detail
+
+ + +
+
+ + + + + + + + +
+ + + +
+
+
Target Meters
+
1,200
+
KAIFA-1PH Sharjah-E
+
+
+
+
Upgraded
+
1,048
+
87.3% complete
+
+
+
+
Failed
+
68
+
5.7% failure rate
+
+
+
+
Pending / Retry
+
72
+
Scheduled for retry
+
+
+
+
Rollback
+
12
+
Reverted to prev version
+
+
+
+ + +
+
+
Campaign Progress Over Time (OTA-2026-004)
+ +
+
+
+
+
Execution Result Distribution
+ +
+
+
Failure Reason Breakdown
+ +
+
+ + + +
+
+ + + +
+
+ + + + diff --git a/docs/archive/ui/firmware-upgrade-success-failure.html b/docs/archive/ui/firmware-upgrade-success-failure.html new file mode 100644 index 0000000..9e57bb1 --- /dev/null +++ b/docs/archive/ui/firmware-upgrade-success-failure.html @@ -0,0 +1,577 @@ + + + + + +Firmware Upgrade Success / Failure — Reporting + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Installation ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + VEE ▾ + Report ▾ + + 22/04/2026 10:22:05 + Online: 118 +
+ +
+ + + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ + +
+ + + + + + + + + + + +
+ + +
+
+
+ Campaign: FW-2026-04 + Firmware v3.2.1 → v3.2.1-patch2 + In Progress +
+
Started: 2026-04-15 08:00  |  Target: 8,540 meters  |  Est. Completion: 2026-04-24
+
+
+
+
+
+ 74% Complete +
+
+ ✔ Success: 5,840 + ✘ Failed: 482 + ↻ Pending Retry: 318 + ⟲ Rollback: 64 + ⏳ In Queue: 1,836 +
+
+ + +
+
+
Total Targeted
+
8,540
+
Meters in campaign
+
+
+
+
Success Rate
+
68.4%
+
5,840 meters upgraded
+
▲ +3.1% vs FW-2026-02
+
+
+
+
Failure Rate
+
5.6%
+
482 meters failed
+
▼ -1.4% vs FW-2026-02
+
+
+
+
Pending Retry
+
318
+
Scheduled for retry
+
+
+
+
Rollback Count
+
64
+
Reverted to previous FW
+
+
+
+
Avg Upgrade Time
+
4.2min
+
Per meter OTA duration
+
+
+
+ + +
+
+
+ Daily Upgrade Progress — FW-2026-04 Campaign + Success / Failed / Rollback per day +
+ +
+
+ + +
+
+
Failure Root Cause Breakdown
+ +
+
+
Success Rate by Area
+ +
+
+ + +
+
+
Success Rate by Meter Model
+ +
+
+
Campaign Comparison — Success Rate % + Last 4 campaigns +
+ +
+
+ + +
+ +
+ + + + +
+
+
+ +
+
+
+ + +
+
+
+ Meter Upgrade Detail + +
+
+
+ + + + diff --git a/docs/archive/ui/gis-comm-coverage-map.html b/docs/archive/ui/gis-comm-coverage-map.html new file mode 100644 index 0000000..9081631 --- /dev/null +++ b/docs/archive/ui/gis-comm-coverage-map.html @@ -0,0 +1,422 @@ + + + + + +GIS Integration - Communication Coverage Map + + + + + + +
+ +
+
+
+ +

Meter Communication Coverage Map

+
+
+ + + + + + + +
+
+
+
+ +
+
+
+
+
Total Meters
1,842
+
Communicating
1,586
+
Non-Communicating
168
+
Intermittent
88
+
Coverage Rate
86.1%
+
Weak Pockets
7
+
DCUs Online
24/26
+
Dispatched
5
+
+ +
+
Layers
+ + + +
+
+
Comm Status
+
Communicating
+
Non-Communicating
+
Intermittent
+
Comm Technology
+
RF Mesh
+
GPRS/Cellular
+
PLC
+
Infrastructure
+
D
DCU / Concentrator
+
Heatmap
+
Low → High coverage
+
+
+
+
+
+ Meter Details + +
+
+
+
+
+
+ + + + diff --git a/docs/archive/ui/gis-consumption-outlier-map.html b/docs/archive/ui/gis-consumption-outlier-map.html new file mode 100644 index 0000000..dce7d9e --- /dev/null +++ b/docs/archive/ui/gis-consumption-outlier-map.html @@ -0,0 +1,387 @@ + + + + + +GIS Integration - Consumption Outlier Map + + + + + + +
+ +
+
+
+ +

Consumption Outlier Map

+
+
+ + + + +
+
+
+
+ +
+
+
+
+
Meters Analyzed
1,842
+
Outliers Detected
127
+
Extreme (>5x)
18
+
High (3–5x)
42
+
Moderate (2–3x)
67
+
Above Avg
85
+
Below Avg
42
+
Investigated
31
+
+
+
Deviation Level
+
Extreme (>5x neighbor avg)
+
High (3–5x)
+
Moderate (2–3x)
+
Direction
+
Above average
+
Below average
+
Possible Cause
+
Suspected bypass/fault
+
+
+
+
+
+ Meter Details + +
+
+
+
+
+
+ + + + diff --git a/docs/archive/ui/gis-health-battery-map.html b/docs/archive/ui/gis-health-battery-map.html new file mode 100644 index 0000000..cc98cb2 --- /dev/null +++ b/docs/archive/ui/gis-health-battery-map.html @@ -0,0 +1,433 @@ + + + + + +GIS Integration - Health & Battery Map + + + + + + +
+ +
+
+
+ +

Meter Health / Battery Map

+
+
+ + + + +
+
+
+
+ +
+
+
+
+
Total Meters
1,842
+
Healthy
1,428
+
Warning
285
+
Critical
129
+
Battery Low
86
+
Aging (>8yr)
214
+
Replace Planned
42
+
Replaced (30d)
18
+
+ +
+ Time-lapse: + + Apr 2026 + + + Health degradation over 6 months +
+
+
Health Status
+
Healthy
+
Warning (degrading)
+
Critical (failing)
+
Battery Level
+
Good (>50%)
+
Medium (20–50%)
+
Low (<20%)
+
Aging
+
Aging device (>8 years)
+
+
+
+
+
+ Meter Details + +
+
+
+
+
+
+ + + + diff --git a/docs/archive/ui/gis-missing-read-area-map.html b/docs/archive/ui/gis-missing-read-area-map.html new file mode 100644 index 0000000..b1df2b9 --- /dev/null +++ b/docs/archive/ui/gis-missing-read-area-map.html @@ -0,0 +1,173 @@ + + + + + +GIS Integration - Missing Read Area Map + + + + + + +
+ +
+
+
+ +

Missing Reads by Area

+
+
+ + + +
+
+
+
+ +
+
+
+
+
Total Missing
1,247
+
Affected Areas
18
+
Critical Areas
4
+
High Areas
6
+
Field Visits Planned
8
+
Routes Optimized
5
+
WO Dispatched
12
+
Recovery Rate
72%
+
+
+
Missing Read Density
+
Critical (>50 meters)
+
High (20–50)
+
Medium (5–20)
+
Low (<5)
+
Dispatch Status
+
Route dispatched
+
Pending dispatch
+
Cluster
+
Auto-grouped cluster
+
+
+
+
+
+ Area Details + +
+
+
+
+
+
+ + diff --git a/docs/archive/ui/gis-missing-read-cluster-map.html b/docs/archive/ui/gis-missing-read-cluster-map.html new file mode 100644 index 0000000..0498be2 --- /dev/null +++ b/docs/archive/ui/gis-missing-read-cluster-map.html @@ -0,0 +1,453 @@ + + + + + +GIS Integration - Missing Read Cluster Map + + + + + + +
+ +
+
+
+ +

Missing Read Cluster Map

+
+
+ + + +
+
+
+
+ +
+
+
+
+
Total Missing
1,247
+
Critical (>48h)
312
+
Warning (>24h)
485
+
Minor (>12h)
450
+
Clusters
18
+
Dispatched
9
+
Unhandled
3
+
Processing
4
+
Completed
2
+
+ +
+
Work Order Status
+
Undispatched
+
Unhandled
+
Processing
+
Completed
+
+
+
+
+
+ Device Details + +
+
+
+
+
+
+ + + + diff --git a/docs/archive/ui/gis-overload-pattern-map.html b/docs/archive/ui/gis-overload-pattern-map.html new file mode 100644 index 0000000..e143c29 --- /dev/null +++ b/docs/archive/ui/gis-overload-pattern-map.html @@ -0,0 +1,421 @@ + + + + + +GIS Integration - Overload Pattern Map + + + + + + +
+ +
+
+
+ +

Overload Pattern Map

+
+
+ + + + +
+
+
+
+ +
+
+
+
+
Monitored Assets
48
+
Critical (>120%)
6
+
High (100–120%)
9
+
Moderate (80–100%)
14
+
Normal (<80%)
19
+
Overload Events (30d)
218
+
Upgrade Planned
4
+
Load Redistributed
2
+
+
+
Load Level
+
Critical (>120% rated)
+
High (100–120%)
+
Moderate (80–100%)
+
Normal (<80%)
+
Asset Type
+
Transformer
+
Feeder
+
Recurrence
+
Frequent overload
+
+
+
+
+
+ Asset Details + +
+
+
+
+
+
+ + + + diff --git a/docs/archive/ui/gis-phase-imbalance-map.html b/docs/archive/ui/gis-phase-imbalance-map.html new file mode 100644 index 0000000..e60f513 --- /dev/null +++ b/docs/archive/ui/gis-phase-imbalance-map.html @@ -0,0 +1,427 @@ + + + + + +GIS Integration - Phase Imbalance Map + + + + + + +
+ +
+
+
+ +

Phase Imbalance Map

+
+
+ + + +
+
+
+
+ +
+
+
+
+
DT Areas Monitored
42
+
Severe (>30%)
5
+
Significant (15–30%)
8
+
Moderate (5–15%)
12
+
Balanced (<5%)
17
+
Avg Imbalance
14.2%
+
Est. Tech Loss (kWh)
8,420
+
Rebalance Planned
3
+
+
+
Imbalance Severity
+
Severe (>30%)
+
Significant (15–30%)
+
Moderate (5–15%)
+
Balanced (<5%)
+
Phase Load
+
Phase A
+
Phase B
+
Phase C
+
+
+
+
+
+ DT Area Details + +
+
+
+
+
+
+ + + + diff --git a/docs/archive/ui/gis-power-quality-hotspot-map.html b/docs/archive/ui/gis-power-quality-hotspot-map.html new file mode 100644 index 0000000..2830501 --- /dev/null +++ b/docs/archive/ui/gis-power-quality-hotspot-map.html @@ -0,0 +1,444 @@ + + + + + +GIS Integration - Power Quality Hotspot Map + + + + + + +
+ +
+
+
+ +

Power Quality Hotspot Map

+
+
+ + + + +
+
+
+
+ +
+
+
+
+
PQ Events (30d)
1,842
+
Over-Voltage
523
+
Under-Voltage
412
+
Freq Deviation
318
+
Harmonic
589
+
Hotspots
14
+
Dispatched
8
+
Completed
3
+
+
+
Hotspot Level
+
Critical (recurring, multi-type)
+
Recurring (same type, >5x)
+
Moderate (3–5 events)
+
Low (<3 events)
+
PQ Event Type
+
Over-Voltage
+
Under-Voltage
+
Frequency Deviation
+
Harmonic Distortion
+
Recurrence
+
Recurring hotspot ring
+
+
+
+
+
+ Device Details + +
+
+
+
+
+
+ + + + + + diff --git a/docs/archive/ui/gis-reverse-power-flow-map.html b/docs/archive/ui/gis-reverse-power-flow-map.html new file mode 100644 index 0000000..3792c10 --- /dev/null +++ b/docs/archive/ui/gis-reverse-power-flow-map.html @@ -0,0 +1,457 @@ + + + + + +GIS Integration - Reverse Power Flow Map + + + + + + +
+ +
+
+
+ +

Reverse Power Flow Map

+
+
+ + + + +
+
+
+
+ +
+
+
+
+
RPF Events (30d)
386
+
High Stress
78
+
Medium Stress
142
+
Low Stress
166
+
DER Meters
52
+
Avg Injection (kW)
4.8
+
Peak Injection (kW)
18.6
+
Faulty Config
7
+
+
+
Grid Stress Level
+
🔴
High (frequent RPF, >10kW)
+
🟠
Medium (occasional RPF)
+
🟢
Low (rare RPF)
+
DER Type
+
Solar PV
+
🌀
Wind
+
🔋
Battery Storage
+
Config Status
+
Faulty Inverter Config
+
Normal
+
+
+
+
+
+ Device Details + +
+
+
+
+
+
+ + + + + + diff --git a/docs/archive/ui/gis-tamper-pattern-map.html b/docs/archive/ui/gis-tamper-pattern-map.html new file mode 100644 index 0000000..05f747d --- /dev/null +++ b/docs/archive/ui/gis-tamper-pattern-map.html @@ -0,0 +1,460 @@ + + + + + +GIS Integration - Tamper Pattern Map + + + + + + +
+ +
+
+
+ +

Tamper / Theft Pattern Map

+
+
+ + + + +
+
+
+
+ +
+
+
+
+
Tamper Events (30d)
634
+
Neutral Missing
185
+
Cover Open
148
+
Magnetic
112
+
Consumption Drop
189
+
High-Risk Pockets
11
+
Inspections Dispatched
7
+
Confirmed Theft
4
+
+
+
Risk Level
+
Critical (organized pattern)
+
High (multi-type tamper)
+
Medium (repeated events)
+
Low (isolated event)
+
Tamper Type
+
Neutral Missing
+
Terminal Cover Open
+
Magnetic Influence
+
Consumption Drop
+
Pattern
+
Organized theft cluster
+
+
+
+
+
+ Device Details + +
+
+
+
+
+
+ + + + diff --git a/docs/archive/ui/gis-voltage-issue-map.html b/docs/archive/ui/gis-voltage-issue-map.html new file mode 100644 index 0000000..cb37dc1 --- /dev/null +++ b/docs/archive/ui/gis-voltage-issue-map.html @@ -0,0 +1,417 @@ + + + + + +GIS Integration - Voltage Issue Map + + + + + + +
+ +
+
+
+ +

Voltage Issue Map

+
+
+ + + + + +
+
+
+
+ +
+
+
+
+
Voltage Events (30d)
2,156
+
Over-Voltage
842
+
Under-Voltage
756
+
Fluctuation
558
+
Problem Zones
16
+
Persistent Issues
9
+
Affected Meters
284
+
Dispatched
6
+
+
+
Voltage Issue Type
+
Over-Voltage (>+10%)
+
Under-Voltage (<-10%)
+
Sustained Fluctuation
+
Persistence
+
Critical (continuous)
+
Persistent (daily)
+
Recurring
+
Root Cause
+
Overloaded DT
+
Undersized cable
+
Phase imbalance
+
+
+
+
+
+ Meter Details + +
+
+
+
+
+
+ + + + diff --git a/docs/archive/ui/index.html b/docs/archive/ui/index.html new file mode 100644 index 0000000..e769d56 --- /dev/null +++ b/docs/archive/ui/index.html @@ -0,0 +1,343 @@ + + + + + +KAIFA HES — Use Case & Reporting Prototypes + + + + + +
+ + Use Case Realization & Reporting Solution — SEWA AMI + + UI Prototype Index +
+ +
+ + + + +
+ + +
+
📊
+
KAIFA HES Prototype Library
+
Select a use case or report from the left panel to preview
+
+ +
+ +
+
+
+ + + + diff --git a/docs/archive/ui/interval-consumption-trend.html b/docs/archive/ui/interval-consumption-trend.html new file mode 100644 index 0000000..387027c --- /dev/null +++ b/docs/archive/ui/interval-consumption-trend.html @@ -0,0 +1,501 @@ + + + + + +Interval Consumption Trend — Reporting + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Installation ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + VEE ▾ + Report ▾ + + 22/04/2026 10:22:05 + Online: 118 +
+ +
+ + + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ + +
+ + + + + + + + + + + + + + + +
+ + +
+
+
Total Consumption (Apr)
+
48.6 GWh
+
All meters — electricity
+
▲ +6.2% vs Mar 2026
+
+
+
+
Avg Daily Consumption
+
2.21 GWh
+
Per day this month
+
▲ +5.8% vs Mar 2026
+
+
+
+
Peak Demand
+
3.84 GWh
+
Apr 18 — 14:00–15:00
+
▲ +8.1% vs Mar peak
+
+
+
+
Peak / Off-Peak Ratio
+
1.74
+
Peak 63.5% / Off-peak 36.5%
+
+
+
+
Load Factor
+
57.5%
+
Avg / Peak ratio
+
▼ -1.2% vs Mar 2026
+
+
+
+ + +
+
+
+ Weekly Consumption Trend — Jan to Apr 2026 + vs Same Period Last Year +
+ +
+
+ + +
+
+
Avg Daily Load Profile (15-min intervals)
+ +
+
+
Peak vs Off-Peak by Week
+ +
+
+ + +
+
+
Consumption by Area — Apr 2026
+ +
+
+
Consumption by Model — Apr 2026
+ +
+
+ + + +
+ +
+
+
+ + +
+
+
+ Area Detail + +
+
+
+ + + + diff --git a/docs/archive/ui/low-no-consumption.html b/docs/archive/ui/low-no-consumption.html new file mode 100644 index 0000000..6db7c0c --- /dev/null +++ b/docs/archive/ui/low-no-consumption.html @@ -0,0 +1,510 @@ + + + + + +Low / No Consumption — Reporting + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Installation ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + VEE ▾ + Report ▾ + + 22/04/2026 11:05:40 + Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ + +
+ + + + + + + + + + +
+ + +
+
+
Zero Consumption Meters
+
312
+
3.7% of fleet
+
▲ +18 vs last week
+
+
+
+
Low Consumption Meters
+
486
+
<20% of historical baseline
+
▲ +24 vs last week
+
+
+
+
Potential Theft / Bypass
+
47
+
Pattern-flagged meters
+
▲ +6 vs last week
+
+
+
+
Likely Vacancy
+
218
+
Consistent zero > 4 weeks
+
+
+
+
Malfunction Suspected
+
133
+
Comm OK but zero read
+
+
+
+ + +
+
+
+ Weekly Low/No Consumption Trend — Last 12 Weeks + Zero vs Low vs Potential Theft +
+ +
+
+ + +
+
+
Classification Breakdown
+ +
+
+
Duration Distribution
+ +
+
+ + +
+
+
Affected Meters by Area
+ +
+
+
Affected Meters by Model
+ +
+
+ + + +
+ +
+
+
+ + +
+
+
+ Meter Detail + +
+
+
+ + + + diff --git a/docs/archive/ui/meter-event-summary.html b/docs/archive/ui/meter-event-summary.html new file mode 100644 index 0000000..9c5e596 --- /dev/null +++ b/docs/archive/ui/meter-event-summary.html @@ -0,0 +1,473 @@ + + + + + +Meter Event Summary — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+
Event Overview
+
Event Detail
+
+ + +
+
+ Date: + + + + + + + +
+ + +
+
+
Total Events Today
+
1,247
+
Apr 21, 2026
+
▲ 83 vs yesterday
+
+
+
+
Critical Events
+
42
+
3.4% of total
+
▲ 8 vs yesterday
+
+
+
+
Affected Meters
+
386
+
4.5% of fleet
+
▲ 22 vs yesterday
+
+
+
+
Voltage Events
+
412
+
33.0% of total
+
+
+
+
Tamper Events
+
185
+
14.8% of total
+
+
+
+ + +
+
+
Daily Event Trend by Type (Last 14 Days)
+ +
+
+
+
+
Event Type Distribution (Today)
+ +
+
+
Severity Distribution (Today)
+ +
+
+
+
+
Top 10 Most-Affected Meters
+ +
+
+
Events by Hour (Today)
+ +
+
+ + + + + + +
Event TypeTotalCriticalMajorMinorInfoAffected Meters% of Total
+
+ + + +
+
+ + + + diff --git a/docs/archive/ui/meter-failure-trend.html b/docs/archive/ui/meter-failure-trend.html new file mode 100644 index 0000000..70335a4 --- /dev/null +++ b/docs/archive/ui/meter-failure-trend.html @@ -0,0 +1,363 @@ + + + + + +Meter Failure Trend — Reporting + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ +
+ +
+ Quarter: + + + + + + + +
+ + +
+
Total Failures (Q1 2026)
312
3.65% failure rate
▼ 28 vs Q4 2025
+
Fleet MTBF
2,468 h
Mean Time Between Failures
▲ 142h vs Q4
+
Top Failure Mode
Comm Loss
38.1% of all failures
+
Worst Model
KFM-S100
5.8% failure rate
+
Overall Trend
Improving ↗
4 of 5 models improving
+
+ + +
+
Quarterly Failure Rate Trend — All Models (Last 8 Quarters)
+
+
+
Failure Mode Breakdown (Q1 2026)
+
Failure Rate by Model — Q4 vs Q1
+
+
+
MTBF by Model (Last 4 Quarters)
+
Failure Rate by Area (Q1 2026)
+
+ + + + + + +
ModelFleetQ2 2025Q3 2025Q4 2025Q1 2026MTBF (h)TrendTop Failure Mode
+ + +
Failed Meter Detail — Q1 2026
+ + +
+ + + + + + + +
+
+ +
+
+
+ + + + diff --git a/docs/archive/ui/meter-time-drift.html b/docs/archive/ui/meter-time-drift.html new file mode 100644 index 0000000..b916ec8 --- /dev/null +++ b/docs/archive/ui/meter-time-drift.html @@ -0,0 +1,378 @@ + + + + + +Meter Time Drift — Reporting + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ +
+ +
+ Period: + + + + + + + +
+ + +
+
Total Meters Checked
8,540
W16 (Apr 14–20)
+
< 2s (Normal)
7,682
89.9% — within tolerance
+
2–10s (Minor)
524
6.1% — monitor
+
10–60s (Warning)
268
3.1% — schedule sync
▲ 12 vs W15
+
> 60s (Critical)
66
0.8% — immediate sync
▲ 4 vs W15
+
+ + +
+
Time Drift Severity Trend (Last 8 Weeks)
+
+
+
Drift Severity Distribution
+
Drift Magnitude Histogram
+
+
+
Warning & Critical by Area
+
Drift by Meter Group
+
+ + + + + + +
AreaMeters< 2s2–10s10–60s> 60sAvg DriftMax DriftSync Needed
+ + +
Meters Exceeding Drift Threshold (≥ 10s) — Sync Required
+ + +
+ + + + + + + +
+
+ +
+
+
+ + + + diff --git a/docs/archive/ui/non-comm-devices.html b/docs/archive/ui/non-comm-devices.html new file mode 100644 index 0000000..161d4d6 --- /dev/null +++ b/docs/archive/ui/non-comm-devices.html @@ -0,0 +1,502 @@ + + + + + +Non-Communicating / Inactive / Powered Off Devices — Network + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Installation ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + VEE ▾ + Report ▾ + + 22/04/2026 10:32:18 + Online: 118 +
+ +
+ + + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ + +
+ + + + + + + + + Scan Time: Apr 22, 2026 01:00  |  Threshold: 24h +
+ + +
+
+
Total Non-Comm Devices
+
347
+
of 7,002 registered (5.0%)
+
▲ 12 vs yesterday (335)
+
+
+
+
24h – 48h
+
142
+
Likely transient issues
+
▼ 8 vs yesterday
+
+
+
+
2d – 7d
+
98
+
Needs investigation
+
▲ 11 vs yesterday
+
+
+
+
7d – 30d
+
72
+
Field action required
+
▲ 5 vs yesterday
+
+
+
+
30d+
+
35
+
Long-term blind meters
+
▲ 4 vs yesterday
+
+
+
+ + +
+
+
Non-Comm Count by Aging Bucket
+ +
+
+
Non-Comm Count by Region
+ +
+
+
Status Classification
+ +
+
+
7-Day Non-Comm Trend (growing or shrinking?)
+ +
+
+ + + +
+ + +
+
+
+ + + + diff --git a/docs/archive/ui/ondemand-history.html b/docs/archive/ui/ondemand-history.html new file mode 100644 index 0000000..6c30c6b --- /dev/null +++ b/docs/archive/ui/ondemand-history.html @@ -0,0 +1,285 @@ + + + + + +On Demand - History + + + + +
+ + + + +
+ +
+
Config
+
History
+
+ + + + + +
+ +
+ + + + + + +
+ + +
+ + + +
+
+
+ + + + diff --git a/docs/archive/ui/open-alarms.html b/docs/archive/ui/open-alarms.html new file mode 100644 index 0000000..7ff32e5 --- /dev/null +++ b/docs/archive/ui/open-alarms.html @@ -0,0 +1,435 @@ + + + + + +Open / Unacknowledged Alarms — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+
Overview
+
Alarm List
+
+ + +
+
+ + + + + + + +
+ + +
+
+
Total Open Alarms
+
238
+
Pending + Unacknowledged
+
▲ 15 vs yesterday
+
+
+
+
Critical Open
+
18
+
Requires immediate action
+
▲ 5 vs yesterday
+
+
+
+
SLA Breached
+
32
+
13.4% of open alarms
+
▲ 8 vs yesterday
+
+
+
+
Avg Open Age
+
4.2h
+
Median: 2.8h
+
▲ 0.5h vs yesterday
+
+
+
+
Oldest Open Alarm
+
38h
+
Critical — Tamper
+
+
+
+ + +
+
+
Open Alarms by Severity
+ +
+
+
Open Alarms by Type
+ +
+
+
+
+
Aging Distribution (Hours Open)
+ +
+
+
SLA Status Breakdown
+ +
+
+ + + + + + +
TypeCriticalMajorMinorInfoTotalSLA Breached
+
+ + + +
+
+ + + + diff --git a/docs/archive/ui/partial-gapped-interval.html b/docs/archive/ui/partial-gapped-interval.html new file mode 100644 index 0000000..c6cb6ec --- /dev/null +++ b/docs/archive/ui/partial-gapped-interval.html @@ -0,0 +1,482 @@ + + + + + +Partial / Gapped Interval Data — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ + +
+ +
+ Week: + + + + + + + + +
+ + +
+
+
Meters with Gaps
+
486
+
5.7% of 8,540 meters
+
▼ 32 vs last week
+
+
+
+
Total Missing Intervals
+
12,438
+
Week 16 (Apr 14–20)
+
▼ 1,240 vs W15
+
+
+
+
Systematic Gaps
+
142
+
29.2% of gapped meters
+
+
+
+
Avg Gap Duration
+
6.8h
+
Per affected meter
+
▼ 0.4h vs W15
+
+
+
+
Multi-Day Gaps
+
38
+
≥ 2 consecutive days
+
▼ 5 vs W15
+
+
+
+ + +
+
+
Weekly Gap Trend — Affected Meters & Missing Intervals (Last 8 Weeks)
+ +
+
+
+
+
Gap Type Distribution
+ +
+
+
Gap Pattern: Systematic vs Random
+ +
+
+
+
+
Gapped Meters by Area
+ +
+
+
Root Cause Breakdown
+ +
+
+ + + + + + +
AreaTotal MetersGapped% AffectedMissing IntervalsSystematicRandomAvg Duration
+ + +
+ + Affected Meter Detail — Gap Investigation + +
+ + +
+ + + + + + + +
+ +
+ +
+
+
+ + + + diff --git a/docs/archive/ui/read-completeness.html b/docs/archive/ui/read-completeness.html new file mode 100644 index 0000000..8f8479f --- /dev/null +++ b/docs/archive/ui/read-completeness.html @@ -0,0 +1,487 @@ + + + + + +Read Completeness Report — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ + +
+ +
+ Period: + + + + + + + + +
+ + +
+
+
System-Wide Completeness
+
98.4%
+
Apr 2026 (MTD)
+
▲ 0.2% vs Mar
+
+
+
+
Total Meters
+
8,540
+
Active electricity meters
+
+
+
+
Expected Intervals
+
17,174,160
+
Apr 1–21 (billing + LP + hourly)
+
+
+
+
Missing Intervals
+
274,787
+
1.6% gap rate
+
▼ 0.2% vs Mar
+
+
+
+
Meters Below SLA (< 98%)
+
412
+
4.8% of fleet
+
▼ 23 vs Mar
+
+
+
+ + +
+
+
Monthly Completeness Trend (Last 6 Months)
+ +
+
+
+
+
Completeness Distribution (Meter Count by % Band)
+ +
+
+
Completeness by Area
+ +
+
+
+
+
Completeness by Meter Group
+ +
+
+
Gap Reason Breakdown
+ +
+
+ + + + + + +
AreaMetersExpectedReceivedMissingCompletenessvs SLAStatus
+ + +
+ + Meters Below SLA Threshold (< 98%) + +
+ + +
+ + + + + + + +
+ + +
+ +
+
+
+ + + + diff --git a/docs/archive/ui/report27-meter-customer-mapping.html b/docs/archive/ui/report27-meter-customer-mapping.html new file mode 100644 index 0000000..d3ccfce --- /dev/null +++ b/docs/archive/ui/report27-meter-customer-mapping.html @@ -0,0 +1,551 @@ + + + + + +Report 27 — Meter–Customer Mapping + + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + Report ▾ + + 22/04/2026 10:32:18 + Online: 118 +
+ +
+ + + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ + +
+ + + + + + + + + + HES snapshot: 2026-03-31 23:59  |  + SAP CIS snapshot: 2026-03-31 23:55 + +
+ + +
+
+
Total Meters (HES)
+
48,320
+
Active in HES this period
+
+
+
+
Orphaned Meters
+
142
+
No matching customer in CIS
+
+
+
+
Unmapped Premises
+
87
+
CIS premise with no HES meter
+
+
+
+
Mapping Conflicts
+
34
+
HES ≠ SAP CIS assignment
+
+
+
+
Resolved This Period
+
18
+
Corrections applied
+
+
+
+ + +
+
+
Discrepancy Breakdown
+ +
+
+
Discrepancies by Region
+ +
+
+
Resolution Status
+ +
+
+
Monthly Trend (Discrepancies Detected)
+ +
+
+ + +
+
All (263)
+
Orphaned Meters (142)
+
Unmapped Premises (87)
+
Mapping Conflicts (34)
+
Resolved (18)
+
+ + +
+ + + + + +
+
+
+ + + + diff --git a/docs/archive/ui/report28-asset-data-mismatch.html b/docs/archive/ui/report28-asset-data-mismatch.html new file mode 100644 index 0000000..abdf283 --- /dev/null +++ b/docs/archive/ui/report28-asset-data-mismatch.html @@ -0,0 +1,672 @@ + + + + + +Report 28 — Asset Data Mismatch + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + Report ▾ + + 22/04/2026 10:32:18 + Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ +
+
+ + +
+ + + + + + + + + + + Last scan: 2026-04-01 02:00 UTC + +
+ + +
+
+
Total Mismatches
+
318
+
Across 312 meters
+
+
+
+
Critical
+
42
+
Possible unauthorized swap
+
+
+
+
High
+
98
+
Serial / model mismatch
+
+
+
+
Medium
+
124
+
Config / firmware drift
+
+
+
+
Low
+
54
+
Minor status differences
+
+
+
+ + +
+
+
Mismatches by Field Type
+ +
+
+
Severity Distribution
+ +
+
+
Top 6 Regions by Mismatch Count
+ +
+
+
Monthly Trend
+ +
+
+ + +
+
All (318)
+
Serial No. (85)
+
Model (62)
+
Status (71)
+
Configuration (58)
+
Firmware (42)
+
+ + +
+ + + + + +
+
+
+ + + + diff --git a/docs/archive/ui/report29-rogue-duplicate-meter.html b/docs/archive/ui/report29-rogue-duplicate-meter.html new file mode 100644 index 0000000..f88fae6 --- /dev/null +++ b/docs/archive/ui/report29-rogue-duplicate-meter.html @@ -0,0 +1,662 @@ + + + + + +Report 29 — Rogue / Duplicate Meter + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + Report ▾ + + 22/04/2026 10:32:18 + Online: 118 +
+ +
+ + + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ + +
+ + 3 new rogue meter alerts detected in the last 24 hours — immediate security team investigation required. + +
+ + +
+ + + + + + + + + + Last scan: 2026-04-01 02:00 UTC +
+ + +
+
+
Total Detections
+
47
+
This period
+
+
+
+
Cloned Serial
+
12
+
Same serial, diff location
+
+
+
+
Unauthorized Meter
+
18
+
Not in authorized registry
+
+
+
+
Decommissioned Reconnect
+
11
+
Retired meter back online
+
+
+
+
Duplicate Serial
+
6
+
Same serial, multiple entries
+
+
+
+ + +
+
+
Detection Type Breakdown
+ +
+
+
Detections by Region
+ +
+
+
Investigation Status
+ +
+
+
Monthly Detection Trend
+ +
+
+ + +
+
All (47)
+
Cloned Serial (12)
+
Unauthorized (18)
+
Decom. Reconnect (11)
+
Duplicate (6)
+
+ + +
+ + + + + +
+
+
+ + + + diff --git a/docs/archive/ui/report34-mimo-completion.html b/docs/archive/ui/report34-mimo-completion.html new file mode 100644 index 0000000..df63910 --- /dev/null +++ b/docs/archive/ui/report34-mimo-completion.html @@ -0,0 +1,644 @@ + + + + + +Move-In / Move-Out Completion — Report 34 + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Installation ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + VEE ▾ + Report ▾ + + 22/04/2026 10:15:32 + Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ +
+ + +
+
+ + + + + + + + + Report Week: W16 — Apr 15–21, 2026  |  Generated: Mon 22 Apr 2026 01:00 +
+
+ +
+ + +
+
+
Total Requests (This Week)
+
184
+
112 Move-In + 72 Move-Out
+
▲ 12 vs last week
+
+
+
+
Completion Rate
+
94.6%
+
174 of 184 completed
+
▲ 1.2% vs last week
+
+
+
+
Final Read Captured
+
69 / 72
+
Move-Out final reads (95.8%)
+
▲ 0.8% vs last week
+
+
+
+
Initial Read Captured
+
108 / 112
+
Move-In initial reads (96.4%)
+
▲ 1.4% vs last week
+
+
+
+
Pending / Failed
+
10
+
7 Pending + 3 Failed
+
▼ 2 vs last week
+
+
+
+
Avg Processing Time
+
3.2h
+
Target: ≤ 4h
+
▼ 0.4h vs last week
+
+
+
+ + +
+
+
Weekly MIMO Request Volume & Completion Rate — Last 8 Weeks
+ +
+
+
+
+
This Week — Status Breakdown
+ +
+
+
This Week — Read Capture Rate by Type
+ +
+
+
Completion Rate by Area
+ +
+
+
Processing Time Distribution (Hours)
+ +
+
+ + +
+
Area Summary
+
Request List
+
Exceptions
+
+ + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + +
+
+ ⚠ 10 requests require attention — 7 Pending (read not yet captured) + 3 Failed (manual intervention required). +
+
+
+ +
+
+
+ + + + diff --git a/docs/archive/ui/report35-manual-vs-ami-read.html b/docs/archive/ui/report35-manual-vs-ami-read.html new file mode 100644 index 0000000..f0bc4ee --- /dev/null +++ b/docs/archive/ui/report35-manual-vs-ami-read.html @@ -0,0 +1,588 @@ + + + + + +Manual vs. AMI Read Comparison — Report 35 + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Installation ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + VEE ▾ + Report ▾ + + 22/04/2026 10:15:32 + Online: 118 +
+ +
+ + + + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ + +
+
+ + + + + + + + + + Report: Apr 2026  |  Generated: 01 May 2026 01:00 +
+
+ +
+ + +
+
+
Total Comparisons (Apr)
+
1,284
+
Meters with both manual & AMI reads
+
▲ 48 vs Mar
+
+
+
+
Within Threshold (< 5%)
+
1,198
+
93.3% of comparisons
+
▲ 0.4% vs Mar
+
+
+
+
Alert — Deviation > 5%
+
52
+
4.1% of comparisons
+
▲ 3 vs Mar
+
+
+
+
Warning — Deviation 1–5%
+
34
+
2.6% of comparisons
+
▼ 5 vs Mar
+
+
+
+
Avg Deviation (All)
+
0.82%
+
Median: 0.31%
+
▼ 0.06% vs Mar
+
+
+
+
Max Deviation
+
18.4%
+
Meter E-SHJ-0041823
+
Possible display error
+
+
+
+ + +
+
+
Monthly Deviation Rate Trend — Last 6 Months (% meters with deviation > threshold)
+ +
+
+
+
+
Deviation Distribution — Apr 2026 (Meter Count by % Band)
+ +
+
+
Alert Rate by Area
+ +
+
+
Alert Rate by Meter Type
+ +
+
+
Deviation Cause Classification (Alert Cases)
+ +
+
+ + +
+
Area Summary
+
Comparison List
+
Alerts (> 5%)
+
+ + +
+
+
+ + +
+
+ + + + + +
+
+ +
+ + +
+
+ ℹ Showing 52 meters with deviation > 5% (configurable threshold). Significant deviations may indicate meter display errors, communication data corruption, or field reading mistakes. +
+
+ +
+ +
+
+
+ + + + diff --git a/docs/archive/ui/report36-command-event-audit-log.html b/docs/archive/ui/report36-command-event-audit-log.html new file mode 100644 index 0000000..052388a --- /dev/null +++ b/docs/archive/ui/report36-command-event-audit-log.html @@ -0,0 +1,552 @@ + + + + + +Report 36 — Command & Event Audit Log + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + Report ▾ + + 22/04/2026 10:32:18 + Online: 118 +
+ +
+ + + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ + +
+ + to + + + + + + + + + +
+ + +
+
+
Total Commands
+
12,480
+
This period
+
+
+
+
Connect / Disconnect
+
3,210
+
Remote relay operations
+
+
+
+
Config Changes
+
1,840
+
Parameter updates
+
+
+
+
Firmware Upgrades
+
420
+
OTA push operations
+
+
+
+
On-Demand Reads
+
5,880
+
ODR triggered
+
+
+
+
Failed
+
348
+
2.8% failure rate
+
+
+
+ + +
+
+
Commands by Type
+ +
+
+
Result Distribution
+ +
+
+
Daily Command Volume (Last 30 Days)
+ +
+
+ + +
+
All (12,480)
+
Connect (1,820)
+
Disconnect (1,390)
+
Config (1,840)
+
Firmware (420)
+
ODR (5,880)
+
Time Sync (930)
+
+ + +
+ + +
+
+
+ + +
+
+
+
Audit Entry Detail
+ +
+
+
+ + + + diff --git a/docs/archive/ui/report37-read-lifecycle-audit.html b/docs/archive/ui/report37-read-lifecycle-audit.html new file mode 100644 index 0000000..ee3dd7e --- /dev/null +++ b/docs/archive/ui/report37-read-lifecycle-audit.html @@ -0,0 +1,605 @@ + + + + + +Report 37 — Read Lifecycle Audit + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + Report ▾ + + 22/04/2026 10:32:18 + Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ +
+
+ + +
+ + to + + + + + + + + + +
+ + +
+
+
Total Reads Initiated
+
284,120
+
This period
+
+
+
+
End-to-End Complete
+
271,480
+
95.5% delivery rate
+
+
+
+
Data Lost
+
6,840
+
Dropped in pipeline
+
+
+
+
Delayed (>15 min)
+
4,210
+
Processing lag detected
+
+
+
+
Transform Errors
+
1,590
+
MDMS / SAP failures
+
+
+
+ + +
+
Pipeline Stage Summary — Meter → DCU → HES → MDMS → SAP
+
+
+ + +
+
+
Loss Point by Stage
+ +
+
+
Avg. Stage Latency (minutes)
+ +
+
+
Daily Pipeline Completion Rate (%)
+ +
+
+ + +
+
All Reads
+
Data Lost (6,840)
+
Delayed (4,210)
+
Transform Error (1,590)
+
Pending (—)
+
+ + +
+ + +
+
+
+ + +
+
+
+
Read Lifecycle Trace
+ +
+
+
+ + + + diff --git a/docs/archive/ui/report38-regulatory-compliance.html b/docs/archive/ui/report38-regulatory-compliance.html new file mode 100644 index 0000000..e0320e4 --- /dev/null +++ b/docs/archive/ui/report38-regulatory-compliance.html @@ -0,0 +1,418 @@ + + + + + + +Report 38 — Regulatory Compliance Report + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + Report ▾ + + 22/04/2026 10:32:18 + Online: 118 +
+ +
+ + +
+
+ + +
+ + + + + + + + + Auto-scheduled: Monthly — 1st of each month 06:00 + +
+ + +
+
+
Overall Compliance Score
+
91.4%
+
▲ +1.2% vs last period
+
+
+
April 2026 — Regulatory Compliance Report
+
SEWA AMI HES · UAE TRA / SEWA Internal / IEC 62056 / ISO 27001
+
+ 22 Pass + 4 Warning + 2 Fail +
+
+
+
99.7%
System Availability
+
97.2%
Data Completeness
+
88.1%
SLA Achievement
+
0
Critical Incidents
+
+
+ + +
+
+
System Availability
+
99.7%
+
Target: ≥ 99.5%
+
+
+
+
Data Collection Completeness
+
97.2%
+
Target: ≥ 95%
+
+
+
+
SLA Achievement
+
88.1%
+
Target: ≥ 95%
+
+
+
+
Security Incidents
+
0
+
Critical / High severity
+
+
+
+
Data Retention Compliance
+
100%
+
7-year retention policy
+
+
+
+ + +
+
+
Compliance Score by Framework
+ +
+
+
Monthly Compliance Trend
+ +
+
+ + +
+ + +
+
+ 1. System Availability + PASS +
+
+
+ + +
+
+ 2. Data Collection Completeness + PASS +
+
+
+ + +
+
+ 3. SLA Achievement + WARNING +
+
+
+ + +
+
+ 4. Security Incident Summary + PASS +
+
+
+ + +
+
+ 5. Data Retention Compliance + PASS +
+
+
+ +
+ + + +
+ +
+
+
+ + + + diff --git a/docs/archive/ui/retry-analysis.html b/docs/archive/ui/retry-analysis.html new file mode 100644 index 0000000..d5890af --- /dev/null +++ b/docs/archive/ui/retry-analysis.html @@ -0,0 +1,481 @@ + + + + + +Retry Attempts & Recovery — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + + 21/04/2026 15:06:54 + Online: 118 +
+ +
+ + + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+
Summary
+
Device Retry Detail
+
+ + +
+ +
+ + + + + + + + + +
+ + +
+
+
Total Retries (4 weeks)
+
12,847
+
Across 3,210 devices
+
▲ 5.1% vs prev period
+
+
+
+
Retry Success Rate
+
78.3%
+
10,059 recovered
+
▲ 2.1% vs prev period
+
+
+
+
Avg Retries / Successful Read
+
1.8
+
Target: ≤ 2.0
+
▼ 0.2 improvement
+
+
+
+
Persistent Failure Devices
+
47
+
≥ 5 retries & still failed
+
▲ 8 vs prev period
+
+
+
+ + +
+
+
Weekly Retry Trend
+ +
+
+
+
+
Top 10 Devices — Most Retries
+ +
+
+
Retry Outcome Distribution
+ +
+
+ + + + + + + + + +
WeekTotal ReadsFirst-Attempt OKRetriedRetry SuccessRetry FailedRetry RateRecovery RateAvg Retries
+
+ + + +
+
+ + + + diff --git a/docs/archive/ui/reverse-energy-flow.html b/docs/archive/ui/reverse-energy-flow.html new file mode 100644 index 0000000..af02d9c --- /dev/null +++ b/docs/archive/ui/reverse-energy-flow.html @@ -0,0 +1,524 @@ + + + + + +Reverse Energy Flow Events — Reporting + + + + + +
+ + Dashboard + Device ▾ + Operation ▾ + Collection ▾ + Installation ▾ + Readings ▾ + Network ▾ + Exception ▾ + Master Data ▾ + VEE ▾ + Report ▾ + + 22/04/2026 11:38:14 + Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+
+ + +
+ + + + + + + + + + +
+ + +
+
+
Meters with Reverse Flow
+
284
+
3.3% of fleet — Apr 2026
+
▲ +22 vs Mar 2026
+
+
+
+
Total Reverse Energy
+
1,842 MWh
+
Injected back to grid
+
▲ +18.4% vs Mar 2026
+
+
+
+
Solar PV (Legitimate)
+
198
+
69.7% of reverse flow meters
+
+
+
+
Wiring Error Suspected
+
52
+
18.3% — field check needed
+
▲ +8 vs Mar 2026
+
+
+
+
Potential Fraud
+
34
+
12.0% — revenue risk
+
▲ +6 vs Mar 2026
+
+
+
+ + +
+
+
+ Daily Reverse Flow Events & Volume — Apr 2026 + Event count + MWh injected +
+ +
+
+ + +
+
+
Classification Breakdown
+ +
+
+
Avg Daily Reverse Flow Profile (15-min)
+ +
+
+ + +
+
+
Affected Meters by Area
+ +
+
+
Monthly Trend — Reverse Flow Meters
+ +
+
+ + + +
+ +
+
+
+ + +
+
+
+ Meter Detail + +
+
+
+ + + + diff --git a/docs/archive/ui/scheduled-read-success.html b/docs/archive/ui/scheduled-read-success.html new file mode 100644 index 0000000..88f0a31 --- /dev/null +++ b/docs/archive/ui/scheduled-read-success.html @@ -0,0 +1,476 @@ + + + + + +Scheduled Read Success / Failure — Reporting + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ + +
+
+ Date: + + + + + + + +
+ + +
+
+
Total Scheduled Tasks
+
24
+
Today (Apr 21)
+
+
+
+
Total Meters Targeted
+
8,540
+
Across all tasks
+
+
+
+
Read Success Rate
+
96.2%
+
8,215 successful
+
▲ 0.4% vs yesterday
+
+
+
+
Failed Reads
+
325
+
3.8% failure rate
+
▲ 12 vs yesterday
+
+
+
+
Avg Collection Time
+
3h 42m
+
Task completion avg
+
▼ 18m vs yesterday
+
+
+
+ + +
+
+
Daily Read Success Rate Trend (Last 14 Days)
+ +
+
+
+
+
Failure Reason Breakdown (Today)
+ +
+
+
Success Rate by Task Type
+ +
+
+
+
+
Success Rate by Meter Group
+ +
+
+
Top 10 Tasks with Most Failures
+ +
+
+ + + + + + +
Task NameScheduleMeter GroupTargetSuccessFailedRateStatus
+ + +
+ + Failed Meter Drill-Down + +
+ + +
+ + + + + + +
+ + +
+ +
+
+
+ + + + diff --git a/docs/archive/ui/signal-quality.html b/docs/archive/ui/signal-quality.html new file mode 100644 index 0000000..c5debe4 --- /dev/null +++ b/docs/archive/ui/signal-quality.html @@ -0,0 +1,398 @@ + + + + + +Signal Quality (RSSI / SNR) — Reporting + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ +
+ +
+ Month: + + + + + + + + +
+ + +
+
Total Devices Monitored
8,726
8,540 meters + 186 infra
+
Excellent (RSSI ≥ -70)
4,218
48.3% of fleet
+
Good (-70 to -85)
3,124
35.8%
+
Fair (-85 to -100)
986
11.3%
▲ 42 vs Mar
+
Poor (< -100)
398
4.6% — action needed
▲ 18 vs Mar
+
+ + +
+
Signal Quality Trend — Monthly (Last 6 Months)
+
+
+
Quality Band Distribution
+
RSSI Distribution Histogram
+
+
+
Quality by Network Type
+
Fair & Poor by Area
+
+ + + + + + +
AreaDevicesExcellentGoodFairPoorAvg RSSIAvg SNRDegrading
+ + +
Fair & Poor Signal Devices — Network Optimization
+ + +
+ + + + + + + + +
+
+ +
+
+
+ + + + diff --git a/docs/archive/ui/temp-threshold-alert.html b/docs/archive/ui/temp-threshold-alert.html new file mode 100644 index 0000000..7893969 --- /dev/null +++ b/docs/archive/ui/temp-threshold-alert.html @@ -0,0 +1,551 @@ + + + + + +Meter Temperature Threshold Alerting — Events + + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾ + Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 22/04/2026 13:45:20Online: 118 +
+ +
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ +
+
+
Temperature Alerts
+
Temperature Trend
+
Threshold Config
+
+ + +
+
+ + + + + + + + + + +
+ + +
+
+
Active Temp Alerts (Today)
+
47
+
32 Warning + 15 Critical
+
▲ 8 vs yesterday
+
+
+
+
Critical (≥ 85°C)
+
15
+
Immediate action required
+
▲ 5 vs yesterday
+
+
+
+
Warning (75–84°C)
+
32
+
Monitor closely
+
▲ 3 vs yesterday
+
+
+
+
Avg Peak Temp (Today)
+
78.4°C
+
Max recorded: 91.2°C
+
▲ 2.1°C vs yesterday
+
+
+
+
Open / Unresolved
+
28
+
19 Ack'd, 0 Closed today
+
▲ 6 vs yesterday
+
+
+
+ + +
+
+
7-Day Temperature Alert Count Trend (Warning vs Critical)
+ +
+
+
+
+
Alert Count by Region (Today)
+ +
+
+
Alert Distribution by Hour (Today)
+ +
+
+ + + +
+ +
+ + + + + + +
+
+ + + + diff --git a/docs/archive/ui/time-sync-success.html b/docs/archive/ui/time-sync-success.html new file mode 100644 index 0000000..421f7f4 --- /dev/null +++ b/docs/archive/ui/time-sync-success.html @@ -0,0 +1,361 @@ + + + + + +Time Sync Success — Reporting + + + + +
+ + DashboardDevice ▾Operation ▾ + Collection ▾Installation ▾Readings ▾ + Network ▾Exception ▾Master Data ▾ + VEE ▾Report ▾ + 21/04/2026 15:06:54Online: 118 +
+
+ + + +
+
+ + + +
+
+ +
+
+
+
+
+
+ + + +
+
+
+ + +
+ +
+ +
+ Month: + + + + + + + +
+ + +
+
Sync Operations (Apr)
8,540
All meters targeted
+
Sync Success Rate
97.8%
8,352 successful
▲ 0.3% vs Mar
+
Avg Pre-Sync Drift
8.4s
Before correction
▼ 0.6s vs Mar
+
Avg Post-Sync Accuracy
0.3s
After correction
+
Failed Syncs
188
2.2% — retry needed
▼ 14 vs Mar
+
+ + +
+
Monthly Sync Success Rate & Failed Count Trend (Last 6 Months)
+
+
+
Sync Result Distribution
+
Pre-Sync vs Post-Sync Drift Comparison
+
+
+
Sync Success Rate by Area
+
Failure Reason Breakdown
+
+ + + + + + +
AreaTargetedSuccessFailedSuccess %Avg Pre-DriftAvg Post-AccuracyImprovement
+ + +
Failed Synchronization — Meters Requiring Retry
+ + +
+ + + + + + +
+
+ +
+
+
+ + + + diff --git a/docs/design/tech-review-and-architecture.md b/docs/design/tech-review-and-architecture.md index d99567b..0df339f 100644 --- a/docs/design/tech-review-and-architecture.md +++ b/docs/design/tech-review-and-architecture.md @@ -74,7 +74,7 @@ │ ├── security.py (JWT, 密码哈希) │ │ ├── database.py (SQLAlchemy 异步引擎, Session 管理) │ │ ├── redis.py (Redis 连接池) │ -│ ├── influxdb.py (InfluxDB 客户端封装) │ +│ ├── influxdb.py (已弃用 - InfluxDB 不再使用,时序数据存 PG 时序表)│ │ ├── dependencies.py (通用 Depends: get_db, get_current_user) │ │ └── exceptions.py (自定义异常 + 全局处理器) │ ├───────────────────────────────────────────────────────────────────┤ @@ -315,7 +315,8 @@ class Settings(BaseSettings): # Redis REDIS_URL: str = "redis://localhost:6379/0" - # InfluxDB + # DEPRECATED: InfluxDB 已弃用,时序数据改用 PG 时序表 + # (col_meter_reading + col_reading_daily_summary) INFLUXDB_URL: str = "http://localhost:8086" INFLUXDB_TOKEN: str = "" INFLUXDB_ORG: str = "metering" @@ -407,7 +408,7 @@ backend/ │ ├── config.py # Settings │ ├── database.py # 异步引擎 + Session │ ├── redis.py # Redis 连接 - │ ├── influxdb.py # InfluxDB 客户端 + │ ├── influxdb.py # 已弃用(InfluxDB 不再使用,时序存 PG) │ ├── security.py # JWT 编解码 + 密码哈希 │ ├── dependencies.py # get_db, get_current_user │ ├── exceptions.py # 自定义异常 + 全局处理器 @@ -523,7 +524,7 @@ Week 1: 任务 CRUD Week 2: APScheduler 调度引擎 ├── services/scheduler.py → 任务调度(JobStore=PostgreSQL) ├── services/collector.py → 采集执行引擎 - └── core/influxdb.py → InfluxDB 写入封装 + └── core/influxdb.py → 已弃用(时序数据写入 PG 时序表 col_meter_reading) Week 3: DLMS 协议对接 ├── 接入私有 DLMS 库 @@ -616,5 +617,6 @@ chore: 构建/工具 |------|------|------| | 响应格式 | 标准 HTTP 状态码 + 业务码 | HTTP 层用标准状态码,业务层用 code 字段区分具体错误 | | motor 依赖 | 保留 | 暂不卸载,后续按需决定 | +| InfluxDB | **已弃用** | 时序数据改用 PostgreSQL 时序表(`col_meter_reading` + `col_reading_daily_summary`),简化部署。配置项保留备未来高并发场景复用 | | DLMS 协议栈 | 使用私有库 | Phase 3 时替换当前简化实现 | | 部署方式 | Docker Compose + systemd 双支持 | 提供两种部署配置,按场景选择 | diff --git a/docs/guides/testing-strategy.md b/docs/guides/testing-strategy.md index 5d66732..8ed37ca 100644 --- a/docs/guides/testing-strategy.md +++ b/docs/guides/testing-strategy.md @@ -35,37 +35,38 @@ | 层级 | 工具 | 目标 | 目录 | |------|------|------|------| -| 单元测试 | pytest | Service/工具函数逻辑 | `tests/backend/unit/` | -| API 集成测试 | pytest + httpx | 端点请求/响应 | `tests/backend/api/` | -| 数据库测试 | pytest + PostgreSQL | ORM + 迁移 | `tests/backend/db/` | -| 性能测试 | Locust | API 压力/并发 | `tests/backend/perf/` | +| API 集成测试 | pytest + httpx | 端点请求/响应(含 Service 逻辑) | `backend/tests/` | +| 数据库测试 | pytest + PostgreSQL | ORM 模型 | `backend/tests/` | +| 性能测试 | Locust | API 压力/并发 | `tests/backend/perf/`(占位) | -### 2.2 后端测试目录结构 +> **实际测试位置说明**:真实后端测试(83 个)位于 `backend/tests/`(CI 实际运行此目录)。 +> `tests/backend/` 是早期规划的占位目录(仅 5 个 stub),不再使用。 +> `backend/pyproject.toml` 配置 `testpaths = ["tests"]`,在 `backend/` 下执行 `uv run pytest` 即可。 + +### 2.2 后端测试目录结构(实际) ``` -tests/backend/ -├── conftest.py # 全局 fixtures -├── pytest.ini -├── factories.py # 测试数据工厂 (faker) -├── unit/ # 单元测试 -│ ├── test_security.py # JWT/密码哈希 -│ ├── test_response.py # 统一响应格式 -│ └── test_scheduler.py # 调度器逻辑 -├── api/ # API 集成测试 -│ ├── test_auth.py # 登录/登出/刷新 -│ ├── test_meters.py # 样机 CRUD + 状态流转 -│ ├── test_projects.py # 项目管理 -│ ├── test_tasks.py # 采集任务 -│ ├── test_analysis.py # 数据分析 -│ ├── test_alarms.py # 告警 -│ ├── test_tests.py # 测试管理 -│ ├── test_system.py # 用户/角色/部门 -│ └── test_screens.py # 大屏 -├── db/ # 数据库测试 -│ ├── test_models.py # ORM 模型 -│ └── test_migrations.py # 迁移一致性 -└── perf/ # 性能测试 - └── locustfile.py # Locust 压测脚本 +backend/tests/ # ← 真实测试目录,CI 运行此处(83 个测试) +├── conftest.py # 全局 fixtures(async client + db session) +├── factories.py # 测试数据工厂 +├── test_alarms.py # 告警 API(12 个) +├── test_api.py # 通用 API 测试 +├── test_health.py # 健康检查 +├── test_reference.py # 基础数据/采集点(14 个) +├── test_roles.py # 角色管理(5 个) +├── test_tasks.py # 采集任务(9 个) +└── test_tests.py # 测试任务/缺陷(7 个) + +tests/ # ← 早期占位 + E2E(CI 不运行) +├── backend/ # 早期规划占位(仅 5 个 stub,已废弃) +│ ├── unit/test_response.py +│ ├── api/test_health.py +│ ├── db/test_models.py +│ └── perf/locustfile.py +└── e2e/ # Playwright E2E(9 个,CI 未运行) + ├── auth/login.spec.ts + ├── meter/list.spec.ts + └── visual/pages.spec.ts ``` ### 2.3 关键 Fixtures 设计 diff --git a/docs/planning/development-plan.md b/docs/planning/development-plan.md index f12c399..a218f42 100644 --- a/docs/planning/development-plan.md +++ b/docs/planning/development-plan.md @@ -8,17 +8,21 @@ ### 1.1 当前资产盘点 -| 维度 | 已有 | 需开发 | 完成率 | -|------|------|--------|--------| -| 前端页面 | 52 个 Vue 文件 | 联调适配 | 90% | -| Mock API | 73 个 TS 文件 | 全部替换为真实 API | 0% | -| 数据库表 | 28 张表 + 510 行种子数据 | 2 张新表待数据填充 | 95% | -| 后端 Model | 8 个模块 | 无 | 100% | -| 后端 Schema | 6 个文件(38 个类) | 补全验证逻辑 | 60% | -| 后端 Service | **0 个文件** | 全部开发 | 0% | -| 后端 Endpoint | 21 个文件 / 91 个路由 | 重构为分层架构 | 30% | -| 后端测试 | 3 个文件 | 全模块覆盖 | 5% | -| E2E 测试 | 4 个文件 | 补充业务流 | 10% | +> 最后核对:2026-07-03(对齐实际代码) + +| 维度 | 实际状态 | 完成率 | +|------|---------|--------| +| 前端页面 | 60 个 .vue(含 35 个业务页 + 16 个 _core + 9 个 system)+ 53 个 .ts | 95% | +| Mock API | 73 个 mock 端点(backend-mock 保留,前端可切换真实/mock) | - | +| 数据库表 | 32 张表(含 alembic_version)+ 数千行种子数据,8 个 migration | 100% | +| 后端 Model | 31 个 SQLAlchemy 模型(user/meter/meter_point/task/alarm/test/system/project/session) | 100% | +| 后端 Schema | 10 个文件 / 66 个 Pydantic 类 | 95% | +| 后端 Service | 16 个 service 文件(全量 Service 化,仅 system.py 残留 3 处直接 DB) | 95% | +| 后端 Endpoint | 20 个文件 / 105 个路由 | 90%(analysis 9 路由为 mock) | +| 后端测试 | 83 个测试(backend/tests/,CI 通过) | 70% | +| E2E 测试 | 9 个 Playwright spec(tests/e2e/,CI 未运行) | 20% | +| DLMS 协议栈 | ACSE/APDU/OBIS 字节级实现真实;cosem/ 对象模型空壳 | 60% | +| 通信适配器 | TCP cellular + 串口 infrared 真实 IO | 80% | ### 1.2 核心风险 @@ -60,14 +64,14 @@ W3 W4 W5 W6 │ W1 W2 W3 W4 │ W1 W2 W3 W4 │ W1 W2 W3 W4 ### 里程碑 -| 里程碑 | 日期 | 交付物 | 前后端联调 | -|--------|------|--------|-----------| -| M1 | 05/30 | 认证 + 系统管理 + 项目管理 | auth/system/project | -| M2 | 06/13 | 样机 + 借用 + 维修 + 采集点 | devices | -| M3 | 07/04 | 采集任务 + DLMS + 数据入库 | tasks/collector | -| M4 | 07/18 | 分析报表 + 告警 + 大屏 | analysis/alarms | -| M5 | 08/01 | 测试报告 + 缺陷 + 全量联调 | 全部模块 | -| M6 | 08/14 | 上线 | - | +| 里程碑 | 日期 | 交付物 | 前后端联调 | 状态 | +|--------|------|--------|-----------|------| +| M1 | 05/30 | 认证 + 系统管理 + 项目管理 | auth/system/project | ✅ 完成 | +| M2 | 06/13 | 样机 + 借用 + 维修 + 采集点 | devices | ✅ 完成 | +| M3 | 07/04 | 采集任务 + DLMS + 数据入库 | tasks/collector | 🟡 进行中(任务 CRUD + DLMS 核心已完成;调度引擎/cosem 待补) | +| M4 | 07/18 | 分析报表 + 告警 + 大屏 | analysis/alarms | 🟡 部分完成(告警+大屏已完成;analysis 报表待闭环) | +| M5 | 08/01 | 测试报告 + 缺陷 + 全量联调 | 全部模块 | 🟡 部分完成(test/defect 已完成;报告 PDF 导出待实现) | +| M6 | 08/14 | 上线 | - | 📋 待实施 | --- @@ -111,12 +115,12 @@ W3 W4 W5 W6 │ W1 W2 W3 W4 │ W1 W2 W3 W4 │ W1 W2 W3 W4 **Phase 1 交付清单**: - [x] 基础设施层完整(config/database/response/exceptions/security/dependencies) -- [ ] 认证系统(login/logout/refresh) -- [ ] 系统管理(用户/角色/部门/菜单/审计) -- [ ] 项目管理(项目/电表类型/线制类型/采集点) -- [ ] 前端 auth/system/project 联调完成 -- [ ] Phase 1 测试全部通过 -- [ ] `/docs` Swagger UI 接口文档可访问 +- [x] 认证系统(login/logout/refresh/codes) +- [x] 系统管理(用户/角色/部门/菜单/审计) +- [x] 项目管理(项目/电表类型/线制类型/采集点) +- [x] 前端 auth/system/project 联调完成 +- [x] Phase 1 测试全部通过(83 个测试 CI 绿) +- [x] `/docs` Swagger UI 接口文档可访问 --- diff --git a/docs/planning/phase-overview.md b/docs/planning/phase-overview.md index 07646ef..33889de 100644 --- a/docs/planning/phase-overview.md +++ b/docs/planning/phase-overview.md @@ -2,10 +2,12 @@ **目标:** 云端智能电表抄表系统 - DLMS/COSEM 协议栈 + 多通信方式适配 -**架构:** vue-vben-admin 前端 + FastAPI 后端 + PostgreSQL + Redis + InfluxDB +**架构:** vue-vben-admin 前端 + FastAPI 后端 + PostgreSQL(业务+时序)+ Redis **技术栈:** Vue 3, TypeScript, Python 3.12, Ant Design Vue, uv, pnpm +> 本文档按实际代码进度同步。最后核对日期:2026-07-03。 + --- ## 项目状态 @@ -14,54 +16,79 @@ - [x] 项目结构初始化 - [x] 前端基础框架 (vue-vben-admin) - [x] 前端全部页面开发 (设备/任务/分析/大屏/测试/系统管理) -- [x] 前端 Mock API 服务 +- [x] 前端 Mock API 服务 (73 个端点) - [x] 后端基础框架 (FastAPI) - [x] 后端开发环境搭建 (uv + Python 3.12, 所有依赖安装) +- [x] 后端 API 开发(105 路由 / 16 service / 31 模型 / 66 schema) +- [x] 数据库迁移体系(8 个 Alembic migration) +- [x] JWT 认证 + bcrypt 密码哈希 +- [x] RBAC 数据模型(User/Role/Permission 五表) +- [x] 大屏亮/暗主题适配 +- [x] CI/CD(GitHub Actions: ruff + pytest + vue-tsc) +- [x] 后端测试(83 个,CI 通过) + +### 🚧 部分完成 / 已知待办 +- [ ] RBAC 接口级强制(模型层已就绪,但无 `require_permission` 装饰器,任何有效 JWT 可访问所有接口) +- [ ] 分析模块闭环(`analysis.py` 9 个路由当前返回硬编码 mock,日报/导出"待实现") +- [ ] DLMS `cosem/` 对象模型层(ACSE/APDU/OBIS 字节级实现已就绪,cosem 目录仅空 docstring) +- [ ] 采集调度引擎(`scheduler.py`/`collector.py` 执行引擎未见,任务 CRUD 已完成) +- [ ] 前端 `dashboard/analytics/` 下 5 个子图组件业务化(当前是 vben 模板 demo) -### 🚧 进行中 -- [ ] 后端 API 开发 +--- -### 📋 待实施 +## 模块计划与实际进度 + +### Phase 1: 后端基础框架 + 认证系统 ✅ +- [x] FastAPI 项目结构完善 +- [x] PostgreSQL 数据库初始化 (Alembic 迁移,8 个版本) +- [x] JWT 认证 (python-jose + passlib,login/refresh/logout/codes) +- [x] RBAC 权限系统(数据模型层完整) +- [x] 用户/角色/部门 CRUD API(user/role/dept/menu_service) + +### Phase 2: 样机管理 ✅ +- [x] 样机档案 CRUD API(meter_service 13 方法) +- [x] 状态流转服务(MeterStatusHistory) +- [x] 借用管理(borrow_service 5 方法) +- [x] 维修记录管理(repair_service 4 方法) +- [x] 附件上传(upload_service 5 方法) + +### Phase 3: 采集任务系统 🟡 +- [x] 任务 CRUD(task_service 12 方法) +- [x] 采集点配置(reference_service 9 方法,OBIS 码) +- [x] 数据入库(PostgreSQL 时序表 `col_meter_reading` + `col_reading_daily_summary`,**已弃用 InfluxDB**) +- [x] DLMS 协议栈核心(ACSE/APDU/OBIS 字节级实现真实可用) +- [x] 通信适配器(TCP cellular + 串口 infrared,真实 IO) +- [ ] APScheduler 调度引擎接入(JobStore=PostgreSQL) +- [ ] DLMS `cosem/` 对象模型层补全 +- [x] 任务监控和日志(TaskLog + WebSocket,前端已做重连限制) + +### Phase 4: 数据分析 + 告警 🟡 +- [ ] 每日分析报告生成(`analysis.py` 9 路由为 mock 占位) +- [ ] 对比分析 / 数据一致性检查(占位) +- [x] 告警规则引擎(alarm_service 11 方法,AlarmRule CRUD) +- [x] 告警查询/处理/统计(alarms/alarm_rules 端点) +- [x] WebSocket 实时推送通道(前端 useWebSocket 已封装) + +### Phase 5: 大屏展示 + 测试报告 ✅(基本完成) +- [x] 项目概览大屏(screen/overview.vue) +- [x] 项目详情大屏(screen/project.vue) +- [x] 单表监控大屏(screen/meter.vue,含 gauge + WebSocket) +- [x] 3 个大屏亮色/暗色主题自适应(useChartTheme) +- [x] 测试任务管理(test_service 8 方法) +- [x] 缺陷跟踪(defect_service 4 方法) +- [ ] 测试报告 PDF 导出 / 邮件分发(待实现) --- -## 模块计划 - -### Phase 1: 后端基础框架 + 认证系统 -- [ ] FastAPI 项目结构完善 -- [ ] PostgreSQL 数据库初始化 (Alembic 迁移) -- [ ] JWT 认证 (python-jose + passlib) -- [ ] RBAC 权限系统 -- [ ] 用户/角色/部门 CRUD API - -### Phase 2: 样机管理 -- [ ] 样机档案 CRUD API -- [ ] 状态流转服务 -- [ ] 借用审批工作流 -- [ ] 维修记录管理 -- [ ] 附件上传 - -### Phase 3: 采集任务系统 -- [ ] APScheduler 定时调度 -- [ ] DLMS/Modbus 协议适配器 -- [ ] InfluxDB 数据写入 -- [ ] 任务监控和日志 -- [ ] 数据质量统计 - -### Phase 4: 数据分析 + 告警 -- [ ] 每日分析报告生成 -- [ ] 对比分析 -- [ ] 数据一致性检查 -- [ ] 告警规则引擎 -- [ ] WebSocket 实时推送 - -### Phase 5: 大屏展示 + 测试报告 -- [ ] 项目概览大屏 API -- [ ] 项目详情大屏 API -- [ ] 单表监控大屏 API -- [ ] 测试任务管理 -- [ ] 测试报告生成 -- [ ] 缺陷跟踪 +## 关键技术决策(实际落地版本) + +| 决策点 | 结论 | 说明 | +|--------|------|------| +| 时序数据存储 | **PostgreSQL 时序表** | 早期选型 InfluxDB **已弃用**,改用 `col_meter_reading` + `col_reading_daily_summary` | +| 响应格式 | 标准 HTTP 状态码 + 业务码 | `{code, message, data}`,code 与 HTTP 状态码一致 | +| API 文档 | FastAPI `/docs` Swagger UI | 代码即文档,不维护独立 API 文档 | +| 认证 | JWT Bearer Token | HS256 + bcrypt | +| 分层架构 | endpoints → schemas → services → models → core | 全量 Service 化(仅 system.py 残留 3 处直接 DB 操作) | --- @@ -70,12 +97,15 @@ ```bash # 后端 cd backend -uv run uvicorn main:app --reload # 启动开发服务 -uv run pytest # 运行测试 -uv run alembic revision --autogenerate -m "xxx" # 生成迁移 -uv run alembic upgrade head # 执行迁移 +uv sync # 安装依赖 +uv run uvicorn main:app --reload # 启动开发服务 +uv run pytest # 运行测试(83 个,在 backend/tests/) +uv run alembic upgrade head # 执行迁移 +uv run python -m app.db.seed # 导入种子数据 # 前端 cd frontend -pnpm dev:antd # 启动前端 +pnpm install +pnpm dev:antd # 启动前端 +pnpm --filter @vben/web-antd run typecheck # 类型检查 ``` diff --git a/docs/tasks/prd-cloud-metering-system.md b/docs/tasks/prd-cloud-metering-system.md index 2f04c93..6185985 100644 --- a/docs/tasks/prd-cloud-metering-system.md +++ b/docs/tasks/prd-cloud-metering-system.md @@ -11,7 +11,7 @@ |------|----------| | 前端 | vue-vben-admin 5.7.0 (Vue 3 + TypeScript + Ant Design Vue + Vite) | | 后端 | Python FastAPI + APScheduler (定时任务) | -| 数据库 | PostgreSQL (业务数据) + Redis (缓存/队列) + InfluxDB (时序数据) | +| 数据库 | PostgreSQL (业务数据 + 时序数据) + Redis (缓存/队列) | | 包管理 | uv (后端) + pnpm (前端) | | 图表 | ECharts | | 认证 | JWT (python-jose) + passlib | @@ -792,6 +792,8 @@ CREATE TABLE col_data_quality ( **存储方案对比**: +> ⚠️ **实现变更声明(2026-07)**:以下原设计采用 InfluxDB 存储时序数据。经评估后**已弃用 InfluxDB**,所有时序抄读数据统一存入 PostgreSQL 时序表(`col_meter_reading` + `col_reading_daily_summary`),简化部署运维。下文保留原始 InfluxDB 设计作为历史参考,但**实际实现以 PG 时序表为准**。 + | 方案 | 优点 | 缺点 | 适用场景 | |------|------|------|----------| | PostgreSQL ✅ | 成熟稳定,支持事务,JSONB支持 | 数据表膨胀快,时序查询慢 | **业务数据** | @@ -831,7 +833,7 @@ CREATE TABLE col_data_quality ( | 最新数据 | Redis | 实时 | 大屏实时展示 | | 任务队列 | Redis | 临时 | APScheduler任务状态缓存 | -### 4.3 InfluxDB 数据模型设计 +### 4.3 InfluxDB 数据模型设计(⚠️ 已弃用 — 实际改用 PG 时序表) #### 4.3.1 Measurement 分拆设计 @@ -1016,7 +1018,7 @@ archive_mode = on archive_command = 'cp %p /backup/wal/%f' ``` -#### 4.5.2 InfluxDB 备份策略 +#### 4.5.2 InfluxDB 备份策略(⚠️ 已弃用 — 改用 PG 时序表后随 PG 统一备份) | 备份类型 | 频率 | 保留 | 说明 | |----------|------|------|------| diff --git a/docs/testdata/Andromeda-01_DailyCheck.json b/docs/testdata/Andromeda-01_DailyCheck.json new file mode 100644 index 0000000..2fb5fbc --- /dev/null +++ b/docs/testdata/Andromeda-01_DailyCheck.json @@ -0,0 +1,79415 @@ +[ + { + "_id": "2025-06-01 03:08:10.720529", + "pos": 1, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:08:00", + "connection_status": true, + "connection_end": "2025-06-01 03:08:04", + "connection_consume": 4.4, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025031500001", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025031500001", + "actual_time": "2025-06-01 03:08:10.390870", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:08:10 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:08:10", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:08:11.542514", + "getProfile_end_time": "2025-06-01 03:08:11.177971", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 123593, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 154145, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 184074, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 213765, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 229356, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 244956, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 258754, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 288679, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 317834, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 332919, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 348951, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 364841, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 93780, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 95024, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 96116, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 97358, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 98148, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 98972, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 100038, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 100899, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 101967, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 103042, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 104156, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 105184, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 106260, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 107259, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 108061, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 109235, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 110123, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 111278, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 112201, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 113456, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 114305, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 115167, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 116177, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 117273, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 118212, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 119107, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 119866, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 121090, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 122240, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 123031, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 124192, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 125056, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 125820, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 127084, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 127919, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 129167, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 130319, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 131098, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 132105, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 133310, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 134352, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 135518, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 136281, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 137187, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 138220, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 139088, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 139950, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 140715, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 141451, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 142340, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 143475, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 144286, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 145452, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 146545, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 147701, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 148722, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 149931, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 150868, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 151912, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 152767, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 153865, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 154978, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 156059, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 156848, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 157878, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 158738, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 159967, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 161038, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 161956, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 163106, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 164199, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 165145, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 166113, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 167070, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 167979, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 168953, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 169824, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 171073, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 172077, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 173193, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 174425, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 175263, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 176332, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 177090, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 177972, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 179118, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 180306, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 181374, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 182126, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 182971, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 183733, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 184768, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 185087, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 185492, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 186171, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 186798, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 187086, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 187773, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 188344, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 189024, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 189365, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 189860, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 190435, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 191006, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 191516, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 191852, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 192141, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 192505, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 193142, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 193428, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 193892, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 194402, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 194832, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 195538, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 196102, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 196777, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 197485, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 198170, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 198744, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 199045, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 199519, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 199874, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 200553, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 201161, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 201829, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 202186, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 202625, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 202965, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 203398, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 203703, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 204197, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 204553, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 205249, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 205676, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 206248, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 206885, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 207530, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 208178, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 208584, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 209073, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 209469, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 209753, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 210305, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 210756, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 211432, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 212110, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 212801, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 213303, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 213966, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 214647, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 215310, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 215954, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 216262, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 216548, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 217027, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 217437, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 217766, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 218198, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 218788, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 219242, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 219529, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 219995, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 220362, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 220870, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 221535, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 221993, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 222665, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 222951, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 223561, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 223951, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 224434, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 224876, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 225314, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 225977, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 226488, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 226886, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 227590, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 228152, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 228622, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 228965, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 229566, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 229852, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 230511, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 231622, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 232393, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 233263, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 234047, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 234994, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 235890, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 236616, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 237702, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 238948, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 240201, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 241467, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 242243, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 243229, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 244219, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 245314, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 246095, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 247230, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 248381, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 249316, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 250436, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 251565, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 252742, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 253525, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 254777, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 255935, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 256715, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 257619, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 258335, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 259432, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 260170, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 261349, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 262301, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 263348, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 264061, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 265042, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 265911, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 266666, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 267618, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 268677, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 269799, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 270613, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 271481, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 272255, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 273113, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 274219, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 275305, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 276257, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 277234, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 278386, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 279153, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 280276, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 281331, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 282147, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 283340, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 284405, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 285198, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 285975, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 286911, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 287775, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 288593, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 289384, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 290103, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 290925, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 292124, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 293048, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 294054, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 295160, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 296424, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 297258, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 298208, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 298951, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 299902, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 300640, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 301411, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 302326, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 303569, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 304681, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 305530, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 306746, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 307558, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 308267, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 309350, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 310241, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 311111, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 311978, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 313031, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 313984, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 314836, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 315823, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 316721, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 317052, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 317620, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 318194, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 318805, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 319144, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 319580, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 320208, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 320807, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 321341, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 321881, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 322265, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 322665, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 323197, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 323517, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 323845, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 324396, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 324935, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 325236, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 325931, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 326590, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 327221, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 327586, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 328059, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 328384, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 329068, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 329614, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 330025, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 330510, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 331117, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 331627, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 331975, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 332312, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 332773, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 333359, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 334021, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 334627, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 335270, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 335791, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 336222, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 336661, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 337212, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 337545, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 338014, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 338502, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 339008, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 339696, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 340316, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 340670, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 341070, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 341765, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 342171, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 342861, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 343170, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 343867, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 344231, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 344861, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 345355, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 345865, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 346367, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 346682, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 347151, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 347651, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 348173, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 348622, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 349163, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 349534, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 349819, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 350345, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 350880, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 351167, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 351845, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 352346, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 352843, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 353433, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 353826, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 354472, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 354881, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 355278, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 355612, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 355990, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 356500, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 356907, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 357462, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 358146, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 358547, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 358887, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 359542, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 359847, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 360547, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 361251, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 361623, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 361956, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:08:24.500327", + "reading_end_time": "2025-06-01 03:08:34.781332", + "reading_consume": 10.549674, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 92815, + 0 + ], + "1": [ + "2024-06-22 6 00:15:00 00,FF88,80", + 8, + 92817, + 0 + ], + "2": [ + "2024-06-22 6 00:30:00 00,FF88,80", + 8, + 92819, + 0 + ], + "3": [ + "2024-06-22 6 00:45:00 00,FF88,80", + 8, + 92820, + 0 + ], + "4": [ + "2024-06-22 6 01:00:00 00,FF88,80", + 8, + 92822, + 0 + ], + "5": [ + "2024-06-22 6 01:15:00 00,FF88,80", + 8, + 92822, + 0 + ], + "6": [ + "2024-06-22 6 01:30:00 00,FF88,80", + 8, + 92824, + 0 + ], + "7": [ + "2024-06-22 6 01:45:00 00,FF88,80", + 8, + 92825, + 0 + ], + "8": [ + "2024-06-22 6 02:00:00 00,FF88,80", + 8, + 92826, + 0 + ], + "9": [ + "2024-06-22 6 02:15:00 00,FF88,80", + 8, + 92827, + 0 + ], + "10": [ + "2024-06-22 6 02:30:00 00,FF88,80", + 8, + 92827, + 0 + ], + "11": [ + "2024-06-22 6 02:45:00 00,FF88,80", + 8, + 92828, + 0 + ], + "12": [ + "2024-06-22 6 03:00:00 00,FF88,80", + 8, + 92829, + 0 + ], + "13": [ + "2024-06-22 6 03:15:00 00,FF88,80", + 8, + 92829, + 0 + ], + "14": [ + "2024-06-22 6 03:30:00 00,FF88,80", + 8, + 92830, + 0 + ], + "15": [ + "2024-06-22 6 03:45:00 00,FF88,80", + 8, + 92832, + 0 + ], + "16": [ + "2024-06-22 6 04:00:00 00,FF88,80", + 8, + 92834, + 0 + ], + "17": [ + "2024-06-22 6 04:15:00 00,FF88,80", + 8, + 92835, + 0 + ], + "18": [ + "2024-06-22 6 04:30:00 00,FF88,80", + 8, + 92835, + 0 + ], + "19": [ + "2024-06-22 6 04:45:00 00,FF88,80", + 8, + 92837, + 0 + ], + "20": [ + "2024-06-22 6 05:00:00 00,FF88,80", + 8, + 92839, + 0 + ], + "21": [ + "2024-06-22 6 05:15:00 00,FF88,80", + 8, + 92841, + 0 + ], + "22": [ + "2024-06-22 6 05:30:00 00,FF88,80", + 8, + 92843, + 0 + ], + "23": [ + "2024-06-22 6 05:45:00 00,FF88,80", + 8, + 92844, + 0 + ], + "24": [ + "2024-06-22 6 06:00:00 00,FF88,80", + 8, + 92856, + 0 + ], + "25": [ + "2024-06-22 6 06:15:00 00,FF88,80", + 8, + 92868, + 0 + ], + "26": [ + "2024-06-22 6 06:30:00 00,FF88,80", + 8, + 92886, + 0 + ], + "27": [ + "2024-06-22 6 06:45:00 00,FF88,80", + 8, + 92899, + 0 + ], + "28": [ + "2024-06-22 6 07:00:00 00,FF88,80", + 8, + 92914, + 0 + ], + "29": [ + "2024-06-22 6 07:15:00 00,FF88,80", + 8, + 92927, + 0 + ], + "30": [ + "2024-06-22 6 07:30:00 00,FF88,80", + 8, + 92939, + 0 + ], + "31": [ + "2024-06-22 6 07:45:00 00,FF88,80", + 8, + 92948, + 0 + ], + "32": [ + "2024-06-22 6 08:00:00 00,FF88,80", + 8, + 92958, + 0 + ], + "33": [ + "2024-06-22 6 08:15:00 00,FF88,80", + 8, + 92971, + 0 + ], + "34": [ + "2024-06-22 6 08:30:00 00,FF88,80", + 8, + 92986, + 0 + ], + "35": [ + "2024-06-22 6 08:45:00 00,FF88,80", + 8, + 92998, + 0 + ], + "36": [ + "2024-06-22 6 09:00:00 00,FF88,80", + 8, + 93007, + 0 + ], + "37": [ + "2024-06-22 6 09:15:00 00,FF88,80", + 8, + 93021, + 0 + ], + "38": [ + "2024-06-22 6 09:30:00 00,FF88,80", + 8, + 93033, + 0 + ], + "39": [ + "2024-06-22 6 09:45:00 00,FF88,80", + 8, + 93050, + 0 + ], + "40": [ + "2024-06-22 6 10:00:00 00,FF88,80", + 8, + 93055, + 0 + ], + "41": [ + "2024-06-22 6 10:15:00 00,FF88,80", + 8, + 93060, + 0 + ], + "42": [ + "2024-06-22 6 10:30:00 00,FF88,80", + 8, + 93066, + 0 + ], + "43": [ + "2024-06-22 6 10:45:00 00,FF88,80", + 8, + 93069, + 0 + ], + "44": [ + "2024-06-22 6 11:00:00 00,FF88,80", + 8, + 93077, + 0 + ], + "45": [ + "2024-06-22 6 11:15:00 00,FF88,80", + 8, + 93085, + 0 + ], + "46": [ + "2024-06-22 6 11:30:00 00,FF88,80", + 8, + 93092, + 0 + ], + "47": [ + "2024-06-22 6 11:45:00 00,FF88,80", + 8, + 93097, + 0 + ], + "48": [ + "2024-06-22 6 12:00:00 00,FF88,80", + 8, + 93103, + 0 + ], + "49": [ + "2024-06-22 6 12:15:00 00,FF88,80", + 8, + 93107, + 0 + ], + "50": [ + "2024-06-22 6 12:30:00 00,FF88,80", + 8, + 93111, + 0 + ], + "51": [ + "2024-06-22 6 12:45:00 00,FF88,80", + 8, + 93116, + 0 + ], + "52": [ + "2024-06-22 6 13:00:00 00,FF88,80", + 8, + 93121, + 0 + ], + "53": [ + "2024-06-22 6 13:15:00 00,FF88,80", + 8, + 93128, + 0 + ], + "54": [ + "2024-06-22 6 13:30:00 00,FF88,80", + 8, + 93136, + 0 + ], + "55": [ + "2024-06-22 6 13:45:00 00,FF88,80", + 8, + 93142, + 0 + ], + "56": [ + "2024-06-22 6 14:00:00 00,FF88,80", + 8, + 93149, + 0 + ], + "57": [ + "2024-06-22 6 14:15:00 00,FF88,80", + 8, + 93154, + 0 + ], + "58": [ + "2024-06-22 6 14:30:00 00,FF88,80", + 8, + 93161, + 0 + ], + "59": [ + "2024-06-22 6 14:45:00 00,FF88,80", + 8, + 93165, + 0 + ], + "60": [ + "2024-06-22 6 15:00:00 00,FF88,80", + 8, + 93173, + 0 + ], + "61": [ + "2024-06-22 6 15:15:00 00,FF88,80", + 8, + 93178, + 0 + ], + "62": [ + "2024-06-22 6 15:30:00 00,FF88,80", + 8, + 93185, + 0 + ], + "63": [ + "2024-06-22 6 15:45:00 00,FF88,80", + 8, + 93189, + 0 + ], + "64": [ + "2024-06-22 6 16:00:00 00,FF88,80", + 8, + 93194, + 0 + ], + "65": [ + "2024-06-22 6 16:15:00 00,FF88,80", + 8, + 93199, + 0 + ], + "66": [ + "2024-06-22 6 16:30:00 00,FF88,80", + 8, + 93205, + 0 + ], + "67": [ + "2024-06-22 6 16:45:00 00,FF88,80", + 8, + 93212, + 0 + ], + "68": [ + "2024-06-22 6 17:00:00 00,FF88,80", + 8, + 93223, + 0 + ], + "69": [ + "2024-06-22 6 17:15:00 00,FF88,80", + 8, + 93238, + 0 + ], + "70": [ + "2024-06-22 6 17:30:00 00,FF88,80", + 8, + 93250, + 0 + ], + "71": [ + "2024-06-22 6 17:45:00 00,FF88,80", + 8, + 93265, + 0 + ], + "72": [ + "2024-06-22 6 18:00:00 00,FF88,80", + 8, + 93278, + 0 + ], + "73": [ + "2024-06-22 6 18:15:00 00,FF88,80", + 8, + 93287, + 0 + ], + "74": [ + "2024-06-22 6 18:30:00 00,FF88,80", + 8, + 93303, + 0 + ], + "75": [ + "2024-06-22 6 18:45:00 00,FF88,80", + 8, + 93317, + 0 + ], + "76": [ + "2024-06-22 6 19:00:00 00,FF88,80", + 8, + 93327, + 0 + ], + "77": [ + "2024-06-22 6 19:15:00 00,FF88,80", + 8, + 93342, + 0 + ], + "78": [ + "2024-06-22 6 19:30:00 00,FF88,80", + 8, + 93357, + 0 + ], + "79": [ + "2024-06-22 6 19:45:00 00,FF88,80", + 8, + 93369, + 0 + ], + "80": [ + "2024-06-22 6 20:00:00 00,FF88,80", + 8, + 93387, + 0 + ], + "81": [ + "2024-06-22 6 20:15:00 00,FF88,80", + 8, + 93404, + 0 + ], + "82": [ + "2024-06-22 6 20:30:00 00,FF88,80", + 8, + 93420, + 0 + ], + "83": [ + "2024-06-22 6 20:45:00 00,FF88,80", + 8, + 93436, + 0 + ], + "84": [ + "2024-06-22 6 21:00:00 00,FF88,80", + 8, + 93448, + 0 + ], + "85": [ + "2024-06-22 6 21:15:00 00,FF88,80", + 8, + 93458, + 0 + ], + "86": [ + "2024-06-22 6 21:30:00 00,FF88,80", + 8, + 93471, + 0 + ], + "87": [ + "2024-06-22 6 21:45:00 00,FF88,80", + 8, + 93481, + 0 + ], + "88": [ + "2024-06-22 6 22:00:00 00,FF88,80", + 8, + 93498, + 0 + ], + "89": [ + "2024-06-22 6 22:15:00 00,FF88,80", + 8, + 93508, + 0 + ], + "90": [ + "2024-06-22 6 22:30:00 00,FF88,80", + 8, + 93526, + 0 + ], + "91": [ + "2024-06-22 6 22:45:00 00,FF88,80", + 8, + 93539, + 0 + ], + "92": [ + "2024-06-22 6 23:00:00 00,FF88,80", + 8, + 93545, + 0 + ], + "93": [ + "2024-06-22 6 23:15:00 00,FF88,80", + 8, + 93548, + 0 + ], + "94": [ + "2024-06-22 6 23:30:00 00,FF88,80", + 8, + 93554, + 0 + ], + "95": [ + "2024-06-22 6 23:45:00 00,FF88,80", + 8, + 93561, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "1": [ + "2024-06-22 6 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "2": [ + "2024-06-22 6 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "3": [ + "2024-06-22 6 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "4": [ + "2024-06-22 6 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "5": [ + "2024-06-22 6 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "6": [ + "2024-06-22 6 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "7": [ + "2024-06-22 6 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "8": [ + "2024-06-22 6 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "9": [ + "2024-06-22 6 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "10": [ + "2024-06-22 6 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "11": [ + "2024-06-22 6 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "12": [ + "2024-06-22 6 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "13": [ + "2024-06-22 6 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "14": [ + "2024-06-22 6 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "15": [ + "2024-06-22 6 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "16": [ + "2024-06-22 6 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "17": [ + "2024-06-22 6 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "18": [ + "2024-06-22 6 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "19": [ + "2024-06-22 6 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "20": [ + "2024-06-22 6 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "22": [ + "2024-06-22 6 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "23": [ + "2024-06-22 6 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "24": [ + "2024-06-22 6 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "25": [ + "2024-06-22 6 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "26": [ + "2024-06-22 6 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "27": [ + "2024-06-22 6 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "28": [ + "2024-06-22 6 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "29": [ + "2024-06-22 6 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "30": [ + "2024-06-22 6 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "31": [ + "2024-06-22 6 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "32": [ + "2024-06-22 6 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "33": [ + "2024-06-22 6 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "34": [ + "2024-06-22 6 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "35": [ + "2024-06-22 6 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "36": [ + "2024-06-22 6 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "37": [ + "2024-06-22 6 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "38": [ + "2024-06-22 6 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "39": [ + "2024-06-22 6 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "40": [ + "2024-06-22 6 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "41": [ + "2024-06-22 6 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "42": [ + "2024-06-22 6 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "43": [ + "2024-06-22 6 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "44": [ + "2024-06-22 6 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "45": [ + "2024-06-22 6 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "46": [ + "2024-06-22 6 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "47": [ + "2024-06-22 6 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "48": [ + "2024-06-22 6 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "49": [ + "2024-06-22 6 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "50": [ + "2024-06-22 6 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "51": [ + "2024-06-22 6 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "52": [ + "2024-06-22 6 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "53": [ + "2024-06-22 6 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "54": [ + "2024-06-22 6 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "55": [ + "2024-06-22 6 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "56": [ + "2024-06-22 6 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "57": [ + "2024-06-22 6 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "58": [ + "2024-06-22 6 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "59": [ + "2024-06-22 6 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "60": [ + "2024-06-22 6 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "61": [ + "2024-06-22 6 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "62": [ + "2024-06-22 6 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "63": [ + "2024-06-22 6 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "64": [ + "2024-06-22 6 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "65": [ + "2024-06-22 6 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "66": [ + "2024-06-22 6 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "67": [ + "2024-06-22 6 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "68": [ + "2024-06-22 6 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "69": [ + "2024-06-22 6 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "70": [ + "2024-06-22 6 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "71": [ + "2024-06-22 6 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "72": [ + "2024-06-22 6 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "73": [ + "2024-06-22 6 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "74": [ + "2024-06-22 6 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "75": [ + "2024-06-22 6 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "76": [ + "2024-06-22 6 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "77": [ + "2024-06-22 6 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "78": [ + "2024-06-22 6 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "79": [ + "2024-06-22 6 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "80": [ + "2024-06-22 6 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "81": [ + "2024-06-22 6 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "82": [ + "2024-06-22 6 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "83": [ + "2024-06-22 6 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "84": [ + "2024-06-22 6 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "85": [ + "2024-06-22 6 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "86": [ + "2024-06-22 6 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "87": [ + "2024-06-22 6 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "88": [ + "2024-06-22 6 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "89": [ + "2024-06-22 6 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "90": [ + "2024-06-22 6 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "91": [ + "2024-06-22 6 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "92": [ + "2024-06-22 6 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "93": [ + "2024-06-22 6 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "94": [ + "2024-06-22 6 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "95": [ + "2024-06-22 6 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 361956, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 361956, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 9, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 13, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 15, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 225, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 227, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 221, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 65, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 4, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 7, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 2, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 226, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 223, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 222, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 22, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 19, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 19, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-23 5 19:08:00 00,FF88,80", + 77, + 25 + ], + "1": [ + "2025-05-02 5 01:08:00 00,FF88,80", + 75, + 90 + ], + "2": [ + "2025-05-14 3 07:08:00 00,FF88,80", + 74, + 59 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:47:18.637559", + "pos": 2, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:47:00", + "connection_status": true, + "connection_end": "2025-06-01 03:47:05", + "connection_consume": 5.2, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025031500002", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025031500002", + "actual_time": "2025-06-01 03:47:12.302432", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:47:12 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:47:12", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:47:14.820431", + "getProfile_end_time": "2025-06-01 03:47:14.987132", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 229997, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 257860, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 283556, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 309441, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 322849, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 335899, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 348775, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 375846, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 402623, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 415593, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 428674, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 442132, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 204731, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 205451, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 206427, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 207260, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 208099, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 209013, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 209766, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 210542, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 211214, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 212022, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 212739, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 213532, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 214595, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 215619, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 216460, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 217519, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 218612, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 219356, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 220177, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 221095, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 222148, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 223237, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 224118, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 224934, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 225609, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 226628, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 227459, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 228170, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 228910, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 229635, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 230438, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 231128, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 231902, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 232525, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 233484, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 234457, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 235181, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 236081, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 236859, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 237593, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 238244, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 239003, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 239727, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 240453, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 241349, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 242322, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 243409, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 244427, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 245378, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 246281, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 247220, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 248176, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 249010, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 250031, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 250748, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 251391, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 252254, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 252896, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 253650, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 254328, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 255171, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 256087, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 256998, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 257734, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 258363, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 258990, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 259996, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 260900, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 261521, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 262368, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 263051, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 264148, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 264785, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 265668, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 266548, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 267334, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 267961, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 268812, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 269841, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 270665, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 271433, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 272209, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 272999, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 273657, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 274659, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 275522, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 276164, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 276930, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 278036, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 278899, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 279835, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 280904, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 281464, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 282059, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 282344, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 282674, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 283228, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 283527, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 284143, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 284710, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 285226, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 285557, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 285837, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 286353, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 286902, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 287452, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 287899, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 288148, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 288651, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 288918, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 289493, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 289756, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 290021, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 290381, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 290726, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 291229, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 291770, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 292158, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 292665, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 293256, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 293720, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 294012, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 294378, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 294680, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 295144, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 295707, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 296287, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 296771, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 297266, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 297707, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 298043, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 298468, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 298897, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 299248, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 299782, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 300208, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 300489, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 301021, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 301532, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 301910, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 302467, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 302804, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 303291, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 303856, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 304361, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 304636, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 305067, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 305393, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 305889, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 306310, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 306700, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 307128, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 307502, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 308051, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 308581, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 309019, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 309382, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 309980, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 310490, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 310980, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 311542, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 311828, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 312123, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 312711, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 313101, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 313516, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 313994, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 314317, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 314713, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 314986, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 315390, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 315892, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 316492, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 316953, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 317238, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 317656, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 317943, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 318231, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 318484, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 318902, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 319248, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 319672, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 320116, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 320909, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 321586, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 322477, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 323271, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 323995, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 324810, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 325642, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 326426, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 327263, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 328065, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 328708, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 329516, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 330594, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 331309, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 332021, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 332727, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 333482, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 334401, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 335276, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 335949, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 336592, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 337334, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 338008, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 338684, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 339746, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 340649, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 341386, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 342268, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 343023, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 344079, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 345044, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 345863, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 346676, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 347403, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 348430, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 349391, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 350255, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 350958, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 351677, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 352611, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 353579, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 354340, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 354960, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 355670, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 356738, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 357665, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 358649, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 359690, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 360649, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 361352, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 362308, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 363009, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 363792, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 364636, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 365731, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 366679, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 367509, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 368138, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 369239, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 370294, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 370997, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 371992, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 372615, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 373408, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 374261, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 374880, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 375931, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 376784, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 377425, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 378052, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 379007, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 379769, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 380501, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 381369, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 382361, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 383363, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 384031, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 385048, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 385833, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 386694, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 387486, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 388375, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 389322, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 390066, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 390912, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 391940, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 392708, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 393492, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 394367, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 395314, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 395882, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 396442, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 396869, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 397216, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 397656, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 398141, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 398443, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 398842, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 399171, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 399787, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 400167, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 400426, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 400888, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 401394, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 401801, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 402125, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 402405, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 402994, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 403381, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 403668, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 404017, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 404497, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 404946, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 405532, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 406146, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 406718, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 407030, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 407615, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 407992, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 408362, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 408828, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 409426, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 409776, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 410094, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 410556, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 411064, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 411621, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 411914, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 412456, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 412914, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 413455, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 413831, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 414119, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 414369, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 414960, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 415262, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 415762, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 416203, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 416558, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 417012, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 417319, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 417747, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 418018, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 418375, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 418791, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 419119, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 419673, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 419966, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 420394, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 420643, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 421021, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 421578, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 421844, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 422142, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 422715, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 423254, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 423688, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 424291, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 424746, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 425347, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 425859, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 426159, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 426678, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 427086, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 427674, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 428029, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 428288, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 428882, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 429221, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 429720, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 430111, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 430506, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 431089, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 431668, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 432257, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 432726, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 433037, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 433446, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 434018, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 434564, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 434863, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 435395, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:47:23.207892", + "reading_end_time": "2025-06-01 03:47:40.711999", + "reading_consume": 17.618713, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 204032, + 0 + ], + "1": [ + "2024-06-10 1 00:15:00 00,FF88,80", + 8, + 204033, + 0 + ], + "2": [ + "2024-06-10 1 00:30:00 00,FF88,80", + 8, + 204033, + 0 + ], + "3": [ + "2024-06-10 1 00:45:00 00,FF88,80", + 8, + 204034, + 0 + ], + "4": [ + "2024-06-10 1 01:00:00 00,FF88,80", + 8, + 204035, + 0 + ], + "5": [ + "2024-06-10 1 01:15:00 00,FF88,80", + 8, + 204036, + 0 + ], + "6": [ + "2024-06-10 1 01:30:00 00,FF88,80", + 8, + 204036, + 0 + ], + "7": [ + "2024-06-10 1 01:45:00 00,FF88,80", + 8, + 204037, + 0 + ], + "8": [ + "2024-06-10 1 02:00:00 00,FF88,80", + 8, + 204038, + 0 + ], + "9": [ + "2024-06-10 1 02:15:00 00,FF88,80", + 8, + 204039, + 0 + ], + "10": [ + "2024-06-10 1 02:30:00 00,FF88,80", + 8, + 204039, + 0 + ], + "11": [ + "2024-06-10 1 02:45:00 00,FF88,80", + 8, + 204040, + 0 + ], + "12": [ + "2024-06-10 1 03:00:00 00,FF88,80", + 8, + 204042, + 0 + ], + "13": [ + "2024-06-10 1 03:15:00 00,FF88,80", + 8, + 204044, + 0 + ], + "14": [ + "2024-06-10 1 03:30:00 00,FF88,80", + 8, + 204046, + 0 + ], + "15": [ + "2024-06-10 1 03:45:00 00,FF88,80", + 8, + 204048, + 0 + ], + "16": [ + "2024-06-10 1 04:00:00 00,FF88,80", + 8, + 204049, + 0 + ], + "17": [ + "2024-06-10 1 04:15:00 00,FF88,80", + 8, + 204051, + 0 + ], + "18": [ + "2024-06-10 1 04:30:00 00,FF88,80", + 8, + 204052, + 0 + ], + "19": [ + "2024-06-10 1 04:45:00 00,FF88,80", + 8, + 204054, + 0 + ], + "20": [ + "2024-06-10 1 05:00:00 00,FF88,80", + 8, + 204055, + 0 + ], + "21": [ + "2024-06-10 1 05:15:00 00,FF88,80", + 8, + 204056, + 0 + ], + "22": [ + "2024-06-10 1 05:30:00 00,FF88,80", + 8, + 204058, + 0 + ], + "23": [ + "2024-06-10 1 05:45:00 00,FF88,80", + 8, + 204060, + 0 + ], + "24": [ + "2024-06-10 1 06:00:00 00,FF88,80", + 8, + 204068, + 0 + ], + "25": [ + "2024-06-10 1 06:15:00 00,FF88,80", + 8, + 204077, + 0 + ], + "26": [ + "2024-06-10 1 06:30:00 00,FF88,80", + 8, + 204088, + 0 + ], + "27": [ + "2024-06-10 1 06:45:00 00,FF88,80", + 8, + 204101, + 0 + ], + "28": [ + "2024-06-10 1 07:00:00 00,FF88,80", + 8, + 204114, + 0 + ], + "29": [ + "2024-06-10 1 07:15:00 00,FF88,80", + 8, + 204129, + 0 + ], + "30": [ + "2024-06-10 1 07:30:00 00,FF88,80", + 8, + 204144, + 0 + ], + "31": [ + "2024-06-10 1 07:45:00 00,FF88,80", + 8, + 204155, + 0 + ], + "32": [ + "2024-06-10 1 08:00:00 00,FF88,80", + 8, + 204167, + 0 + ], + "33": [ + "2024-06-10 1 08:15:00 00,FF88,80", + 8, + 204179, + 0 + ], + "34": [ + "2024-06-10 1 08:30:00 00,FF88,80", + 8, + 204191, + 0 + ], + "35": [ + "2024-06-10 1 08:45:00 00,FF88,80", + 8, + 204200, + 0 + ], + "36": [ + "2024-06-10 1 09:00:00 00,FF88,80", + 8, + 204211, + 0 + ], + "37": [ + "2024-06-10 1 09:15:00 00,FF88,80", + 8, + 204225, + 0 + ], + "38": [ + "2024-06-10 1 09:30:00 00,FF88,80", + 8, + 204240, + 0 + ], + "39": [ + "2024-06-10 1 09:45:00 00,FF88,80", + 8, + 204249, + 0 + ], + "40": [ + "2024-06-10 1 10:00:00 00,FF88,80", + 8, + 204252, + 0 + ], + "41": [ + "2024-06-10 1 10:15:00 00,FF88,80", + 8, + 204258, + 0 + ], + "42": [ + "2024-06-10 1 10:30:00 00,FF88,80", + 8, + 204265, + 0 + ], + "43": [ + "2024-06-10 1 10:45:00 00,FF88,80", + 8, + 204268, + 0 + ], + "44": [ + "2024-06-10 1 11:00:00 00,FF88,80", + 8, + 204272, + 0 + ], + "45": [ + "2024-06-10 1 11:15:00 00,FF88,80", + 8, + 204277, + 0 + ], + "46": [ + "2024-06-10 1 11:30:00 00,FF88,80", + 8, + 204281, + 0 + ], + "47": [ + "2024-06-10 1 11:45:00 00,FF88,80", + 8, + 204286, + 0 + ], + "48": [ + "2024-06-10 1 12:00:00 00,FF88,80", + 8, + 204292, + 0 + ], + "49": [ + "2024-06-10 1 12:15:00 00,FF88,80", + 8, + 204296, + 0 + ], + "50": [ + "2024-06-10 1 12:30:00 00,FF88,80", + 8, + 204302, + 0 + ], + "51": [ + "2024-06-10 1 12:45:00 00,FF88,80", + 8, + 204308, + 0 + ], + "52": [ + "2024-06-10 1 13:00:00 00,FF88,80", + 8, + 204314, + 0 + ], + "53": [ + "2024-06-10 1 13:15:00 00,FF88,80", + 8, + 204319, + 0 + ], + "54": [ + "2024-06-10 1 13:30:00 00,FF88,80", + 8, + 204322, + 0 + ], + "55": [ + "2024-06-10 1 13:45:00 00,FF88,80", + 8, + 204327, + 0 + ], + "56": [ + "2024-06-10 1 14:00:00 00,FF88,80", + 8, + 204331, + 0 + ], + "57": [ + "2024-06-10 1 14:15:00 00,FF88,80", + 8, + 204335, + 0 + ], + "58": [ + "2024-06-10 1 14:30:00 00,FF88,80", + 8, + 204339, + 0 + ], + "59": [ + "2024-06-10 1 14:45:00 00,FF88,80", + 8, + 204344, + 0 + ], + "60": [ + "2024-06-10 1 15:00:00 00,FF88,80", + 8, + 204349, + 0 + ], + "61": [ + "2024-06-10 1 15:15:00 00,FF88,80", + 8, + 204354, + 0 + ], + "62": [ + "2024-06-10 1 15:30:00 00,FF88,80", + 8, + 204361, + 0 + ], + "63": [ + "2024-06-10 1 15:45:00 00,FF88,80", + 8, + 204366, + 0 + ], + "64": [ + "2024-06-10 1 16:00:00 00,FF88,80", + 8, + 204373, + 0 + ], + "65": [ + "2024-06-10 1 16:15:00 00,FF88,80", + 8, + 204377, + 0 + ], + "66": [ + "2024-06-10 1 16:30:00 00,FF88,80", + 8, + 204380, + 0 + ], + "67": [ + "2024-06-10 1 16:45:00 00,FF88,80", + 8, + 204387, + 0 + ], + "68": [ + "2024-06-10 1 17:00:00 00,FF88,80", + 8, + 204397, + 0 + ], + "69": [ + "2024-06-10 1 17:15:00 00,FF88,80", + 8, + 204410, + 0 + ], + "70": [ + "2024-06-10 1 17:30:00 00,FF88,80", + 8, + 204420, + 0 + ], + "71": [ + "2024-06-10 1 17:45:00 00,FF88,80", + 8, + 204428, + 0 + ], + "72": [ + "2024-06-10 1 18:00:00 00,FF88,80", + 8, + 204437, + 0 + ], + "73": [ + "2024-06-10 1 18:15:00 00,FF88,80", + 8, + 204451, + 0 + ], + "74": [ + "2024-06-10 1 18:30:00 00,FF88,80", + 8, + 204461, + 0 + ], + "75": [ + "2024-06-10 1 18:45:00 00,FF88,80", + 8, + 204476, + 0 + ], + "76": [ + "2024-06-10 1 19:00:00 00,FF88,80", + 8, + 204485, + 0 + ], + "77": [ + "2024-06-10 1 19:15:00 00,FF88,80", + 8, + 204498, + 0 + ], + "78": [ + "2024-06-10 1 19:30:00 00,FF88,80", + 8, + 204507, + 0 + ], + "79": [ + "2024-06-10 1 19:45:00 00,FF88,80", + 8, + 204520, + 0 + ], + "80": [ + "2024-06-10 1 20:00:00 00,FF88,80", + 8, + 204528, + 0 + ], + "81": [ + "2024-06-10 1 20:15:00 00,FF88,80", + 8, + 204537, + 0 + ], + "82": [ + "2024-06-10 1 20:30:00 00,FF88,80", + 8, + 204545, + 0 + ], + "83": [ + "2024-06-10 1 20:45:00 00,FF88,80", + 8, + 204558, + 0 + ], + "84": [ + "2024-06-10 1 21:00:00 00,FF88,80", + 8, + 204573, + 0 + ], + "85": [ + "2024-06-10 1 21:15:00 00,FF88,80", + 8, + 204585, + 0 + ], + "86": [ + "2024-06-10 1 21:30:00 00,FF88,80", + 8, + 204593, + 0 + ], + "87": [ + "2024-06-10 1 21:45:00 00,FF88,80", + 8, + 204606, + 0 + ], + "88": [ + "2024-06-10 1 22:00:00 00,FF88,80", + 8, + 204614, + 0 + ], + "89": [ + "2024-06-10 1 22:15:00 00,FF88,80", + 8, + 204627, + 0 + ], + "90": [ + "2024-06-10 1 22:30:00 00,FF88,80", + 8, + 204637, + 0 + ], + "91": [ + "2024-06-10 1 22:45:00 00,FF88,80", + 8, + 204647, + 0 + ], + "92": [ + "2024-06-10 1 23:00:00 00,FF88,80", + 8, + 204653, + 0 + ], + "93": [ + "2024-06-10 1 23:15:00 00,FF88,80", + 8, + 204660, + 0 + ], + "94": [ + "2024-06-10 1 23:30:00 00,FF88,80", + 8, + 204664, + 0 + ], + "95": [ + "2024-06-10 1 23:45:00 00,FF88,80", + 8, + 204670, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "1": [ + "2024-06-10 1 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "2": [ + "2024-06-10 1 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "3": [ + "2024-06-10 1 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "4": [ + "2024-06-10 1 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "5": [ + "2024-06-10 1 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "6": [ + "2024-06-10 1 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "7": [ + "2024-06-10 1 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "8": [ + "2024-06-10 1 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "10": [ + "2024-06-10 1 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "11": [ + "2024-06-10 1 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "12": [ + "2024-06-10 1 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "13": [ + "2024-06-10 1 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "14": [ + "2024-06-10 1 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "15": [ + "2024-06-10 1 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "16": [ + "2024-06-10 1 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "17": [ + "2024-06-10 1 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "18": [ + "2024-06-10 1 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "19": [ + "2024-06-10 1 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "20": [ + "2024-06-10 1 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "21": [ + "2024-06-10 1 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "22": [ + "2024-06-10 1 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "23": [ + "2024-06-10 1 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "24": [ + "2024-06-10 1 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "25": [ + "2024-06-10 1 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "26": [ + "2024-06-10 1 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "27": [ + "2024-06-10 1 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "28": [ + "2024-06-10 1 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "29": [ + "2024-06-10 1 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "30": [ + "2024-06-10 1 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "31": [ + "2024-06-10 1 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "32": [ + "2024-06-10 1 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "33": [ + "2024-06-10 1 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "34": [ + "2024-06-10 1 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "35": [ + "2024-06-10 1 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "36": [ + "2024-06-10 1 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "37": [ + "2024-06-10 1 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "38": [ + "2024-06-10 1 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "39": [ + "2024-06-10 1 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "40": [ + "2024-06-10 1 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "41": [ + "2024-06-10 1 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "42": [ + "2024-06-10 1 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "43": [ + "2024-06-10 1 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "44": [ + "2024-06-10 1 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "45": [ + "2024-06-10 1 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "46": [ + "2024-06-10 1 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "47": [ + "2024-06-10 1 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "48": [ + "2024-06-10 1 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "49": [ + "2024-06-10 1 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "50": [ + "2024-06-10 1 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "51": [ + "2024-06-10 1 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "52": [ + "2024-06-10 1 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "53": [ + "2024-06-10 1 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "54": [ + "2024-06-10 1 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "55": [ + "2024-06-10 1 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "56": [ + "2024-06-10 1 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "57": [ + "2024-06-10 1 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "58": [ + "2024-06-10 1 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "59": [ + "2024-06-10 1 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "60": [ + "2024-06-10 1 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "61": [ + "2024-06-10 1 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "62": [ + "2024-06-10 1 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "63": [ + "2024-06-10 1 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "64": [ + "2024-06-10 1 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "65": [ + "2024-06-10 1 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "66": [ + "2024-06-10 1 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "67": [ + "2024-06-10 1 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "68": [ + "2024-06-10 1 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "69": [ + "2024-06-10 1 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "70": [ + "2024-06-10 1 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "71": [ + "2024-06-10 1 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "72": [ + "2024-06-10 1 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "73": [ + "2024-06-10 1 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "74": [ + "2024-06-10 1 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "75": [ + "2024-06-10 1 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "76": [ + "2024-06-10 1 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "77": [ + "2024-06-10 1 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "78": [ + "2024-06-10 1 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "79": [ + "2024-06-10 1 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "80": [ + "2024-06-10 1 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "81": [ + "2024-06-10 1 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "82": [ + "2024-06-10 1 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "83": [ + "2024-06-10 1 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "84": [ + "2024-06-10 1 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "85": [ + "2024-06-10 1 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "86": [ + "2024-06-10 1 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "87": [ + "2024-06-10 1 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "88": [ + "2024-06-10 1 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "89": [ + "2024-06-10 1 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "90": [ + "2024-06-10 1 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "91": [ + "2024-06-10 1 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "92": [ + "2024-06-10 1 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "93": [ + "2024-06-10 1 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "94": [ + "2024-06-10 1 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "95": [ + "2024-06-10 1 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 435395, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 435395, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 9, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 0, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 0, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 223, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 223, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 225, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 155, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 1, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 23, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 13, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 221, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 224, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 6, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 5, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-01 4 09:47:00 00,FF88,80", + 76, + 93 + ], + "1": [ + "2025-05-17 6 11:47:00 00,FF88,80", + 72, + 58 + ], + "2": [ + "2025-05-23 5 00:47:00 00,FF88,80", + 71, + 56 + ], + "3": [ + "2025-05-03 6 14:47:00 00,FF88,80", + 77, + 33 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:05:13.867173", + "pos": 3, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:05:00", + "connection_status": true, + "connection_end": "2025-06-01 03:05:05", + "connection_consume": 5.5, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025031500003", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025031500003", + "actual_time": "2025-06-01 03:05:07.470903", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:05:07 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:05:07", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:05:08.333247", + "getProfile_end_time": "2025-06-01 03:05:09.862693", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 155601, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 189092, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 221275, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 254307, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 269439, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 287596, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 303559, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 336637, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 369960, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 385493, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 402570, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 418429, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 123529, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 124606, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 125844, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 127040, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 127996, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 129325, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 130353, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 131686, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 132935, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 133893, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 135171, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 136339, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 137639, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 138424, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 139575, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 140343, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 141190, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 142183, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 143523, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 144698, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 145624, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 146480, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 147741, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 148953, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 149889, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 150774, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 152073, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 153418, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 154705, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 155927, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 156692, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 157497, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 158601, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 159492, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 160364, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 161383, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 162307, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 163303, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 164423, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 165576, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 166635, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 167800, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 168674, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 169621, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 170526, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 171468, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 172528, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 173778, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 174781, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 175763, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 176820, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 177643, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 178475, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 179777, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 181002, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 181941, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 183297, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 184259, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 185427, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 186261, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 187309, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 188267, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 189100, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 190289, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 191483, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 192719, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 193778, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 195033, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 196095, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 197110, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 198017, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 198958, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 200032, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 201339, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 202581, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 203382, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 204617, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 205540, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 206498, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 207501, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 208535, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 209542, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 210863, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 211790, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 212999, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 213970, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 215234, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 216186, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 217200, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 218313, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 219178, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 220068, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 220660, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 221400, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 221986, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 222442, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 223024, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 223338, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 223974, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 224647, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 224993, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 225621, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 226344, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 227001, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 227560, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 228165, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 228708, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 229179, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 229575, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 229952, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 230503, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 231202, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 231612, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 232284, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 233007, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 233464, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 233868, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 234509, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 235245, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 235567, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 235881, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 236617, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 236969, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 237457, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 237984, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 238361, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 238804, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 239215, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 239874, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 240292, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 240722, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 241084, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 241749, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 242354, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 242719, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 243364, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 243793, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 244137, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 244476, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 245112, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 245767, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 246263, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 246575, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 247261, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 247843, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 248218, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 248860, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 249528, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 249922, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 250505, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 250953, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 251406, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 251946, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 252262, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 252693, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 253091, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 253517, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 254123, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 254644, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 255083, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 255431, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 256179, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 256741, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 257268, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 257989, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 258539, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 258956, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 259269, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 259802, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 260288, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 260764, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 261320, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 261675, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 262083, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 262835, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 263322, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 263734, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 264209, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 264772, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 265372, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 265829, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 266505, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 267257, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 268079, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 268946, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 270238, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 271301, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 272217, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 273067, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 274207, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 275260, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 276465, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 277575, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 278481, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 279714, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 280632, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 281586, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 282556, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 283412, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 284372, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 285481, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 286493, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 287260, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 288445, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 289670, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 290919, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 292016, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 292971, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 294133, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 295093, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 296290, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 297368, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 298656, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 300026, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 300839, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 301667, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 302858, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 303851, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 305077, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 305940, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 307161, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 308026, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 309057, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 310415, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 311202, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 312225, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 313093, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 314347, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 315408, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 316629, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 317727, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 318735, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 319680, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 320710, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 321653, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 322980, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 324157, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 325240, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 326379, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 327370, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 328531, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 329381, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 330464, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 331352, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 332491, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 333691, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 334772, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 335689, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 336735, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 338071, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 339401, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 340605, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 341889, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 342735, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 343819, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 345089, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 345859, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 346877, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 347732, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 348536, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 349897, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 350851, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 351729, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 352917, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 354009, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 354975, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 355776, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 356826, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 357685, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 358663, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 359768, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 360670, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 361818, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 362548, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 362979, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 363660, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 364363, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 364936, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 365381, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 365972, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 366462, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 366884, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 367437, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 368044, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 368385, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 368760, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 369400, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 369833, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 370259, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 370611, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 371281, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 371855, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 372511, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 372967, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 373626, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 374203, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 374635, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 375310, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 376015, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 376627, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 377149, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 377531, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 378195, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 378953, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 379300, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 379973, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 380345, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 380726, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 381432, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 381885, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 382601, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 382930, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 383470, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 383977, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 384587, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 385042, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 385576, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 385935, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 386497, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 386975, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 387457, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 387980, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 388428, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 388972, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 389520, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 390230, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 390921, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 391664, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 392403, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 393090, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 393721, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 394411, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 394973, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 395503, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 396170, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 396789, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 397350, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 397855, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 398320, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 398637, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 399110, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 399629, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 400241, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 400880, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 401283, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 401845, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 402608, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 403344, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 403824, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 404211, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 404859, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 405169, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 405677, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 406223, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 406531, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 406978, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 407326, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 407800, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 408221, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 408949, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 409532, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 409852, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 410283, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 410808, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 411133, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:05:14.631691", + "reading_end_time": "2025-06-01 03:05:25.451626", + "reading_consume": 11.271157, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 122382, + 0 + ], + "1": [ + "2024-07-03 3 00:15:00 00,FF88,80", + 8, + 122384, + 0 + ], + "2": [ + "2024-07-03 3 00:30:00 00,FF88,80", + 8, + 122386, + 0 + ], + "3": [ + "2024-07-03 3 00:45:00 00,FF88,80", + 8, + 122387, + 0 + ], + "4": [ + "2024-07-03 3 01:00:00 00,FF88,80", + 8, + 122388, + 0 + ], + "5": [ + "2024-07-03 3 01:15:00 00,FF88,80", + 8, + 122390, + 0 + ], + "6": [ + "2024-07-03 3 01:30:00 00,FF88,80", + 8, + 122392, + 0 + ], + "7": [ + "2024-07-03 3 01:45:00 00,FF88,80", + 8, + 122393, + 0 + ], + "8": [ + "2024-07-03 3 02:00:00 00,FF88,80", + 8, + 122395, + 0 + ], + "9": [ + "2024-07-03 3 02:15:00 00,FF88,80", + 8, + 122396, + 0 + ], + "10": [ + "2024-07-03 3 02:30:00 00,FF88,80", + 8, + 122397, + 0 + ], + "11": [ + "2024-07-03 3 02:45:00 00,FF88,80", + 8, + 122399, + 0 + ], + "12": [ + "2024-07-03 3 03:00:00 00,FF88,80", + 8, + 122400, + 0 + ], + "13": [ + "2024-07-03 3 03:15:00 00,FF88,80", + 8, + 122402, + 0 + ], + "14": [ + "2024-07-03 3 03:30:00 00,FF88,80", + 8, + 122403, + 0 + ], + "15": [ + "2024-07-03 3 03:45:00 00,FF88,80", + 8, + 122405, + 0 + ], + "16": [ + "2024-07-03 3 04:00:00 00,FF88,80", + 8, + 122406, + 0 + ], + "17": [ + "2024-07-03 3 04:15:00 00,FF88,80", + 8, + 122407, + 0 + ], + "18": [ + "2024-07-03 3 04:30:00 00,FF88,80", + 8, + 122408, + 0 + ], + "19": [ + "2024-07-03 3 04:45:00 00,FF88,80", + 8, + 122410, + 0 + ], + "20": [ + "2024-07-03 3 05:00:00 00,FF88,80", + 8, + 122412, + 0 + ], + "21": [ + "2024-07-03 3 05:15:00 00,FF88,80", + 8, + 122412, + 0 + ], + "22": [ + "2024-07-03 3 05:30:00 00,FF88,80", + 8, + 122413, + 0 + ], + "23": [ + "2024-07-03 3 05:45:00 00,FF88,80", + 8, + 122416, + 0 + ], + "24": [ + "2024-07-03 3 06:00:00 00,FF88,80", + 8, + 122427, + 0 + ], + "25": [ + "2024-07-03 3 06:15:00 00,FF88,80", + 8, + 122444, + 0 + ], + "26": [ + "2024-07-03 3 06:30:00 00,FF88,80", + 8, + 122459, + 0 + ], + "27": [ + "2024-07-03 3 06:45:00 00,FF88,80", + 8, + 122472, + 0 + ], + "28": [ + "2024-07-03 3 07:00:00 00,FF88,80", + 8, + 122489, + 0 + ], + "29": [ + "2024-07-03 3 07:15:00 00,FF88,80", + 8, + 122503, + 0 + ], + "30": [ + "2024-07-03 3 07:30:00 00,FF88,80", + 8, + 122517, + 0 + ], + "31": [ + "2024-07-03 3 07:45:00 00,FF88,80", + 8, + 122528, + 0 + ], + "32": [ + "2024-07-03 3 08:00:00 00,FF88,80", + 8, + 122543, + 0 + ], + "33": [ + "2024-07-03 3 08:15:00 00,FF88,80", + 8, + 122559, + 0 + ], + "34": [ + "2024-07-03 3 08:30:00 00,FF88,80", + 8, + 122574, + 0 + ], + "35": [ + "2024-07-03 3 08:45:00 00,FF88,80", + 8, + 122588, + 0 + ], + "36": [ + "2024-07-03 3 09:00:00 00,FF88,80", + 8, + 122605, + 0 + ], + "37": [ + "2024-07-03 3 09:15:00 00,FF88,80", + 8, + 122622, + 0 + ], + "38": [ + "2024-07-03 3 09:30:00 00,FF88,80", + 8, + 122635, + 0 + ], + "39": [ + "2024-07-03 3 09:45:00 00,FF88,80", + 8, + 122652, + 0 + ], + "40": [ + "2024-07-03 3 10:00:00 00,FF88,80", + 8, + 122661, + 0 + ], + "41": [ + "2024-07-03 3 10:15:00 00,FF88,80", + 8, + 122667, + 0 + ], + "42": [ + "2024-07-03 3 10:30:00 00,FF88,80", + 8, + 122673, + 0 + ], + "43": [ + "2024-07-03 3 10:45:00 00,FF88,80", + 8, + 122679, + 0 + ], + "44": [ + "2024-07-03 3 11:00:00 00,FF88,80", + 8, + 122688, + 0 + ], + "45": [ + "2024-07-03 3 11:15:00 00,FF88,80", + 8, + 122692, + 0 + ], + "46": [ + "2024-07-03 3 11:30:00 00,FF88,80", + 8, + 122698, + 0 + ], + "47": [ + "2024-07-03 3 11:45:00 00,FF88,80", + 8, + 122703, + 0 + ], + "48": [ + "2024-07-03 3 12:00:00 00,FF88,80", + 8, + 122707, + 0 + ], + "49": [ + "2024-07-03 3 12:15:00 00,FF88,80", + 8, + 122712, + 0 + ], + "50": [ + "2024-07-03 3 12:30:00 00,FF88,80", + 8, + 122720, + 0 + ], + "51": [ + "2024-07-03 3 12:45:00 00,FF88,80", + 8, + 122728, + 0 + ], + "52": [ + "2024-07-03 3 13:00:00 00,FF88,80", + 8, + 122737, + 0 + ], + "53": [ + "2024-07-03 3 13:15:00 00,FF88,80", + 8, + 122746, + 0 + ], + "54": [ + "2024-07-03 3 13:30:00 00,FF88,80", + 8, + 122753, + 0 + ], + "55": [ + "2024-07-03 3 13:45:00 00,FF88,80", + 8, + 122758, + 0 + ], + "56": [ + "2024-07-03 3 14:00:00 00,FF88,80", + 8, + 122763, + 0 + ], + "57": [ + "2024-07-03 3 14:15:00 00,FF88,80", + 8, + 122771, + 0 + ], + "58": [ + "2024-07-03 3 14:30:00 00,FF88,80", + 8, + 122776, + 0 + ], + "59": [ + "2024-07-03 3 14:45:00 00,FF88,80", + 8, + 122784, + 0 + ], + "60": [ + "2024-07-03 3 15:00:00 00,FF88,80", + 8, + 122791, + 0 + ], + "61": [ + "2024-07-03 3 15:15:00 00,FF88,80", + 8, + 122798, + 0 + ], + "62": [ + "2024-07-03 3 15:30:00 00,FF88,80", + 8, + 122805, + 0 + ], + "63": [ + "2024-07-03 3 15:45:00 00,FF88,80", + 8, + 122812, + 0 + ], + "64": [ + "2024-07-03 3 16:00:00 00,FF88,80", + 8, + 122819, + 0 + ], + "65": [ + "2024-07-03 3 16:15:00 00,FF88,80", + 8, + 122825, + 0 + ], + "66": [ + "2024-07-03 3 16:30:00 00,FF88,80", + 8, + 122831, + 0 + ], + "67": [ + "2024-07-03 3 16:45:00 00,FF88,80", + 8, + 122836, + 0 + ], + "68": [ + "2024-07-03 3 17:00:00 00,FF88,80", + 8, + 122850, + 0 + ], + "69": [ + "2024-07-03 3 17:15:00 00,FF88,80", + 8, + 122867, + 0 + ], + "70": [ + "2024-07-03 3 17:30:00 00,FF88,80", + 8, + 122880, + 0 + ], + "71": [ + "2024-07-03 3 17:45:00 00,FF88,80", + 8, + 122899, + 0 + ], + "72": [ + "2024-07-03 3 18:00:00 00,FF88,80", + 8, + 122910, + 0 + ], + "73": [ + "2024-07-03 3 18:15:00 00,FF88,80", + 8, + 122928, + 0 + ], + "74": [ + "2024-07-03 3 18:30:00 00,FF88,80", + 8, + 122942, + 0 + ], + "75": [ + "2024-07-03 3 18:45:00 00,FF88,80", + 8, + 122952, + 0 + ], + "76": [ + "2024-07-03 3 19:00:00 00,FF88,80", + 8, + 122970, + 0 + ], + "77": [ + "2024-07-03 3 19:15:00 00,FF88,80", + 8, + 122987, + 0 + ], + "78": [ + "2024-07-03 3 19:30:00 00,FF88,80", + 8, + 123003, + 0 + ], + "79": [ + "2024-07-03 3 19:45:00 00,FF88,80", + 8, + 123019, + 0 + ], + "80": [ + "2024-07-03 3 20:00:00 00,FF88,80", + 8, + 123030, + 0 + ], + "81": [ + "2024-07-03 3 20:15:00 00,FF88,80", + 8, + 123045, + 0 + ], + "82": [ + "2024-07-03 3 20:30:00 00,FF88,80", + 8, + 123059, + 0 + ], + "83": [ + "2024-07-03 3 20:45:00 00,FF88,80", + 8, + 123073, + 0 + ], + "84": [ + "2024-07-03 3 21:00:00 00,FF88,80", + 8, + 123085, + 0 + ], + "85": [ + "2024-07-03 3 21:15:00 00,FF88,80", + 8, + 123095, + 0 + ], + "86": [ + "2024-07-03 3 21:30:00 00,FF88,80", + 8, + 123107, + 0 + ], + "87": [ + "2024-07-03 3 21:45:00 00,FF88,80", + 8, + 123123, + 0 + ], + "88": [ + "2024-07-03 3 22:00:00 00,FF88,80", + 8, + 123138, + 0 + ], + "89": [ + "2024-07-03 3 22:15:00 00,FF88,80", + 8, + 123149, + 0 + ], + "90": [ + "2024-07-03 3 22:30:00 00,FF88,80", + 8, + 123164, + 0 + ], + "91": [ + "2024-07-03 3 22:45:00 00,FF88,80", + 8, + 123178, + 0 + ], + "92": [ + "2024-07-03 3 23:00:00 00,FF88,80", + 8, + 123182, + 0 + ], + "93": [ + "2024-07-03 3 23:15:00 00,FF88,80", + 8, + 123189, + 0 + ], + "94": [ + "2024-07-03 3 23:30:00 00,FF88,80", + 8, + 123193, + 0 + ], + "95": [ + "2024-07-03 3 23:45:00 00,FF88,80", + 8, + 123200, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "1": [ + "2024-07-03 3 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "2": [ + "2024-07-03 3 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "3": [ + "2024-07-03 3 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "4": [ + "2024-07-03 3 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "5": [ + "2024-07-03 3 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "6": [ + "2024-07-03 3 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "7": [ + "2024-07-03 3 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "8": [ + "2024-07-03 3 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "9": [ + "2024-07-03 3 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "10": [ + "2024-07-03 3 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "11": [ + "2024-07-03 3 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "12": [ + "2024-07-03 3 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "13": [ + "2024-07-03 3 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "14": [ + "2024-07-03 3 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "15": [ + "2024-07-03 3 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "16": [ + "2024-07-03 3 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "17": [ + "2024-07-03 3 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "18": [ + "2024-07-03 3 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "19": [ + "2024-07-03 3 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "20": [ + "2024-07-03 3 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "21": [ + "2024-07-03 3 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "22": [ + "2024-07-03 3 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "23": [ + "2024-07-03 3 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "24": [ + "2024-07-03 3 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "25": [ + "2024-07-03 3 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "26": [ + "2024-07-03 3 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "27": [ + "2024-07-03 3 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "28": [ + "2024-07-03 3 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "29": [ + "2024-07-03 3 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "30": [ + "2024-07-03 3 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "31": [ + "2024-07-03 3 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "33": [ + "2024-07-03 3 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "34": [ + "2024-07-03 3 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "35": [ + "2024-07-03 3 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "36": [ + "2024-07-03 3 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "37": [ + "2024-07-03 3 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "38": [ + "2024-07-03 3 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "39": [ + "2024-07-03 3 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "40": [ + "2024-07-03 3 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "41": [ + "2024-07-03 3 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "42": [ + "2024-07-03 3 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "43": [ + "2024-07-03 3 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "44": [ + "2024-07-03 3 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "45": [ + "2024-07-03 3 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "46": [ + "2024-07-03 3 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "47": [ + "2024-07-03 3 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "48": [ + "2024-07-03 3 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "49": [ + "2024-07-03 3 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "50": [ + "2024-07-03 3 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "51": [ + "2024-07-03 3 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "52": [ + "2024-07-03 3 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "53": [ + "2024-07-03 3 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "54": [ + "2024-07-03 3 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "55": [ + "2024-07-03 3 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "56": [ + "2024-07-03 3 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "57": [ + "2024-07-03 3 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "58": [ + "2024-07-03 3 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "59": [ + "2024-07-03 3 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "60": [ + "2024-07-03 3 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "61": [ + "2024-07-03 3 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "62": [ + "2024-07-03 3 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "63": [ + "2024-07-03 3 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "64": [ + "2024-07-03 3 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "65": [ + "2024-07-03 3 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "66": [ + "2024-07-03 3 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "67": [ + "2024-07-03 3 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "68": [ + "2024-07-03 3 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "69": [ + "2024-07-03 3 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "70": [ + "2024-07-03 3 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "71": [ + "2024-07-03 3 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "72": [ + "2024-07-03 3 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "73": [ + "2024-07-03 3 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "74": [ + "2024-07-03 3 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "75": [ + "2024-07-03 3 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "76": [ + "2024-07-03 3 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "77": [ + "2024-07-03 3 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "78": [ + "2024-07-03 3 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "79": [ + "2024-07-03 3 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "80": [ + "2024-07-03 3 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "81": [ + "2024-07-03 3 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "82": [ + "2024-07-03 3 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "83": [ + "2024-07-03 3 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "84": [ + "2024-07-03 3 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "85": [ + "2024-07-03 3 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "86": [ + "2024-07-03 3 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "87": [ + "2024-07-03 3 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "88": [ + "2024-07-03 3 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "89": [ + "2024-07-03 3 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "90": [ + "2024-07-03 3 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "91": [ + "2024-07-03 3 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "92": [ + "2024-07-03 3 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "93": [ + "2024-07-03 3 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "94": [ + "2024-07-03 3 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "95": [ + "2024-07-03 3 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 411133, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 411133, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 17, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 10, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 13, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 218, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 221, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 221, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 450, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 150, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 55, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 124, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 219, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 222, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 219, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 15, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 13, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 20, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-14 3 03:05:00 00,FF88,80", + 79, + 55 + ], + "1": [ + "2025-05-05 1 00:05:00 00,FF88,80", + 77, + 99 + ], + "2": [ + "2025-05-11 0 21:05:00 00,FF88,80", + 79, + 81 + ], + "3": [ + "2025-05-12 1 13:05:00 00,FF88,80", + 70, + 32 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:48:11.616533", + "pos": 4, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:48:00", + "connection_status": true, + "connection_end": "2025-06-01 03:48:03", + "connection_consume": 3.6, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025031500004", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025031500004", + "actual_time": "2025-06-01 03:48:06.444603", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:48:06 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:48:06", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:48:09.397539", + "getProfile_end_time": "2025-06-01 03:48:10.776624", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 164633, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 190639, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 216187, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 241387, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 254127, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 266699, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 278949, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 303933, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 329097, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 341852, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 354759, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 367729, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 140324, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 141138, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 142009, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 142641, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 143573, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 144238, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 144822, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 145818, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 146635, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 147446, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 148110, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 149044, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 149937, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 150561, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 151542, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 152282, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 153182, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 154145, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 154815, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 155446, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 156134, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 156857, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 157579, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 158516, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 159316, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 160215, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 161227, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 161905, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 162798, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 163529, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 164199, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 164964, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 165624, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 166278, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 167166, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 167898, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 168719, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 169520, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 170377, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 171151, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 172069, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 172756, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 173459, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 174474, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 175442, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 176195, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 176918, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 177836, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 178802, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 179529, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 180253, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 181095, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 182030, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 182613, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 183630, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 184236, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 185007, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 185888, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 186534, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 187327, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 188035, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 188996, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 189670, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 190558, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 191257, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 192224, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 192816, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 193595, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 194353, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 195193, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 196117, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 197068, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 197936, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 198721, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 199429, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 200044, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 200699, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 201615, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 202633, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 203489, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 204512, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 205533, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 206477, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 207239, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 208266, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 209175, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 209872, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 210911, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 211764, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 212372, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 212979, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 213719, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 214138, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 214523, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 214854, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 215250, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 215789, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 216047, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 216620, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 217107, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 217626, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 218163, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 218601, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 219033, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 219461, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 219846, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 220192, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 220614, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 221076, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 221502, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 222019, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 222491, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 222772, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 223272, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 223807, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 224283, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 224773, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 225339, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 225697, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 226198, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 226690, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 226997, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 227341, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 227652, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 228010, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 228311, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 228882, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 229204, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 229646, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 230203, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 230484, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 230940, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 231321, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 231834, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 232344, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 232866, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 233119, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 233696, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 234058, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 234487, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 235066, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 235632, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 236168, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 236514, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 236934, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 237264, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 237612, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 237867, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 238125, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 238389, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 238816, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 239087, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 239374, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 239785, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 240314, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 240746, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 241141, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 241600, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 241898, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 242155, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 242625, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 243142, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 243536, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 244078, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 244657, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 244942, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 245289, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 245584, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 246016, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 246406, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 246910, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 247400, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 247963, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 248505, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 248877, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 249211, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 249660, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 250028, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 250263, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 250607, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 250891, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 251421, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 251857, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 252794, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 253622, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 254506, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 255180, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 256142, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 257153, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 258149, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 259062, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 259911, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 260579, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 261228, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 261952, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 262579, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 263407, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 264427, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 265026, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 265666, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 266408, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 267021, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 268006, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 269018, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 269904, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 270578, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 271234, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 272275, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 272964, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 273972, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 274911, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 275504, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 276492, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 277511, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 278149, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 279170, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 279762, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 280746, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 281724, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 282401, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 283004, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 283788, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 284461, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 285400, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 286255, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 286893, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 287924, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 288740, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 289589, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 290410, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 291066, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 291744, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 292762, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 293687, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 294434, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 295477, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 296250, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 296928, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 297551, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 298367, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 299170, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 299987, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 301007, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 301595, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 302352, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 303128, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 304155, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 304782, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 305530, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 306255, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 306866, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 307886, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 308770, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 309457, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 310363, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 311246, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 312203, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 313191, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 313779, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 314808, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 315728, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 316726, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 317328, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 318302, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 318965, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 319550, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 320372, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 321018, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 321817, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 322416, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 323274, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 323952, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 324876, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 325210, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 325657, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 326176, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 326554, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 326847, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 327260, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 327545, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 328059, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 328524, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 328883, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 329437, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 329943, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 330185, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 330488, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 330861, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 331223, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 331748, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 332197, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 332439, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 332680, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 332922, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 333318, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 333806, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 334088, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 334462, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 334882, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 335380, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 335864, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 336155, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 336422, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 336775, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 337085, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 337463, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 337718, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 338288, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 338682, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 339059, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 339604, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 339989, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 340520, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 341034, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 341266, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 341664, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 342209, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 342530, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 342874, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 343294, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 343859, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 344324, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 344590, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 344994, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 345516, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 345947, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 346223, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 346634, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 347147, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 347429, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 347891, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 348382, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 348864, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 349194, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 349640, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 349959, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 350278, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 350764, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 351101, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 351581, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 351974, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 352412, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 352824, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 353400, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 353725, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 354270, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 354616, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 354979, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 355262, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 355751, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 356279, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 356772, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 357283, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 357735, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 358244, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 358817, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 359054, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 359507, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 360030, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 360345, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 360715, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 360951, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 361350, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 361881, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 362178, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:48:18.658041", + "reading_end_time": "2025-06-01 03:48:29.361118", + "reading_consume": 10.641999, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 139429, + 0 + ], + "1": [ + "2024-07-07 0 00:15:00 00,FF88,80", + 8, + 139430, + 0 + ], + "2": [ + "2024-07-07 0 00:30:00 00,FF88,80", + 8, + 139431, + 0 + ], + "3": [ + "2024-07-07 0 00:45:00 00,FF88,80", + 8, + 139432, + 0 + ], + "4": [ + "2024-07-07 0 01:00:00 00,FF88,80", + 8, + 139433, + 0 + ], + "5": [ + "2024-07-07 0 01:15:00 00,FF88,80", + 8, + 139434, + 0 + ], + "6": [ + "2024-07-07 0 01:30:00 00,FF88,80", + 8, + 139435, + 0 + ], + "7": [ + "2024-07-07 0 01:45:00 00,FF88,80", + 8, + 139435, + 0 + ], + "8": [ + "2024-07-07 0 02:00:00 00,FF88,80", + 8, + 139435, + 0 + ], + "9": [ + "2024-07-07 0 02:15:00 00,FF88,80", + 8, + 139436, + 0 + ], + "10": [ + "2024-07-07 0 02:30:00 00,FF88,80", + 8, + 139437, + 0 + ], + "11": [ + "2024-07-07 0 02:45:00 00,FF88,80", + 8, + 139437, + 0 + ], + "12": [ + "2024-07-07 0 03:00:00 00,FF88,80", + 8, + 139437, + 0 + ], + "13": [ + "2024-07-07 0 03:15:00 00,FF88,80", + 8, + 139439, + 0 + ], + "14": [ + "2024-07-07 0 03:30:00 00,FF88,80", + 8, + 139440, + 0 + ], + "15": [ + "2024-07-07 0 03:45:00 00,FF88,80", + 8, + 139442, + 0 + ], + "16": [ + "2024-07-07 0 04:00:00 00,FF88,80", + 8, + 139443, + 0 + ], + "17": [ + "2024-07-07 0 04:15:00 00,FF88,80", + 8, + 139444, + 0 + ], + "18": [ + "2024-07-07 0 04:30:00 00,FF88,80", + 8, + 139445, + 0 + ], + "19": [ + "2024-07-07 0 04:45:00 00,FF88,80", + 8, + 139445, + 0 + ], + "20": [ + "2024-07-07 0 05:00:00 00,FF88,80", + 8, + 139446, + 0 + ], + "21": [ + "2024-07-07 0 05:15:00 00,FF88,80", + 8, + 139446, + 0 + ], + "22": [ + "2024-07-07 0 05:30:00 00,FF88,80", + 8, + 139447, + 0 + ], + "23": [ + "2024-07-07 0 05:45:00 00,FF88,80", + 8, + 139448, + 0 + ], + "24": [ + "2024-07-07 0 06:00:00 00,FF88,80", + 8, + 139462, + 0 + ], + "25": [ + "2024-07-07 0 06:15:00 00,FF88,80", + 8, + 139473, + 0 + ], + "26": [ + "2024-07-07 0 06:30:00 00,FF88,80", + 8, + 139482, + 0 + ], + "27": [ + "2024-07-07 0 06:45:00 00,FF88,80", + 8, + 139492, + 0 + ], + "28": [ + "2024-07-07 0 07:00:00 00,FF88,80", + 8, + 139501, + 0 + ], + "29": [ + "2024-07-07 0 07:15:00 00,FF88,80", + 8, + 139516, + 0 + ], + "30": [ + "2024-07-07 0 07:30:00 00,FF88,80", + 8, + 139528, + 0 + ], + "31": [ + "2024-07-07 0 07:45:00 00,FF88,80", + 8, + 139538, + 0 + ], + "32": [ + "2024-07-07 0 08:00:00 00,FF88,80", + 8, + 139551, + 0 + ], + "33": [ + "2024-07-07 0 08:15:00 00,FF88,80", + 8, + 139562, + 0 + ], + "34": [ + "2024-07-07 0 08:30:00 00,FF88,80", + 8, + 139570, + 0 + ], + "35": [ + "2024-07-07 0 08:45:00 00,FF88,80", + 8, + 139582, + 0 + ], + "36": [ + "2024-07-07 0 09:00:00 00,FF88,80", + 8, + 139596, + 0 + ], + "37": [ + "2024-07-07 0 09:15:00 00,FF88,80", + 8, + 139604, + 0 + ], + "38": [ + "2024-07-07 0 09:30:00 00,FF88,80", + 8, + 139614, + 0 + ], + "39": [ + "2024-07-07 0 09:45:00 00,FF88,80", + 8, + 139623, + 0 + ], + "40": [ + "2024-07-07 0 10:00:00 00,FF88,80", + 8, + 139630, + 0 + ], + "41": [ + "2024-07-07 0 10:15:00 00,FF88,80", + 8, + 139635, + 0 + ], + "42": [ + "2024-07-07 0 10:30:00 00,FF88,80", + 8, + 139638, + 0 + ], + "43": [ + "2024-07-07 0 10:45:00 00,FF88,80", + 8, + 139642, + 0 + ], + "44": [ + "2024-07-07 0 11:00:00 00,FF88,80", + 8, + 139645, + 0 + ], + "45": [ + "2024-07-07 0 11:15:00 00,FF88,80", + 8, + 139651, + 0 + ], + "46": [ + "2024-07-07 0 11:30:00 00,FF88,80", + 8, + 139656, + 0 + ], + "47": [ + "2024-07-07 0 11:45:00 00,FF88,80", + 8, + 139662, + 0 + ], + "48": [ + "2024-07-07 0 12:00:00 00,FF88,80", + 8, + 139669, + 0 + ], + "49": [ + "2024-07-07 0 12:15:00 00,FF88,80", + 8, + 139672, + 0 + ], + "50": [ + "2024-07-07 0 12:30:00 00,FF88,80", + 8, + 139677, + 0 + ], + "51": [ + "2024-07-07 0 12:45:00 00,FF88,80", + 8, + 139680, + 0 + ], + "52": [ + "2024-07-07 0 13:00:00 00,FF88,80", + 8, + 139683, + 0 + ], + "53": [ + "2024-07-07 0 13:15:00 00,FF88,80", + 8, + 139687, + 0 + ], + "54": [ + "2024-07-07 0 13:30:00 00,FF88,80", + 8, + 139693, + 0 + ], + "55": [ + "2024-07-07 0 13:45:00 00,FF88,80", + 8, + 139699, + 0 + ], + "56": [ + "2024-07-07 0 14:00:00 00,FF88,80", + 8, + 139704, + 0 + ], + "57": [ + "2024-07-07 0 14:15:00 00,FF88,80", + 8, + 139709, + 0 + ], + "58": [ + "2024-07-07 0 14:30:00 00,FF88,80", + 8, + 139715, + 0 + ], + "59": [ + "2024-07-07 0 14:45:00 00,FF88,80", + 8, + 139721, + 0 + ], + "60": [ + "2024-07-07 0 15:00:00 00,FF88,80", + 8, + 139727, + 0 + ], + "61": [ + "2024-07-07 0 15:15:00 00,FF88,80", + 8, + 139730, + 0 + ], + "62": [ + "2024-07-07 0 15:30:00 00,FF88,80", + 8, + 139733, + 0 + ], + "63": [ + "2024-07-07 0 15:45:00 00,FF88,80", + 8, + 139739, + 0 + ], + "64": [ + "2024-07-07 0 16:00:00 00,FF88,80", + 8, + 139742, + 0 + ], + "65": [ + "2024-07-07 0 16:15:00 00,FF88,80", + 8, + 139745, + 0 + ], + "66": [ + "2024-07-07 0 16:30:00 00,FF88,80", + 8, + 139750, + 0 + ], + "67": [ + "2024-07-07 0 16:45:00 00,FF88,80", + 8, + 139757, + 0 + ], + "68": [ + "2024-07-07 0 17:00:00 00,FF88,80", + 8, + 139771, + 0 + ], + "69": [ + "2024-07-07 0 17:15:00 00,FF88,80", + 8, + 139784, + 0 + ], + "70": [ + "2024-07-07 0 17:30:00 00,FF88,80", + 8, + 139794, + 0 + ], + "71": [ + "2024-07-07 0 17:45:00 00,FF88,80", + 8, + 139803, + 0 + ], + "72": [ + "2024-07-07 0 18:00:00 00,FF88,80", + 8, + 139813, + 0 + ], + "73": [ + "2024-07-07 0 18:15:00 00,FF88,80", + 8, + 139822, + 0 + ], + "74": [ + "2024-07-07 0 18:30:00 00,FF88,80", + 8, + 139833, + 0 + ], + "75": [ + "2024-07-07 0 18:45:00 00,FF88,80", + 8, + 139847, + 0 + ], + "76": [ + "2024-07-07 0 19:00:00 00,FF88,80", + 8, + 139858, + 0 + ], + "77": [ + "2024-07-07 0 19:15:00 00,FF88,80", + 8, + 139870, + 0 + ], + "78": [ + "2024-07-07 0 19:30:00 00,FF88,80", + 8, + 139885, + 0 + ], + "79": [ + "2024-07-07 0 19:45:00 00,FF88,80", + 8, + 139899, + 0 + ], + "80": [ + "2024-07-07 0 20:00:00 00,FF88,80", + 8, + 139913, + 0 + ], + "81": [ + "2024-07-07 0 20:15:00 00,FF88,80", + 8, + 139927, + 0 + ], + "82": [ + "2024-07-07 0 20:30:00 00,FF88,80", + 8, + 139938, + 0 + ], + "83": [ + "2024-07-07 0 20:45:00 00,FF88,80", + 8, + 139948, + 0 + ], + "84": [ + "2024-07-07 0 21:00:00 00,FF88,80", + 8, + 139959, + 0 + ], + "85": [ + "2024-07-07 0 21:15:00 00,FF88,80", + 8, + 139967, + 0 + ], + "86": [ + "2024-07-07 0 21:30:00 00,FF88,80", + 8, + 139978, + 0 + ], + "87": [ + "2024-07-07 0 21:45:00 00,FF88,80", + 8, + 139988, + 0 + ], + "88": [ + "2024-07-07 0 22:00:00 00,FF88,80", + 8, + 139998, + 0 + ], + "89": [ + "2024-07-07 0 22:15:00 00,FF88,80", + 8, + 140007, + 0 + ], + "90": [ + "2024-07-07 0 22:30:00 00,FF88,80", + 8, + 140020, + 0 + ], + "91": [ + "2024-07-07 0 22:45:00 00,FF88,80", + 8, + 140029, + 0 + ], + "92": [ + "2024-07-07 0 23:00:00 00,FF88,80", + 8, + 140033, + 0 + ], + "93": [ + "2024-07-07 0 23:15:00 00,FF88,80", + 8, + 140037, + 0 + ], + "94": [ + "2024-07-07 0 23:30:00 00,FF88,80", + 8, + 140043, + 0 + ], + "95": [ + "2024-07-07 0 23:45:00 00,FF88,80", + 8, + 140049, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "1": [ + "2024-07-07 0 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "2": [ + "2024-07-07 0 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "3": [ + "2024-07-07 0 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "4": [ + "2024-07-07 0 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "5": [ + "2024-07-07 0 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "6": [ + "2024-07-07 0 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "7": [ + "2024-07-07 0 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "8": [ + "2024-07-07 0 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "9": [ + "2024-07-07 0 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "10": [ + "2024-07-07 0 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "11": [ + "2024-07-07 0 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "12": [ + "2024-07-07 0 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "13": [ + "2024-07-07 0 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "14": [ + "2024-07-07 0 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "15": [ + "2024-07-07 0 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "16": [ + "2024-07-07 0 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "17": [ + "2024-07-07 0 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "18": [ + "2024-07-07 0 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "19": [ + "2024-07-07 0 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "20": [ + "2024-07-07 0 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "21": [ + "2024-07-07 0 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "22": [ + "2024-07-07 0 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "23": [ + "2024-07-07 0 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "24": [ + "2024-07-07 0 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "25": [ + "2024-07-07 0 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "26": [ + "2024-07-07 0 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "27": [ + "2024-07-07 0 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "28": [ + "2024-07-07 0 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "29": [ + "2024-07-07 0 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "30": [ + "2024-07-07 0 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "31": [ + "2024-07-07 0 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "32": [ + "2024-07-07 0 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "33": [ + "2024-07-07 0 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "34": [ + "2024-07-07 0 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "35": [ + "2024-07-07 0 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "37": [ + "2024-07-07 0 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "38": [ + "2024-07-07 0 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "39": [ + "2024-07-07 0 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "40": [ + "2024-07-07 0 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "41": [ + "2024-07-07 0 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "42": [ + "2024-07-07 0 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "43": [ + "2024-07-07 0 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "44": [ + "2024-07-07 0 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "45": [ + "2024-07-07 0 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "46": [ + "2024-07-07 0 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "47": [ + "2024-07-07 0 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "48": [ + "2024-07-07 0 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "49": [ + "2024-07-07 0 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "50": [ + "2024-07-07 0 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "51": [ + "2024-07-07 0 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "52": [ + "2024-07-07 0 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "53": [ + "2024-07-07 0 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "54": [ + "2024-07-07 0 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "55": [ + "2024-07-07 0 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "56": [ + "2024-07-07 0 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "57": [ + "2024-07-07 0 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "58": [ + "2024-07-07 0 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "59": [ + "2024-07-07 0 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "60": [ + "2024-07-07 0 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "61": [ + "2024-07-07 0 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "62": [ + "2024-07-07 0 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "63": [ + "2024-07-07 0 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "64": [ + "2024-07-07 0 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "65": [ + "2024-07-07 0 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "66": [ + "2024-07-07 0 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "67": [ + "2024-07-07 0 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "68": [ + "2024-07-07 0 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "69": [ + "2024-07-07 0 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "70": [ + "2024-07-07 0 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "71": [ + "2024-07-07 0 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "72": [ + "2024-07-07 0 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "73": [ + "2024-07-07 0 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "74": [ + "2024-07-07 0 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "75": [ + "2024-07-07 0 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "76": [ + "2024-07-07 0 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "77": [ + "2024-07-07 0 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "78": [ + "2024-07-07 0 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "79": [ + "2024-07-07 0 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "80": [ + "2024-07-07 0 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "81": [ + "2024-07-07 0 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "82": [ + "2024-07-07 0 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "83": [ + "2024-07-07 0 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "84": [ + "2024-07-07 0 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "85": [ + "2024-07-07 0 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "86": [ + "2024-07-07 0 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "87": [ + "2024-07-07 0 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "88": [ + "2024-07-07 0 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "89": [ + "2024-07-07 0 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "90": [ + "2024-07-07 0 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "91": [ + "2024-07-07 0 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "92": [ + "2024-07-07 0 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "93": [ + "2024-07-07 0 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "94": [ + "2024-07-07 0 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "95": [ + "2024-07-07 0 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 362178, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 362178, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 4, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 1, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 13, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 226, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 228, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 231, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 69, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 7, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 20, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 1, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 227, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 230, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 230, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 6, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 6, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 7, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-15 4 01:48:00 00,FF88,80", + 70, + 83 + ], + "1": [ + "2025-05-05 1 12:48:00 00,FF88,80", + 79, + 82 + ], + "2": [ + "2025-05-19 1 18:48:00 00,FF88,80", + 80, + 78 + ], + "3": [ + "2025-05-19 1 13:48:00 00,FF88,80", + 73, + 87 + ], + "4": [ + "2025-05-16 5 08:48:00 00,FF88,80", + 74, + 44 + ], + "5": [ + "2025-05-11 0 13:48:00 00,FF88,80", + 77, + 19 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:29:15.334713", + "pos": 5, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:29:00", + "connection_status": true, + "connection_end": "2025-06-01 03:29:04", + "connection_consume": 4.1, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025031500005", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025031500005", + "actual_time": "2025-06-01 03:29:07.400798", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:29:07 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:29:07", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:29:10.507321", + "getProfile_end_time": "2025-06-01 03:29:10.369705", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 148448, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 167518, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 186089, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 204373, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 213094, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 222805, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 232809, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 251822, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 271003, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 280410, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 289243, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 299497, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 129067, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 129660, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 130421, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 131172, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 131972, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 132463, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 133134, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 133655, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 134247, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 135009, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 135620, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 136228, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 137015, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 137627, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 138194, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 138878, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 139372, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 140008, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 140542, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 141243, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 141893, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 142679, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 143386, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 144113, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 144689, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 145301, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 146056, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 146786, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 147367, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 147923, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 148510, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 149125, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 149766, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 150374, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 151144, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 151932, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 152690, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 153284, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 153802, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 154369, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 155134, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 155816, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 156598, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 157199, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 157983, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 158438, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 158958, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 159607, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 160115, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 160913, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 161603, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 162325, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 163001, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 163653, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 164386, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 164886, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 165446, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 165980, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 166691, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 167410, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 168031, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 168696, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 169415, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 170051, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 170722, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 171181, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 171662, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 172132, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 172586, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 173362, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 174119, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 174684, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 175163, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 175943, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 176517, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 177229, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 178018, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 178574, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 179044, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 179713, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 180272, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 181042, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 181648, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 182216, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 182725, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 183280, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 184013, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 184517, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 185278, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 185783, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 186272, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 187044, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 187332, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 187661, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 188008, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 188374, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 188628, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 189034, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 189279, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 189488, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 189920, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 190342, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 190546, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 190735, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 191149, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 191454, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 191760, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 192144, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 192480, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 192923, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 193198, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 193495, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 193827, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 194125, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 194309, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 194619, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 194977, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 195248, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 195517, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 195718, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 195996, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 196222, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 196568, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 196928, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 197352, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 197560, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 197989, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 198425, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 198656, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 199004, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 199261, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 199652, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 200041, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 200314, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 200756, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 201067, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 201412, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 201749, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 202193, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 202469, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 202715, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 203031, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 203473, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 203894, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 204079, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 204343, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 204566, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 204918, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 205284, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 205533, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 205978, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 206247, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 206498, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 206943, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 207297, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 207652, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 207920, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 208107, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 208519, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 208946, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 209127, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 209459, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 209718, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 209950, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 210254, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 210536, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 210901, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 211152, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 211431, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 211708, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 212024, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 212469, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 212761, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 213129, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 213343, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 213614, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 213862, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 214092, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 214346, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 214547, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 214846, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 215204, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 215598, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 216371, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 217126, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 217893, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 218348, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 218840, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 219559, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 220092, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 220602, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 221072, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 221723, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 222254, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 222732, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 223205, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 223910, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 224620, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 225188, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 225960, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 226432, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 227087, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 227879, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 228672, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 229344, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 229909, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 230593, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 231259, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 231726, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 232222, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 232997, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 233775, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 234288, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 234991, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 235470, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 236071, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 236763, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 237285, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 237988, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 238573, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 239243, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 239758, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 240497, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 241197, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 241821, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 242520, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 243134, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 243842, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 244500, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 245254, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 245859, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 246487, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 246962, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 247757, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 248298, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 249059, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 249711, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 250225, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 250716, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 251435, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 251949, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 252699, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 253416, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 253944, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 254532, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 255277, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 255830, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 256424, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 257100, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 257625, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 258161, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 258731, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 259264, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 259713, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 260478, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 261169, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 261716, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 262220, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 262689, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 263312, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 264081, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 264549, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 265266, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 265866, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 266554, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 267322, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 267928, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 268724, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 269412, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 269972, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 270694, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 271468, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 272164, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 272505, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 272941, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 273272, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 273645, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 273909, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 274183, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 274579, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 274857, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 275116, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 275425, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 275750, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 276128, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 276367, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 276591, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 276955, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 277243, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 277657, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 277922, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 278314, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 278746, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 279032, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 279443, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 279746, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 279965, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 280341, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 280623, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 281056, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 281469, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 281859, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 282140, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 282552, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 282770, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 283046, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 283341, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 283739, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 284160, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 284379, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 284811, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 285047, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 285230, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 285535, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 285786, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 286017, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 286329, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 286550, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 286951, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 287358, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 287611, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 287840, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 288181, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 288493, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 288788, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 289195, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 289504, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 289861, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 290134, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 290341, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 290775, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 291143, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 291484, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 291700, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 292017, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 292328, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 292564, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 292874, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 293309, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 293657, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 293926, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 294188, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 294532, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 294874, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 295213, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 295533, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 295803, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 296081, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 296444, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 296657, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 296987, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 297292, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 297475, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 297753, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 297997, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 298429, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 298792, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 299214, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 299634, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 299982, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 300402, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 300708, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 300962, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 301232, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 301623, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:29:17.121954", + "reading_end_time": "2025-06-01 03:29:28.552708", + "reading_consume": 11.680781, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 128605, + 0 + ], + "1": [ + "2025-05-15 4 00:15:00 00,FF88,80", + 8, + 128605, + 0 + ], + "2": [ + "2025-05-15 4 00:30:00 00,FF88,80", + 8, + 128606, + 0 + ], + "3": [ + "2025-05-15 4 00:45:00 00,FF88,80", + 8, + 128607, + 0 + ], + "4": [ + "2025-05-15 4 01:00:00 00,FF88,80", + 8, + 128607, + 0 + ], + "5": [ + "2025-05-15 4 01:15:00 00,FF88,80", + 8, + 128608, + 0 + ], + "6": [ + "2025-05-15 4 01:30:00 00,FF88,80", + 8, + 128609, + 0 + ], + "7": [ + "2025-05-15 4 01:45:00 00,FF88,80", + 8, + 128609, + 0 + ], + "8": [ + "2025-05-15 4 02:00:00 00,FF88,80", + 8, + 128610, + 0 + ], + "9": [ + "2025-05-15 4 02:15:00 00,FF88,80", + 8, + 128610, + 0 + ], + "10": [ + "2025-05-15 4 02:30:00 00,FF88,80", + 8, + 128611, + 0 + ], + "11": [ + "2025-05-15 4 02:45:00 00,FF88,80", + 8, + 128612, + 0 + ], + "12": [ + "2025-05-15 4 03:00:00 00,FF88,80", + 8, + 128613, + 0 + ], + "13": [ + "2025-05-15 4 03:15:00 00,FF88,80", + 8, + 128614, + 0 + ], + "14": [ + "2025-05-15 4 03:30:00 00,FF88,80", + 8, + 128614, + 0 + ], + "15": [ + "2025-05-15 4 03:45:00 00,FF88,80", + 8, + 128615, + 0 + ], + "16": [ + "2025-05-15 4 04:00:00 00,FF88,80", + 8, + 128615, + 0 + ], + "17": [ + "2025-05-15 4 04:15:00 00,FF88,80", + 8, + 128615, + 0 + ], + "18": [ + "2025-05-15 4 04:30:00 00,FF88,80", + 8, + 128615, + 0 + ], + "19": [ + "2025-05-15 4 04:45:00 00,FF88,80", + 8, + 128616, + 0 + ], + "20": [ + "2025-05-15 4 05:00:00 00,FF88,80", + 8, + 128617, + 0 + ], + "21": [ + "2025-05-15 4 05:15:00 00,FF88,80", + 8, + 128618, + 0 + ], + "22": [ + "2025-05-15 4 05:30:00 00,FF88,80", + 8, + 128619, + 0 + ], + "23": [ + "2025-05-15 4 05:45:00 00,FF88,80", + 8, + 128619, + 0 + ], + "24": [ + "2025-05-15 4 06:00:00 00,FF88,80", + 8, + 128628, + 0 + ], + "25": [ + "2025-05-15 4 06:15:00 00,FF88,80", + 8, + 128637, + 0 + ], + "26": [ + "2025-05-15 4 06:30:00 00,FF88,80", + 8, + 128645, + 0 + ], + "27": [ + "2025-05-15 4 06:45:00 00,FF88,80", + 8, + 128656, + 0 + ], + "28": [ + "2025-05-15 4 07:00:00 00,FF88,80", + 8, + 128664, + 0 + ], + "29": [ + "2025-05-15 4 07:15:00 00,FF88,80", + 8, + 128670, + 0 + ], + "30": [ + "2025-05-15 4 07:30:00 00,FF88,80", + 8, + 128676, + 0 + ], + "31": [ + "2025-05-15 4 07:45:00 00,FF88,80", + 8, + 128684, + 0 + ], + "32": [ + "2025-05-15 4 08:00:00 00,FF88,80", + 8, + 128695, + 0 + ], + "33": [ + "2025-05-15 4 08:15:00 00,FF88,80", + 8, + 128703, + 0 + ], + "34": [ + "2025-05-15 4 08:30:00 00,FF88,80", + 8, + 128712, + 0 + ], + "35": [ + "2025-05-15 4 08:45:00 00,FF88,80", + 8, + 128718, + 0 + ], + "36": [ + "2025-05-15 4 09:00:00 00,FF88,80", + 8, + 128728, + 0 + ], + "37": [ + "2025-05-15 4 09:15:00 00,FF88,80", + 8, + 128738, + 0 + ], + "38": [ + "2025-05-15 4 09:30:00 00,FF88,80", + 8, + 128749, + 0 + ], + "39": [ + "2025-05-15 4 09:45:00 00,FF88,80", + 8, + 128757, + 0 + ], + "40": [ + "2025-05-15 4 10:00:00 00,FF88,80", + 8, + 128761, + 0 + ], + "41": [ + "2025-05-15 4 10:15:00 00,FF88,80", + 8, + 128764, + 0 + ], + "42": [ + "2025-05-15 4 10:30:00 00,FF88,80", + 8, + 128769, + 0 + ], + "43": [ + "2025-05-15 4 10:45:00 00,FF88,80", + 8, + 128771, + 0 + ], + "44": [ + "2025-05-15 4 11:00:00 00,FF88,80", + 8, + 128774, + 0 + ], + "45": [ + "2025-05-15 4 11:15:00 00,FF88,80", + 8, + 128778, + 0 + ], + "46": [ + "2025-05-15 4 11:30:00 00,FF88,80", + 8, + 128783, + 0 + ], + "47": [ + "2025-05-15 4 11:45:00 00,FF88,80", + 8, + 128786, + 0 + ], + "48": [ + "2025-05-15 4 12:00:00 00,FF88,80", + 8, + 128789, + 0 + ], + "49": [ + "2025-05-15 4 12:15:00 00,FF88,80", + 8, + 128791, + 0 + ], + "50": [ + "2025-05-15 4 12:30:00 00,FF88,80", + 8, + 128793, + 0 + ], + "51": [ + "2025-05-15 4 12:45:00 00,FF88,80", + 8, + 128798, + 0 + ], + "52": [ + "2025-05-15 4 13:00:00 00,FF88,80", + 8, + 128802, + 0 + ], + "53": [ + "2025-05-15 4 13:15:00 00,FF88,80", + 8, + 128807, + 0 + ], + "54": [ + "2025-05-15 4 13:30:00 00,FF88,80", + 8, + 128810, + 0 + ], + "55": [ + "2025-05-15 4 13:45:00 00,FF88,80", + 8, + 128813, + 0 + ], + "56": [ + "2025-05-15 4 14:00:00 00,FF88,80", + 8, + 128816, + 0 + ], + "57": [ + "2025-05-15 4 14:15:00 00,FF88,80", + 8, + 128820, + 0 + ], + "58": [ + "2025-05-15 4 14:30:00 00,FF88,80", + 8, + 128823, + 0 + ], + "59": [ + "2025-05-15 4 14:45:00 00,FF88,80", + 8, + 128828, + 0 + ], + "60": [ + "2025-05-15 4 15:00:00 00,FF88,80", + 8, + 128832, + 0 + ], + "61": [ + "2025-05-15 4 15:15:00 00,FF88,80", + 8, + 128834, + 0 + ], + "62": [ + "2025-05-15 4 15:30:00 00,FF88,80", + 8, + 128838, + 0 + ], + "63": [ + "2025-05-15 4 15:45:00 00,FF88,80", + 8, + 128842, + 0 + ], + "64": [ + "2025-05-15 4 16:00:00 00,FF88,80", + 8, + 128845, + 0 + ], + "65": [ + "2025-05-15 4 16:15:00 00,FF88,80", + 8, + 128850, + 0 + ], + "66": [ + "2025-05-15 4 16:30:00 00,FF88,80", + 8, + 128853, + 0 + ], + "67": [ + "2025-05-15 4 16:45:00 00,FF88,80", + 8, + 128855, + 0 + ], + "68": [ + "2025-05-15 4 17:00:00 00,FF88,80", + 8, + 128862, + 0 + ], + "69": [ + "2025-05-15 4 17:15:00 00,FF88,80", + 8, + 128869, + 0 + ], + "70": [ + "2025-05-15 4 17:30:00 00,FF88,80", + 8, + 128875, + 0 + ], + "71": [ + "2025-05-15 4 17:45:00 00,FF88,80", + 8, + 128881, + 0 + ], + "72": [ + "2025-05-15 4 18:00:00 00,FF88,80", + 8, + 128891, + 0 + ], + "73": [ + "2025-05-15 4 18:15:00 00,FF88,80", + 8, + 128898, + 0 + ], + "74": [ + "2025-05-15 4 18:30:00 00,FF88,80", + 8, + 128906, + 0 + ], + "75": [ + "2025-05-15 4 18:45:00 00,FF88,80", + 8, + 128912, + 0 + ], + "76": [ + "2025-05-15 4 19:00:00 00,FF88,80", + 8, + 128922, + 0 + ], + "77": [ + "2025-05-15 4 19:15:00 00,FF88,80", + 8, + 128932, + 0 + ], + "78": [ + "2025-05-15 4 19:30:00 00,FF88,80", + 8, + 128943, + 0 + ], + "79": [ + "2025-05-15 4 19:45:00 00,FF88,80", + 8, + 128953, + 0 + ], + "80": [ + "2025-05-15 4 20:00:00 00,FF88,80", + 8, + 128959, + 0 + ], + "81": [ + "2025-05-15 4 20:15:00 00,FF88,80", + 8, + 128966, + 0 + ], + "82": [ + "2025-05-15 4 20:30:00 00,FF88,80", + 8, + 128973, + 0 + ], + "83": [ + "2025-05-15 4 20:45:00 00,FF88,80", + 8, + 128982, + 0 + ], + "84": [ + "2025-05-15 4 21:00:00 00,FF88,80", + 8, + 128992, + 0 + ], + "85": [ + "2025-05-15 4 21:15:00 00,FF88,80", + 8, + 128999, + 0 + ], + "86": [ + "2025-05-15 4 21:30:00 00,FF88,80", + 8, + 129007, + 0 + ], + "87": [ + "2025-05-15 4 21:45:00 00,FF88,80", + 8, + 129016, + 0 + ], + "88": [ + "2025-05-15 4 22:00:00 00,FF88,80", + 8, + 129027, + 0 + ], + "89": [ + "2025-05-15 4 22:15:00 00,FF88,80", + 8, + 129033, + 0 + ], + "90": [ + "2025-05-15 4 22:30:00 00,FF88,80", + 8, + 129039, + 0 + ], + "91": [ + "2025-05-15 4 22:45:00 00,FF88,80", + 8, + 129049, + 0 + ], + "92": [ + "2025-05-15 4 23:00:00 00,FF88,80", + 8, + 129054, + 0 + ], + "93": [ + "2025-05-15 4 23:15:00 00,FF88,80", + 8, + 129058, + 0 + ], + "94": [ + "2025-05-15 4 23:30:00 00,FF88,80", + 8, + 129061, + 0 + ], + "95": [ + "2025-05-15 4 23:45:00 00,FF88,80", + 8, + 129064, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "1": [ + "2025-05-15 4 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "2": [ + "2025-05-15 4 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "3": [ + "2025-05-15 4 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "4": [ + "2025-05-15 4 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "5": [ + "2025-05-15 4 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "6": [ + "2025-05-15 4 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "7": [ + "2025-05-15 4 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "8": [ + "2025-05-15 4 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "9": [ + "2025-05-15 4 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "10": [ + "2025-05-15 4 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "11": [ + "2025-05-15 4 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "12": [ + "2025-05-15 4 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "13": [ + "2025-05-15 4 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "14": [ + "2025-05-15 4 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "15": [ + "2025-05-15 4 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "16": [ + "2025-05-15 4 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "17": [ + "2025-05-15 4 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "18": [ + "2025-05-15 4 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "19": [ + "2025-05-15 4 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "20": [ + "2025-05-15 4 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "21": [ + "2025-05-15 4 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "22": [ + "2025-05-15 4 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "23": [ + "2025-05-15 4 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "24": [ + "2025-05-15 4 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "25": [ + "2025-05-15 4 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "26": [ + "2025-05-15 4 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "27": [ + "2025-05-15 4 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "28": [ + "2025-05-15 4 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "29": [ + "2025-05-15 4 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "30": [ + "2025-05-15 4 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "31": [ + "2025-05-15 4 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "32": [ + "2025-05-15 4 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "33": [ + "2025-05-15 4 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "34": [ + "2025-05-15 4 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "35": [ + "2025-05-15 4 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "36": [ + "2025-05-15 4 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "37": [ + "2025-05-15 4 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "38": [ + "2025-05-15 4 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "39": [ + "2025-05-15 4 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "40": [ + "2025-05-15 4 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "41": [ + "2025-05-15 4 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "42": [ + "2025-05-15 4 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "43": [ + "2025-05-15 4 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "44": [ + "2025-05-15 4 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "45": [ + "2025-05-15 4 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "46": [ + "2025-05-15 4 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "47": [ + "2025-05-15 4 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "48": [ + "2025-05-15 4 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "49": [ + "2025-05-15 4 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "50": [ + "2025-05-15 4 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "51": [ + "2025-05-15 4 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "52": [ + "2025-05-15 4 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "53": [ + "2025-05-15 4 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "54": [ + "2025-05-15 4 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "55": [ + "2025-05-15 4 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "56": [ + "2025-05-15 4 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "57": [ + "2025-05-15 4 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "58": [ + "2025-05-15 4 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "59": [ + "2025-05-15 4 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "60": [ + "2025-05-15 4 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "61": [ + "2025-05-15 4 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "62": [ + "2025-05-15 4 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "63": [ + "2025-05-15 4 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "64": [ + "2025-05-15 4 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "65": [ + "2025-05-15 4 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "66": [ + "2025-05-15 4 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "67": [ + "2025-05-15 4 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "68": [ + "2025-05-15 4 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "69": [ + "2025-05-15 4 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "70": [ + "2025-05-15 4 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "71": [ + "2025-05-15 4 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "72": [ + "2025-05-15 4 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "73": [ + "2025-05-15 4 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "74": [ + "2025-05-15 4 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "75": [ + "2025-05-15 4 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "76": [ + "2025-05-15 4 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "77": [ + "2025-05-15 4 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "78": [ + "2025-05-15 4 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "79": [ + "2025-05-15 4 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "80": [ + "2025-05-15 4 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "81": [ + "2025-05-15 4 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "82": [ + "2025-05-15 4 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "83": [ + "2025-05-15 4 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "84": [ + "2025-05-15 4 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "85": [ + "2025-05-15 4 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "86": [ + "2025-05-15 4 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "87": [ + "2025-05-15 4 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "88": [ + "2025-05-15 4 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "89": [ + "2025-05-15 4 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "90": [ + "2025-05-15 4 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "91": [ + "2025-05-15 4 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "92": [ + "2025-05-15 4 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "93": [ + "2025-05-15 4 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "94": [ + "2025-05-15 4 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "95": [ + "2025-05-15 4 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 301623, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 301623, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 11, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 4, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 2, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 219, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 221, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 220, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 465, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 109, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 125, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 152, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 221, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 222, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 9, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 10, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 1, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-16 5 14:29:00 00,FF88,80", + 76, + 40 + ], + "1": [ + "2025-05-28 3 23:29:00 00,FF88,80", + 72, + 15 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:23:06.143027", + "pos": 6, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:23:00", + "connection_status": true, + "connection_end": "2025-06-01 03:23:05", + "connection_consume": 5.0, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025031500006", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025031500006", + "actual_time": "2025-06-01 03:23:07.390828", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:23:07 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:23:07", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:23:08.381452", + "getProfile_end_time": "2025-06-01 03:23:08.233611", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 117866, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 132700, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 146435, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 161922, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 169573, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 177072, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 183909, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 199210, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 214051, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 221672, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 228341, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 235719, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 104293, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 104787, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 105129, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 105560, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 106069, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 106484, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 106940, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 107342, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 107850, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 108345, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 108757, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 109247, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 109815, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 110196, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 110686, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 111112, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 111511, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 112070, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 112634, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 113029, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 113536, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 114135, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 114499, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 115040, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 115646, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 116059, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 116531, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 116897, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 117466, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 117866, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 118330, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 118715, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 119102, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 119501, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 119870, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 120274, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 120697, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 121194, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 121697, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 122142, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 122540, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 122907, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 123269, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 123802, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 124262, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 124803, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 125247, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 125754, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 126197, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 126684, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 127097, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 127676, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 128149, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 128703, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 129185, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 129612, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 130087, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 130594, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 131161, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 131665, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 132106, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 132637, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 133140, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 133670, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 134112, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 134666, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 135062, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 135487, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 135937, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 136344, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 136763, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 137165, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 137668, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 138135, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 138481, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 139075, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 139481, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 140010, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 140473, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 141030, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 141475, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 141908, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 142351, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 142824, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 143360, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 143947, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 144311, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 144720, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 145122, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 145561, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 146172, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 146642, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 146812, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 147122, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 147389, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 147647, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 147948, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 148256, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 148591, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 148801, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 149092, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 149246, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 149568, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 149722, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 149999, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 150145, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 150297, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 150623, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 150851, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 151046, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 151357, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 151549, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 151871, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 152053, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 152252, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 152494, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 152677, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 152831, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 152977, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 153246, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 153541, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 153871, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 154199, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 154370, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 154617, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 154945, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 155263, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 155447, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 155747, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 155922, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 156203, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 156352, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 156508, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 156810, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 156982, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 157143, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 157373, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 157664, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 157947, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 158114, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 158440, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 158626, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 158763, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 159073, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 159365, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 159605, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 159745, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 159983, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 160130, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 160293, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 160438, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 160605, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 160767, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 161078, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 161384, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 161637, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 161829, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 162015, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 162186, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 162344, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 162530, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 162796, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 163085, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 163234, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 163446, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 163582, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 163811, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 164109, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 164383, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 164599, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 164845, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 165063, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 165306, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 165638, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 165966, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 166174, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 166433, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 166715, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 167003, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 167292, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 167534, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 167753, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 167991, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 168466, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 169024, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 169420, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 169923, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 170362, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 170783, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 171287, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 171739, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 172181, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 172622, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 173047, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 173441, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 173785, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 174243, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 174756, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 175136, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 175711, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 176266, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 176809, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 177325, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 177747, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 178153, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 178497, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 178898, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 179357, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 179829, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 180295, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 180761, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 181341, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 181807, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 182260, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 182613, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 183210, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 183793, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 184383, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 184803, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 185157, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 185623, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 186068, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 186585, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 187042, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 187544, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 187980, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 188459, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 188928, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 189522, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 190098, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 190568, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 191003, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 191395, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 191985, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 192370, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 192979, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 193358, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 193891, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 194304, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 194650, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 195049, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 195530, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 195876, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 196325, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 196882, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 197347, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 197856, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 198273, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 198626, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 199106, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 199479, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 199938, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 200410, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 200957, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 201306, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 201857, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 202395, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 202889, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 203247, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 203850, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 204443, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 204885, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 205404, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 205863, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 206399, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 206811, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 207189, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 207777, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 208142, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 208586, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 209033, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 209384, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 209806, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 210136, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 210311, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 210563, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 210784, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 211088, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 211254, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 211501, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 211689, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 212011, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 212147, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 212296, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 212607, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 212797, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 213031, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 213180, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 213411, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 213747, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 214071, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 214307, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 214459, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 214688, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 215007, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 215268, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 215603, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 215912, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 216242, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 216430, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 216679, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 216996, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 217298, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 217501, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 217772, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 218015, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 218287, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 218593, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 218849, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 219124, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 219424, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 219718, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 219904, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 220206, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 220430, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 220621, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 220948, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 221145, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 221479, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 221817, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 221963, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 222219, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 222518, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 222706, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 223010, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 223259, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 223567, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 223747, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 224078, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 224308, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 224475, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 224631, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 224877, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 225087, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 225374, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 225595, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 225798, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 225950, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 226119, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 226353, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 226678, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 226827, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 227027, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 227344, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 227568, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 227870, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 228037, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 228269, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 228411, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 228738, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 228898, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 229082, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 229397, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 229633, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 229964, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 230220, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 230438, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 230747, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 230941, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 231201, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 231370, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 231538, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 231740, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 231952, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 232104, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:23:14.820082", + "reading_end_time": "2025-06-01 03:23:31.543824", + "reading_consume": 17.257478, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 103711, + 0 + ], + "1": [ + "2024-08-26 1 00:15:00 00,FF88,80", + 8, + 103712, + 0 + ], + "2": [ + "2024-08-26 1 00:30:00 00,FF88,80", + 8, + 103713, + 0 + ], + "3": [ + "2024-08-26 1 00:45:00 00,FF88,80", + 8, + 103713, + 0 + ], + "4": [ + "2024-08-26 1 01:00:00 00,FF88,80", + 8, + 103714, + 0 + ], + "5": [ + "2024-08-26 1 01:15:00 00,FF88,80", + 8, + 103714, + 0 + ], + "6": [ + "2024-08-26 1 01:30:00 00,FF88,80", + 8, + 103715, + 0 + ], + "7": [ + "2024-08-26 1 01:45:00 00,FF88,80", + 8, + 103715, + 0 + ], + "8": [ + "2024-08-26 1 02:00:00 00,FF88,80", + 8, + 103716, + 0 + ], + "9": [ + "2024-08-26 1 02:15:00 00,FF88,80", + 8, + 103717, + 0 + ], + "10": [ + "2024-08-26 1 02:30:00 00,FF88,80", + 8, + 103718, + 0 + ], + "11": [ + "2024-08-26 1 02:45:00 00,FF88,80", + 8, + 103718, + 0 + ], + "12": [ + "2024-08-26 1 03:00:00 00,FF88,80", + 8, + 103718, + 0 + ], + "13": [ + "2024-08-26 1 03:15:00 00,FF88,80", + 8, + 103719, + 0 + ], + "14": [ + "2024-08-26 1 03:30:00 00,FF88,80", + 8, + 103720, + 0 + ], + "15": [ + "2024-08-26 1 03:45:00 00,FF88,80", + 8, + 103720, + 0 + ], + "16": [ + "2024-08-26 1 04:00:00 00,FF88,80", + 8, + 103721, + 0 + ], + "17": [ + "2024-08-26 1 04:15:00 00,FF88,80", + 8, + 103722, + 0 + ], + "18": [ + "2024-08-26 1 04:30:00 00,FF88,80", + 8, + 103722, + 0 + ], + "19": [ + "2024-08-26 1 04:45:00 00,FF88,80", + 8, + 103722, + 0 + ], + "20": [ + "2024-08-26 1 05:00:00 00,FF88,80", + 8, + 103722, + 0 + ], + "21": [ + "2024-08-26 1 05:15:00 00,FF88,80", + 8, + 103723, + 0 + ], + "22": [ + "2024-08-26 1 05:30:00 00,FF88,80", + 8, + 103723, + 0 + ], + "23": [ + "2024-08-26 1 05:45:00 00,FF88,80", + 8, + 103724, + 0 + ], + "24": [ + "2024-08-26 1 06:00:00 00,FF88,80", + 8, + 103729, + 0 + ], + "25": [ + "2024-08-26 1 06:15:00 00,FF88,80", + 8, + 103734, + 0 + ], + "26": [ + "2024-08-26 1 06:30:00 00,FF88,80", + 8, + 103742, + 0 + ], + "27": [ + "2024-08-26 1 06:45:00 00,FF88,80", + 8, + 103748, + 0 + ], + "28": [ + "2024-08-26 1 07:00:00 00,FF88,80", + 8, + 103755, + 0 + ], + "29": [ + "2024-08-26 1 07:15:00 00,FF88,80", + 8, + 103760, + 0 + ], + "30": [ + "2024-08-26 1 07:30:00 00,FF88,80", + 8, + 103767, + 0 + ], + "31": [ + "2024-08-26 1 07:45:00 00,FF88,80", + 8, + 103775, + 0 + ], + "32": [ + "2024-08-26 1 08:00:00 00,FF88,80", + 8, + 103782, + 0 + ], + "33": [ + "2024-08-26 1 08:15:00 00,FF88,80", + 8, + 103787, + 0 + ], + "34": [ + "2024-08-26 1 08:30:00 00,FF88,80", + 8, + 103794, + 0 + ], + "35": [ + "2024-08-26 1 08:45:00 00,FF88,80", + 8, + 103798, + 0 + ], + "36": [ + "2024-08-26 1 09:00:00 00,FF88,80", + 8, + 103803, + 0 + ], + "37": [ + "2024-08-26 1 09:15:00 00,FF88,80", + 8, + 103810, + 0 + ], + "38": [ + "2024-08-26 1 09:30:00 00,FF88,80", + 8, + 103817, + 0 + ], + "39": [ + "2024-08-26 1 09:45:00 00,FF88,80", + 8, + 103824, + 0 + ], + "40": [ + "2024-08-26 1 10:00:00 00,FF88,80", + 8, + 103827, + 0 + ], + "41": [ + "2024-08-26 1 10:15:00 00,FF88,80", + 8, + 103830, + 0 + ], + "42": [ + "2024-08-26 1 10:30:00 00,FF88,80", + 8, + 103833, + 0 + ], + "43": [ + "2024-08-26 1 10:45:00 00,FF88,80", + 8, + 103837, + 0 + ], + "44": [ + "2024-08-26 1 11:00:00 00,FF88,80", + 8, + 103839, + 0 + ], + "45": [ + "2024-08-26 1 11:15:00 00,FF88,80", + 8, + 103842, + 0 + ], + "46": [ + "2024-08-26 1 11:30:00 00,FF88,80", + 8, + 103844, + 0 + ], + "47": [ + "2024-08-26 1 11:45:00 00,FF88,80", + 8, + 103846, + 0 + ], + "48": [ + "2024-08-26 1 12:00:00 00,FF88,80", + 8, + 103847, + 0 + ], + "49": [ + "2024-08-26 1 12:15:00 00,FF88,80", + 8, + 103848, + 0 + ], + "50": [ + "2024-08-26 1 12:30:00 00,FF88,80", + 8, + 103850, + 0 + ], + "51": [ + "2024-08-26 1 12:45:00 00,FF88,80", + 8, + 103854, + 0 + ], + "52": [ + "2024-08-26 1 13:00:00 00,FF88,80", + 8, + 103856, + 0 + ], + "53": [ + "2024-08-26 1 13:15:00 00,FF88,80", + 8, + 103858, + 0 + ], + "54": [ + "2024-08-26 1 13:30:00 00,FF88,80", + 8, + 103859, + 0 + ], + "55": [ + "2024-08-26 1 13:45:00 00,FF88,80", + 8, + 103861, + 0 + ], + "56": [ + "2024-08-26 1 14:00:00 00,FF88,80", + 8, + 103863, + 0 + ], + "57": [ + "2024-08-26 1 14:15:00 00,FF88,80", + 8, + 103866, + 0 + ], + "58": [ + "2024-08-26 1 14:30:00 00,FF88,80", + 8, + 103868, + 0 + ], + "59": [ + "2024-08-26 1 14:45:00 00,FF88,80", + 8, + 103870, + 0 + ], + "60": [ + "2024-08-26 1 15:00:00 00,FF88,80", + 8, + 103872, + 0 + ], + "61": [ + "2024-08-26 1 15:15:00 00,FF88,80", + 8, + 103874, + 0 + ], + "62": [ + "2024-08-26 1 15:30:00 00,FF88,80", + 8, + 103877, + 0 + ], + "63": [ + "2024-08-26 1 15:45:00 00,FF88,80", + 8, + 103879, + 0 + ], + "64": [ + "2024-08-26 1 16:00:00 00,FF88,80", + 8, + 103881, + 0 + ], + "65": [ + "2024-08-26 1 16:15:00 00,FF88,80", + 8, + 103885, + 0 + ], + "66": [ + "2024-08-26 1 16:30:00 00,FF88,80", + 8, + 103887, + 0 + ], + "67": [ + "2024-08-26 1 16:45:00 00,FF88,80", + 8, + 103890, + 0 + ], + "68": [ + "2024-08-26 1 17:00:00 00,FF88,80", + 8, + 103895, + 0 + ], + "69": [ + "2024-08-26 1 17:15:00 00,FF88,80", + 8, + 103902, + 0 + ], + "70": [ + "2024-08-26 1 17:30:00 00,FF88,80", + 8, + 103910, + 0 + ], + "71": [ + "2024-08-26 1 17:45:00 00,FF88,80", + 8, + 103915, + 0 + ], + "72": [ + "2024-08-26 1 18:00:00 00,FF88,80", + 8, + 103921, + 0 + ], + "73": [ + "2024-08-26 1 18:15:00 00,FF88,80", + 8, + 103926, + 0 + ], + "74": [ + "2024-08-26 1 18:30:00 00,FF88,80", + 8, + 103933, + 0 + ], + "75": [ + "2024-08-26 1 18:45:00 00,FF88,80", + 8, + 103941, + 0 + ], + "76": [ + "2024-08-26 1 19:00:00 00,FF88,80", + 8, + 103946, + 0 + ], + "77": [ + "2024-08-26 1 19:15:00 00,FF88,80", + 8, + 103952, + 0 + ], + "78": [ + "2024-08-26 1 19:30:00 00,FF88,80", + 8, + 103957, + 0 + ], + "79": [ + "2024-08-26 1 19:45:00 00,FF88,80", + 8, + 103961, + 0 + ], + "80": [ + "2024-08-26 1 20:00:00 00,FF88,80", + 8, + 103965, + 0 + ], + "81": [ + "2024-08-26 1 20:15:00 00,FF88,80", + 8, + 103971, + 0 + ], + "82": [ + "2024-08-26 1 20:30:00 00,FF88,80", + 8, + 103975, + 0 + ], + "83": [ + "2024-08-26 1 20:45:00 00,FF88,80", + 8, + 103983, + 0 + ], + "84": [ + "2024-08-26 1 21:00:00 00,FF88,80", + 8, + 103987, + 0 + ], + "85": [ + "2024-08-26 1 21:15:00 00,FF88,80", + 8, + 103993, + 0 + ], + "86": [ + "2024-08-26 1 21:30:00 00,FF88,80", + 8, + 103998, + 0 + ], + "87": [ + "2024-08-26 1 21:45:00 00,FF88,80", + 8, + 104004, + 0 + ], + "88": [ + "2024-08-26 1 22:00:00 00,FF88,80", + 8, + 104012, + 0 + ], + "89": [ + "2024-08-26 1 22:15:00 00,FF88,80", + 8, + 104017, + 0 + ], + "90": [ + "2024-08-26 1 22:30:00 00,FF88,80", + 8, + 104022, + 0 + ], + "91": [ + "2024-08-26 1 22:45:00 00,FF88,80", + 8, + 104028, + 0 + ], + "92": [ + "2024-08-26 1 23:00:00 00,FF88,80", + 8, + 104029, + 0 + ], + "93": [ + "2024-08-26 1 23:15:00 00,FF88,80", + 8, + 104032, + 0 + ], + "94": [ + "2024-08-26 1 23:30:00 00,FF88,80", + 8, + 104035, + 0 + ], + "95": [ + "2024-08-26 1 23:45:00 00,FF88,80", + 8, + 104038, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "1": [ + "2024-08-26 1 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "2": [ + "2024-08-26 1 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "3": [ + "2024-08-26 1 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "4": [ + "2024-08-26 1 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "5": [ + "2024-08-26 1 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "6": [ + "2024-08-26 1 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "7": [ + "2024-08-26 1 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "8": [ + "2024-08-26 1 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "9": [ + "2024-08-26 1 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "10": [ + "2024-08-26 1 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "11": [ + "2024-08-26 1 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "12": [ + "2024-08-26 1 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "13": [ + "2024-08-26 1 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "14": [ + "2024-08-26 1 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "15": [ + "2024-08-26 1 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "16": [ + "2024-08-26 1 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "17": [ + "2024-08-26 1 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "18": [ + "2024-08-26 1 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "19": [ + "2024-08-26 1 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "20": [ + "2024-08-26 1 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "21": [ + "2024-08-26 1 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "22": [ + "2024-08-26 1 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "23": [ + "2024-08-26 1 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "24": [ + "2024-08-26 1 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "25": [ + "2024-08-26 1 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "26": [ + "2024-08-26 1 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "27": [ + "2024-08-26 1 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "28": [ + "2024-08-26 1 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "29": [ + "2024-08-26 1 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "30": [ + "2024-08-26 1 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "31": [ + "2024-08-26 1 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "32": [ + "2024-08-26 1 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "33": [ + "2024-08-26 1 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "34": [ + "2024-08-26 1 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "35": [ + "2024-08-26 1 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "36": [ + "2024-08-26 1 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "37": [ + "2024-08-26 1 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "38": [ + "2024-08-26 1 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "39": [ + "2024-08-26 1 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "40": [ + "2024-08-26 1 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "41": [ + "2024-08-26 1 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "42": [ + "2024-08-26 1 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "43": [ + "2024-08-26 1 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "44": [ + "2024-08-26 1 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "45": [ + "2024-08-26 1 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "46": [ + "2024-08-26 1 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "47": [ + "2024-08-26 1 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "48": [ + "2024-08-26 1 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "49": [ + "2024-08-26 1 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "50": [ + "2024-08-26 1 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "51": [ + "2024-08-26 1 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "52": [ + "2024-08-26 1 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "53": [ + "2024-08-26 1 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "54": [ + "2024-08-26 1 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "55": [ + "2024-08-26 1 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "56": [ + "2024-08-26 1 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "57": [ + "2024-08-26 1 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "58": [ + "2024-08-26 1 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "59": [ + "2024-08-26 1 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "60": [ + "2024-08-26 1 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "61": [ + "2024-08-26 1 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "62": [ + "2024-08-26 1 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "63": [ + "2024-08-26 1 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "64": [ + "2024-08-26 1 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "65": [ + "2024-08-26 1 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "66": [ + "2024-08-26 1 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "67": [ + "2024-08-26 1 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "68": [ + "2024-08-26 1 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "69": [ + "2024-08-26 1 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "70": [ + "2024-08-26 1 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "71": [ + "2024-08-26 1 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "72": [ + "2024-08-26 1 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "73": [ + "2024-08-26 1 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "74": [ + "2024-08-26 1 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "75": [ + "2024-08-26 1 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "76": [ + "2024-08-26 1 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "77": [ + "2024-08-26 1 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "78": [ + "2024-08-26 1 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "79": [ + "2024-08-26 1 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "80": [ + "2024-08-26 1 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "81": [ + "2024-08-26 1 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "82": [ + "2024-08-26 1 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "83": [ + "2024-08-26 1 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "84": [ + "2024-08-26 1 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "85": [ + "2024-08-26 1 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "87": [ + "2024-08-26 1 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "88": [ + "2024-08-26 1 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "89": [ + "2024-08-26 1 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "90": [ + "2024-08-26 1 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "91": [ + "2024-08-26 1 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "92": [ + "2024-08-26 1 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "93": [ + "2024-08-26 1 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "94": [ + "2024-08-26 1 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "95": [ + "2024-08-26 1 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 232104, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 232104, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 25, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 30, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 20, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 224, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 223, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 222, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 279, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 37, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 48, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 68, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 226, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 224, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 223, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 32, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 34, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 31, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-03 6 01:23:00 00,FF88,80", + 79, + 14 + ], + "1": [ + "2025-05-06 2 05:23:00 00,FF88,80", + 72, + 6 + ], + "2": [ + "2025-05-24 6 04:23:00 00,FF88,80", + 78, + 14 + ], + "3": [ + "2025-05-14 3 12:23:00 00,FF88,80", + 76, + 83 + ], + "4": [ + "2025-05-13 2 05:23:00 00,FF88,80", + 72, + 6 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:33:30.343060", + "pos": 7, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:33:00", + "connection_status": true, + "connection_end": "2025-06-01 03:33:02", + "connection_consume": 2.7, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025031500007", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025031500007", + "actual_time": "2025-06-01 03:33:05.352164", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:33:05 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:33:05", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:33:06.736382", + "getProfile_end_time": "2025-06-01 03:33:07.670079", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 175374, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 211246, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 249480, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 285029, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 302012, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 320886, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 337168, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 371348, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 406836, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 425351, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 443863, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 463144, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 140092, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 141102, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 142161, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 143089, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 144045, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 145168, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 146574, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 147548, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 148922, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 149906, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 151169, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 152352, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 153607, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 154491, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 155810, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 157013, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 158343, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 159395, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 160342, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 161364, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 162768, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 163625, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 164974, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 166333, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 167689, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 168988, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 170402, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 171723, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 172616, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 173563, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 174896, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 176159, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 177050, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 178347, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 179505, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 180881, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 182011, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 183446, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 184716, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 185591, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 186850, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 188335, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 189189, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 190126, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 191199, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 192289, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 193203, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 194652, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 195921, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 197261, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 198272, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 199165, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 200546, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 201784, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 203006, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 204162, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 205327, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 206773, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 207661, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 208615, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 209963, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 211135, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 212499, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 213546, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 214696, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 215872, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 217021, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 217887, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 218756, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 220036, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 221466, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 222556, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 223819, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 224715, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 226036, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 227057, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 227994, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 229083, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 230002, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 231115, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 232486, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 233665, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 235165, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 236249, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 237118, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 238162, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 239112, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 240335, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 241660, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 242866, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 243729, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 244880, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 245419, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 245874, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 246511, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 247154, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 247719, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 248232, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 249068, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 249790, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 250515, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 251328, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 252092, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 252690, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 253087, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 253452, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 254189, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 254989, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 255758, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 256219, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 256819, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 257600, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 258394, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 259099, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 259565, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 260268, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 261085, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 261743, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 262352, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 262924, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 263700, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 264159, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 264591, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 265286, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 265715, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 266375, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 266910, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 267366, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 268038, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 268443, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 268978, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 269653, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 270352, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 270948, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 271606, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 272275, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 272764, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 273248, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 273593, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 274369, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 275083, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 275483, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 276180, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 276939, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 277490, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 277877, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 278694, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 279155, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 279721, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 280076, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 280606, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 281415, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 282067, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 282480, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 283289, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 283811, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 284291, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 285064, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 285492, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 286222, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 286918, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 287438, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 288045, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 288473, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 288904, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 289673, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 290374, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 291044, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 291614, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 292103, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 292835, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 293603, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 294195, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 295011, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 295612, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 296406, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 296752, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 297200, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 297589, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 298045, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 298730, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 299325, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 300076, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 301097, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 302419, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 303345, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 304590, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 305893, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 307181, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 308245, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 309275, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 310539, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 312040, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 313072, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 314046, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 315027, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 316513, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 317901, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 318868, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 320057, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 321287, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 322715, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 323633, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 324957, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 326334, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 327710, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 328607, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 329920, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 331061, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 332210, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 333635, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 334554, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 335423, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 336913, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 337911, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 338809, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 340100, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 341266, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 342193, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 343461, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 344967, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 345830, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 346939, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 347799, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 348687, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 349580, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 350919, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 352265, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 353434, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 354914, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 356414, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 357314, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 358794, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 360205, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 361563, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 362882, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 364070, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 364912, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 366359, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 367335, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 368189, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 369568, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 370797, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 371858, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 372972, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 374177, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 375574, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 376761, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 377606, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 378903, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 379963, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 381226, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 382396, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 383721, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 385109, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 386345, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 387825, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 389269, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 390719, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 392146, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 393438, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 394537, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 395782, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 396850, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 398280, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 399168, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 400409, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 401787, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 403207, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 404472, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 405694, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 406603, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 407635, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 408085, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 408685, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 409192, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 409540, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 409944, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 410779, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 411211, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 411955, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 412368, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 412811, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 413448, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 413857, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 414312, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 414784, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 415288, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 415661, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 416123, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 416476, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 417185, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 417886, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 418286, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 418890, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 419697, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 420053, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 420572, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 420917, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 421649, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 422103, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 422907, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 423457, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 424277, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 424985, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 425580, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 425963, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 426672, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 427220, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 427979, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 428785, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 429593, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 430367, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 430729, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 431508, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 432024, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 432558, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 433197, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 433942, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 434659, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 435187, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 435865, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 436236, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 437043, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 437484, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 438297, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 439017, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 439479, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 439984, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 440344, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 440894, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 441505, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 442058, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 442447, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 443096, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 443674, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 444392, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 445050, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 445456, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 445896, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 446494, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 446961, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 447672, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 448027, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 448483, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 449267, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 449604, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 450203, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 450762, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 451194, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 451678, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 452252, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 452921, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 453532, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 454315, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 454718, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 455075, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 455527, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 456049, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 456747, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 457108, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 457777, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 458338, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 459021, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 459659, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:33:12.679104", + "reading_end_time": "2025-06-01 03:33:23.187627", + "reading_consume": 10.414947, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 138897, + 0 + ], + "1": [ + "2025-01-16 4 00:15:00 00,FF88,80", + 8, + 138898, + 0 + ], + "2": [ + "2025-01-16 4 00:30:00 00,FF88,80", + 8, + 138900, + 0 + ], + "3": [ + "2025-01-16 4 00:45:00 00,FF88,80", + 8, + 138902, + 0 + ], + "4": [ + "2025-01-16 4 01:00:00 00,FF88,80", + 8, + 138902, + 0 + ], + "5": [ + "2025-01-16 4 01:15:00 00,FF88,80", + 8, + 138904, + 0 + ], + "6": [ + "2025-01-16 4 01:30:00 00,FF88,80", + 8, + 138905, + 0 + ], + "7": [ + "2025-01-16 4 01:45:00 00,FF88,80", + 8, + 138907, + 0 + ], + "8": [ + "2025-01-16 4 02:00:00 00,FF88,80", + 8, + 138910, + 0 + ], + "9": [ + "2025-01-16 4 02:15:00 00,FF88,80", + 8, + 138911, + 0 + ], + "10": [ + "2025-01-16 4 02:30:00 00,FF88,80", + 8, + 138913, + 0 + ], + "11": [ + "2025-01-16 4 02:45:00 00,FF88,80", + 8, + 138916, + 0 + ], + "12": [ + "2025-01-16 4 03:00:00 00,FF88,80", + 8, + 138918, + 0 + ], + "13": [ + "2025-01-16 4 03:15:00 00,FF88,80", + 8, + 138920, + 0 + ], + "14": [ + "2025-01-16 4 03:30:00 00,FF88,80", + 8, + 138921, + 0 + ], + "15": [ + "2025-01-16 4 03:45:00 00,FF88,80", + 8, + 138922, + 0 + ], + "16": [ + "2025-01-16 4 04:00:00 00,FF88,80", + 8, + 138924, + 0 + ], + "17": [ + "2025-01-16 4 04:15:00 00,FF88,80", + 8, + 138927, + 0 + ], + "18": [ + "2025-01-16 4 04:30:00 00,FF88,80", + 8, + 138929, + 0 + ], + "19": [ + "2025-01-16 4 04:45:00 00,FF88,80", + 8, + 138931, + 0 + ], + "20": [ + "2025-01-16 4 05:00:00 00,FF88,80", + 8, + 138932, + 0 + ], + "21": [ + "2025-01-16 4 05:15:00 00,FF88,80", + 8, + 138935, + 0 + ], + "22": [ + "2025-01-16 4 05:30:00 00,FF88,80", + 8, + 138936, + 0 + ], + "23": [ + "2025-01-16 4 05:45:00 00,FF88,80", + 8, + 138938, + 0 + ], + "24": [ + "2025-01-16 4 06:00:00 00,FF88,80", + 8, + 138954, + 0 + ], + "25": [ + "2025-01-16 4 06:15:00 00,FF88,80", + 8, + 138973, + 0 + ], + "26": [ + "2025-01-16 4 06:30:00 00,FF88,80", + 8, + 138992, + 0 + ], + "27": [ + "2025-01-16 4 06:45:00 00,FF88,80", + 8, + 139008, + 0 + ], + "28": [ + "2025-01-16 4 07:00:00 00,FF88,80", + 8, + 139026, + 0 + ], + "29": [ + "2025-01-16 4 07:15:00 00,FF88,80", + 8, + 139037, + 0 + ], + "30": [ + "2025-01-16 4 07:30:00 00,FF88,80", + 8, + 139055, + 0 + ], + "31": [ + "2025-01-16 4 07:45:00 00,FF88,80", + 8, + 139073, + 0 + ], + "32": [ + "2025-01-16 4 08:00:00 00,FF88,80", + 8, + 139092, + 0 + ], + "33": [ + "2025-01-16 4 08:15:00 00,FF88,80", + 8, + 139107, + 0 + ], + "34": [ + "2025-01-16 4 08:30:00 00,FF88,80", + 8, + 139125, + 0 + ], + "35": [ + "2025-01-16 4 08:45:00 00,FF88,80", + 8, + 139145, + 0 + ], + "36": [ + "2025-01-16 4 09:00:00 00,FF88,80", + 8, + 139163, + 0 + ], + "37": [ + "2025-01-16 4 09:15:00 00,FF88,80", + 8, + 139183, + 0 + ], + "38": [ + "2025-01-16 4 09:30:00 00,FF88,80", + 8, + 139202, + 0 + ], + "39": [ + "2025-01-16 4 09:45:00 00,FF88,80", + 8, + 139217, + 0 + ], + "40": [ + "2025-01-16 4 10:00:00 00,FF88,80", + 8, + 139225, + 0 + ], + "41": [ + "2025-01-16 4 10:15:00 00,FF88,80", + 8, + 139231, + 0 + ], + "42": [ + "2025-01-16 4 10:30:00 00,FF88,80", + 8, + 139238, + 0 + ], + "43": [ + "2025-01-16 4 10:45:00 00,FF88,80", + 8, + 139242, + 0 + ], + "44": [ + "2025-01-16 4 11:00:00 00,FF88,80", + 8, + 139250, + 0 + ], + "45": [ + "2025-01-16 4 11:15:00 00,FF88,80", + 8, + 139255, + 0 + ], + "46": [ + "2025-01-16 4 11:30:00 00,FF88,80", + 8, + 139264, + 0 + ], + "47": [ + "2025-01-16 4 11:45:00 00,FF88,80", + 8, + 139269, + 0 + ], + "48": [ + "2025-01-16 4 12:00:00 00,FF88,80", + 8, + 139277, + 0 + ], + "49": [ + "2025-01-16 4 12:15:00 00,FF88,80", + 8, + 139286, + 0 + ], + "50": [ + "2025-01-16 4 12:30:00 00,FF88,80", + 8, + 139291, + 0 + ], + "51": [ + "2025-01-16 4 12:45:00 00,FF88,80", + 8, + 139296, + 0 + ], + "52": [ + "2025-01-16 4 13:00:00 00,FF88,80", + 8, + 139303, + 0 + ], + "53": [ + "2025-01-16 4 13:15:00 00,FF88,80", + 8, + 139310, + 0 + ], + "54": [ + "2025-01-16 4 13:30:00 00,FF88,80", + 8, + 139316, + 0 + ], + "55": [ + "2025-01-16 4 13:45:00 00,FF88,80", + 8, + 139321, + 0 + ], + "56": [ + "2025-01-16 4 14:00:00 00,FF88,80", + 8, + 139330, + 0 + ], + "57": [ + "2025-01-16 4 14:15:00 00,FF88,80", + 8, + 139338, + 0 + ], + "58": [ + "2025-01-16 4 14:30:00 00,FF88,80", + 8, + 139343, + 0 + ], + "59": [ + "2025-01-16 4 14:45:00 00,FF88,80", + 8, + 139348, + 0 + ], + "60": [ + "2025-01-16 4 15:00:00 00,FF88,80", + 8, + 139358, + 0 + ], + "61": [ + "2025-01-16 4 15:15:00 00,FF88,80", + 8, + 139366, + 0 + ], + "62": [ + "2025-01-16 4 15:30:00 00,FF88,80", + 8, + 139374, + 0 + ], + "63": [ + "2025-01-16 4 15:45:00 00,FF88,80", + 8, + 139383, + 0 + ], + "64": [ + "2025-01-16 4 16:00:00 00,FF88,80", + 8, + 139392, + 0 + ], + "65": [ + "2025-01-16 4 16:15:00 00,FF88,80", + 8, + 139401, + 0 + ], + "66": [ + "2025-01-16 4 16:30:00 00,FF88,80", + 8, + 139406, + 0 + ], + "67": [ + "2025-01-16 4 16:45:00 00,FF88,80", + 8, + 139416, + 0 + ], + "68": [ + "2025-01-16 4 17:00:00 00,FF88,80", + 8, + 139433, + 0 + ], + "69": [ + "2025-01-16 4 17:15:00 00,FF88,80", + 8, + 139453, + 0 + ], + "70": [ + "2025-01-16 4 17:30:00 00,FF88,80", + 8, + 139470, + 0 + ], + "71": [ + "2025-01-16 4 17:45:00 00,FF88,80", + 8, + 139482, + 0 + ], + "72": [ + "2025-01-16 4 18:00:00 00,FF88,80", + 8, + 139497, + 0 + ], + "73": [ + "2025-01-16 4 18:15:00 00,FF88,80", + 8, + 139511, + 0 + ], + "74": [ + "2025-01-16 4 18:30:00 00,FF88,80", + 8, + 139529, + 0 + ], + "75": [ + "2025-01-16 4 18:45:00 00,FF88,80", + 8, + 139549, + 0 + ], + "76": [ + "2025-01-16 4 19:00:00 00,FF88,80", + 8, + 139562, + 0 + ], + "77": [ + "2025-01-16 4 19:15:00 00,FF88,80", + 8, + 139581, + 0 + ], + "78": [ + "2025-01-16 4 19:30:00 00,FF88,80", + 8, + 139599, + 0 + ], + "79": [ + "2025-01-16 4 19:45:00 00,FF88,80", + 8, + 139620, + 0 + ], + "80": [ + "2025-01-16 4 20:00:00 00,FF88,80", + 8, + 139633, + 0 + ], + "81": [ + "2025-01-16 4 20:15:00 00,FF88,80", + 8, + 139654, + 0 + ], + "82": [ + "2025-01-16 4 20:30:00 00,FF88,80", + 8, + 139669, + 0 + ], + "83": [ + "2025-01-16 4 20:45:00 00,FF88,80", + 8, + 139690, + 0 + ], + "84": [ + "2025-01-16 4 21:00:00 00,FF88,80", + 8, + 139703, + 0 + ], + "85": [ + "2025-01-16 4 21:15:00 00,FF88,80", + 8, + 139724, + 0 + ], + "86": [ + "2025-01-16 4 21:30:00 00,FF88,80", + 8, + 139737, + 0 + ], + "87": [ + "2025-01-16 4 21:45:00 00,FF88,80", + 8, + 139755, + 0 + ], + "88": [ + "2025-01-16 4 22:00:00 00,FF88,80", + 8, + 139769, + 0 + ], + "89": [ + "2025-01-16 4 22:15:00 00,FF88,80", + 8, + 139786, + 0 + ], + "90": [ + "2025-01-16 4 22:30:00 00,FF88,80", + 8, + 139804, + 0 + ], + "91": [ + "2025-01-16 4 22:45:00 00,FF88,80", + 8, + 139816, + 0 + ], + "92": [ + "2025-01-16 4 23:00:00 00,FF88,80", + 8, + 139825, + 0 + ], + "93": [ + "2025-01-16 4 23:15:00 00,FF88,80", + 8, + 139835, + 0 + ], + "94": [ + "2025-01-16 4 23:30:00 00,FF88,80", + 8, + 139840, + 0 + ], + "95": [ + "2025-01-16 4 23:45:00 00,FF88,80", + 8, + 139848, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "1": [ + "2025-01-16 4 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "2": [ + "2025-01-16 4 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "3": [ + "2025-01-16 4 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "4": [ + "2025-01-16 4 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "5": [ + "2025-01-16 4 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "6": [ + "2025-01-16 4 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "7": [ + "2025-01-16 4 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "8": [ + "2025-01-16 4 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "9": [ + "2025-01-16 4 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "10": [ + "2025-01-16 4 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "11": [ + "2025-01-16 4 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "12": [ + "2025-01-16 4 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "13": [ + "2025-01-16 4 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "14": [ + "2025-01-16 4 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "15": [ + "2025-01-16 4 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "16": [ + "2025-01-16 4 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "17": [ + "2025-01-16 4 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "18": [ + "2025-01-16 4 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "19": [ + "2025-01-16 4 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "20": [ + "2025-01-16 4 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "21": [ + "2025-01-16 4 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "22": [ + "2025-01-16 4 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "23": [ + "2025-01-16 4 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "24": [ + "2025-01-16 4 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "25": [ + "2025-01-16 4 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "26": [ + "2025-01-16 4 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "27": [ + "2025-01-16 4 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "28": [ + "2025-01-16 4 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "29": [ + "2025-01-16 4 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "30": [ + "2025-01-16 4 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "31": [ + "2025-01-16 4 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "32": [ + "2025-01-16 4 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "33": [ + "2025-01-16 4 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "34": [ + "2025-01-16 4 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "35": [ + "2025-01-16 4 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "36": [ + "2025-01-16 4 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "37": [ + "2025-01-16 4 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "38": [ + "2025-01-16 4 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "39": [ + "2025-01-16 4 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "40": [ + "2025-01-16 4 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "41": [ + "2025-01-16 4 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "42": [ + "2025-01-16 4 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "43": [ + "2025-01-16 4 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "44": [ + "2025-01-16 4 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "45": [ + "2025-01-16 4 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "46": [ + "2025-01-16 4 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "47": [ + "2025-01-16 4 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "48": [ + "2025-01-16 4 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "49": [ + "2025-01-16 4 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "50": [ + "2025-01-16 4 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "51": [ + "2025-01-16 4 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "52": [ + "2025-01-16 4 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "53": [ + "2025-01-16 4 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "54": [ + "2025-01-16 4 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "55": [ + "2025-01-16 4 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "56": [ + "2025-01-16 4 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "57": [ + "2025-01-16 4 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "58": [ + "2025-01-16 4 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "59": [ + "2025-01-16 4 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "60": [ + "2025-01-16 4 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "61": [ + "2025-01-16 4 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "62": [ + "2025-01-16 4 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "63": [ + "2025-01-16 4 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "64": [ + "2025-01-16 4 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "65": [ + "2025-01-16 4 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "66": [ + "2025-01-16 4 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "67": [ + "2025-01-16 4 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "68": [ + "2025-01-16 4 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "69": [ + "2025-01-16 4 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "70": [ + "2025-01-16 4 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "71": [ + "2025-01-16 4 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "72": [ + "2025-01-16 4 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "73": [ + "2025-01-16 4 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "74": [ + "2025-01-16 4 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "75": [ + "2025-01-16 4 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "76": [ + "2025-01-16 4 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "77": [ + "2025-01-16 4 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "78": [ + "2025-01-16 4 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "79": [ + "2025-01-16 4 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "80": [ + "2025-01-16 4 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "81": [ + "2025-01-16 4 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "82": [ + "2025-01-16 4 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "83": [ + "2025-01-16 4 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "84": [ + "2025-01-16 4 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "85": [ + "2025-01-16 4 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "86": [ + "2025-01-16 4 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "87": [ + "2025-01-16 4 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "88": [ + "2025-01-16 4 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "89": [ + "2025-01-16 4 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "90": [ + "2025-01-16 4 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "91": [ + "2025-01-16 4 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "92": [ + "2025-01-16 4 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "93": [ + "2025-01-16 4 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "94": [ + "2025-01-16 4 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "95": [ + "2025-01-16 4 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 459659, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 459659, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 12, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 14, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 14, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 233, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 236, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 231, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 262, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 51, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 66, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 11, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 233, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 235, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 233, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 5, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 7, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 9, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-26 1 22:33:00 00,FF88,80", + 75, + 61 + ], + "1": [ + "2025-05-17 6 17:33:00 00,FF88,80", + 74, + 95 + ], + "2": [ + "2025-05-20 2 10:33:00 00,FF88,80", + 80, + 34 + ], + "3": [ + "2025-05-16 5 23:33:00 00,FF88,80", + 76, + 19 + ], + "4": [ + "2025-05-04 0 09:33:00 00,FF88,80", + 70, + 41 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:09:20.956338", + "pos": 8, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:09:00", + "connection_status": true, + "connection_end": "2025-06-01 03:09:04", + "connection_consume": 4.5, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025031500008", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025031500008", + "actual_time": "2025-06-01 03:09:12.500988", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:09:12 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:09:12", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:09:15.864995", + "getProfile_end_time": "2025-06-01 03:09:15.207216", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 182620, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 201280, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 220135, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 238568, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 247661, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 257018, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 265770, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 283736, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 303025, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 311902, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 321019, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 330366, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 165862, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 166344, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 166921, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 167416, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 167988, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 168653, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 169149, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 169763, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 170383, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 170868, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 171574, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 172006, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 172490, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 172965, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 173711, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 174441, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 174936, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 175498, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 175978, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 176435, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 177002, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 177535, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 178246, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 178694, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 179219, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 179829, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 180300, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 181026, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 181559, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 182105, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 182854, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 183544, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 184256, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 184861, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 185392, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 186132, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 186645, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 187109, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 187777, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 188356, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 189030, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 189619, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 190096, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 190652, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 191158, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 191587, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 192122, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 192837, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 193455, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 194200, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 194791, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 195456, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 195918, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 196643, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 197270, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 197979, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 198599, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 199022, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 199638, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 200209, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 200686, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 201221, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 201869, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 202493, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 203173, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 203904, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 204570, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 205065, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 205727, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 206426, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 206895, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 207639, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 208382, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 208980, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 209447, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 209879, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 210530, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 211281, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 211749, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 212295, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 212964, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 213632, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 214073, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 214559, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 214994, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 215432, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 216112, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 216700, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 217397, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 218052, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 218632, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 219225, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 219613, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 219893, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 220235, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 220580, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 220932, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 221324, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 221662, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 221921, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 222150, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 222454, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 222857, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 223228, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 223631, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 224000, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 224375, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 224554, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 224727, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 225144, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 225373, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 225640, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 225830, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 226144, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 226514, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 226764, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 227050, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 227307, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 227697, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 228108, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 228498, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 228811, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 229215, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 229407, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 229773, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 230105, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 230316, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 230720, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 231128, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 231487, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 231824, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 232016, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 232235, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 232474, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 232863, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 233161, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 233344, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 233722, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 234122, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 234437, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 234858, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 235048, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 235391, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 235687, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 236010, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 236208, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 236478, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 236807, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 237161, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 237359, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 237568, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 237957, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 238360, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 238772, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 239045, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 239405, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 239609, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 239807, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 240171, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 240511, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 240709, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 240975, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 241170, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 241570, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 241749, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 242074, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 242251, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 242454, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 242710, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 243067, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 243370, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 243650, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 243882, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 244286, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 244644, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 244867, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 245110, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 245328, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 245593, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 245815, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 245987, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 246201, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 246535, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 247183, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 247708, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 248307, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 248780, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 249468, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 249950, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 250403, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 250833, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 251444, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 252000, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 252600, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 253334, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 254047, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 254665, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 255198, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 255666, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 256290, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 256840, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 257268, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 257969, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 258457, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 259166, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 259925, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 260466, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 261017, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 261707, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 262404, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 263076, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 263499, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 264236, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 264901, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 265516, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 266055, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 266741, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 267361, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 268062, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 268747, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 269247, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 269823, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 270294, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 270781, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 271520, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 272129, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 272734, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 273288, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 273969, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 274436, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 275145, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 275655, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 276103, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 276777, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 277252, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 277722, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 278308, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 278749, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 279213, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 279843, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 280428, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 281039, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 281556, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 282035, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 282667, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 283239, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 283906, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 284357, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 284924, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 285546, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 286108, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 286574, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 287288, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 287890, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 288632, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 289091, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 289622, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 290367, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 290843, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 291563, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 292199, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 292624, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 293284, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 294000, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 294433, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 294875, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 295303, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 295848, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 296577, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 297323, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 297937, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 298620, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 299195, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 299471, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 299839, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 300166, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 300429, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 300747, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 301113, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 301370, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 301611, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 301994, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 302403, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 302635, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 303017, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 303220, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 303594, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 303880, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 304049, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 304229, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 304413, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 304612, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 304980, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 305180, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 305401, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 305774, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 306130, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 306403, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 306630, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 306913, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 307152, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 307560, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 307853, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 308129, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 308309, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 308481, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 308674, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 309027, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 309289, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 309485, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 309804, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 310193, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 310389, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 310645, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 310829, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 311019, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 311317, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 311589, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 311784, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 311966, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 312316, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 312569, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 312984, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 313359, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 313601, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 314016, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 314427, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 314721, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 314940, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 315210, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 315408, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 315627, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 315800, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 316079, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 316336, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 316723, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 317063, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 317345, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 317692, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 318012, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 318307, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 318528, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 318839, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 319092, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 319514, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 319887, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 320253, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 320576, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 320784, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 321158, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 321565, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 321968, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 322349, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 322743, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 323023, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 323229, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 323487, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 323672, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 323902, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 324106, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 324491, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 324665, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 324848, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 325084, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 325358, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:09:26.290476", + "reading_end_time": "2025-06-01 03:09:35.853180", + "reading_consume": 8.530965, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 165222, + 0 + ], + "1": [ + "2025-02-06 4 00:15:00 00,FF88,80", + 8, + 165222, + 0 + ], + "2": [ + "2025-02-06 4 00:30:00 00,FF88,80", + 8, + 165223, + 0 + ], + "3": [ + "2025-02-06 4 00:45:00 00,FF88,80", + 8, + 165224, + 0 + ], + "4": [ + "2025-02-06 4 01:00:00 00,FF88,80", + 8, + 165225, + 0 + ], + "5": [ + "2025-02-06 4 01:15:00 00,FF88,80", + 8, + 165225, + 0 + ], + "6": [ + "2025-02-06 4 01:30:00 00,FF88,80", + 8, + 165225, + 0 + ], + "7": [ + "2025-02-06 4 01:45:00 00,FF88,80", + 8, + 165225, + 0 + ], + "8": [ + "2025-02-06 4 02:00:00 00,FF88,80", + 8, + 165226, + 0 + ], + "9": [ + "2025-02-06 4 02:15:00 00,FF88,80", + 8, + 165227, + 0 + ], + "10": [ + "2025-02-06 4 02:30:00 00,FF88,80", + 8, + 165227, + 0 + ], + "11": [ + "2025-02-06 4 02:45:00 00,FF88,80", + 8, + 165227, + 0 + ], + "12": [ + "2025-02-06 4 03:00:00 00,FF88,80", + 8, + 165228, + 0 + ], + "13": [ + "2025-02-06 4 03:15:00 00,FF88,80", + 8, + 165228, + 0 + ], + "14": [ + "2025-02-06 4 03:30:00 00,FF88,80", + 8, + 165229, + 0 + ], + "15": [ + "2025-02-06 4 03:45:00 00,FF88,80", + 8, + 165230, + 0 + ], + "16": [ + "2025-02-06 4 04:00:00 00,FF88,80", + 8, + 165231, + 0 + ], + "17": [ + "2025-02-06 4 04:15:00 00,FF88,80", + 8, + 165232, + 0 + ], + "18": [ + "2025-02-06 4 04:30:00 00,FF88,80", + 8, + 165232, + 0 + ], + "19": [ + "2025-02-06 4 04:45:00 00,FF88,80", + 8, + 165232, + 0 + ], + "20": [ + "2025-02-06 4 05:00:00 00,FF88,80", + 8, + 165233, + 0 + ], + "21": [ + "2025-02-06 4 05:15:00 00,FF88,80", + 8, + 165233, + 0 + ], + "22": [ + "2025-02-06 4 05:30:00 00,FF88,80", + 8, + 165233, + 0 + ], + "23": [ + "2025-02-06 4 05:45:00 00,FF88,80", + 8, + 165233, + 0 + ], + "24": [ + "2025-02-06 4 06:00:00 00,FF88,80", + 8, + 165241, + 0 + ], + "25": [ + "2025-02-06 4 06:15:00 00,FF88,80", + 8, + 165247, + 0 + ], + "26": [ + "2025-02-06 4 06:30:00 00,FF88,80", + 8, + 165253, + 0 + ], + "27": [ + "2025-02-06 4 06:45:00 00,FF88,80", + 8, + 165262, + 0 + ], + "28": [ + "2025-02-06 4 07:00:00 00,FF88,80", + 8, + 165271, + 0 + ], + "29": [ + "2025-02-06 4 07:15:00 00,FF88,80", + 8, + 165277, + 0 + ], + "30": [ + "2025-02-06 4 07:30:00 00,FF88,80", + 8, + 165283, + 0 + ], + "31": [ + "2025-02-06 4 07:45:00 00,FF88,80", + 8, + 165289, + 0 + ], + "32": [ + "2025-02-06 4 08:00:00 00,FF88,80", + 8, + 165296, + 0 + ], + "33": [ + "2025-02-06 4 08:15:00 00,FF88,80", + 8, + 165306, + 0 + ], + "34": [ + "2025-02-06 4 08:30:00 00,FF88,80", + 8, + 165315, + 0 + ], + "35": [ + "2025-02-06 4 08:45:00 00,FF88,80", + 8, + 165322, + 0 + ], + "36": [ + "2025-02-06 4 09:00:00 00,FF88,80", + 8, + 165332, + 0 + ], + "37": [ + "2025-02-06 4 09:15:00 00,FF88,80", + 8, + 165341, + 0 + ], + "38": [ + "2025-02-06 4 09:30:00 00,FF88,80", + 8, + 165349, + 0 + ], + "39": [ + "2025-02-06 4 09:45:00 00,FF88,80", + 8, + 165356, + 0 + ], + "40": [ + "2025-02-06 4 10:00:00 00,FF88,80", + 8, + 165360, + 0 + ], + "41": [ + "2025-02-06 4 10:15:00 00,FF88,80", + 8, + 165364, + 0 + ], + "42": [ + "2025-02-06 4 10:30:00 00,FF88,80", + 8, + 165367, + 0 + ], + "43": [ + "2025-02-06 4 10:45:00 00,FF88,80", + 8, + 165369, + 0 + ], + "44": [ + "2025-02-06 4 11:00:00 00,FF88,80", + 8, + 165371, + 0 + ], + "45": [ + "2025-02-06 4 11:15:00 00,FF88,80", + 8, + 165375, + 0 + ], + "46": [ + "2025-02-06 4 11:30:00 00,FF88,80", + 8, + 165377, + 0 + ], + "47": [ + "2025-02-06 4 11:45:00 00,FF88,80", + 8, + 165380, + 0 + ], + "48": [ + "2025-02-06 4 12:00:00 00,FF88,80", + 8, + 165385, + 0 + ], + "49": [ + "2025-02-06 4 12:15:00 00,FF88,80", + 8, + 165388, + 0 + ], + "50": [ + "2025-02-06 4 12:30:00 00,FF88,80", + 8, + 165393, + 0 + ], + "51": [ + "2025-02-06 4 12:45:00 00,FF88,80", + 8, + 165396, + 0 + ], + "52": [ + "2025-02-06 4 13:00:00 00,FF88,80", + 8, + 165399, + 0 + ], + "53": [ + "2025-02-06 4 13:15:00 00,FF88,80", + 8, + 165402, + 0 + ], + "54": [ + "2025-02-06 4 13:30:00 00,FF88,80", + 8, + 165404, + 0 + ], + "55": [ + "2025-02-06 4 13:45:00 00,FF88,80", + 8, + 165408, + 0 + ], + "56": [ + "2025-02-06 4 14:00:00 00,FF88,80", + 8, + 165413, + 0 + ], + "57": [ + "2025-02-06 4 14:15:00 00,FF88,80", + 8, + 165415, + 0 + ], + "58": [ + "2025-02-06 4 14:30:00 00,FF88,80", + 8, + 165418, + 0 + ], + "59": [ + "2025-02-06 4 14:45:00 00,FF88,80", + 8, + 165421, + 0 + ], + "60": [ + "2025-02-06 4 15:00:00 00,FF88,80", + 8, + 165424, + 0 + ], + "61": [ + "2025-02-06 4 15:15:00 00,FF88,80", + 8, + 165428, + 0 + ], + "62": [ + "2025-02-06 4 15:30:00 00,FF88,80", + 8, + 165433, + 0 + ], + "63": [ + "2025-02-06 4 15:45:00 00,FF88,80", + 8, + 165435, + 0 + ], + "64": [ + "2025-02-06 4 16:00:00 00,FF88,80", + 8, + 165439, + 0 + ], + "65": [ + "2025-02-06 4 16:15:00 00,FF88,80", + 8, + 165441, + 0 + ], + "66": [ + "2025-02-06 4 16:30:00 00,FF88,80", + 8, + 165445, + 0 + ], + "67": [ + "2025-02-06 4 16:45:00 00,FF88,80", + 8, + 165450, + 0 + ], + "68": [ + "2025-02-06 4 17:00:00 00,FF88,80", + 8, + 165458, + 0 + ], + "69": [ + "2025-02-06 4 17:15:00 00,FF88,80", + 8, + 165467, + 0 + ], + "70": [ + "2025-02-06 4 17:30:00 00,FF88,80", + 8, + 165472, + 0 + ], + "71": [ + "2025-02-06 4 17:45:00 00,FF88,80", + 8, + 165481, + 0 + ], + "72": [ + "2025-02-06 4 18:00:00 00,FF88,80", + 8, + 165489, + 0 + ], + "73": [ + "2025-02-06 4 18:15:00 00,FF88,80", + 8, + 165499, + 0 + ], + "74": [ + "2025-02-06 4 18:30:00 00,FF88,80", + 8, + 165506, + 0 + ], + "75": [ + "2025-02-06 4 18:45:00 00,FF88,80", + 8, + 165513, + 0 + ], + "76": [ + "2025-02-06 4 19:00:00 00,FF88,80", + 8, + 165519, + 0 + ], + "77": [ + "2025-02-06 4 19:15:00 00,FF88,80", + 8, + 165529, + 0 + ], + "78": [ + "2025-02-06 4 19:30:00 00,FF88,80", + 8, + 165535, + 0 + ], + "79": [ + "2025-02-06 4 19:45:00 00,FF88,80", + 8, + 165544, + 0 + ], + "80": [ + "2025-02-06 4 20:00:00 00,FF88,80", + 8, + 165554, + 0 + ], + "81": [ + "2025-02-06 4 20:15:00 00,FF88,80", + 8, + 165560, + 0 + ], + "82": [ + "2025-02-06 4 20:30:00 00,FF88,80", + 8, + 165568, + 0 + ], + "83": [ + "2025-02-06 4 20:45:00 00,FF88,80", + 8, + 165574, + 0 + ], + "84": [ + "2025-02-06 4 21:00:00 00,FF88,80", + 8, + 165583, + 0 + ], + "85": [ + "2025-02-06 4 21:15:00 00,FF88,80", + 8, + 165591, + 0 + ], + "86": [ + "2025-02-06 4 21:30:00 00,FF88,80", + 8, + 165597, + 0 + ], + "87": [ + "2025-02-06 4 21:45:00 00,FF88,80", + 8, + 165604, + 0 + ], + "88": [ + "2025-02-06 4 22:00:00 00,FF88,80", + 8, + 165612, + 0 + ], + "89": [ + "2025-02-06 4 22:15:00 00,FF88,80", + 8, + 165619, + 0 + ], + "90": [ + "2025-02-06 4 22:30:00 00,FF88,80", + 8, + 165628, + 0 + ], + "91": [ + "2025-02-06 4 22:45:00 00,FF88,80", + 8, + 165633, + 0 + ], + "92": [ + "2025-02-06 4 23:00:00 00,FF88,80", + 8, + 165636, + 0 + ], + "93": [ + "2025-02-06 4 23:15:00 00,FF88,80", + 8, + 165641, + 0 + ], + "94": [ + "2025-02-06 4 23:30:00 00,FF88,80", + 8, + 165645, + 0 + ], + "95": [ + "2025-02-06 4 23:45:00 00,FF88,80", + 8, + 165648, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "1": [ + "2025-02-06 4 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "2": [ + "2025-02-06 4 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "3": [ + "2025-02-06 4 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "4": [ + "2025-02-06 4 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "5": [ + "2025-02-06 4 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "6": [ + "2025-02-06 4 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "7": [ + "2025-02-06 4 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "8": [ + "2025-02-06 4 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "9": [ + "2025-02-06 4 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "10": [ + "2025-02-06 4 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "11": [ + "2025-02-06 4 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "12": [ + "2025-02-06 4 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "13": [ + "2025-02-06 4 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "14": [ + "2025-02-06 4 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "15": [ + "2025-02-06 4 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "16": [ + "2025-02-06 4 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "17": [ + "2025-02-06 4 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "18": [ + "2025-02-06 4 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "19": [ + "2025-02-06 4 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "20": [ + "2025-02-06 4 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "21": [ + "2025-02-06 4 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "22": [ + "2025-02-06 4 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "23": [ + "2025-02-06 4 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "24": [ + "2025-02-06 4 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "25": [ + "2025-02-06 4 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "26": [ + "2025-02-06 4 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "27": [ + "2025-02-06 4 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "28": [ + "2025-02-06 4 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "29": [ + "2025-02-06 4 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "30": [ + "2025-02-06 4 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "31": [ + "2025-02-06 4 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "32": [ + "2025-02-06 4 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "33": [ + "2025-02-06 4 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "34": [ + "2025-02-06 4 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "35": [ + "2025-02-06 4 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "36": [ + "2025-02-06 4 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "37": [ + "2025-02-06 4 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "38": [ + "2025-02-06 4 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "39": [ + "2025-02-06 4 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "40": [ + "2025-02-06 4 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "41": [ + "2025-02-06 4 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "42": [ + "2025-02-06 4 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "43": [ + "2025-02-06 4 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "44": [ + "2025-02-06 4 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "45": [ + "2025-02-06 4 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "46": [ + "2025-02-06 4 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "47": [ + "2025-02-06 4 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "48": [ + "2025-02-06 4 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "49": [ + "2025-02-06 4 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "50": [ + "2025-02-06 4 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "51": [ + "2025-02-06 4 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "52": [ + "2025-02-06 4 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "53": [ + "2025-02-06 4 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "54": [ + "2025-02-06 4 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "55": [ + "2025-02-06 4 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "56": [ + "2025-02-06 4 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "57": [ + "2025-02-06 4 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "58": [ + "2025-02-06 4 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "59": [ + "2025-02-06 4 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "60": [ + "2025-02-06 4 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "61": [ + "2025-02-06 4 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "62": [ + "2025-02-06 4 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "63": [ + "2025-02-06 4 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "64": [ + "2025-02-06 4 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "65": [ + "2025-02-06 4 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "66": [ + "2025-02-06 4 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "67": [ + "2025-02-06 4 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "68": [ + "2025-02-06 4 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "69": [ + "2025-02-06 4 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "70": [ + "2025-02-06 4 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "71": [ + "2025-02-06 4 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "72": [ + "2025-02-06 4 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "73": [ + "2025-02-06 4 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "74": [ + "2025-02-06 4 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "75": [ + "2025-02-06 4 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "76": [ + "2025-02-06 4 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "77": [ + "2025-02-06 4 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "78": [ + "2025-02-06 4 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "79": [ + "2025-02-06 4 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "80": [ + "2025-02-06 4 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "81": [ + "2025-02-06 4 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "82": [ + "2025-02-06 4 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "83": [ + "2025-02-06 4 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "84": [ + "2025-02-06 4 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "85": [ + "2025-02-06 4 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "86": [ + "2025-02-06 4 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "87": [ + "2025-02-06 4 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "88": [ + "2025-02-06 4 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "89": [ + "2025-02-06 4 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "90": [ + "2025-02-06 4 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "91": [ + "2025-02-06 4 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "92": [ + "2025-02-06 4 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "93": [ + "2025-02-06 4 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "94": [ + "2025-02-06 4 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "95": [ + "2025-02-06 4 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 325358, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 325358, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 11, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 11, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 22, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 226, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 230, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 227, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 457, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 130, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 12, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 123, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 227, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 229, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 227, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 10, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 17, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 16, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-18 0 10:09:00 00,FF88,80", + 80, + 17 + ], + "1": [ + "2025-05-25 0 17:09:00 00,FF88,80", + 74, + 52 + ], + "2": [ + "2025-05-04 0 09:09:00 00,FF88,80", + 75, + 86 + ], + "3": [ + "2025-05-07 3 00:09:00 00,FF88,80", + 70, + 0 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + } +] \ No newline at end of file diff --git a/docs/testdata/Cusk-01_DCPP_DailyCheck.json b/docs/testdata/Cusk-01_DCPP_DailyCheck.json new file mode 100644 index 0000000..b3aed58 --- /dev/null +++ b/docs/testdata/Cusk-01_DCPP_DailyCheck.json @@ -0,0 +1,79425 @@ +[ + { + "_id": "2025-06-01 03:40:25.388389", + "pos": 1, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:40:00", + "connection_status": true, + "connection_end": "2025-06-01 03:40:02", + "connection_consume": 2.4, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025030100001", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025030100001", + "actual_time": "2025-06-01 03:40:06.334053", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:40:06 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:40:06", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:40:07.809570", + "getProfile_end_time": "2025-06-01 03:40:07.876646", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 74209, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 90597, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 108191, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 125277, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 133176, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 141718, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 150451, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 167510, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 183894, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 192497, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 200850, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 209473, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 58275, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 58829, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 59232, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 59689, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 60289, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 60856, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 61320, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 61901, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 62551, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 62948, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 63597, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 64212, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 64714, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 65158, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 65855, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 66356, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 66780, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 67205, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 67867, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 68452, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 69102, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 69727, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 70291, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 70993, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 71507, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 72076, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 72733, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 73323, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 73990, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 74567, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 75184, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 75593, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 76060, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 76546, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 76966, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 77434, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 77860, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 78342, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 78937, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 79447, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 79958, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 80419, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 80898, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 81588, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 82187, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 82774, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 83223, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 83848, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 84294, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 84808, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 85515, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 86112, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 86682, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 87293, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 87954, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 88594, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 89061, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 89466, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 89960, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 90439, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 90900, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 91592, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 92263, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 92757, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 93359, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 93879, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 94562, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 95101, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 95579, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 96051, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 96623, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 97101, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 97680, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 98358, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 98879, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 99343, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 100053, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 100609, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 101032, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 101441, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 101870, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 102463, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 103108, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 103636, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 104051, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 104566, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 105275, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 105837, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 106538, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 107205, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 107603, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 108225, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 108544, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 108829, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 109050, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 109359, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 109543, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 109804, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 110069, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 110453, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 110818, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 111038, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 111314, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 111514, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 111888, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 112252, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 112480, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 112789, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 113091, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 113285, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 113623, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 113908, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 114250, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 114533, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 114691, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 114925, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 115087, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 115465, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 115831, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 116186, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 116416, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 116587, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 116953, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 117335, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 117513, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 117786, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 117960, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 118298, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 118637, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 118825, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 119095, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 119383, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 119603, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 119967, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 120225, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 120433, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 120718, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 121048, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 121253, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 121484, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 121877, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 122189, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 122450, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 122730, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 122916, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 123127, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 123365, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 123662, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 123874, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 124084, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 124258, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 124565, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 124777, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 125149, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 125510, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 125684, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 125898, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 126214, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 126422, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 126611, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 126990, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 127283, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 127553, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 127896, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 128245, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 128448, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 128628, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 128888, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 129146, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 129414, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 129744, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 130061, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 130452, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 130633, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 130886, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 131124, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 131486, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 131702, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 131905, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 132169, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 132426, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 132650, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 132867, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 133553, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 134088, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 134755, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 135323, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 135733, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 136443, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 137102, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 137803, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 138490, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 139153, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 139600, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 140148, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 140610, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 141131, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 141544, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 142058, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 142764, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 143242, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 143884, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 144422, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 144950, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 145647, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 146356, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 146926, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 147548, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 147991, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 148479, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 149180, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 149758, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 150324, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 150955, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 151368, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 151947, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 152500, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 153164, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 153608, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 154306, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 154726, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 155179, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 155762, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 156370, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 156839, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 157271, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 157947, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 158419, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 159001, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 159591, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 160118, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 160697, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 161257, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 161947, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 162406, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 163027, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 163497, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 164017, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 164624, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 165113, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 165607, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 166239, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 166656, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 167195, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 167905, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 168614, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 169032, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 169494, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 169972, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 170661, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 171334, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 172006, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 172517, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 172961, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 173619, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 174236, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 174824, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 175530, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 176131, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 176528, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 177181, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 177670, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 178274, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 178965, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 179402, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 179833, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 180261, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 180830, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 181311, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 181897, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 182518, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 182977, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 183572, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 183792, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 184065, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 184437, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 184795, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 184974, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 185232, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 185455, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 185613, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 185953, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 186261, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 186481, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 186814, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 187102, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 187361, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 187521, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 187696, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 188063, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 188435, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 188722, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 189077, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 189373, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 189566, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 189754, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 189985, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 190356, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 190702, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 191063, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 191434, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 191641, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 191858, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 192040, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 192382, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 192749, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 193003, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 193308, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 193502, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 193880, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 194242, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 194631, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 194981, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 195347, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 195510, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 195842, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 196078, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 196456, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 196804, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 197166, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 197516, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 197737, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 198081, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 198264, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 198628, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 198989, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 199199, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 199550, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 199817, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 200047, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 200393, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 200604, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 200767, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 200970, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 201205, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 201567, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 201954, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 202178, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 202488, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 202740, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 203130, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 203415, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 203795, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 203980, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 204367, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 204567, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 204953, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 205173, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 205356, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 205616, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 205946, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 206178, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 206479, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 206758, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 207007, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 207301, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 207519, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 207844, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 208002, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 208379, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 208664, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 208992, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 209325, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 209641, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 209885, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:40:20.542417", + "reading_end_time": "2025-06-01 03:40:29.133326", + "reading_consume": 8.869388, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 57812, + 0 + ], + "1": [ + "2025-05-22 4 00:15:00 00,FF88,80", + 8, + 57813, + 0 + ], + "2": [ + "2025-05-22 4 00:30:00 00,FF88,80", + 8, + 57813, + 0 + ], + "3": [ + "2025-05-22 4 00:45:00 00,FF88,80", + 8, + 57814, + 0 + ], + "4": [ + "2025-05-22 4 01:00:00 00,FF88,80", + 8, + 57814, + 0 + ], + "5": [ + "2025-05-22 4 01:15:00 00,FF88,80", + 8, + 57814, + 0 + ], + "6": [ + "2025-05-22 4 01:30:00 00,FF88,80", + 8, + 57814, + 0 + ], + "7": [ + "2025-05-22 4 01:45:00 00,FF88,80", + 8, + 57814, + 0 + ], + "8": [ + "2025-05-22 4 02:00:00 00,FF88,80", + 8, + 57815, + 0 + ], + "9": [ + "2025-05-22 4 02:15:00 00,FF88,80", + 8, + 57816, + 0 + ], + "10": [ + "2025-05-22 4 02:30:00 00,FF88,80", + 8, + 57817, + 0 + ], + "11": [ + "2025-05-22 4 02:45:00 00,FF88,80", + 8, + 57817, + 0 + ], + "12": [ + "2025-05-22 4 03:00:00 00,FF88,80", + 8, + 57818, + 0 + ], + "13": [ + "2025-05-22 4 03:15:00 00,FF88,80", + 8, + 57818, + 0 + ], + "14": [ + "2025-05-22 4 03:30:00 00,FF88,80", + 8, + 57818, + 0 + ], + "15": [ + "2025-05-22 4 03:45:00 00,FF88,80", + 8, + 57819, + 0 + ], + "16": [ + "2025-05-22 4 04:00:00 00,FF88,80", + 8, + 57820, + 0 + ], + "17": [ + "2025-05-22 4 04:15:00 00,FF88,80", + 8, + 57821, + 0 + ], + "18": [ + "2025-05-22 4 04:30:00 00,FF88,80", + 8, + 57821, + 0 + ], + "19": [ + "2025-05-22 4 04:45:00 00,FF88,80", + 8, + 57821, + 0 + ], + "20": [ + "2025-05-22 4 05:00:00 00,FF88,80", + 8, + 57821, + 0 + ], + "21": [ + "2025-05-22 4 05:15:00 00,FF88,80", + 8, + 57821, + 0 + ], + "22": [ + "2025-05-22 4 05:30:00 00,FF88,80", + 8, + 57821, + 0 + ], + "23": [ + "2025-05-22 4 05:45:00 00,FF88,80", + 8, + 57822, + 0 + ], + "24": [ + "2025-05-22 4 06:00:00 00,FF88,80", + 8, + 57829, + 0 + ], + "25": [ + "2025-05-22 4 06:15:00 00,FF88,80", + 8, + 57834, + 0 + ], + "26": [ + "2025-05-22 4 06:30:00 00,FF88,80", + 8, + 57842, + 0 + ], + "27": [ + "2025-05-22 4 06:45:00 00,FF88,80", + 8, + 57851, + 0 + ], + "28": [ + "2025-05-22 4 07:00:00 00,FF88,80", + 8, + 57859, + 0 + ], + "29": [ + "2025-05-22 4 07:15:00 00,FF88,80", + 8, + 57865, + 0 + ], + "30": [ + "2025-05-22 4 07:30:00 00,FF88,80", + 8, + 57870, + 0 + ], + "31": [ + "2025-05-22 4 07:45:00 00,FF88,80", + 8, + 57877, + 0 + ], + "32": [ + "2025-05-22 4 08:00:00 00,FF88,80", + 8, + 57883, + 0 + ], + "33": [ + "2025-05-22 4 08:15:00 00,FF88,80", + 8, + 57892, + 0 + ], + "34": [ + "2025-05-22 4 08:30:00 00,FF88,80", + 8, + 57897, + 0 + ], + "35": [ + "2025-05-22 4 08:45:00 00,FF88,80", + 8, + 57907, + 0 + ], + "36": [ + "2025-05-22 4 09:00:00 00,FF88,80", + 8, + 57915, + 0 + ], + "37": [ + "2025-05-22 4 09:15:00 00,FF88,80", + 8, + 57921, + 0 + ], + "38": [ + "2025-05-22 4 09:30:00 00,FF88,80", + 8, + 57930, + 0 + ], + "39": [ + "2025-05-22 4 09:45:00 00,FF88,80", + 8, + 57936, + 0 + ], + "40": [ + "2025-05-22 4 10:00:00 00,FF88,80", + 8, + 57940, + 0 + ], + "41": [ + "2025-05-22 4 10:15:00 00,FF88,80", + 8, + 57943, + 0 + ], + "42": [ + "2025-05-22 4 10:30:00 00,FF88,80", + 8, + 57946, + 0 + ], + "43": [ + "2025-05-22 4 10:45:00 00,FF88,80", + 8, + 57949, + 0 + ], + "44": [ + "2025-05-22 4 11:00:00 00,FF88,80", + 8, + 57952, + 0 + ], + "45": [ + "2025-05-22 4 11:15:00 00,FF88,80", + 8, + 57954, + 0 + ], + "46": [ + "2025-05-22 4 11:30:00 00,FF88,80", + 8, + 57956, + 0 + ], + "47": [ + "2025-05-22 4 11:45:00 00,FF88,80", + 8, + 57959, + 0 + ], + "48": [ + "2025-05-22 4 12:00:00 00,FF88,80", + 8, + 57963, + 0 + ], + "49": [ + "2025-05-22 4 12:15:00 00,FF88,80", + 8, + 57965, + 0 + ], + "50": [ + "2025-05-22 4 12:30:00 00,FF88,80", + 8, + 57967, + 0 + ], + "51": [ + "2025-05-22 4 12:45:00 00,FF88,80", + 8, + 57971, + 0 + ], + "52": [ + "2025-05-22 4 13:00:00 00,FF88,80", + 8, + 57975, + 0 + ], + "53": [ + "2025-05-22 4 13:15:00 00,FF88,80", + 8, + 57978, + 0 + ], + "54": [ + "2025-05-22 4 13:30:00 00,FF88,80", + 8, + 57982, + 0 + ], + "55": [ + "2025-05-22 4 13:45:00 00,FF88,80", + 8, + 57984, + 0 + ], + "56": [ + "2025-05-22 4 14:00:00 00,FF88,80", + 8, + 57986, + 0 + ], + "57": [ + "2025-05-22 4 14:15:00 00,FF88,80", + 8, + 57990, + 0 + ], + "58": [ + "2025-05-22 4 14:30:00 00,FF88,80", + 8, + 57994, + 0 + ], + "59": [ + "2025-05-22 4 14:45:00 00,FF88,80", + 8, + 57997, + 0 + ], + "60": [ + "2025-05-22 4 15:00:00 00,FF88,80", + 8, + 58000, + 0 + ], + "61": [ + "2025-05-22 4 15:15:00 00,FF88,80", + 8, + 58004, + 0 + ], + "62": [ + "2025-05-22 4 15:30:00 00,FF88,80", + 8, + 58007, + 0 + ], + "63": [ + "2025-05-22 4 15:45:00 00,FF88,80", + 8, + 58010, + 0 + ], + "64": [ + "2025-05-22 4 16:00:00 00,FF88,80", + 8, + 58013, + 0 + ], + "65": [ + "2025-05-22 4 16:15:00 00,FF88,80", + 8, + 58017, + 0 + ], + "66": [ + "2025-05-22 4 16:30:00 00,FF88,80", + 8, + 58020, + 0 + ], + "67": [ + "2025-05-22 4 16:45:00 00,FF88,80", + 8, + 58024, + 0 + ], + "68": [ + "2025-05-22 4 17:00:00 00,FF88,80", + 8, + 58033, + 0 + ], + "69": [ + "2025-05-22 4 17:15:00 00,FF88,80", + 8, + 58043, + 0 + ], + "70": [ + "2025-05-22 4 17:30:00 00,FF88,80", + 8, + 58049, + 0 + ], + "71": [ + "2025-05-22 4 17:45:00 00,FF88,80", + 8, + 58056, + 0 + ], + "72": [ + "2025-05-22 4 18:00:00 00,FF88,80", + 8, + 58065, + 0 + ], + "73": [ + "2025-05-22 4 18:15:00 00,FF88,80", + 8, + 58072, + 0 + ], + "74": [ + "2025-05-22 4 18:30:00 00,FF88,80", + 8, + 58078, + 0 + ], + "75": [ + "2025-05-22 4 18:45:00 00,FF88,80", + 8, + 58085, + 0 + ], + "76": [ + "2025-05-22 4 19:00:00 00,FF88,80", + 8, + 58094, + 0 + ], + "77": [ + "2025-05-22 4 19:15:00 00,FF88,80", + 8, + 58101, + 0 + ], + "78": [ + "2025-05-22 4 19:30:00 00,FF88,80", + 8, + 58111, + 0 + ], + "79": [ + "2025-05-22 4 19:45:00 00,FF88,80", + 8, + 58120, + 0 + ], + "80": [ + "2025-05-22 4 20:00:00 00,FF88,80", + 8, + 58128, + 0 + ], + "81": [ + "2025-05-22 4 20:15:00 00,FF88,80", + 8, + 58134, + 0 + ], + "82": [ + "2025-05-22 4 20:30:00 00,FF88,80", + 8, + 58144, + 0 + ], + "83": [ + "2025-05-22 4 20:45:00 00,FF88,80", + 8, + 58149, + 0 + ], + "84": [ + "2025-05-22 4 21:00:00 00,FF88,80", + 8, + 58159, + 0 + ], + "85": [ + "2025-05-22 4 21:15:00 00,FF88,80", + 8, + 58165, + 0 + ], + "86": [ + "2025-05-22 4 21:30:00 00,FF88,80", + 8, + 58170, + 0 + ], + "87": [ + "2025-05-22 4 21:45:00 00,FF88,80", + 8, + 58179, + 0 + ], + "88": [ + "2025-05-22 4 22:00:00 00,FF88,80", + 8, + 58184, + 0 + ], + "89": [ + "2025-05-22 4 22:15:00 00,FF88,80", + 8, + 58193, + 0 + ], + "90": [ + "2025-05-22 4 22:30:00 00,FF88,80", + 8, + 58198, + 0 + ], + "91": [ + "2025-05-22 4 22:45:00 00,FF88,80", + 8, + 58204, + 0 + ], + "92": [ + "2025-05-22 4 23:00:00 00,FF88,80", + 8, + 58208, + 0 + ], + "93": [ + "2025-05-22 4 23:15:00 00,FF88,80", + 8, + 58212, + 0 + ], + "94": [ + "2025-05-22 4 23:30:00 00,FF88,80", + 8, + 58214, + 0 + ], + "95": [ + "2025-05-22 4 23:45:00 00,FF88,80", + 8, + 58218, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "1": [ + "2025-05-22 4 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "2": [ + "2025-05-22 4 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "3": [ + "2025-05-22 4 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "4": [ + "2025-05-22 4 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "5": [ + "2025-05-22 4 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "6": [ + "2025-05-22 4 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "7": [ + "2025-05-22 4 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "8": [ + "2025-05-22 4 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "9": [ + "2025-05-22 4 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "10": [ + "2025-05-22 4 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "11": [ + "2025-05-22 4 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "12": [ + "2025-05-22 4 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "13": [ + "2025-05-22 4 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "14": [ + "2025-05-22 4 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "15": [ + "2025-05-22 4 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "16": [ + "2025-05-22 4 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "17": [ + "2025-05-22 4 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "18": [ + "2025-05-22 4 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "19": [ + "2025-05-22 4 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "20": [ + "2025-05-22 4 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "21": [ + "2025-05-22 4 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "22": [ + "2025-05-22 4 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "23": [ + "2025-05-22 4 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "24": [ + "2025-05-22 4 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "25": [ + "2025-05-22 4 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "26": [ + "2025-05-22 4 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "27": [ + "2025-05-22 4 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "28": [ + "2025-05-22 4 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "29": [ + "2025-05-22 4 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "30": [ + "2025-05-22 4 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "31": [ + "2025-05-22 4 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "32": [ + "2025-05-22 4 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "33": [ + "2025-05-22 4 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "34": [ + "2025-05-22 4 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "35": [ + "2025-05-22 4 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "36": [ + "2025-05-22 4 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "37": [ + "2025-05-22 4 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "38": [ + "2025-05-22 4 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "39": [ + "2025-05-22 4 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "40": [ + "2025-05-22 4 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "41": [ + "2025-05-22 4 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "42": [ + "2025-05-22 4 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "43": [ + "2025-05-22 4 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "44": [ + "2025-05-22 4 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "45": [ + "2025-05-22 4 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "46": [ + "2025-05-22 4 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "47": [ + "2025-05-22 4 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "48": [ + "2025-05-22 4 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "49": [ + "2025-05-22 4 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "50": [ + "2025-05-22 4 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "51": [ + "2025-05-22 4 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "52": [ + "2025-05-22 4 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "53": [ + "2025-05-22 4 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "54": [ + "2025-05-22 4 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "55": [ + "2025-05-22 4 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "56": [ + "2025-05-22 4 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "57": [ + "2025-05-22 4 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "58": [ + "2025-05-22 4 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "59": [ + "2025-05-22 4 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "60": [ + "2025-05-22 4 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "61": [ + "2025-05-22 4 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "62": [ + "2025-05-22 4 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "63": [ + "2025-05-22 4 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "64": [ + "2025-05-22 4 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "65": [ + "2025-05-22 4 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "66": [ + "2025-05-22 4 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "67": [ + "2025-05-22 4 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "68": [ + "2025-05-22 4 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "69": [ + "2025-05-22 4 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "70": [ + "2025-05-22 4 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "71": [ + "2025-05-22 4 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "72": [ + "2025-05-22 4 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "73": [ + "2025-05-22 4 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "74": [ + "2025-05-22 4 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "75": [ + "2025-05-22 4 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "76": [ + "2025-05-22 4 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "77": [ + "2025-05-22 4 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "78": [ + "2025-05-22 4 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "79": [ + "2025-05-22 4 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "80": [ + "2025-05-22 4 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "81": [ + "2025-05-22 4 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "82": [ + "2025-05-22 4 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "83": [ + "2025-05-22 4 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "84": [ + "2025-05-22 4 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "85": [ + "2025-05-22 4 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "86": [ + "2025-05-22 4 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "87": [ + "2025-05-22 4 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "88": [ + "2025-05-22 4 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "89": [ + "2025-05-22 4 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "90": [ + "2025-05-22 4 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "91": [ + "2025-05-22 4 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "92": [ + "2025-05-22 4 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "93": [ + "2025-05-22 4 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "94": [ + "2025-05-22 4 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "95": [ + "2025-05-22 4 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 209885, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 209885, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 1, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 9, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 0, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 233, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 232, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 234, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 458, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 13, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 32, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 107, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 233, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 234, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 234, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 5, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 12, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 7, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-28 3 04:40:00 00,FF88,80", + 71, + 60 + ], + "1": [ + "2025-05-17 6 16:40:00 00,FF88,80", + 78, + 75 + ], + "2": [ + "2025-05-28 3 13:40:00 00,FF88,80", + 78, + 28 + ], + "3": [ + "2025-05-01 4 08:40:00 00,FF88,80", + 70, + 93 + ], + "4": [ + "2025-05-06 2 06:40:00 00,FF88,80", + 78, + 38 + ], + "5": [ + "2025-05-17 6 07:40:00 00,FF88,80", + 70, + 7 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:30:18.819425", + "pos": 2, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:30:00", + "connection_status": true, + "connection_end": "2025-06-01 03:30:05", + "connection_consume": 5.4, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025030100002", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025030100002", + "actual_time": "2025-06-01 03:30:07.614084", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:30:07 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:30:07", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:30:10.177060", + "getProfile_end_time": "2025-06-01 03:30:10.184714", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 160092, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 200383, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 240143, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 279540, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 299065, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 319028, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 337276, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 376751, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 415580, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 436121, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 454888, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 474675, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 123386, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 124518, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 126132, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 127412, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 128637, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 129971, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 130941, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 132344, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 133856, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 135223, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 136675, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 138092, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 139145, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 140368, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 141431, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 142573, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 143798, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 144996, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 145963, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 147168, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 148545, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 149713, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 150721, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 152283, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 153230, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 154727, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 155693, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 156661, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 158091, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 159573, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 160872, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 162192, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 163494, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 164630, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 165616, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 166769, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 168146, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 169584, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 171107, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 172524, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 174119, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 175449, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 176600, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 177914, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 178966, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 180337, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 181397, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 182373, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 183879, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 185042, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 186489, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 187800, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 189279, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 190785, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 192384, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 193871, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 195211, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 196572, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 197489, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 199056, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 200551, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 201642, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 202670, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 204074, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 205195, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 206338, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 207241, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 208765, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 210071, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 211258, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 212259, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 213613, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 214534, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 215969, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 217022, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 218222, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 219366, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 220531, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 221948, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 223405, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 224712, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 225672, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 226608, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 227620, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 228963, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 230346, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 231440, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 232815, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 234063, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 235279, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 236374, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 237815, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 238235, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 238826, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 239338, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 240063, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 240685, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 241404, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 241788, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 242360, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 243042, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 243405, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 243927, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 244400, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 244833, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 245330, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 245866, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 246229, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 246991, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 247445, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 248009, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 248748, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 249377, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 250186, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 250980, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 251378, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 252202, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 252584, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 252953, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 253809, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 254633, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 255303, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 255971, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 256713, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 257297, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 257718, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 258088, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 258622, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 259413, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 260106, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 260914, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 261769, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 262176, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 262991, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 263481, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 264158, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 264800, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 265373, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 265899, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 266441, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 266980, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 267430, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 268064, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 268485, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 269119, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 269967, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 270515, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 271266, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 272067, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 272866, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 273353, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 273791, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 274257, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 274941, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 275710, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 276423, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 276878, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 277654, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 278280, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 279046, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 279815, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 280416, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 281274, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 281938, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 282640, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 283336, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 284161, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 284858, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 285299, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 285695, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 286293, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 286815, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 287322, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 287711, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 288344, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 288871, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 289474, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 289864, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 290672, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 291072, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 291897, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 292717, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 293408, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 294671, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 295902, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 297199, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 298667, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 300210, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 301432, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 302913, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 304280, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 305410, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 306651, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 307658, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 308601, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 309574, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 311119, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 312265, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 313677, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 314938, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 315961, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 317038, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 318251, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 319466, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 320740, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 321753, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 322920, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 324022, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 325214, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 326356, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 327684, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 329150, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 330514, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 331460, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 332426, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 333812, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 334915, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 336334, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 337705, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 339255, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 340782, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 341920, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 343238, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 344238, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 345388, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 346982, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 348383, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 349563, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 350889, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 352462, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 353583, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 354752, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 356220, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 357703, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 359083, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 360578, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 362008, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 363399, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 364676, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 366039, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 367242, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 368401, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 369560, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 370588, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 371641, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 373221, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 374469, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 375530, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 376527, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 377481, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 378987, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 379958, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 381411, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 382910, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 384444, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 385370, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 386511, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 387961, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 388954, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 390123, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 391138, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 392634, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 394087, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 395567, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 396585, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 397798, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 398992, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 400377, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 401446, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 402664, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 403767, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 405204, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 406425, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 407072, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 407598, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 408393, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 409005, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 409815, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 410373, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 411243, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 412133, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 412741, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 413252, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 413817, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 414461, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 415341, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 416141, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 416932, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 417366, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 417860, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 418565, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 419396, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 420054, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 420468, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 421283, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 422101, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 422614, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 423385, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 423891, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 424738, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 425177, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 425772, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 426642, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 427121, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 427723, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 428271, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 428644, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 429032, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 429662, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 430148, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 431044, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 431605, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 431979, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 432840, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 433652, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 434362, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 435148, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 435581, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 436095, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 436902, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 437637, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 438071, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 438811, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 439412, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 439774, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 440176, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 440673, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 441482, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 442137, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 442888, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 443532, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 443951, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 444466, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 444988, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 445373, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 445959, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 446746, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 447352, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 447771, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 448618, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 449299, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 449667, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 450304, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 450794, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 451231, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 451822, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 452513, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 453002, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 453586, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 454303, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 454708, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 455593, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 455989, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 456632, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 457265, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 458157, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 458815, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 459385, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 459998, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 460700, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 461588, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 462084, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 462452, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 463236, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 463781, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:30:20.168872", + "reading_end_time": "2025-06-01 03:30:34.232321", + "reading_consume": 14.082974, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 122094, + 0 + ], + "1": [ + "2025-02-27 4 00:15:00 00,FF88,80", + 8, + 122095, + 0 + ], + "2": [ + "2025-02-27 4 00:30:00 00,FF88,80", + 8, + 122096, + 0 + ], + "3": [ + "2025-02-27 4 00:45:00 00,FF88,80", + 8, + 122097, + 0 + ], + "4": [ + "2025-02-27 4 01:00:00 00,FF88,80", + 8, + 122099, + 0 + ], + "5": [ + "2025-02-27 4 01:15:00 00,FF88,80", + 8, + 122101, + 0 + ], + "6": [ + "2025-02-27 4 01:30:00 00,FF88,80", + 8, + 122102, + 0 + ], + "7": [ + "2025-02-27 4 01:45:00 00,FF88,80", + 8, + 122105, + 0 + ], + "8": [ + "2025-02-27 4 02:00:00 00,FF88,80", + 8, + 122108, + 0 + ], + "9": [ + "2025-02-27 4 02:15:00 00,FF88,80", + 8, + 122109, + 0 + ], + "10": [ + "2025-02-27 4 02:30:00 00,FF88,80", + 8, + 122111, + 0 + ], + "11": [ + "2025-02-27 4 02:45:00 00,FF88,80", + 8, + 122114, + 0 + ], + "12": [ + "2025-02-27 4 03:00:00 00,FF88,80", + 8, + 122116, + 0 + ], + "13": [ + "2025-02-27 4 03:15:00 00,FF88,80", + 8, + 122118, + 0 + ], + "14": [ + "2025-02-27 4 03:30:00 00,FF88,80", + 8, + 122121, + 0 + ], + "15": [ + "2025-02-27 4 03:45:00 00,FF88,80", + 8, + 122122, + 0 + ], + "16": [ + "2025-02-27 4 04:00:00 00,FF88,80", + 8, + 122123, + 0 + ], + "17": [ + "2025-02-27 4 04:15:00 00,FF88,80", + 8, + 122124, + 0 + ], + "18": [ + "2025-02-27 4 04:30:00 00,FF88,80", + 8, + 122127, + 0 + ], + "19": [ + "2025-02-27 4 04:45:00 00,FF88,80", + 8, + 122129, + 0 + ], + "20": [ + "2025-02-27 4 05:00:00 00,FF88,80", + 8, + 122130, + 0 + ], + "21": [ + "2025-02-27 4 05:15:00 00,FF88,80", + 8, + 122133, + 0 + ], + "22": [ + "2025-02-27 4 05:30:00 00,FF88,80", + 8, + 122136, + 0 + ], + "23": [ + "2025-02-27 4 05:45:00 00,FF88,80", + 8, + 122137, + 0 + ], + "24": [ + "2025-02-27 4 06:00:00 00,FF88,80", + 8, + 122159, + 0 + ], + "25": [ + "2025-02-27 4 06:15:00 00,FF88,80", + 8, + 122175, + 0 + ], + "26": [ + "2025-02-27 4 06:30:00 00,FF88,80", + 8, + 122196, + 0 + ], + "27": [ + "2025-02-27 4 06:45:00 00,FF88,80", + 8, + 122218, + 0 + ], + "28": [ + "2025-02-27 4 07:00:00 00,FF88,80", + 8, + 122230, + 0 + ], + "29": [ + "2025-02-27 4 07:15:00 00,FF88,80", + 8, + 122251, + 0 + ], + "30": [ + "2025-02-27 4 07:30:00 00,FF88,80", + 8, + 122272, + 0 + ], + "31": [ + "2025-02-27 4 07:45:00 00,FF88,80", + 8, + 122286, + 0 + ], + "32": [ + "2025-02-27 4 08:00:00 00,FF88,80", + 8, + 122306, + 0 + ], + "33": [ + "2025-02-27 4 08:15:00 00,FF88,80", + 8, + 122327, + 0 + ], + "34": [ + "2025-02-27 4 08:30:00 00,FF88,80", + 8, + 122342, + 0 + ], + "35": [ + "2025-02-27 4 08:45:00 00,FF88,80", + 8, + 122354, + 0 + ], + "36": [ + "2025-02-27 4 09:00:00 00,FF88,80", + 8, + 122369, + 0 + ], + "37": [ + "2025-02-27 4 09:15:00 00,FF88,80", + 8, + 122387, + 0 + ], + "38": [ + "2025-02-27 4 09:30:00 00,FF88,80", + 8, + 122409, + 0 + ], + "39": [ + "2025-02-27 4 09:45:00 00,FF88,80", + 8, + 122424, + 0 + ], + "40": [ + "2025-02-27 4 10:00:00 00,FF88,80", + 8, + 122431, + 0 + ], + "41": [ + "2025-02-27 4 10:15:00 00,FF88,80", + 8, + 122439, + 0 + ], + "42": [ + "2025-02-27 4 10:30:00 00,FF88,80", + 8, + 122447, + 0 + ], + "43": [ + "2025-02-27 4 10:45:00 00,FF88,80", + 8, + 122457, + 0 + ], + "44": [ + "2025-02-27 4 11:00:00 00,FF88,80", + 8, + 122462, + 0 + ], + "45": [ + "2025-02-27 4 11:15:00 00,FF88,80", + 8, + 122469, + 0 + ], + "46": [ + "2025-02-27 4 11:30:00 00,FF88,80", + 8, + 122475, + 0 + ], + "47": [ + "2025-02-27 4 11:45:00 00,FF88,80", + 8, + 122484, + 0 + ], + "48": [ + "2025-02-27 4 12:00:00 00,FF88,80", + 8, + 122490, + 0 + ], + "49": [ + "2025-02-27 4 12:15:00 00,FF88,80", + 8, + 122499, + 0 + ], + "50": [ + "2025-02-27 4 12:30:00 00,FF88,80", + 8, + 122507, + 0 + ], + "51": [ + "2025-02-27 4 12:45:00 00,FF88,80", + 8, + 122516, + 0 + ], + "52": [ + "2025-02-27 4 13:00:00 00,FF88,80", + 8, + 122520, + 0 + ], + "53": [ + "2025-02-27 4 13:15:00 00,FF88,80", + 8, + 122526, + 0 + ], + "54": [ + "2025-02-27 4 13:30:00 00,FF88,80", + 8, + 122532, + 0 + ], + "55": [ + "2025-02-27 4 13:45:00 00,FF88,80", + 8, + 122541, + 0 + ], + "56": [ + "2025-02-27 4 14:00:00 00,FF88,80", + 8, + 122546, + 0 + ], + "57": [ + "2025-02-27 4 14:15:00 00,FF88,80", + 8, + 122554, + 0 + ], + "58": [ + "2025-02-27 4 14:30:00 00,FF88,80", + 8, + 122562, + 0 + ], + "59": [ + "2025-02-27 4 14:45:00 00,FF88,80", + 8, + 122569, + 0 + ], + "60": [ + "2025-02-27 4 15:00:00 00,FF88,80", + 8, + 122576, + 0 + ], + "61": [ + "2025-02-27 4 15:15:00 00,FF88,80", + 8, + 122582, + 0 + ], + "62": [ + "2025-02-27 4 15:30:00 00,FF88,80", + 8, + 122589, + 0 + ], + "63": [ + "2025-02-27 4 15:45:00 00,FF88,80", + 8, + 122594, + 0 + ], + "64": [ + "2025-02-27 4 16:00:00 00,FF88,80", + 8, + 122605, + 0 + ], + "65": [ + "2025-02-27 4 16:15:00 00,FF88,80", + 8, + 122612, + 0 + ], + "66": [ + "2025-02-27 4 16:30:00 00,FF88,80", + 8, + 122622, + 0 + ], + "67": [ + "2025-02-27 4 16:45:00 00,FF88,80", + 8, + 122626, + 0 + ], + "68": [ + "2025-02-27 4 17:00:00 00,FF88,80", + 8, + 122642, + 0 + ], + "69": [ + "2025-02-27 4 17:15:00 00,FF88,80", + 8, + 122659, + 0 + ], + "70": [ + "2025-02-27 4 17:30:00 00,FF88,80", + 8, + 122674, + 0 + ], + "71": [ + "2025-02-27 4 17:45:00 00,FF88,80", + 8, + 122689, + 0 + ], + "72": [ + "2025-02-27 4 18:00:00 00,FF88,80", + 8, + 122707, + 0 + ], + "73": [ + "2025-02-27 4 18:15:00 00,FF88,80", + 8, + 122725, + 0 + ], + "74": [ + "2025-02-27 4 18:30:00 00,FF88,80", + 8, + 122740, + 0 + ], + "75": [ + "2025-02-27 4 18:45:00 00,FF88,80", + 8, + 122756, + 0 + ], + "76": [ + "2025-02-27 4 19:00:00 00,FF88,80", + 8, + 122770, + 0 + ], + "77": [ + "2025-02-27 4 19:15:00 00,FF88,80", + 8, + 122789, + 0 + ], + "78": [ + "2025-02-27 4 19:30:00 00,FF88,80", + 8, + 122806, + 0 + ], + "79": [ + "2025-02-27 4 19:45:00 00,FF88,80", + 8, + 122819, + 0 + ], + "80": [ + "2025-02-27 4 20:00:00 00,FF88,80", + 8, + 122838, + 0 + ], + "81": [ + "2025-02-27 4 20:15:00 00,FF88,80", + 8, + 122860, + 0 + ], + "82": [ + "2025-02-27 4 20:30:00 00,FF88,80", + 8, + 122882, + 0 + ], + "83": [ + "2025-02-27 4 20:45:00 00,FF88,80", + 8, + 122902, + 0 + ], + "84": [ + "2025-02-27 4 21:00:00 00,FF88,80", + 8, + 122921, + 0 + ], + "85": [ + "2025-02-27 4 21:15:00 00,FF88,80", + 8, + 122940, + 0 + ], + "86": [ + "2025-02-27 4 21:30:00 00,FF88,80", + 8, + 122962, + 0 + ], + "87": [ + "2025-02-27 4 21:45:00 00,FF88,80", + 8, + 122978, + 0 + ], + "88": [ + "2025-02-27 4 22:00:00 00,FF88,80", + 8, + 122992, + 0 + ], + "89": [ + "2025-02-27 4 22:15:00 00,FF88,80", + 8, + 123014, + 0 + ], + "90": [ + "2025-02-27 4 22:30:00 00,FF88,80", + 8, + 123031, + 0 + ], + "91": [ + "2025-02-27 4 22:45:00 00,FF88,80", + 8, + 123048, + 0 + ], + "92": [ + "2025-02-27 4 23:00:00 00,FF88,80", + 8, + 123059, + 0 + ], + "93": [ + "2025-02-27 4 23:15:00 00,FF88,80", + 8, + 123066, + 0 + ], + "94": [ + "2025-02-27 4 23:30:00 00,FF88,80", + 8, + 123075, + 0 + ], + "95": [ + "2025-02-27 4 23:45:00 00,FF88,80", + 8, + 123085, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "1": [ + "2025-02-27 4 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "2": [ + "2025-02-27 4 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "3": [ + "2025-02-27 4 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "4": [ + "2025-02-27 4 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "5": [ + "2025-02-27 4 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "6": [ + "2025-02-27 4 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "7": [ + "2025-02-27 4 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "8": [ + "2025-02-27 4 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "9": [ + "2025-02-27 4 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "10": [ + "2025-02-27 4 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "11": [ + "2025-02-27 4 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "12": [ + "2025-02-27 4 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "13": [ + "2025-02-27 4 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "14": [ + "2025-02-27 4 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "15": [ + "2025-02-27 4 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "16": [ + "2025-02-27 4 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "17": [ + "2025-02-27 4 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "18": [ + "2025-02-27 4 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "19": [ + "2025-02-27 4 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "20": [ + "2025-02-27 4 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "21": [ + "2025-02-27 4 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "22": [ + "2025-02-27 4 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "23": [ + "2025-02-27 4 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "24": [ + "2025-02-27 4 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "25": [ + "2025-02-27 4 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "26": [ + "2025-02-27 4 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "27": [ + "2025-02-27 4 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "28": [ + "2025-02-27 4 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "29": [ + "2025-02-27 4 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "30": [ + "2025-02-27 4 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "31": [ + "2025-02-27 4 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "32": [ + "2025-02-27 4 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "33": [ + "2025-02-27 4 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "34": [ + "2025-02-27 4 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "35": [ + "2025-02-27 4 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "36": [ + "2025-02-27 4 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "37": [ + "2025-02-27 4 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "38": [ + "2025-02-27 4 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "39": [ + "2025-02-27 4 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "40": [ + "2025-02-27 4 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "41": [ + "2025-02-27 4 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "42": [ + "2025-02-27 4 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "43": [ + "2025-02-27 4 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "44": [ + "2025-02-27 4 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "45": [ + "2025-02-27 4 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "46": [ + "2025-02-27 4 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "47": [ + "2025-02-27 4 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "48": [ + "2025-02-27 4 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "49": [ + "2025-02-27 4 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "50": [ + "2025-02-27 4 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "51": [ + "2025-02-27 4 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "52": [ + "2025-02-27 4 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "53": [ + "2025-02-27 4 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "54": [ + "2025-02-27 4 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "55": [ + "2025-02-27 4 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "56": [ + "2025-02-27 4 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "57": [ + "2025-02-27 4 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "58": [ + "2025-02-27 4 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "59": [ + "2025-02-27 4 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "60": [ + "2025-02-27 4 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "61": [ + "2025-02-27 4 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "62": [ + "2025-02-27 4 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "63": [ + "2025-02-27 4 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "64": [ + "2025-02-27 4 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "65": [ + "2025-02-27 4 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "66": [ + "2025-02-27 4 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "67": [ + "2025-02-27 4 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "68": [ + "2025-02-27 4 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "69": [ + "2025-02-27 4 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "70": [ + "2025-02-27 4 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "71": [ + "2025-02-27 4 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "72": [ + "2025-02-27 4 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "73": [ + "2025-02-27 4 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "74": [ + "2025-02-27 4 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "75": [ + "2025-02-27 4 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "76": [ + "2025-02-27 4 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "77": [ + "2025-02-27 4 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "78": [ + "2025-02-27 4 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "79": [ + "2025-02-27 4 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "80": [ + "2025-02-27 4 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "81": [ + "2025-02-27 4 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "82": [ + "2025-02-27 4 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "83": [ + "2025-02-27 4 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "84": [ + "2025-02-27 4 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "85": [ + "2025-02-27 4 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "86": [ + "2025-02-27 4 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "87": [ + "2025-02-27 4 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "88": [ + "2025-02-27 4 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "89": [ + "2025-02-27 4 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "90": [ + "2025-02-27 4 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "91": [ + "2025-02-27 4 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "92": [ + "2025-02-27 4 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "93": [ + "2025-02-27 4 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "94": [ + "2025-02-27 4 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "95": [ + "2025-02-27 4 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 463781, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 463781, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 29, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 26, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 36, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 227, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 229, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 227, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 154, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 46, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 26, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 18, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 229, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 227, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 230, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 24, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 24, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 33, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-25 0 17:30:00 00,FF88,80", + 73, + 48 + ], + "1": [ + "2025-05-13 2 20:30:00 00,FF88,80", + 77, + 70 + ], + "2": [ + "2025-05-11 0 06:30:00 00,FF88,80", + 75, + 32 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:48:35.858705", + "pos": 3, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:48:00", + "connection_status": true, + "connection_end": "2025-06-01 03:48:05", + "connection_consume": 5.3, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025030100003", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025030100003", + "actual_time": "2025-06-01 03:48:13.583214", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:48:13 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:48:13", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:48:14.469283", + "getProfile_end_time": "2025-06-01 03:48:14.277487", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 207910, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 224254, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 240339, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 255159, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 262848, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 270330, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 277478, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 293141, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 308742, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 316763, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 324101, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 331825, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 192627, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 193228, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 193609, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 194204, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 194577, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 194938, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 195337, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 195878, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 196257, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 196660, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 197082, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 197573, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 197950, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 198493, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 199121, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 199743, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 200292, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 200656, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 201169, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 201647, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 202011, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 202578, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 203092, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 203534, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 204038, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 204598, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 205082, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 205712, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 206123, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 206747, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 207258, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 207687, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 208225, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 208657, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 209119, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 209707, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 210089, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 210725, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 211217, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 211647, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 212207, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 212653, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 213251, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 213634, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 214279, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 214826, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 215195, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 215671, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 216139, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 216636, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 217179, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 217741, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 218124, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 218727, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 219272, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 219727, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 220368, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 221008, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 221625, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 222249, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 222675, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 223294, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 223853, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 224376, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 224814, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 225440, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 225997, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 226437, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 226953, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 227502, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 227913, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 228517, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 228881, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 229300, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 229701, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 230297, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 230893, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 231520, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 231966, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 232488, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 233011, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 233615, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 234169, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 234684, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 235154, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 235727, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 236314, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 236872, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 237254, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 237828, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 238287, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 238675, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 238869, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 239029, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 239303, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 239579, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 239851, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 240204, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 240418, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 240698, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 241011, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 241252, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 241445, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 241708, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 241933, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 242117, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 242387, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 242613, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 242923, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 243130, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 243327, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 243486, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 243687, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 243913, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 244226, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 244403, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 244631, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 244852, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 245015, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 245362, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 245602, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 245910, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 246076, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 246238, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 246475, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 246739, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 246993, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 247159, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 247322, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 247585, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 247857, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 248170, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 248500, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 248646, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 248879, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 249191, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 249491, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 249755, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 250113, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 250309, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 250565, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 250857, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 251037, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 251239, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 251440, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 251615, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 251795, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 251998, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 252206, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 252519, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 252741, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 253088, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 253387, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 253638, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 253915, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 254157, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 254330, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 254475, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 254704, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 255029, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 255255, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 255585, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 255824, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 256061, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 256382, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 256666, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 256938, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 257146, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 257420, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 257714, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 257961, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 258143, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 258373, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 258585, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 258887, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 259167, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 259520, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 259832, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 260046, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 260250, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 260563, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 260785, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 261130, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 261547, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 262194, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 262605, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 263186, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 263553, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 264122, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 264753, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 265173, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 265762, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 266361, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 266740, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 267344, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 267932, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 268485, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 268885, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 269332, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 269764, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 270168, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 270649, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 271117, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 271606, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 272138, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 272665, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 273178, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 273803, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 274413, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 274893, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 275263, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 275901, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 276463, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 277056, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 277587, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 278210, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 278601, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 279032, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 279583, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 279990, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 280526, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 281048, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 281593, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 282139, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 282777, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 283232, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 283821, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 284211, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 284599, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 285022, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 285597, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 286117, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 286675, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 287098, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 287565, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 288058, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 288613, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 289171, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 289574, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 290221, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 290720, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 291165, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 291790, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 292174, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 292773, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 293343, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 293803, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 294261, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 294846, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 295356, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 295816, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 296204, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 296771, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 297261, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 297640, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 298012, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 298576, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 298942, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 299400, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 299791, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 300381, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 301008, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 301581, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 302089, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 302607, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 303062, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 303544, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 304037, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 304626, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 305167, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 305580, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 306129, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 306602, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 306905, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 307239, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 307480, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 307716, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 307860, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 308050, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 308254, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 308550, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 308865, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 309133, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 309449, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 309708, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 309931, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 310117, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 310285, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 310573, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 310822, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 311174, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 311385, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 311612, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 311840, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 312008, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 312228, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 312470, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 312651, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 312940, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 313256, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 313598, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 313869, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 314158, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 314369, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 314564, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 314733, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 314957, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 315131, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 315358, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 315630, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 315898, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 316133, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 316382, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 316642, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 316984, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 317329, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 317510, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 317690, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 317896, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 318080, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 318405, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 318682, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 319012, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 319361, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 319609, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 319795, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 320021, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 320286, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 320571, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 320803, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 321053, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 321350, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 321589, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 321769, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 322035, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 322350, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 322541, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 322692, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 322884, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 323090, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 323402, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 323668, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 323978, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 324228, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 324482, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 324749, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 324950, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 325211, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 325569, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 325830, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 326137, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 326445, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 326684, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 326875, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 327110, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 327412, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 327697, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 327894, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 328226, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 328376, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 328576, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 328906, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 329068, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 329398, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 329567, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:48:21.612036", + "reading_end_time": "2025-06-01 03:48:36.292988", + "reading_consume": 15.203135, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 192117, + 0 + ], + "1": [ + "2024-07-09 2 00:15:00 00,FF88,80", + 8, + 192117, + 0 + ], + "2": [ + "2024-07-09 2 00:30:00 00,FF88,80", + 8, + 192118, + 0 + ], + "3": [ + "2024-07-09 2 00:45:00 00,FF88,80", + 8, + 192118, + 0 + ], + "4": [ + "2024-07-09 2 01:00:00 00,FF88,80", + 8, + 192118, + 0 + ], + "5": [ + "2024-07-09 2 01:15:00 00,FF88,80", + 8, + 192119, + 0 + ], + "6": [ + "2024-07-09 2 01:30:00 00,FF88,80", + 8, + 192120, + 0 + ], + "7": [ + "2024-07-09 2 01:45:00 00,FF88,80", + 8, + 192120, + 0 + ], + "8": [ + "2024-07-09 2 02:00:00 00,FF88,80", + 8, + 192120, + 0 + ], + "9": [ + "2024-07-09 2 02:15:00 00,FF88,80", + 8, + 192120, + 0 + ], + "10": [ + "2024-07-09 2 02:30:00 00,FF88,80", + 8, + 192120, + 0 + ], + "11": [ + "2024-07-09 2 02:45:00 00,FF88,80", + 8, + 192121, + 0 + ], + "12": [ + "2024-07-09 2 03:00:00 00,FF88,80", + 8, + 192122, + 0 + ], + "13": [ + "2024-07-09 2 03:15:00 00,FF88,80", + 8, + 192122, + 0 + ], + "14": [ + "2024-07-09 2 03:30:00 00,FF88,80", + 8, + 192122, + 0 + ], + "15": [ + "2024-07-09 2 03:45:00 00,FF88,80", + 8, + 192123, + 0 + ], + "16": [ + "2024-07-09 2 04:00:00 00,FF88,80", + 8, + 192123, + 0 + ], + "17": [ + "2024-07-09 2 04:15:00 00,FF88,80", + 8, + 192123, + 0 + ], + "18": [ + "2024-07-09 2 04:30:00 00,FF88,80", + 8, + 192123, + 0 + ], + "19": [ + "2024-07-09 2 04:45:00 00,FF88,80", + 8, + 192123, + 0 + ], + "20": [ + "2024-07-09 2 05:00:00 00,FF88,80", + 8, + 192124, + 0 + ], + "21": [ + "2024-07-09 2 05:15:00 00,FF88,80", + 8, + 192124, + 0 + ], + "22": [ + "2024-07-09 2 05:30:00 00,FF88,80", + 8, + 192125, + 0 + ], + "23": [ + "2024-07-09 2 05:45:00 00,FF88,80", + 8, + 192125, + 0 + ], + "24": [ + "2024-07-09 2 06:00:00 00,FF88,80", + 8, + 192131, + 0 + ], + "25": [ + "2024-07-09 2 06:15:00 00,FF88,80", + 8, + 192137, + 0 + ], + "26": [ + "2024-07-09 2 06:30:00 00,FF88,80", + 8, + 192144, + 0 + ], + "27": [ + "2024-07-09 2 06:45:00 00,FF88,80", + 8, + 192149, + 0 + ], + "28": [ + "2024-07-09 2 07:00:00 00,FF88,80", + 8, + 192155, + 0 + ], + "29": [ + "2024-07-09 2 07:15:00 00,FF88,80", + 8, + 192160, + 0 + ], + "30": [ + "2024-07-09 2 07:30:00 00,FF88,80", + 8, + 192165, + 0 + ], + "31": [ + "2024-07-09 2 07:45:00 00,FF88,80", + 8, + 192173, + 0 + ], + "32": [ + "2024-07-09 2 08:00:00 00,FF88,80", + 8, + 192180, + 0 + ], + "33": [ + "2024-07-09 2 08:15:00 00,FF88,80", + 8, + 192187, + 0 + ], + "34": [ + "2024-07-09 2 08:30:00 00,FF88,80", + 8, + 192195, + 0 + ], + "35": [ + "2024-07-09 2 08:45:00 00,FF88,80", + 8, + 192203, + 0 + ], + "36": [ + "2024-07-09 2 09:00:00 00,FF88,80", + 8, + 192212, + 0 + ], + "37": [ + "2024-07-09 2 09:15:00 00,FF88,80", + 8, + 192220, + 0 + ], + "38": [ + "2024-07-09 2 09:30:00 00,FF88,80", + 8, + 192226, + 0 + ], + "39": [ + "2024-07-09 2 09:45:00 00,FF88,80", + 8, + 192233, + 0 + ], + "40": [ + "2024-07-09 2 10:00:00 00,FF88,80", + 8, + 192236, + 0 + ], + "41": [ + "2024-07-09 2 10:15:00 00,FF88,80", + 8, + 192240, + 0 + ], + "42": [ + "2024-07-09 2 10:30:00 00,FF88,80", + 8, + 192243, + 0 + ], + "43": [ + "2024-07-09 2 10:45:00 00,FF88,80", + 8, + 192245, + 0 + ], + "44": [ + "2024-07-09 2 11:00:00 00,FF88,80", + 8, + 192247, + 0 + ], + "45": [ + "2024-07-09 2 11:15:00 00,FF88,80", + 8, + 192249, + 0 + ], + "46": [ + "2024-07-09 2 11:30:00 00,FF88,80", + 8, + 192251, + 0 + ], + "47": [ + "2024-07-09 2 11:45:00 00,FF88,80", + 8, + 192255, + 0 + ], + "48": [ + "2024-07-09 2 12:00:00 00,FF88,80", + 8, + 192258, + 0 + ], + "49": [ + "2024-07-09 2 12:15:00 00,FF88,80", + 8, + 192260, + 0 + ], + "50": [ + "2024-07-09 2 12:30:00 00,FF88,80", + 8, + 192264, + 0 + ], + "51": [ + "2024-07-09 2 12:45:00 00,FF88,80", + 8, + 192267, + 0 + ], + "52": [ + "2024-07-09 2 13:00:00 00,FF88,80", + 8, + 192270, + 0 + ], + "53": [ + "2024-07-09 2 13:15:00 00,FF88,80", + 8, + 192274, + 0 + ], + "54": [ + "2024-07-09 2 13:30:00 00,FF88,80", + 8, + 192278, + 0 + ], + "55": [ + "2024-07-09 2 13:45:00 00,FF88,80", + 8, + 192280, + 0 + ], + "56": [ + "2024-07-09 2 14:00:00 00,FF88,80", + 8, + 192283, + 0 + ], + "57": [ + "2024-07-09 2 14:15:00 00,FF88,80", + 8, + 192285, + 0 + ], + "58": [ + "2024-07-09 2 14:30:00 00,FF88,80", + 8, + 192289, + 0 + ], + "59": [ + "2024-07-09 2 14:45:00 00,FF88,80", + 8, + 192293, + 0 + ], + "60": [ + "2024-07-09 2 15:00:00 00,FF88,80", + 8, + 192295, + 0 + ], + "61": [ + "2024-07-09 2 15:15:00 00,FF88,80", + 8, + 192299, + 0 + ], + "62": [ + "2024-07-09 2 15:30:00 00,FF88,80", + 8, + 192301, + 0 + ], + "63": [ + "2024-07-09 2 15:45:00 00,FF88,80", + 8, + 192305, + 0 + ], + "64": [ + "2024-07-09 2 16:00:00 00,FF88,80", + 8, + 192308, + 0 + ], + "65": [ + "2024-07-09 2 16:15:00 00,FF88,80", + 8, + 192310, + 0 + ], + "66": [ + "2024-07-09 2 16:30:00 00,FF88,80", + 8, + 192314, + 0 + ], + "67": [ + "2024-07-09 2 16:45:00 00,FF88,80", + 8, + 192318, + 0 + ], + "68": [ + "2024-07-09 2 17:00:00 00,FF88,80", + 8, + 192323, + 0 + ], + "69": [ + "2024-07-09 2 17:15:00 00,FF88,80", + 8, + 192330, + 0 + ], + "70": [ + "2024-07-09 2 17:30:00 00,FF88,80", + 8, + 192338, + 0 + ], + "71": [ + "2024-07-09 2 17:45:00 00,FF88,80", + 8, + 192346, + 0 + ], + "72": [ + "2024-07-09 2 18:00:00 00,FF88,80", + 8, + 192354, + 0 + ], + "73": [ + "2024-07-09 2 18:15:00 00,FF88,80", + 8, + 192359, + 0 + ], + "74": [ + "2024-07-09 2 18:30:00 00,FF88,80", + 8, + 192367, + 0 + ], + "75": [ + "2024-07-09 2 18:45:00 00,FF88,80", + 8, + 192376, + 0 + ], + "76": [ + "2024-07-09 2 19:00:00 00,FF88,80", + 8, + 192383, + 0 + ], + "77": [ + "2024-07-09 2 19:15:00 00,FF88,80", + 8, + 192390, + 0 + ], + "78": [ + "2024-07-09 2 19:30:00 00,FF88,80", + 8, + 192395, + 0 + ], + "79": [ + "2024-07-09 2 19:45:00 00,FF88,80", + 8, + 192404, + 0 + ], + "80": [ + "2024-07-09 2 20:00:00 00,FF88,80", + 8, + 192412, + 0 + ], + "81": [ + "2024-07-09 2 20:15:00 00,FF88,80", + 8, + 192419, + 0 + ], + "82": [ + "2024-07-09 2 20:30:00 00,FF88,80", + 8, + 192425, + 0 + ], + "83": [ + "2024-07-09 2 20:45:00 00,FF88,80", + 8, + 192432, + 0 + ], + "84": [ + "2024-07-09 2 21:00:00 00,FF88,80", + 8, + 192437, + 0 + ], + "85": [ + "2024-07-09 2 21:15:00 00,FF88,80", + 8, + 192442, + 0 + ], + "86": [ + "2024-07-09 2 21:30:00 00,FF88,80", + 8, + 192447, + 0 + ], + "87": [ + "2024-07-09 2 21:45:00 00,FF88,80", + 8, + 192454, + 0 + ], + "88": [ + "2024-07-09 2 22:00:00 00,FF88,80", + 8, + 192458, + 0 + ], + "89": [ + "2024-07-09 2 22:15:00 00,FF88,80", + 8, + 192467, + 0 + ], + "90": [ + "2024-07-09 2 22:30:00 00,FF88,80", + 8, + 192472, + 0 + ], + "91": [ + "2024-07-09 2 22:45:00 00,FF88,80", + 8, + 192477, + 0 + ], + "92": [ + "2024-07-09 2 23:00:00 00,FF88,80", + 8, + 192480, + 0 + ], + "93": [ + "2024-07-09 2 23:15:00 00,FF88,80", + 8, + 192484, + 0 + ], + "94": [ + "2024-07-09 2 23:30:00 00,FF88,80", + 8, + 192488, + 0 + ], + "95": [ + "2024-07-09 2 23:45:00 00,FF88,80", + 8, + 192490, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "1": [ + "2024-07-09 2 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "2": [ + "2024-07-09 2 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "3": [ + "2024-07-09 2 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "4": [ + "2024-07-09 2 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "5": [ + "2024-07-09 2 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "6": [ + "2024-07-09 2 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "7": [ + "2024-07-09 2 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "8": [ + "2024-07-09 2 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "9": [ + "2024-07-09 2 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "10": [ + "2024-07-09 2 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "11": [ + "2024-07-09 2 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "12": [ + "2024-07-09 2 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "13": [ + "2024-07-09 2 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "14": [ + "2024-07-09 2 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "15": [ + "2024-07-09 2 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "16": [ + "2024-07-09 2 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "17": [ + "2024-07-09 2 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "18": [ + "2024-07-09 2 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "19": [ + "2024-07-09 2 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "20": [ + "2024-07-09 2 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "21": [ + "2024-07-09 2 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "22": [ + "2024-07-09 2 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "23": [ + "2024-07-09 2 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "24": [ + "2024-07-09 2 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "25": [ + "2024-07-09 2 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "26": [ + "2024-07-09 2 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "27": [ + "2024-07-09 2 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "28": [ + "2024-07-09 2 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "29": [ + "2024-07-09 2 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "30": [ + "2024-07-09 2 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "31": [ + "2024-07-09 2 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "32": [ + "2024-07-09 2 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "33": [ + "2024-07-09 2 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "34": [ + "2024-07-09 2 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "35": [ + "2024-07-09 2 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "36": [ + "2024-07-09 2 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "37": [ + "2024-07-09 2 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "39": [ + "2024-07-09 2 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "40": [ + "2024-07-09 2 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "41": [ + "2024-07-09 2 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "42": [ + "2024-07-09 2 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "43": [ + "2024-07-09 2 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "44": [ + "2024-07-09 2 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "45": [ + "2024-07-09 2 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "46": [ + "2024-07-09 2 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "47": [ + "2024-07-09 2 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "48": [ + "2024-07-09 2 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "49": [ + "2024-07-09 2 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "50": [ + "2024-07-09 2 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "51": [ + "2024-07-09 2 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "52": [ + "2024-07-09 2 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "53": [ + "2024-07-09 2 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "54": [ + "2024-07-09 2 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "55": [ + "2024-07-09 2 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "56": [ + "2024-07-09 2 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "57": [ + "2024-07-09 2 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "58": [ + "2024-07-09 2 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "59": [ + "2024-07-09 2 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "60": [ + "2024-07-09 2 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "61": [ + "2024-07-09 2 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "62": [ + "2024-07-09 2 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "63": [ + "2024-07-09 2 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "64": [ + "2024-07-09 2 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "65": [ + "2024-07-09 2 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "66": [ + "2024-07-09 2 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "67": [ + "2024-07-09 2 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "68": [ + "2024-07-09 2 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "69": [ + "2024-07-09 2 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "70": [ + "2024-07-09 2 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "71": [ + "2024-07-09 2 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "72": [ + "2024-07-09 2 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "73": [ + "2024-07-09 2 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "74": [ + "2024-07-09 2 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "75": [ + "2024-07-09 2 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "76": [ + "2024-07-09 2 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "77": [ + "2024-07-09 2 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "78": [ + "2024-07-09 2 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "79": [ + "2024-07-09 2 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "80": [ + "2024-07-09 2 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "81": [ + "2024-07-09 2 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "82": [ + "2024-07-09 2 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "83": [ + "2024-07-09 2 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "84": [ + "2024-07-09 2 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "85": [ + "2024-07-09 2 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "86": [ + "2024-07-09 2 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "87": [ + "2024-07-09 2 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "88": [ + "2024-07-09 2 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "89": [ + "2024-07-09 2 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "90": [ + "2024-07-09 2 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "91": [ + "2024-07-09 2 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "92": [ + "2024-07-09 2 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "93": [ + "2024-07-09 2 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "94": [ + "2024-07-09 2 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "95": [ + "2024-07-09 2 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 329567, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 329567, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 6, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 19, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 10, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 229, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 227, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 224, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 284, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 74, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 12, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 13, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 228, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 224, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 228, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 20, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 17, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 20, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-08 4 00:48:00 00,FF88,80", + 74, + 68 + ], + "1": [ + "2025-05-03 6 16:48:00 00,FF88,80", + 76, + 33 + ], + "2": [ + "2025-05-19 1 07:48:00 00,FF88,80", + 77, + 73 + ], + "3": [ + "2025-05-12 1 12:48:00 00,FF88,80", + 70, + 22 + ], + "4": [ + "2025-05-23 5 15:48:00 00,FF88,80", + 72, + 79 + ], + "5": [ + "2025-05-12 1 06:48:00 00,FF88,80", + 76, + 4 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:25:15.824056", + "pos": 4, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:25:00", + "connection_status": true, + "connection_end": "2025-06-01 03:25:05", + "connection_consume": 5.6, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025030100004", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025030100004", + "actual_time": "2025-06-01 03:25:09.151685", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:25:09 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:25:09", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:25:12.381631", + "getProfile_end_time": "2025-06-01 03:25:13.490532", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 156856, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 182432, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 208616, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 234709, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 247206, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 259880, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 272492, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 297913, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 322021, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 334843, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 347046, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 360219, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 132495, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 133485, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 134393, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 135436, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 136130, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 136858, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 137794, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 138744, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 139481, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 140410, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 141281, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 141909, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 142703, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 143718, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 144496, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 145310, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 146139, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 146901, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 147514, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 148472, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 149089, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 150009, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 150785, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 151738, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 152571, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 153425, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 154093, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 155090, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 155771, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 156385, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 156987, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 157597, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 158353, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 159033, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 159792, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 160596, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 161369, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 162389, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 163295, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 163995, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 164811, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 165607, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 166645, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 167454, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 168299, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 169047, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 170027, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 170735, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 171712, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 172341, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 172940, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 173550, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 174537, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 175490, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 176177, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 176867, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 177559, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 178243, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 179135, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 179963, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 180956, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 181997, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 182904, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 183713, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 184362, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 185030, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 185993, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 186685, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 187557, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 188586, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 189507, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 190427, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 191143, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 192150, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 193136, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 193938, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 194627, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 195355, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 196186, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 197065, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 197926, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 198516, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 199572, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 200612, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 201593, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 202443, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 203308, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 204027, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 204935, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 205748, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 206492, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 207208, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 207557, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 207889, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 208354, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 208924, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 209388, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 209689, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 210105, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 210424, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 210678, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 211214, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 211734, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 212111, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 212458, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 212742, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 212985, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 213394, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 213732, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 214286, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 214663, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 215157, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 215597, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 216182, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 216704, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 217059, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 217545, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 218021, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 218480, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 218882, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 219448, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 219809, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 220149, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 220443, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 220909, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 221340, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 221678, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 222078, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 222573, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 223063, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 223494, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 224050, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 224618, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 225169, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 225634, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 225947, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 226260, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 226801, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 227183, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 227730, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 228095, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 228536, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 228934, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 229210, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 229463, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 229921, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 230360, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 230813, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 231214, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 231517, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 231793, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 232267, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 232688, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 233068, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 233609, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 233896, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 234480, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 234835, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 235417, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 235966, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 236548, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 236833, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 237371, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 237669, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 237932, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 238283, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 238865, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 239210, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 239465, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 239859, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 240167, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 240674, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 241111, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 241401, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 241912, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 242421, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 242701, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 243088, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 243474, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 243859, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 244261, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 244497, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 244919, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 245849, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 246882, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 247887, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 248829, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 249665, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 250260, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 250848, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 251779, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 252472, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 253470, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 254203, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 254838, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 255661, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 256391, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 257008, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 257616, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 258648, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 259449, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 260280, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 261113, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 261903, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 262812, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 263461, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 264515, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 265332, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 266271, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 266935, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 267947, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 268915, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 269510, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 270202, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 271251, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 271937, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 272534, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 273357, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 274001, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 274921, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 275879, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 276642, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 277529, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 278478, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 279357, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 280222, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 280831, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 281468, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 282447, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 283056, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 283697, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 284492, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 285137, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 285842, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 286758, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 287441, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 288350, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 288941, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 289725, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 290359, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 291190, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 292069, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 292985, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 293768, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 294776, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 295603, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 296480, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 297199, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 298154, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 298974, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 299846, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 300798, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 301775, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 302818, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 303573, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 304352, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 305014, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 305858, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 306872, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 307782, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 308594, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 309291, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 309883, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 310511, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 311149, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 312005, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 312824, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 313856, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 314809, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 315431, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 316357, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 317368, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 318257, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 318652, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 319231, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 319558, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 319810, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 320331, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 320873, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 321407, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 321768, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 322241, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 322625, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 322900, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 323434, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 323982, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 324220, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 324503, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 324965, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 325315, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 325864, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 326435, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 326764, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 327256, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 327622, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 327977, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 328251, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 328626, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 329021, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 329550, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 330027, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 330430, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 330813, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 331359, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 331652, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 331933, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 332423, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 333003, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 333535, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 333806, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 334361, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 334765, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 335200, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 335589, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 336039, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 336548, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 336998, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 337536, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 338080, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 338570, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 339118, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 339522, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 339928, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 340475, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 340865, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 341122, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 341587, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 341826, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 342366, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 342785, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 343281, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 343770, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 344083, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 344654, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 345196, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 345613, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 346090, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 346542, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 346929, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 347419, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 347823, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 348291, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 348751, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 349038, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 349563, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 350111, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 350561, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 350799, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 351362, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 351774, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 352174, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 352583, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 352876, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 353375, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 353722, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 354073, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 354405, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 354818, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 355246, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 355614, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 356136, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 356398, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 356789, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 357225, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 357490, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:25:17.932204", + "reading_end_time": "2025-06-01 03:25:28.417776", + "reading_consume": 11.378661, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 131515, + 0 + ], + "1": [ + "2025-05-01 4 00:15:00 00,FF88,80", + 8, + 131516, + 0 + ], + "2": [ + "2025-05-01 4 00:30:00 00,FF88,80", + 8, + 131517, + 0 + ], + "3": [ + "2025-05-01 4 00:45:00 00,FF88,80", + 8, + 131519, + 0 + ], + "4": [ + "2025-05-01 4 01:00:00 00,FF88,80", + 8, + 131520, + 0 + ], + "5": [ + "2025-05-01 4 01:15:00 00,FF88,80", + 8, + 131521, + 0 + ], + "6": [ + "2025-05-01 4 01:30:00 00,FF88,80", + 8, + 131522, + 0 + ], + "7": [ + "2025-05-01 4 01:45:00 00,FF88,80", + 8, + 131523, + 0 + ], + "8": [ + "2025-05-01 4 02:00:00 00,FF88,80", + 8, + 131524, + 0 + ], + "9": [ + "2025-05-01 4 02:15:00 00,FF88,80", + 8, + 131525, + 0 + ], + "10": [ + "2025-05-01 4 02:30:00 00,FF88,80", + 8, + 131526, + 0 + ], + "11": [ + "2025-05-01 4 02:45:00 00,FF88,80", + 8, + 131528, + 0 + ], + "12": [ + "2025-05-01 4 03:00:00 00,FF88,80", + 8, + 131530, + 0 + ], + "13": [ + "2025-05-01 4 03:15:00 00,FF88,80", + 8, + 131531, + 0 + ], + "14": [ + "2025-05-01 4 03:30:00 00,FF88,80", + 8, + 131531, + 0 + ], + "15": [ + "2025-05-01 4 03:45:00 00,FF88,80", + 8, + 131532, + 0 + ], + "16": [ + "2025-05-01 4 04:00:00 00,FF88,80", + 8, + 131533, + 0 + ], + "17": [ + "2025-05-01 4 04:15:00 00,FF88,80", + 8, + 131533, + 0 + ], + "18": [ + "2025-05-01 4 04:30:00 00,FF88,80", + 8, + 131535, + 0 + ], + "19": [ + "2025-05-01 4 04:45:00 00,FF88,80", + 8, + 131536, + 0 + ], + "20": [ + "2025-05-01 4 05:00:00 00,FF88,80", + 8, + 131538, + 0 + ], + "21": [ + "2025-05-01 4 05:15:00 00,FF88,80", + 8, + 131539, + 0 + ], + "22": [ + "2025-05-01 4 05:30:00 00,FF88,80", + 8, + 131540, + 0 + ], + "23": [ + "2025-05-01 4 05:45:00 00,FF88,80", + 8, + 131541, + 0 + ], + "24": [ + "2025-05-01 4 06:00:00 00,FF88,80", + 8, + 131550, + 0 + ], + "25": [ + "2025-05-01 4 06:15:00 00,FF88,80", + 8, + 131561, + 0 + ], + "26": [ + "2025-05-01 4 06:30:00 00,FF88,80", + 8, + 131569, + 0 + ], + "27": [ + "2025-05-01 4 06:45:00 00,FF88,80", + 8, + 131579, + 0 + ], + "28": [ + "2025-05-01 4 07:00:00 00,FF88,80", + 8, + 131587, + 0 + ], + "29": [ + "2025-05-01 4 07:15:00 00,FF88,80", + 8, + 131596, + 0 + ], + "30": [ + "2025-05-01 4 07:30:00 00,FF88,80", + 8, + 131610, + 0 + ], + "31": [ + "2025-05-01 4 07:45:00 00,FF88,80", + 8, + 131620, + 0 + ], + "32": [ + "2025-05-01 4 08:00:00 00,FF88,80", + 8, + 131631, + 0 + ], + "33": [ + "2025-05-01 4 08:15:00 00,FF88,80", + 8, + 131642, + 0 + ], + "34": [ + "2025-05-01 4 08:30:00 00,FF88,80", + 8, + 131650, + 0 + ], + "35": [ + "2025-05-01 4 08:45:00 00,FF88,80", + 8, + 131665, + 0 + ], + "36": [ + "2025-05-01 4 09:00:00 00,FF88,80", + 8, + 131675, + 0 + ], + "37": [ + "2025-05-01 4 09:15:00 00,FF88,80", + 8, + 131688, + 0 + ], + "38": [ + "2025-05-01 4 09:30:00 00,FF88,80", + 8, + 131699, + 0 + ], + "39": [ + "2025-05-01 4 09:45:00 00,FF88,80", + 8, + 131713, + 0 + ], + "40": [ + "2025-05-01 4 10:00:00 00,FF88,80", + 8, + 131719, + 0 + ], + "41": [ + "2025-05-01 4 10:15:00 00,FF88,80", + 8, + 131723, + 0 + ], + "42": [ + "2025-05-01 4 10:30:00 00,FF88,80", + 8, + 131728, + 0 + ], + "43": [ + "2025-05-01 4 10:45:00 00,FF88,80", + 8, + 131731, + 0 + ], + "44": [ + "2025-05-01 4 11:00:00 00,FF88,80", + 8, + 131736, + 0 + ], + "45": [ + "2025-05-01 4 11:15:00 00,FF88,80", + 8, + 131740, + 0 + ], + "46": [ + "2025-05-01 4 11:30:00 00,FF88,80", + 8, + 131745, + 0 + ], + "47": [ + "2025-05-01 4 11:45:00 00,FF88,80", + 8, + 131751, + 0 + ], + "48": [ + "2025-05-01 4 12:00:00 00,FF88,80", + 8, + 131756, + 0 + ], + "49": [ + "2025-05-01 4 12:15:00 00,FF88,80", + 8, + 131760, + 0 + ], + "50": [ + "2025-05-01 4 12:30:00 00,FF88,80", + 8, + 131766, + 0 + ], + "51": [ + "2025-05-01 4 12:45:00 00,FF88,80", + 8, + 131771, + 0 + ], + "52": [ + "2025-05-01 4 13:00:00 00,FF88,80", + 8, + 131775, + 0 + ], + "53": [ + "2025-05-01 4 13:15:00 00,FF88,80", + 8, + 131781, + 0 + ], + "54": [ + "2025-05-01 4 13:30:00 00,FF88,80", + 8, + 131786, + 0 + ], + "55": [ + "2025-05-01 4 13:45:00 00,FF88,80", + 8, + 131791, + 0 + ], + "56": [ + "2025-05-01 4 14:00:00 00,FF88,80", + 8, + 131796, + 0 + ], + "57": [ + "2025-05-01 4 14:15:00 00,FF88,80", + 8, + 131801, + 0 + ], + "58": [ + "2025-05-01 4 14:30:00 00,FF88,80", + 8, + 131804, + 0 + ], + "59": [ + "2025-05-01 4 14:45:00 00,FF88,80", + 8, + 131807, + 0 + ], + "60": [ + "2025-05-01 4 15:00:00 00,FF88,80", + 8, + 131810, + 0 + ], + "61": [ + "2025-05-01 4 15:15:00 00,FF88,80", + 8, + 131815, + 0 + ], + "62": [ + "2025-05-01 4 15:30:00 00,FF88,80", + 8, + 131818, + 0 + ], + "63": [ + "2025-05-01 4 15:45:00 00,FF88,80", + 8, + 131821, + 0 + ], + "64": [ + "2025-05-01 4 16:00:00 00,FF88,80", + 8, + 131825, + 0 + ], + "65": [ + "2025-05-01 4 16:15:00 00,FF88,80", + 8, + 131831, + 0 + ], + "66": [ + "2025-05-01 4 16:30:00 00,FF88,80", + 8, + 131834, + 0 + ], + "67": [ + "2025-05-01 4 16:45:00 00,FF88,80", + 8, + 131838, + 0 + ], + "68": [ + "2025-05-01 4 17:00:00 00,FF88,80", + 8, + 131851, + 0 + ], + "69": [ + "2025-05-01 4 17:15:00 00,FF88,80", + 8, + 131864, + 0 + ], + "70": [ + "2025-05-01 4 17:30:00 00,FF88,80", + 8, + 131875, + 0 + ], + "71": [ + "2025-05-01 4 17:45:00 00,FF88,80", + 8, + 131886, + 0 + ], + "72": [ + "2025-05-01 4 18:00:00 00,FF88,80", + 8, + 131895, + 0 + ], + "73": [ + "2025-05-01 4 18:15:00 00,FF88,80", + 8, + 131904, + 0 + ], + "74": [ + "2025-05-01 4 18:30:00 00,FF88,80", + 8, + 131918, + 0 + ], + "75": [ + "2025-05-01 4 18:45:00 00,FF88,80", + 8, + 131926, + 0 + ], + "76": [ + "2025-05-01 4 19:00:00 00,FF88,80", + 8, + 131934, + 0 + ], + "77": [ + "2025-05-01 4 19:15:00 00,FF88,80", + 8, + 131946, + 0 + ], + "78": [ + "2025-05-01 4 19:30:00 00,FF88,80", + 8, + 131955, + 0 + ], + "79": [ + "2025-05-01 4 19:45:00 00,FF88,80", + 8, + 131967, + 0 + ], + "80": [ + "2025-05-01 4 20:00:00 00,FF88,80", + 8, + 131975, + 0 + ], + "81": [ + "2025-05-01 4 20:15:00 00,FF88,80", + 8, + 131987, + 0 + ], + "82": [ + "2025-05-01 4 20:30:00 00,FF88,80", + 8, + 131995, + 0 + ], + "83": [ + "2025-05-01 4 20:45:00 00,FF88,80", + 8, + 132004, + 0 + ], + "84": [ + "2025-05-01 4 21:00:00 00,FF88,80", + 8, + 132013, + 0 + ], + "85": [ + "2025-05-01 4 21:15:00 00,FF88,80", + 8, + 132027, + 0 + ], + "86": [ + "2025-05-01 4 21:30:00 00,FF88,80", + 8, + 132039, + 0 + ], + "87": [ + "2025-05-01 4 21:45:00 00,FF88,80", + 8, + 132051, + 0 + ], + "88": [ + "2025-05-01 4 22:00:00 00,FF88,80", + 8, + 132059, + 0 + ], + "89": [ + "2025-05-01 4 22:15:00 00,FF88,80", + 8, + 132072, + 0 + ], + "90": [ + "2025-05-01 4 22:30:00 00,FF88,80", + 8, + 132084, + 0 + ], + "91": [ + "2025-05-01 4 22:45:00 00,FF88,80", + 8, + 132094, + 0 + ], + "92": [ + "2025-05-01 4 23:00:00 00,FF88,80", + 8, + 132097, + 0 + ], + "93": [ + "2025-05-01 4 23:15:00 00,FF88,80", + 8, + 132101, + 0 + ], + "94": [ + "2025-05-01 4 23:30:00 00,FF88,80", + 8, + 132108, + 0 + ], + "95": [ + "2025-05-01 4 23:45:00 00,FF88,80", + 8, + 132114, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "1": [ + "2025-05-01 4 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "2": [ + "2025-05-01 4 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "3": [ + "2025-05-01 4 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "4": [ + "2025-05-01 4 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "5": [ + "2025-05-01 4 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "6": [ + "2025-05-01 4 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "7": [ + "2025-05-01 4 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "8": [ + "2025-05-01 4 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "9": [ + "2025-05-01 4 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "10": [ + "2025-05-01 4 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "11": [ + "2025-05-01 4 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "12": [ + "2025-05-01 4 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "13": [ + "2025-05-01 4 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "14": [ + "2025-05-01 4 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "15": [ + "2025-05-01 4 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "16": [ + "2025-05-01 4 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "17": [ + "2025-05-01 4 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "18": [ + "2025-05-01 4 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "19": [ + "2025-05-01 4 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "20": [ + "2025-05-01 4 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "21": [ + "2025-05-01 4 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "22": [ + "2025-05-01 4 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "23": [ + "2025-05-01 4 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "24": [ + "2025-05-01 4 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "25": [ + "2025-05-01 4 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "26": [ + "2025-05-01 4 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "27": [ + "2025-05-01 4 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "28": [ + "2025-05-01 4 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "29": [ + "2025-05-01 4 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "30": [ + "2025-05-01 4 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "31": [ + "2025-05-01 4 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "32": [ + "2025-05-01 4 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "33": [ + "2025-05-01 4 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "34": [ + "2025-05-01 4 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "35": [ + "2025-05-01 4 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "36": [ + "2025-05-01 4 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "37": [ + "2025-05-01 4 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "38": [ + "2025-05-01 4 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "39": [ + "2025-05-01 4 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "40": [ + "2025-05-01 4 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "41": [ + "2025-05-01 4 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "42": [ + "2025-05-01 4 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "43": [ + "2025-05-01 4 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "44": [ + "2025-05-01 4 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "45": [ + "2025-05-01 4 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "46": [ + "2025-05-01 4 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "47": [ + "2025-05-01 4 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "48": [ + "2025-05-01 4 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "49": [ + "2025-05-01 4 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "50": [ + "2025-05-01 4 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "51": [ + "2025-05-01 4 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "52": [ + "2025-05-01 4 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "53": [ + "2025-05-01 4 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "54": [ + "2025-05-01 4 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "55": [ + "2025-05-01 4 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "56": [ + "2025-05-01 4 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "57": [ + "2025-05-01 4 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "58": [ + "2025-05-01 4 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "59": [ + "2025-05-01 4 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "60": [ + "2025-05-01 4 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "61": [ + "2025-05-01 4 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "62": [ + "2025-05-01 4 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "63": [ + "2025-05-01 4 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "64": [ + "2025-05-01 4 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "65": [ + "2025-05-01 4 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "66": [ + "2025-05-01 4 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "67": [ + "2025-05-01 4 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "68": [ + "2025-05-01 4 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "69": [ + "2025-05-01 4 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "70": [ + "2025-05-01 4 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "71": [ + "2025-05-01 4 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "72": [ + "2025-05-01 4 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "73": [ + "2025-05-01 4 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "74": [ + "2025-05-01 4 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "75": [ + "2025-05-01 4 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "76": [ + "2025-05-01 4 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "77": [ + "2025-05-01 4 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "78": [ + "2025-05-01 4 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "79": [ + "2025-05-01 4 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "80": [ + "2025-05-01 4 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "81": [ + "2025-05-01 4 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "82": [ + "2025-05-01 4 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "83": [ + "2025-05-01 4 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "84": [ + "2025-05-01 4 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "85": [ + "2025-05-01 4 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "86": [ + "2025-05-01 4 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "87": [ + "2025-05-01 4 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "88": [ + "2025-05-01 4 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "89": [ + "2025-05-01 4 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "90": [ + "2025-05-01 4 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "91": [ + "2025-05-01 4 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "92": [ + "2025-05-01 4 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "93": [ + "2025-05-01 4 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "94": [ + "2025-05-01 4 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "95": [ + "2025-05-01 4 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 357490, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 357490, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 0, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 2, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 0, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 238, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 232, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 236, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 408, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 90, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 55, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 68, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 234, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 235, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 236, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-01 4 04:25:00 00,FF88,80", + 80, + 24 + ], + "1": [ + "2025-05-16 5 04:25:00 00,FF88,80", + 73, + 30 + ], + "2": [ + "2025-05-08 4 20:25:00 00,FF88,80", + 74, + 26 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:14:09.976960", + "pos": 5, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:14:00", + "connection_status": true, + "connection_end": "2025-06-01 03:14:02", + "connection_consume": 2.8, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025030100005", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025030100005", + "actual_time": "2025-06-01 03:14:08.263573", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:14:08 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:14:08", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:14:09.182300", + "getProfile_end_time": "2025-06-01 03:14:10.808640", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 206847, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 221677, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 236580, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 251711, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 258873, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 266319, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 273803, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 289044, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 303958, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 311535, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 319094, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 326474, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 192519, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 192963, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 193392, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 193981, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 194565, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 195065, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 195483, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 195876, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 196428, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 196911, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 197363, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 197911, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 198289, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 198776, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 199235, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 199835, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 200186, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 200624, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 201203, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 201758, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 202226, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 202602, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 203087, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 203516, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 203861, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 204388, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 204835, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 205205, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 205647, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 206226, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 206620, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 207035, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 207451, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 208057, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 208494, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 208887, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 209346, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 209803, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 210352, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 210795, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 211247, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 211713, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 212212, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 212823, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 213354, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 213920, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 214460, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 215023, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 215518, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 216095, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 216491, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 217053, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 217598, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 218070, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 218415, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 218873, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 219252, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 219840, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 220356, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 220845, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 221274, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 221750, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 222161, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 222739, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 223095, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 223465, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 223852, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 224254, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 224666, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 225239, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 225608, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 226155, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 226569, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 227010, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 227505, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 228070, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 228507, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 228962, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 229401, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 229930, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 230439, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 230940, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 231461, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 231951, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 232562, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 232983, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 233415, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 233898, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 234453, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 234918, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 235282, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 235793, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 236025, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 236359, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 236674, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 236943, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 237271, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 237495, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 237758, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 237978, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 238301, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 238454, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 238661, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 238862, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 239133, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 239416, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 239677, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 239895, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 240214, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 240511, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 240841, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 241132, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 241376, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 241605, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 241776, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 242088, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 242250, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 242435, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 242623, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 242913, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 243204, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 243384, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 243602, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 243758, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 244087, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 244321, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 244469, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 244764, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 245009, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 245351, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 245509, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 245773, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 245927, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 246255, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 246472, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 246656, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 246944, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 247172, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 247335, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 247580, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 247752, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 247896, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 248106, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 248431, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 248746, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 248979, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 249295, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 249624, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 249874, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 250039, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 250371, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 250619, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 250877, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 251108, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 251399, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 251716, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 251942, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 252210, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 252457, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 252781, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 253017, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 253200, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 253355, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 253555, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 253777, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 253946, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 254085, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 254329, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 254622, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 254787, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 254983, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 255230, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 255508, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 255746, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 256038, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 256236, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 256530, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 256831, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 257091, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 257392, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 257642, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 257818, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 258136, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 258598, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 259009, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 259548, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 260068, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 260638, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 261041, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 261405, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 261919, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 262403, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 262965, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 263476, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 264009, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 264426, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 264946, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 265434, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 265850, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 266244, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 266605, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 266985, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 267358, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 267825, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 268292, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 268827, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 269305, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 269735, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 270119, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 270728, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 271077, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 271686, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 272106, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 272483, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 272946, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 273291, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 273658, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 274005, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 274407, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 274865, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 275423, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 275902, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 276346, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 276880, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 277231, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 277596, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 278144, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 278527, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 278943, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 279393, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 279885, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 280277, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 280865, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 281276, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 281723, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 282069, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 282679, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 283218, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 283666, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 284276, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 284686, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 285301, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 285698, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 286242, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 286610, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 287135, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 287535, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 287984, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 288590, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 289189, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 289575, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 290117, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 290664, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 291157, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 291533, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 292008, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 292432, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 292873, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 293230, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 293755, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 294365, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 294772, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 295234, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 295581, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 296141, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 296644, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 297095, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 297504, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 298112, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 298614, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 299146, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 299677, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 300062, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 300357, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 300545, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 300785, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 301063, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 301269, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 301605, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 301898, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 302047, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 302257, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 302425, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 302672, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 302831, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 303068, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 303270, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 303522, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 303791, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 303999, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 304319, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 304607, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 304748, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 304962, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 305248, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 305436, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 305581, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 305863, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 306115, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 306363, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 306601, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 306854, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 307103, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 307306, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 307539, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 307854, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 308114, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 308428, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 308598, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 308844, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 309073, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 309378, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 309626, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 309856, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 310152, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 310393, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 310681, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 310999, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 311263, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 311475, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 311739, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 311942, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 312092, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 312428, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 312733, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 312909, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 313186, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 313480, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 313648, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 313843, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 314064, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 314267, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 314424, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 314696, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 314842, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 315172, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 315345, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 315488, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 315647, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 315823, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 315966, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 316235, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 316452, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 316690, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 316955, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 317213, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 317360, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 317542, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 317826, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 317965, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 318291, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 318563, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 318891, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 319199, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 319432, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 319700, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 319911, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 320201, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 320521, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 320827, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 321127, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 321276, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 321540, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 321786, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 322074, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:14:24.106945", + "reading_end_time": "2025-06-01 03:14:37.901368", + "reading_consume": 12.926649, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 191945, + 0 + ], + "1": [ + "2024-08-27 2 00:15:00 00,FF88,80", + 8, + 191945, + 0 + ], + "2": [ + "2024-08-27 2 00:30:00 00,FF88,80", + 8, + 191946, + 0 + ], + "3": [ + "2024-08-27 2 00:45:00 00,FF88,80", + 8, + 191946, + 0 + ], + "4": [ + "2024-08-27 2 01:00:00 00,FF88,80", + 8, + 191947, + 0 + ], + "5": [ + "2024-08-27 2 01:15:00 00,FF88,80", + 8, + 191947, + 0 + ], + "6": [ + "2024-08-27 2 01:30:00 00,FF88,80", + 8, + 191948, + 0 + ], + "7": [ + "2024-08-27 2 01:45:00 00,FF88,80", + 8, + 191948, + 0 + ], + "8": [ + "2024-08-27 2 02:00:00 00,FF88,80", + 8, + 191948, + 0 + ], + "9": [ + "2024-08-27 2 02:15:00 00,FF88,80", + 8, + 191949, + 0 + ], + "10": [ + "2024-08-27 2 02:30:00 00,FF88,80", + 8, + 191949, + 0 + ], + "11": [ + "2024-08-27 2 02:45:00 00,FF88,80", + 8, + 191950, + 0 + ], + "12": [ + "2024-08-27 2 03:00:00 00,FF88,80", + 8, + 191950, + 0 + ], + "13": [ + "2024-08-27 2 03:15:00 00,FF88,80", + 8, + 191950, + 0 + ], + "14": [ + "2024-08-27 2 03:30:00 00,FF88,80", + 8, + 191950, + 0 + ], + "15": [ + "2024-08-27 2 03:45:00 00,FF88,80", + 8, + 191951, + 0 + ], + "16": [ + "2024-08-27 2 04:00:00 00,FF88,80", + 8, + 191951, + 0 + ], + "17": [ + "2024-08-27 2 04:15:00 00,FF88,80", + 8, + 191951, + 0 + ], + "18": [ + "2024-08-27 2 04:30:00 00,FF88,80", + 8, + 191952, + 0 + ], + "19": [ + "2024-08-27 2 04:45:00 00,FF88,80", + 8, + 191952, + 0 + ], + "20": [ + "2024-08-27 2 05:00:00 00,FF88,80", + 8, + 191952, + 0 + ], + "21": [ + "2024-08-27 2 05:15:00 00,FF88,80", + 8, + 191953, + 0 + ], + "22": [ + "2024-08-27 2 05:30:00 00,FF88,80", + 8, + 191953, + 0 + ], + "23": [ + "2024-08-27 2 05:45:00 00,FF88,80", + 8, + 191953, + 0 + ], + "24": [ + "2024-08-27 2 06:00:00 00,FF88,80", + 8, + 191959, + 0 + ], + "25": [ + "2024-08-27 2 06:15:00 00,FF88,80", + 8, + 191965, + 0 + ], + "26": [ + "2024-08-27 2 06:30:00 00,FF88,80", + 8, + 191969, + 0 + ], + "27": [ + "2024-08-27 2 06:45:00 00,FF88,80", + 8, + 191976, + 0 + ], + "28": [ + "2024-08-27 2 07:00:00 00,FF88,80", + 8, + 191981, + 0 + ], + "29": [ + "2024-08-27 2 07:15:00 00,FF88,80", + 8, + 191987, + 0 + ], + "30": [ + "2024-08-27 2 07:30:00 00,FF88,80", + 8, + 191994, + 0 + ], + "31": [ + "2024-08-27 2 07:45:00 00,FF88,80", + 8, + 192001, + 0 + ], + "32": [ + "2024-08-27 2 08:00:00 00,FF88,80", + 8, + 192009, + 0 + ], + "33": [ + "2024-08-27 2 08:15:00 00,FF88,80", + 8, + 192013, + 0 + ], + "34": [ + "2024-08-27 2 08:30:00 00,FF88,80", + 8, + 192018, + 0 + ], + "35": [ + "2024-08-27 2 08:45:00 00,FF88,80", + 8, + 192025, + 0 + ], + "36": [ + "2024-08-27 2 09:00:00 00,FF88,80", + 8, + 192029, + 0 + ], + "37": [ + "2024-08-27 2 09:15:00 00,FF88,80", + 8, + 192037, + 0 + ], + "38": [ + "2024-08-27 2 09:30:00 00,FF88,80", + 8, + 192044, + 0 + ], + "39": [ + "2024-08-27 2 09:45:00 00,FF88,80", + 8, + 192052, + 0 + ], + "40": [ + "2024-08-27 2 10:00:00 00,FF88,80", + 8, + 192054, + 0 + ], + "41": [ + "2024-08-27 2 10:15:00 00,FF88,80", + 8, + 192058, + 0 + ], + "42": [ + "2024-08-27 2 10:30:00 00,FF88,80", + 8, + 192059, + 0 + ], + "43": [ + "2024-08-27 2 10:45:00 00,FF88,80", + 8, + 192061, + 0 + ], + "44": [ + "2024-08-27 2 11:00:00 00,FF88,80", + 8, + 192063, + 0 + ], + "45": [ + "2024-08-27 2 11:15:00 00,FF88,80", + 8, + 192066, + 0 + ], + "46": [ + "2024-08-27 2 11:30:00 00,FF88,80", + 8, + 192069, + 0 + ], + "47": [ + "2024-08-27 2 11:45:00 00,FF88,80", + 8, + 192072, + 0 + ], + "48": [ + "2024-08-27 2 12:00:00 00,FF88,80", + 8, + 192075, + 0 + ], + "49": [ + "2024-08-27 2 12:15:00 00,FF88,80", + 8, + 192078, + 0 + ], + "50": [ + "2024-08-27 2 12:30:00 00,FF88,80", + 8, + 192080, + 0 + ], + "51": [ + "2024-08-27 2 12:45:00 00,FF88,80", + 8, + 192082, + 0 + ], + "52": [ + "2024-08-27 2 13:00:00 00,FF88,80", + 8, + 192085, + 0 + ], + "53": [ + "2024-08-27 2 13:15:00 00,FF88,80", + 8, + 192089, + 0 + ], + "54": [ + "2024-08-27 2 13:30:00 00,FF88,80", + 8, + 192091, + 0 + ], + "55": [ + "2024-08-27 2 13:45:00 00,FF88,80", + 8, + 192093, + 0 + ], + "56": [ + "2024-08-27 2 14:00:00 00,FF88,80", + 8, + 192095, + 0 + ], + "57": [ + "2024-08-27 2 14:15:00 00,FF88,80", + 8, + 192097, + 0 + ], + "58": [ + "2024-08-27 2 14:30:00 00,FF88,80", + 8, + 192098, + 0 + ], + "59": [ + "2024-08-27 2 14:45:00 00,FF88,80", + 8, + 192100, + 0 + ], + "60": [ + "2024-08-27 2 15:00:00 00,FF88,80", + 8, + 192103, + 0 + ], + "61": [ + "2024-08-27 2 15:15:00 00,FF88,80", + 8, + 192105, + 0 + ], + "62": [ + "2024-08-27 2 15:30:00 00,FF88,80", + 8, + 192107, + 0 + ], + "63": [ + "2024-08-27 2 15:45:00 00,FF88,80", + 8, + 192110, + 0 + ], + "64": [ + "2024-08-27 2 16:00:00 00,FF88,80", + 8, + 192112, + 0 + ], + "65": [ + "2024-08-27 2 16:15:00 00,FF88,80", + 8, + 192115, + 0 + ], + "66": [ + "2024-08-27 2 16:30:00 00,FF88,80", + 8, + 192118, + 0 + ], + "67": [ + "2024-08-27 2 16:45:00 00,FF88,80", + 8, + 192121, + 0 + ], + "68": [ + "2024-08-27 2 17:00:00 00,FF88,80", + 8, + 192128, + 0 + ], + "69": [ + "2024-08-27 2 17:15:00 00,FF88,80", + 8, + 192133, + 0 + ], + "70": [ + "2024-08-27 2 17:30:00 00,FF88,80", + 8, + 192140, + 0 + ], + "71": [ + "2024-08-27 2 17:45:00 00,FF88,80", + 8, + 192147, + 0 + ], + "72": [ + "2024-08-27 2 18:00:00 00,FF88,80", + 8, + 192155, + 0 + ], + "73": [ + "2024-08-27 2 18:15:00 00,FF88,80", + 8, + 192161, + 0 + ], + "74": [ + "2024-08-27 2 18:30:00 00,FF88,80", + 8, + 192168, + 0 + ], + "75": [ + "2024-08-27 2 18:45:00 00,FF88,80", + 8, + 192176, + 0 + ], + "76": [ + "2024-08-27 2 19:00:00 00,FF88,80", + 8, + 192184, + 0 + ], + "77": [ + "2024-08-27 2 19:15:00 00,FF88,80", + 8, + 192189, + 0 + ], + "78": [ + "2024-08-27 2 19:30:00 00,FF88,80", + 8, + 192196, + 0 + ], + "79": [ + "2024-08-27 2 19:45:00 00,FF88,80", + 8, + 192202, + 0 + ], + "80": [ + "2024-08-27 2 20:00:00 00,FF88,80", + 8, + 192208, + 0 + ], + "81": [ + "2024-08-27 2 20:15:00 00,FF88,80", + 8, + 192216, + 0 + ], + "82": [ + "2024-08-27 2 20:30:00 00,FF88,80", + 8, + 192222, + 0 + ], + "83": [ + "2024-08-27 2 20:45:00 00,FF88,80", + 8, + 192227, + 0 + ], + "84": [ + "2024-08-27 2 21:00:00 00,FF88,80", + 8, + 192234, + 0 + ], + "85": [ + "2024-08-27 2 21:15:00 00,FF88,80", + 8, + 192240, + 0 + ], + "86": [ + "2024-08-27 2 21:30:00 00,FF88,80", + 8, + 192247, + 0 + ], + "87": [ + "2024-08-27 2 21:45:00 00,FF88,80", + 8, + 192253, + 0 + ], + "88": [ + "2024-08-27 2 22:00:00 00,FF88,80", + 8, + 192258, + 0 + ], + "89": [ + "2024-08-27 2 22:15:00 00,FF88,80", + 8, + 192265, + 0 + ], + "90": [ + "2024-08-27 2 22:30:00 00,FF88,80", + 8, + 192272, + 0 + ], + "91": [ + "2024-08-27 2 22:45:00 00,FF88,80", + 8, + 192280, + 0 + ], + "92": [ + "2024-08-27 2 23:00:00 00,FF88,80", + 8, + 192281, + 0 + ], + "93": [ + "2024-08-27 2 23:15:00 00,FF88,80", + 8, + 192282, + 0 + ], + "94": [ + "2024-08-27 2 23:30:00 00,FF88,80", + 8, + 192285, + 0 + ], + "95": [ + "2024-08-27 2 23:45:00 00,FF88,80", + 8, + 192287, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "1": [ + "2024-08-27 2 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "2": [ + "2024-08-27 2 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "3": [ + "2024-08-27 2 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "4": [ + "2024-08-27 2 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "5": [ + "2024-08-27 2 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "6": [ + "2024-08-27 2 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "7": [ + "2024-08-27 2 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "8": [ + "2024-08-27 2 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "9": [ + "2024-08-27 2 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "10": [ + "2024-08-27 2 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "11": [ + "2024-08-27 2 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "12": [ + "2024-08-27 2 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "13": [ + "2024-08-27 2 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "14": [ + "2024-08-27 2 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "15": [ + "2024-08-27 2 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "16": [ + "2024-08-27 2 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "17": [ + "2024-08-27 2 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "18": [ + "2024-08-27 2 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "19": [ + "2024-08-27 2 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "20": [ + "2024-08-27 2 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "21": [ + "2024-08-27 2 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "22": [ + "2024-08-27 2 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "23": [ + "2024-08-27 2 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "24": [ + "2024-08-27 2 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "25": [ + "2024-08-27 2 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "26": [ + "2024-08-27 2 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "27": [ + "2024-08-27 2 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "28": [ + "2024-08-27 2 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "29": [ + "2024-08-27 2 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "30": [ + "2024-08-27 2 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "31": [ + "2024-08-27 2 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "32": [ + "2024-08-27 2 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "33": [ + "2024-08-27 2 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "34": [ + "2024-08-27 2 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "35": [ + "2024-08-27 2 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "36": [ + "2024-08-27 2 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "37": [ + "2024-08-27 2 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "38": [ + "2024-08-27 2 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "39": [ + "2024-08-27 2 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "40": [ + "2024-08-27 2 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "41": [ + "2024-08-27 2 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "42": [ + "2024-08-27 2 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "43": [ + "2024-08-27 2 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "44": [ + "2024-08-27 2 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "45": [ + "2024-08-27 2 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "46": [ + "2024-08-27 2 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "47": [ + "2024-08-27 2 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "48": [ + "2024-08-27 2 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "49": [ + "2024-08-27 2 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "50": [ + "2024-08-27 2 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "51": [ + "2024-08-27 2 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "52": [ + "2024-08-27 2 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "53": [ + "2024-08-27 2 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "54": [ + "2024-08-27 2 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "55": [ + "2024-08-27 2 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "56": [ + "2024-08-27 2 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "57": [ + "2024-08-27 2 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "58": [ + "2024-08-27 2 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "59": [ + "2024-08-27 2 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "60": [ + "2024-08-27 2 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "61": [ + "2024-08-27 2 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "62": [ + "2024-08-27 2 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "63": [ + "2024-08-27 2 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "64": [ + "2024-08-27 2 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "65": [ + "2024-08-27 2 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "66": [ + "2024-08-27 2 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "67": [ + "2024-08-27 2 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "68": [ + "2024-08-27 2 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "69": [ + "2024-08-27 2 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "70": [ + "2024-08-27 2 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "71": [ + "2024-08-27 2 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "72": [ + "2024-08-27 2 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "73": [ + "2024-08-27 2 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "74": [ + "2024-08-27 2 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "75": [ + "2024-08-27 2 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "76": [ + "2024-08-27 2 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "77": [ + "2024-08-27 2 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "78": [ + "2024-08-27 2 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "79": [ + "2024-08-27 2 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "80": [ + "2024-08-27 2 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "81": [ + "2024-08-27 2 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "82": [ + "2024-08-27 2 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "83": [ + "2024-08-27 2 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "84": [ + "2024-08-27 2 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "85": [ + "2024-08-27 2 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "86": [ + "2024-08-27 2 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "88": [ + "2024-08-27 2 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "89": [ + "2024-08-27 2 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "90": [ + "2024-08-27 2 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "91": [ + "2024-08-27 2 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "92": [ + "2024-08-27 2 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "93": [ + "2024-08-27 2 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "94": [ + "2024-08-27 2 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "95": [ + "2024-08-27 2 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 322074, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 322074, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 32, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 26, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 34, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 228, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 224, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 228, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 228, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 68, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 59, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 51, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 226, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 225, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 225, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 27, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 24, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 23, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-18 0 20:14:00 00,FF88,80", + 79, + 31 + ], + "1": [ + "2025-05-14 3 22:14:00 00,FF88,80", + 77, + 49 + ], + "2": [ + "2025-05-29 4 17:14:00 00,FF88,80", + 73, + 88 + ], + "3": [ + "2025-05-13 2 14:14:00 00,FF88,80", + 76, + 72 + ], + "4": [ + "2025-05-06 2 17:14:00 00,FF88,80", + 78, + 88 + ], + "5": [ + "2025-05-24 6 22:14:00 00,FF88,80", + 80, + 85 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:04:27.702080", + "pos": 6, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:04:00", + "connection_status": true, + "connection_end": "2025-06-01 03:04:05", + "connection_consume": 5.0, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025030100006", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025030100006", + "actual_time": "2025-06-01 03:04:13.219876", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:04:13 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:04:13", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:04:16.441183", + "getProfile_end_time": "2025-06-01 03:04:16.682051", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 171213, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 187221, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 202143, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 217556, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 225494, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 233751, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 241621, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 257465, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 273756, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 282476, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 290262, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 298316, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 156924, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 157498, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 158046, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 158660, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 159128, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 159690, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 160079, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 160514, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 160926, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 161469, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 162064, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 162675, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 163270, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 163837, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 164342, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 164799, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 165352, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 165855, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 166287, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 166918, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 167377, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 167983, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 168555, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 169198, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 169847, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 170431, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 171073, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 171737, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 172280, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 172832, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 173354, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 173976, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 174600, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 174989, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 175627, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 176285, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 176656, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 177193, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 177854, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 178257, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 178711, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 179091, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 179590, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 180136, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 180692, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 181274, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 181765, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 182265, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 182698, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 183120, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 183532, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 184067, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 184688, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 185165, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 185659, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 186115, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 186745, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 187153, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 187527, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 188090, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 188503, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 189136, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 189702, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 190362, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 190773, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 191184, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 191794, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 192420, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 193056, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 193633, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 194280, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 194835, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 195340, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 195836, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 196450, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 196935, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 197372, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 197869, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 198242, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 198760, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 199347, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 199929, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 200379, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 201025, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 201567, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 201947, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 202329, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 202843, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 203323, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 203866, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 204522, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 204916, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 205226, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 205491, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 205830, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 206145, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 206355, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 206618, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 206882, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 207166, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 207368, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 207656, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 207952, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 208249, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 208549, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 208817, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 209094, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 209378, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 209727, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 209994, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 210144, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 210393, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 210743, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 211019, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 211241, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 211467, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 211833, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 212046, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 212231, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 212534, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 212815, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 213031, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 213354, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 213560, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 213848, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 214125, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 214400, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 214694, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 214907, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 215219, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 215373, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 215629, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 215805, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 215970, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 216292, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 216496, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 216781, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 216990, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 217195, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 217508, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 217790, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 218140, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 218452, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 218747, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 218977, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 219164, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 219486, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 219686, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 219874, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 220139, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 220294, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 220661, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 221024, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 221304, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 221635, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 221969, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 222284, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 222524, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 222757, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 223052, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 223362, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 223547, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 223824, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 224159, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 224319, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 224526, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 224856, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 225016, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 225267, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 225521, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 225775, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 226134, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 226487, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 226687, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 226987, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 227222, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 227428, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 227694, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 227939, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 228151, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 228476, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 228709, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 228927, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 229455, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 230109, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 230508, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 231036, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 231512, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 232133, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 232685, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 233249, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 233700, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 234151, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 234760, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 235206, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 235750, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 236257, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 236828, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 237270, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 237840, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 238439, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 238964, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 239536, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 240201, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 240664, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 241038, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 241411, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 241802, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 242295, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 242821, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 243395, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 243870, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 244456, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 244901, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 245282, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 245836, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 246223, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 246770, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 247406, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 247841, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 248389, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 248796, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 249451, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 249847, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 250397, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 250879, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 251476, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 252039, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 252648, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 253073, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 253476, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 253901, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 254359, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 254926, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 255319, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 255824, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 256490, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 257089, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 257665, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 258234, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 258833, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 259280, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 259882, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 260335, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 260724, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 261210, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 261876, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 262323, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 262935, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 263358, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 263749, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 264410, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 264840, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 265327, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 265889, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 266292, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 266823, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 267321, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 267874, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 268276, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 268778, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 269225, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 269606, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 269997, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 270583, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 271184, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 271560, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 272078, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 272642, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 273013, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 273395, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 273881, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 274296, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 274517, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 274752, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 274901, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 275206, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 275526, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 275780, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 276018, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 276328, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 276657, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 276821, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 277019, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 277252, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 277553, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 277874, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 278049, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 278316, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 278685, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 278907, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 279122, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 279282, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 279652, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 279944, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 280173, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 280511, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 280735, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 281070, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 281387, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 281599, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 281792, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 282063, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 282426, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 282721, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 282935, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 283170, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 283342, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 283643, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 283899, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 284244, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 284489, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 284679, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 284835, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 284989, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 285359, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 285560, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 285794, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 286118, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 286409, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 286668, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 287031, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 287360, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 287723, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 287875, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 288098, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 288321, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 288629, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 288867, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 289062, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 289355, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 289619, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 289976, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 290318, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 290585, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 290898, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 291098, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 291262, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 291574, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 291831, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 291983, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 292333, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 292619, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 292821, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 293113, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 293264, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 293553, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 293902, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 294233, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 294403, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 294687, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 295021, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 295183, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 295513, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 295686, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 295966, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 296251, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 296413, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 296606, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 296829, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 297163, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 297475, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 297712, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 297887, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 298187, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:04:22.284731", + "reading_end_time": "2025-06-01 03:04:38.422998", + "reading_consume": 16.220231, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 156376, + 0 + ], + "1": [ + "2024-06-04 2 00:15:00 00,FF88,80", + 8, + 156377, + 0 + ], + "2": [ + "2024-06-04 2 00:30:00 00,FF88,80", + 8, + 156377, + 0 + ], + "3": [ + "2024-06-04 2 00:45:00 00,FF88,80", + 8, + 156378, + 0 + ], + "4": [ + "2024-06-04 2 01:00:00 00,FF88,80", + 8, + 156379, + 0 + ], + "5": [ + "2024-06-04 2 01:15:00 00,FF88,80", + 8, + 156380, + 0 + ], + "6": [ + "2024-06-04 2 01:30:00 00,FF88,80", + 8, + 156380, + 0 + ], + "7": [ + "2024-06-04 2 01:45:00 00,FF88,80", + 8, + 156380, + 0 + ], + "8": [ + "2024-06-04 2 02:00:00 00,FF88,80", + 8, + 156380, + 0 + ], + "9": [ + "2024-06-04 2 02:15:00 00,FF88,80", + 8, + 156381, + 0 + ], + "10": [ + "2024-06-04 2 02:30:00 00,FF88,80", + 8, + 156381, + 0 + ], + "11": [ + "2024-06-04 2 02:45:00 00,FF88,80", + 8, + 156382, + 0 + ], + "12": [ + "2024-06-04 2 03:00:00 00,FF88,80", + 8, + 156383, + 0 + ], + "13": [ + "2024-06-04 2 03:15:00 00,FF88,80", + 8, + 156383, + 0 + ], + "14": [ + "2024-06-04 2 03:30:00 00,FF88,80", + 8, + 156384, + 0 + ], + "15": [ + "2024-06-04 2 03:45:00 00,FF88,80", + 8, + 156384, + 0 + ], + "16": [ + "2024-06-04 2 04:00:00 00,FF88,80", + 8, + 156384, + 0 + ], + "17": [ + "2024-06-04 2 04:15:00 00,FF88,80", + 8, + 156384, + 0 + ], + "18": [ + "2024-06-04 2 04:30:00 00,FF88,80", + 8, + 156384, + 0 + ], + "19": [ + "2024-06-04 2 04:45:00 00,FF88,80", + 8, + 156385, + 0 + ], + "20": [ + "2024-06-04 2 05:00:00 00,FF88,80", + 8, + 156386, + 0 + ], + "21": [ + "2024-06-04 2 05:15:00 00,FF88,80", + 8, + 156386, + 0 + ], + "22": [ + "2024-06-04 2 05:30:00 00,FF88,80", + 8, + 156387, + 0 + ], + "23": [ + "2024-06-04 2 05:45:00 00,FF88,80", + 8, + 156388, + 0 + ], + "24": [ + "2024-06-04 2 06:00:00 00,FF88,80", + 8, + 156394, + 0 + ], + "25": [ + "2024-06-04 2 06:15:00 00,FF88,80", + 8, + 156401, + 0 + ], + "26": [ + "2024-06-04 2 06:30:00 00,FF88,80", + 8, + 156409, + 0 + ], + "27": [ + "2024-06-04 2 06:45:00 00,FF88,80", + 8, + 156415, + 0 + ], + "28": [ + "2024-06-04 2 07:00:00 00,FF88,80", + 8, + 156420, + 0 + ], + "29": [ + "2024-06-04 2 07:15:00 00,FF88,80", + 8, + 156426, + 0 + ], + "30": [ + "2024-06-04 2 07:30:00 00,FF88,80", + 8, + 156435, + 0 + ], + "31": [ + "2024-06-04 2 07:45:00 00,FF88,80", + 8, + 156440, + 0 + ], + "32": [ + "2024-06-04 2 08:00:00 00,FF88,80", + 8, + 156448, + 0 + ], + "33": [ + "2024-06-04 2 08:15:00 00,FF88,80", + 8, + 156455, + 0 + ], + "34": [ + "2024-06-04 2 08:30:00 00,FF88,80", + 8, + 156462, + 0 + ], + "35": [ + "2024-06-04 2 08:45:00 00,FF88,80", + 8, + 156471, + 0 + ], + "36": [ + "2024-06-04 2 09:00:00 00,FF88,80", + 8, + 156478, + 0 + ], + "37": [ + "2024-06-04 2 09:15:00 00,FF88,80", + 8, + 156485, + 0 + ], + "38": [ + "2024-06-04 2 09:30:00 00,FF88,80", + 8, + 156493, + 0 + ], + "39": [ + "2024-06-04 2 09:45:00 00,FF88,80", + 8, + 156498, + 0 + ], + "40": [ + "2024-06-04 2 10:00:00 00,FF88,80", + 8, + 156501, + 0 + ], + "41": [ + "2024-06-04 2 10:15:00 00,FF88,80", + 8, + 156504, + 0 + ], + "42": [ + "2024-06-04 2 10:30:00 00,FF88,80", + 8, + 156508, + 0 + ], + "43": [ + "2024-06-04 2 10:45:00 00,FF88,80", + 8, + 156510, + 0 + ], + "44": [ + "2024-06-04 2 11:00:00 00,FF88,80", + 8, + 156512, + 0 + ], + "45": [ + "2024-06-04 2 11:15:00 00,FF88,80", + 8, + 156514, + 0 + ], + "46": [ + "2024-06-04 2 11:30:00 00,FF88,80", + 8, + 156518, + 0 + ], + "47": [ + "2024-06-04 2 11:45:00 00,FF88,80", + 8, + 156520, + 0 + ], + "48": [ + "2024-06-04 2 12:00:00 00,FF88,80", + 8, + 156522, + 0 + ], + "49": [ + "2024-06-04 2 12:15:00 00,FF88,80", + 8, + 156524, + 0 + ], + "50": [ + "2024-06-04 2 12:30:00 00,FF88,80", + 8, + 156527, + 0 + ], + "51": [ + "2024-06-04 2 12:45:00 00,FF88,80", + 8, + 156531, + 0 + ], + "52": [ + "2024-06-04 2 13:00:00 00,FF88,80", + 8, + 156533, + 0 + ], + "53": [ + "2024-06-04 2 13:15:00 00,FF88,80", + 8, + 156535, + 0 + ], + "54": [ + "2024-06-04 2 13:30:00 00,FF88,80", + 8, + 156538, + 0 + ], + "55": [ + "2024-06-04 2 13:45:00 00,FF88,80", + 8, + 156542, + 0 + ], + "56": [ + "2024-06-04 2 14:00:00 00,FF88,80", + 8, + 156545, + 0 + ], + "57": [ + "2024-06-04 2 14:15:00 00,FF88,80", + 8, + 156549, + 0 + ], + "58": [ + "2024-06-04 2 14:30:00 00,FF88,80", + 8, + 156551, + 0 + ], + "59": [ + "2024-06-04 2 14:45:00 00,FF88,80", + 8, + 156553, + 0 + ], + "60": [ + "2024-06-04 2 15:00:00 00,FF88,80", + 8, + 156556, + 0 + ], + "61": [ + "2024-06-04 2 15:15:00 00,FF88,80", + 8, + 156559, + 0 + ], + "62": [ + "2024-06-04 2 15:30:00 00,FF88,80", + 8, + 156563, + 0 + ], + "63": [ + "2024-06-04 2 15:45:00 00,FF88,80", + 8, + 156567, + 0 + ], + "64": [ + "2024-06-04 2 16:00:00 00,FF88,80", + 8, + 156570, + 0 + ], + "65": [ + "2024-06-04 2 16:15:00 00,FF88,80", + 8, + 156572, + 0 + ], + "66": [ + "2024-06-04 2 16:30:00 00,FF88,80", + 8, + 156575, + 0 + ], + "67": [ + "2024-06-04 2 16:45:00 00,FF88,80", + 8, + 156578, + 0 + ], + "68": [ + "2024-06-04 2 17:00:00 00,FF88,80", + 8, + 156583, + 0 + ], + "69": [ + "2024-06-04 2 17:15:00 00,FF88,80", + 8, + 156590, + 0 + ], + "70": [ + "2024-06-04 2 17:30:00 00,FF88,80", + 8, + 156598, + 0 + ], + "71": [ + "2024-06-04 2 17:45:00 00,FF88,80", + 8, + 156603, + 0 + ], + "72": [ + "2024-06-04 2 18:00:00 00,FF88,80", + 8, + 156610, + 0 + ], + "73": [ + "2024-06-04 2 18:15:00 00,FF88,80", + 8, + 156616, + 0 + ], + "74": [ + "2024-06-04 2 18:30:00 00,FF88,80", + 8, + 156623, + 0 + ], + "75": [ + "2024-06-04 2 18:45:00 00,FF88,80", + 8, + 156629, + 0 + ], + "76": [ + "2024-06-04 2 19:00:00 00,FF88,80", + 8, + 156638, + 0 + ], + "77": [ + "2024-06-04 2 19:15:00 00,FF88,80", + 8, + 156643, + 0 + ], + "78": [ + "2024-06-04 2 19:30:00 00,FF88,80", + 8, + 156648, + 0 + ], + "79": [ + "2024-06-04 2 19:45:00 00,FF88,80", + 8, + 156654, + 0 + ], + "80": [ + "2024-06-04 2 20:00:00 00,FF88,80", + 8, + 156659, + 0 + ], + "81": [ + "2024-06-04 2 20:15:00 00,FF88,80", + 8, + 156668, + 0 + ], + "82": [ + "2024-06-04 2 20:30:00 00,FF88,80", + 8, + 156675, + 0 + ], + "83": [ + "2024-06-04 2 20:45:00 00,FF88,80", + 8, + 156683, + 0 + ], + "84": [ + "2024-06-04 2 21:00:00 00,FF88,80", + 8, + 156690, + 0 + ], + "85": [ + "2024-06-04 2 21:15:00 00,FF88,80", + 8, + 156697, + 0 + ], + "86": [ + "2024-06-04 2 21:30:00 00,FF88,80", + 8, + 156704, + 0 + ], + "87": [ + "2024-06-04 2 21:45:00 00,FF88,80", + 8, + 156712, + 0 + ], + "88": [ + "2024-06-04 2 22:00:00 00,FF88,80", + 8, + 156717, + 0 + ], + "89": [ + "2024-06-04 2 22:15:00 00,FF88,80", + 8, + 156724, + 0 + ], + "90": [ + "2024-06-04 2 22:30:00 00,FF88,80", + 8, + 156729, + 0 + ], + "91": [ + "2024-06-04 2 22:45:00 00,FF88,80", + 8, + 156737, + 0 + ], + "92": [ + "2024-06-04 2 23:00:00 00,FF88,80", + 8, + 156741, + 0 + ], + "93": [ + "2024-06-04 2 23:15:00 00,FF88,80", + 8, + 156744, + 0 + ], + "94": [ + "2024-06-04 2 23:30:00 00,FF88,80", + 8, + 156746, + 0 + ], + "95": [ + "2024-06-04 2 23:45:00 00,FF88,80", + 8, + 156748, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "1": [ + "2024-06-04 2 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "2": [ + "2024-06-04 2 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "4": [ + "2024-06-04 2 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "5": [ + "2024-06-04 2 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "6": [ + "2024-06-04 2 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "7": [ + "2024-06-04 2 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "8": [ + "2024-06-04 2 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "9": [ + "2024-06-04 2 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "10": [ + "2024-06-04 2 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "11": [ + "2024-06-04 2 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "12": [ + "2024-06-04 2 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "13": [ + "2024-06-04 2 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "14": [ + "2024-06-04 2 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "15": [ + "2024-06-04 2 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "16": [ + "2024-06-04 2 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "17": [ + "2024-06-04 2 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "18": [ + "2024-06-04 2 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "19": [ + "2024-06-04 2 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "20": [ + "2024-06-04 2 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "21": [ + "2024-06-04 2 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "22": [ + "2024-06-04 2 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "23": [ + "2024-06-04 2 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "24": [ + "2024-06-04 2 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "25": [ + "2024-06-04 2 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "26": [ + "2024-06-04 2 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "27": [ + "2024-06-04 2 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "28": [ + "2024-06-04 2 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "29": [ + "2024-06-04 2 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "30": [ + "2024-06-04 2 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "31": [ + "2024-06-04 2 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "32": [ + "2024-06-04 2 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "33": [ + "2024-06-04 2 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "34": [ + "2024-06-04 2 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "35": [ + "2024-06-04 2 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "36": [ + "2024-06-04 2 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "37": [ + "2024-06-04 2 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "38": [ + "2024-06-04 2 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "39": [ + "2024-06-04 2 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "40": [ + "2024-06-04 2 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "41": [ + "2024-06-04 2 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "42": [ + "2024-06-04 2 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "43": [ + "2024-06-04 2 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "44": [ + "2024-06-04 2 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "45": [ + "2024-06-04 2 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "46": [ + "2024-06-04 2 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "47": [ + "2024-06-04 2 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "48": [ + "2024-06-04 2 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "49": [ + "2024-06-04 2 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "50": [ + "2024-06-04 2 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "51": [ + "2024-06-04 2 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "52": [ + "2024-06-04 2 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "53": [ + "2024-06-04 2 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "54": [ + "2024-06-04 2 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "55": [ + "2024-06-04 2 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "56": [ + "2024-06-04 2 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "57": [ + "2024-06-04 2 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "58": [ + "2024-06-04 2 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "59": [ + "2024-06-04 2 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "60": [ + "2024-06-04 2 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "61": [ + "2024-06-04 2 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "62": [ + "2024-06-04 2 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "63": [ + "2024-06-04 2 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "64": [ + "2024-06-04 2 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "65": [ + "2024-06-04 2 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "66": [ + "2024-06-04 2 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "67": [ + "2024-06-04 2 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "68": [ + "2024-06-04 2 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "69": [ + "2024-06-04 2 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "70": [ + "2024-06-04 2 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "71": [ + "2024-06-04 2 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "72": [ + "2024-06-04 2 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "73": [ + "2024-06-04 2 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "74": [ + "2024-06-04 2 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "75": [ + "2024-06-04 2 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "76": [ + "2024-06-04 2 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "77": [ + "2024-06-04 2 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "78": [ + "2024-06-04 2 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "79": [ + "2024-06-04 2 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "80": [ + "2024-06-04 2 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "81": [ + "2024-06-04 2 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "82": [ + "2024-06-04 2 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "83": [ + "2024-06-04 2 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "84": [ + "2024-06-04 2 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "85": [ + "2024-06-04 2 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "86": [ + "2024-06-04 2 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "87": [ + "2024-06-04 2 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "88": [ + "2024-06-04 2 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "89": [ + "2024-06-04 2 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "90": [ + "2024-06-04 2 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "91": [ + "2024-06-04 2 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "92": [ + "2024-06-04 2 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "93": [ + "2024-06-04 2 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "94": [ + "2024-06-04 2 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "95": [ + "2024-06-04 2 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 298187, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 298187, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 15, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 29, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 27, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 227, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 227, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 227, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 249, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 64, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 7, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 50, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 229, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 229, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 229, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 27, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 26, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 19, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-16 5 09:04:00 00,FF88,80", + 76, + 78 + ], + "1": [ + "2025-05-10 6 16:04:00 00,FF88,80", + 74, + 41 + ], + "2": [ + "2025-05-31 6 03:04:00 00,FF88,80", + 79, + 5 + ], + "3": [ + "2025-05-27 2 16:04:00 00,FF88,80", + 75, + 94 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:37:30.755520", + "pos": 7, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:37:00", + "connection_status": true, + "connection_end": "2025-06-01 03:37:02", + "connection_consume": 2.1, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025030100007", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025030100007", + "actual_time": "2025-06-01 03:37:08.499060", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:37:08 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:37:08", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:37:09.474725", + "getProfile_end_time": "2025-06-01 03:37:09.531939", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 138773, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 165578, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 192154, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 217712, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 230512, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 244127, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 257127, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 283094, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 310069, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 323176, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 336331, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 349531, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 112416, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 113485, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 114136, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 114905, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 115691, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 116319, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 117099, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 117946, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 118992, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 119892, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 120957, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 121708, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 122671, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 123581, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 124688, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 125494, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 126306, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 127208, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 128227, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 128895, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 129848, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 130633, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 131500, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 132497, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 133284, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 134207, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 135005, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 135839, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 136704, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 137742, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 138750, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 139785, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 140669, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 141430, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 142072, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 143184, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 144002, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 144732, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 145718, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 146382, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 147419, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 148084, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 148869, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 149521, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 150536, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 151390, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 152112, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 153125, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 154066, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 154834, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 155851, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 156684, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 157570, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 158288, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 159106, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 160034, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 160877, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 161874, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 162582, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 163210, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 164177, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 165223, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 166127, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 166851, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 167946, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 168932, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 169782, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 170865, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 171747, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 172670, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 173669, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 174502, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 175401, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 176330, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 177207, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 178006, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 178698, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 179391, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 180349, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 181116, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 181950, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 182726, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 183756, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 184406, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 185125, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 185948, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 186974, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 187912, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 188657, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 189573, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 190392, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 191067, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 191385, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 191723, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 192277, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 192696, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 193151, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 193560, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 194047, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 194308, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 194614, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 194912, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 195255, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 195801, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 196293, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 196605, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 197169, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 197774, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 198202, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 198456, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 199022, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 199300, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 199771, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 200340, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 200922, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 201320, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 201702, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 202193, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 202474, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 203071, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 203587, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 203886, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 204175, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 204695, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 205289, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 205730, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 206285, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 206885, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 207478, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 207819, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 208395, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 208731, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 209024, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 209571, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 209940, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 210404, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 210796, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 211321, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 211656, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 212060, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 212361, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 212673, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 213280, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 213690, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 214032, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 214498, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 214927, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 215313, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 215912, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 216277, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 216681, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 217182, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 217787, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 218361, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 218956, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 219338, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 219851, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 220403, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 220658, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 221264, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 221736, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 222296, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 222789, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 223386, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 223890, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 224430, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 224766, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 225218, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 225580, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 226183, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 226565, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 227114, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 227406, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 227975, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 228541, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 228932, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 229517, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 229910, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 230520, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 230862, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 231143, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 231696, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 232031, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 232754, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 233813, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 234885, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 235816, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 236870, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 237868, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 238688, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 239323, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 240371, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 241397, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 242481, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 243333, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 244156, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 245191, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 246165, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 247218, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 248243, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 249270, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 250234, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 251103, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 251896, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 252813, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 253834, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 254818, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 255661, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 256293, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 256937, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 257873, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 258804, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 259814, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 260500, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 261317, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 262247, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 263021, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 263680, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 264377, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 265251, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 266350, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 267380, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 268376, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 269414, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 270372, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 271383, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 272160, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 273015, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 273998, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 274746, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 275705, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 276733, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 277747, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 278464, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 279288, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 279997, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 281049, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 282135, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 283191, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 283921, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 285009, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 286085, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 287024, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 287953, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 289021, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 290122, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 290839, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 291805, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 292507, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 293324, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 294155, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 294902, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 295565, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 296366, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 297454, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 298131, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 299105, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 299939, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 301013, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 301856, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 302808, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 303485, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 304457, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 305170, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 306215, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 307221, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 307982, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 308845, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 309528, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 310571, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 311487, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 312598, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 313357, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 313856, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 314258, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 314657, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 314958, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 315313, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 315657, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 316134, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 316718, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 317102, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 317603, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 318020, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 318271, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 318568, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 318935, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 319439, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 319941, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 320453, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 320963, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 321483, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 321825, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 322107, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 322376, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 322747, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 323081, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 323665, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 324282, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 324878, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 325484, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 325953, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 326478, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 326742, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 327083, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 327560, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 327919, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 328313, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 328698, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 329305, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 329760, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 330223, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 330567, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 331001, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 331594, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 332167, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 332463, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 332828, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 333272, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 333572, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 333862, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 334126, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 334421, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 334992, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 335549, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 336074, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 336665, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 337017, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 337590, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 338065, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 338595, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 338940, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 339303, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 339882, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 340246, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 340862, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 341393, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 341696, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 342260, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 342751, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 343295, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 343562, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 343864, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 344196, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 344456, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 344800, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 345309, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 345718, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 346335, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 346926, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 347188, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 347568, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 348078, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 348505, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 348935, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 349496, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 350065, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 350358, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 350640, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 351210, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 351524, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 351834, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 352270, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 352618, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 353196, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:37:19.356092", + "reading_end_time": "2025-06-01 03:37:27.359642", + "reading_consume": 8.564492, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 111506, + 0 + ], + "1": [ + "2024-06-25 2 00:15:00 00,FF88,80", + 8, + 111508, + 0 + ], + "2": [ + "2024-06-25 2 00:30:00 00,FF88,80", + 8, + 111509, + 0 + ], + "3": [ + "2024-06-25 2 00:45:00 00,FF88,80", + 8, + 111510, + 0 + ], + "4": [ + "2024-06-25 2 01:00:00 00,FF88,80", + 8, + 111510, + 0 + ], + "5": [ + "2024-06-25 2 01:15:00 00,FF88,80", + 8, + 111511, + 0 + ], + "6": [ + "2024-06-25 2 01:30:00 00,FF88,80", + 8, + 111512, + 0 + ], + "7": [ + "2024-06-25 2 01:45:00 00,FF88,80", + 8, + 111514, + 0 + ], + "8": [ + "2024-06-25 2 02:00:00 00,FF88,80", + 8, + 111515, + 0 + ], + "9": [ + "2024-06-25 2 02:15:00 00,FF88,80", + 8, + 111517, + 0 + ], + "10": [ + "2024-06-25 2 02:30:00 00,FF88,80", + 8, + 111519, + 0 + ], + "11": [ + "2024-06-25 2 02:45:00 00,FF88,80", + 8, + 111520, + 0 + ], + "12": [ + "2024-06-25 2 03:00:00 00,FF88,80", + 8, + 111522, + 0 + ], + "13": [ + "2024-06-25 2 03:15:00 00,FF88,80", + 8, + 111523, + 0 + ], + "14": [ + "2024-06-25 2 03:30:00 00,FF88,80", + 8, + 111524, + 0 + ], + "15": [ + "2024-06-25 2 03:45:00 00,FF88,80", + 8, + 111525, + 0 + ], + "16": [ + "2024-06-25 2 04:00:00 00,FF88,80", + 8, + 111527, + 0 + ], + "17": [ + "2024-06-25 2 04:15:00 00,FF88,80", + 8, + 111528, + 0 + ], + "18": [ + "2024-06-25 2 04:30:00 00,FF88,80", + 8, + 111528, + 0 + ], + "19": [ + "2024-06-25 2 04:45:00 00,FF88,80", + 8, + 111529, + 0 + ], + "20": [ + "2024-06-25 2 05:00:00 00,FF88,80", + 8, + 111531, + 0 + ], + "21": [ + "2024-06-25 2 05:15:00 00,FF88,80", + 8, + 111531, + 0 + ], + "22": [ + "2024-06-25 2 05:30:00 00,FF88,80", + 8, + 111532, + 0 + ], + "23": [ + "2024-06-25 2 05:45:00 00,FF88,80", + 8, + 111533, + 0 + ], + "24": [ + "2024-06-25 2 06:00:00 00,FF88,80", + 8, + 111547, + 0 + ], + "25": [ + "2024-06-25 2 06:15:00 00,FF88,80", + 8, + 111558, + 0 + ], + "26": [ + "2024-06-25 2 06:30:00 00,FF88,80", + 8, + 111567, + 0 + ], + "27": [ + "2024-06-25 2 06:45:00 00,FF88,80", + 8, + 111578, + 0 + ], + "28": [ + "2024-06-25 2 07:00:00 00,FF88,80", + 8, + 111589, + 0 + ], + "29": [ + "2024-06-25 2 07:15:00 00,FF88,80", + 8, + 111598, + 0 + ], + "30": [ + "2024-06-25 2 07:30:00 00,FF88,80", + 8, + 111609, + 0 + ], + "31": [ + "2024-06-25 2 07:45:00 00,FF88,80", + 8, + 111618, + 0 + ], + "32": [ + "2024-06-25 2 08:00:00 00,FF88,80", + 8, + 111628, + 0 + ], + "33": [ + "2024-06-25 2 08:15:00 00,FF88,80", + 8, + 111636, + 0 + ], + "34": [ + "2024-06-25 2 08:30:00 00,FF88,80", + 8, + 111649, + 0 + ], + "35": [ + "2024-06-25 2 08:45:00 00,FF88,80", + 8, + 111660, + 0 + ], + "36": [ + "2024-06-25 2 09:00:00 00,FF88,80", + 8, + 111672, + 0 + ], + "37": [ + "2024-06-25 2 09:15:00 00,FF88,80", + 8, + 111686, + 0 + ], + "38": [ + "2024-06-25 2 09:30:00 00,FF88,80", + 8, + 111701, + 0 + ], + "39": [ + "2024-06-25 2 09:45:00 00,FF88,80", + 8, + 111713, + 0 + ], + "40": [ + "2024-06-25 2 10:00:00 00,FF88,80", + 8, + 111719, + 0 + ], + "41": [ + "2024-06-25 2 10:15:00 00,FF88,80", + 8, + 111726, + 0 + ], + "42": [ + "2024-06-25 2 10:30:00 00,FF88,80", + 8, + 111732, + 0 + ], + "43": [ + "2024-06-25 2 10:45:00 00,FF88,80", + 8, + 111739, + 0 + ], + "44": [ + "2024-06-25 2 11:00:00 00,FF88,80", + 8, + 111745, + 0 + ], + "45": [ + "2024-06-25 2 11:15:00 00,FF88,80", + 8, + 111750, + 0 + ], + "46": [ + "2024-06-25 2 11:30:00 00,FF88,80", + 8, + 111753, + 0 + ], + "47": [ + "2024-06-25 2 11:45:00 00,FF88,80", + 8, + 111758, + 0 + ], + "48": [ + "2024-06-25 2 12:00:00 00,FF88,80", + 8, + 111763, + 0 + ], + "49": [ + "2024-06-25 2 12:15:00 00,FF88,80", + 8, + 111768, + 0 + ], + "50": [ + "2024-06-25 2 12:30:00 00,FF88,80", + 8, + 111775, + 0 + ], + "51": [ + "2024-06-25 2 12:45:00 00,FF88,80", + 8, + 111780, + 0 + ], + "52": [ + "2024-06-25 2 13:00:00 00,FF88,80", + 8, + 111785, + 0 + ], + "53": [ + "2024-06-25 2 13:15:00 00,FF88,80", + 8, + 111791, + 0 + ], + "54": [ + "2024-06-25 2 13:30:00 00,FF88,80", + 8, + 111796, + 0 + ], + "55": [ + "2024-06-25 2 13:45:00 00,FF88,80", + 8, + 111799, + 0 + ], + "56": [ + "2024-06-25 2 14:00:00 00,FF88,80", + 8, + 111802, + 0 + ], + "57": [ + "2024-06-25 2 14:15:00 00,FF88,80", + 8, + 111807, + 0 + ], + "58": [ + "2024-06-25 2 14:30:00 00,FF88,80", + 8, + 111814, + 0 + ], + "59": [ + "2024-06-25 2 14:45:00 00,FF88,80", + 8, + 111817, + 0 + ], + "60": [ + "2024-06-25 2 15:00:00 00,FF88,80", + 8, + 111824, + 0 + ], + "61": [ + "2024-06-25 2 15:15:00 00,FF88,80", + 8, + 111827, + 0 + ], + "62": [ + "2024-06-25 2 15:30:00 00,FF88,80", + 8, + 111831, + 0 + ], + "63": [ + "2024-06-25 2 15:45:00 00,FF88,80", + 8, + 111835, + 0 + ], + "64": [ + "2024-06-25 2 16:00:00 00,FF88,80", + 8, + 111840, + 0 + ], + "65": [ + "2024-06-25 2 16:15:00 00,FF88,80", + 8, + 111843, + 0 + ], + "66": [ + "2024-06-25 2 16:30:00 00,FF88,80", + 8, + 111847, + 0 + ], + "67": [ + "2024-06-25 2 16:45:00 00,FF88,80", + 8, + 111851, + 0 + ], + "68": [ + "2024-06-25 2 17:00:00 00,FF88,80", + 8, + 111861, + 0 + ], + "69": [ + "2024-06-25 2 17:15:00 00,FF88,80", + 8, + 111869, + 0 + ], + "70": [ + "2024-06-25 2 17:30:00 00,FF88,80", + 8, + 111878, + 0 + ], + "71": [ + "2024-06-25 2 17:45:00 00,FF88,80", + 8, + 111892, + 0 + ], + "72": [ + "2024-06-25 2 18:00:00 00,FF88,80", + 8, + 111903, + 0 + ], + "73": [ + "2024-06-25 2 18:15:00 00,FF88,80", + 8, + 111918, + 0 + ], + "74": [ + "2024-06-25 2 18:30:00 00,FF88,80", + 8, + 111928, + 0 + ], + "75": [ + "2024-06-25 2 18:45:00 00,FF88,80", + 8, + 111938, + 0 + ], + "76": [ + "2024-06-25 2 19:00:00 00,FF88,80", + 8, + 111947, + 0 + ], + "77": [ + "2024-06-25 2 19:15:00 00,FF88,80", + 8, + 111961, + 0 + ], + "78": [ + "2024-06-25 2 19:30:00 00,FF88,80", + 8, + 111969, + 0 + ], + "79": [ + "2024-06-25 2 19:45:00 00,FF88,80", + 8, + 111981, + 0 + ], + "80": [ + "2024-06-25 2 20:00:00 00,FF88,80", + 8, + 111989, + 0 + ], + "81": [ + "2024-06-25 2 20:15:00 00,FF88,80", + 8, + 111997, + 0 + ], + "82": [ + "2024-06-25 2 20:30:00 00,FF88,80", + 8, + 112009, + 0 + ], + "83": [ + "2024-06-25 2 20:45:00 00,FF88,80", + 8, + 112019, + 0 + ], + "84": [ + "2024-06-25 2 21:00:00 00,FF88,80", + 8, + 112030, + 0 + ], + "85": [ + "2024-06-25 2 21:15:00 00,FF88,80", + 8, + 112040, + 0 + ], + "86": [ + "2024-06-25 2 21:30:00 00,FF88,80", + 8, + 112051, + 0 + ], + "87": [ + "2024-06-25 2 21:45:00 00,FF88,80", + 8, + 112065, + 0 + ], + "88": [ + "2024-06-25 2 22:00:00 00,FF88,80", + 8, + 112079, + 0 + ], + "89": [ + "2024-06-25 2 22:15:00 00,FF88,80", + 8, + 112088, + 0 + ], + "90": [ + "2024-06-25 2 22:30:00 00,FF88,80", + 8, + 112097, + 0 + ], + "91": [ + "2024-06-25 2 22:45:00 00,FF88,80", + 8, + 112110, + 0 + ], + "92": [ + "2024-06-25 2 23:00:00 00,FF88,80", + 8, + 112116, + 0 + ], + "93": [ + "2024-06-25 2 23:15:00 00,FF88,80", + 8, + 112122, + 0 + ], + "94": [ + "2024-06-25 2 23:30:00 00,FF88,80", + 8, + 112125, + 0 + ], + "95": [ + "2024-06-25 2 23:45:00 00,FF88,80", + 8, + 112131, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "1": [ + "2024-06-25 2 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "2": [ + "2024-06-25 2 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "3": [ + "2024-06-25 2 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "4": [ + "2024-06-25 2 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "5": [ + "2024-06-25 2 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "6": [ + "2024-06-25 2 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "7": [ + "2024-06-25 2 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "8": [ + "2024-06-25 2 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "9": [ + "2024-06-25 2 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "10": [ + "2024-06-25 2 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "11": [ + "2024-06-25 2 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "12": [ + "2024-06-25 2 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "13": [ + "2024-06-25 2 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "14": [ + "2024-06-25 2 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "15": [ + "2024-06-25 2 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "16": [ + "2024-06-25 2 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "17": [ + "2024-06-25 2 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "18": [ + "2024-06-25 2 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "19": [ + "2024-06-25 2 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "20": [ + "2024-06-25 2 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "21": [ + "2024-06-25 2 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "22": [ + "2024-06-25 2 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "23": [ + "2024-06-25 2 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "25": [ + "2024-06-25 2 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "26": [ + "2024-06-25 2 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "27": [ + "2024-06-25 2 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "28": [ + "2024-06-25 2 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "29": [ + "2024-06-25 2 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "30": [ + "2024-06-25 2 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "31": [ + "2024-06-25 2 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "32": [ + "2024-06-25 2 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "33": [ + "2024-06-25 2 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "34": [ + "2024-06-25 2 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "35": [ + "2024-06-25 2 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "36": [ + "2024-06-25 2 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "37": [ + "2024-06-25 2 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "38": [ + "2024-06-25 2 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "39": [ + "2024-06-25 2 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "40": [ + "2024-06-25 2 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "41": [ + "2024-06-25 2 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "42": [ + "2024-06-25 2 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "43": [ + "2024-06-25 2 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "44": [ + "2024-06-25 2 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "45": [ + "2024-06-25 2 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "46": [ + "2024-06-25 2 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "47": [ + "2024-06-25 2 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "48": [ + "2024-06-25 2 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "49": [ + "2024-06-25 2 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "50": [ + "2024-06-25 2 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "51": [ + "2024-06-25 2 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "52": [ + "2024-06-25 2 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "53": [ + "2024-06-25 2 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "54": [ + "2024-06-25 2 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "55": [ + "2024-06-25 2 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "56": [ + "2024-06-25 2 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "57": [ + "2024-06-25 2 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "58": [ + "2024-06-25 2 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "59": [ + "2024-06-25 2 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "60": [ + "2024-06-25 2 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "61": [ + "2024-06-25 2 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "62": [ + "2024-06-25 2 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "63": [ + "2024-06-25 2 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "64": [ + "2024-06-25 2 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "65": [ + "2024-06-25 2 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "66": [ + "2024-06-25 2 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "67": [ + "2024-06-25 2 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "68": [ + "2024-06-25 2 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "69": [ + "2024-06-25 2 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "70": [ + "2024-06-25 2 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "71": [ + "2024-06-25 2 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "72": [ + "2024-06-25 2 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "73": [ + "2024-06-25 2 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "74": [ + "2024-06-25 2 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "75": [ + "2024-06-25 2 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "76": [ + "2024-06-25 2 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "77": [ + "2024-06-25 2 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "78": [ + "2024-06-25 2 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "79": [ + "2024-06-25 2 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "80": [ + "2024-06-25 2 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "81": [ + "2024-06-25 2 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "82": [ + "2024-06-25 2 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "83": [ + "2024-06-25 2 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "84": [ + "2024-06-25 2 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "85": [ + "2024-06-25 2 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "86": [ + "2024-06-25 2 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "87": [ + "2024-06-25 2 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "88": [ + "2024-06-25 2 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "89": [ + "2024-06-25 2 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "90": [ + "2024-06-25 2 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "91": [ + "2024-06-25 2 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "92": [ + "2024-06-25 2 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "93": [ + "2024-06-25 2 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "94": [ + "2024-06-25 2 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "95": [ + "2024-06-25 2 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 353196, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 353196, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 0, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 16, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 17, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 224, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 227, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 223, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 302, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 35, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 72, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 64, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 225, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 224, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 226, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 9, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 2, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 3, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-26 1 10:37:00 00,FF88,80", + 73, + 84 + ], + "1": [ + "2025-05-08 4 09:37:00 00,FF88,80", + 80, + 87 + ], + "2": [ + "2025-05-12 1 09:37:00 00,FF88,80", + 72, + 8 + ], + "3": [ + "2025-05-13 2 23:37:00 00,FF88,80", + 71, + 16 + ], + "4": [ + "2025-05-23 5 09:37:00 00,FF88,80", + 73, + 66 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:46:11.988843", + "pos": 8, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:46:00", + "connection_status": true, + "connection_end": "2025-06-01 03:46:05", + "connection_consume": 5.1, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025030100008", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025030100008", + "actual_time": "2025-06-01 03:46:06.826648", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:46:06 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:46:06", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:46:09.365206", + "getProfile_end_time": "2025-06-01 03:46:09.813745", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 232987, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 247882, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 262730, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 277513, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 284731, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 291999, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 299635, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 314847, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 330396, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 337867, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 345211, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 352267, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 218619, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 219063, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 219654, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 220121, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 220508, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 221007, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 221499, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 221998, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 222363, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 222919, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 223285, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 223897, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 224400, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 224842, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 225305, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 225752, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 226353, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 226934, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 227566, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 227982, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 228529, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 229152, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 229763, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 230171, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 230616, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 230986, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 231515, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 231875, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 232349, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 232708, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 233286, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 233903, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 234493, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 234915, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 235401, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 236024, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 236612, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 237197, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 237696, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 238115, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 238488, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 239010, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 239486, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 239866, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 240345, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 240733, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 241361, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 241972, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 242431, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 243035, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 243583, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 244157, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 244527, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 245106, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 245474, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 245999, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 246473, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 246854, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 247222, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 247589, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 248182, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 248648, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 249175, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 249644, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 250241, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 250816, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 251345, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 251826, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 252310, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 252783, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 253311, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 253692, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 254228, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 254771, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 255131, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 255630, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 256148, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 256531, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 256887, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 257441, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 257961, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 258551, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 259159, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 259547, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 260043, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 260496, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 260984, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 261512, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 261917, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 262308, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 262673, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 263062, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 263327, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 263576, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 263855, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 264071, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 264335, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 264590, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 264762, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 265002, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 265270, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 265472, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 265818, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 266068, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 266348, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 266519, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 266710, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 267024, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 267283, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 267435, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 267649, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 267997, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 268273, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 268456, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 268611, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 268792, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 269033, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 269320, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 269560, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 269847, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 270168, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 270429, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 270641, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 270845, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 271055, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 271218, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 271544, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 271878, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 272124, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 272460, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 272736, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 273024, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 273264, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 273450, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 273693, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 273996, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 274309, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 274621, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 274841, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 275066, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 275382, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 275524, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 275667, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 275884, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 276142, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 276313, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 276547, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 276821, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 277155, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 277372, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 277719, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 277902, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 278103, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 278290, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 278486, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 278664, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 278984, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 279177, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 279359, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 279537, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 279733, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 279895, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 280212, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 280382, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 280661, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 280989, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 281201, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 281386, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 281623, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 281842, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 282062, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 282239, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 282491, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 282801, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 283074, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 283307, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 283598, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 283764, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 284092, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 284260, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 284441, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 284694, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 284982, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 285424, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 285898, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 286430, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 287043, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 287611, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 288129, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 288723, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 289159, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 289553, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 289975, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 290505, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 290937, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 291325, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 291821, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 292338, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 292829, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 293387, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 293961, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 294537, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 295063, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 295463, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 295925, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 296527, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 297092, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 297550, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 298049, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 298452, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 299006, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 299507, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 299996, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 300618, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 301104, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 301621, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 302154, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 302730, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 303266, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 303677, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 304282, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 304762, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 305181, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 305595, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 306068, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 306527, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 306924, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 307514, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 307938, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 308314, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 308879, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 309315, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 309814, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 310232, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 310596, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 311093, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 311540, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 312020, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 312495, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 312951, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 313444, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 313874, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 314233, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 314710, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 315138, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 315512, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 316119, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 316555, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 317049, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 317556, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 317931, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 318362, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 318779, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 319165, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 319619, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 320126, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 320573, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 321116, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 321539, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 322102, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 322672, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 323263, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 323669, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 324192, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 324583, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 325177, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 325732, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 326238, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 326664, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 327234, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 327666, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 328116, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 328750, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 329091, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 329406, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 329707, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 329850, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 330129, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 330479, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 330821, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 331145, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 331334, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 331628, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 331813, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 332003, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 332268, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 332526, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 332766, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 333079, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 333292, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 333451, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 333771, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 334003, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 334343, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 334572, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 334806, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 335127, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 335274, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 335444, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 335770, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 335975, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 336272, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 336519, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 336799, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 337015, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 337203, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 337434, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 337734, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 338036, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 338323, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 338527, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 338792, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 339053, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 339201, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 339371, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 339719, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 340070, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 340331, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 340641, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 340975, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 341237, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 341460, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 341681, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 342023, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 342177, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 342400, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 342641, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 342851, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 343195, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 343471, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 343676, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 343853, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 344137, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 344315, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 344631, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 344899, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 345045, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 345228, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 345562, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 345784, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 345968, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 346170, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 346422, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 346659, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 346878, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 347021, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 347231, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 347564, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 347788, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 348138, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 348306, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 348535, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 348833, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 349056, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 349388, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 349572, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 349897, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 350103, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 350417, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 350699, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 350873, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 351136, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 351342, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 351526, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 351819, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:46:22.102049", + "reading_end_time": "2025-06-01 03:46:38.547861", + "reading_consume": 16.831019, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 218025, + 0 + ], + "1": [ + "2024-06-04 2 00:15:00 00,FF88,80", + 8, + 218025, + 0 + ], + "2": [ + "2024-06-04 2 00:30:00 00,FF88,80", + 8, + 218026, + 0 + ], + "3": [ + "2024-06-04 2 00:45:00 00,FF88,80", + 8, + 218026, + 0 + ], + "4": [ + "2024-06-04 2 01:00:00 00,FF88,80", + 8, + 218026, + 0 + ], + "5": [ + "2024-06-04 2 01:15:00 00,FF88,80", + 8, + 218027, + 0 + ], + "6": [ + "2024-06-04 2 01:30:00 00,FF88,80", + 8, + 218028, + 0 + ], + "7": [ + "2024-06-04 2 01:45:00 00,FF88,80", + 8, + 218028, + 0 + ], + "8": [ + "2024-06-04 2 02:00:00 00,FF88,80", + 8, + 218029, + 0 + ], + "9": [ + "2024-06-04 2 02:15:00 00,FF88,80", + 8, + 218029, + 0 + ], + "10": [ + "2024-06-04 2 02:30:00 00,FF88,80", + 8, + 218029, + 0 + ], + "11": [ + "2024-06-04 2 02:45:00 00,FF88,80", + 8, + 218029, + 0 + ], + "12": [ + "2024-06-04 2 03:00:00 00,FF88,80", + 8, + 218029, + 0 + ], + "13": [ + "2024-06-04 2 03:15:00 00,FF88,80", + 8, + 218029, + 0 + ], + "14": [ + "2024-06-04 2 03:30:00 00,FF88,80", + 8, + 218030, + 0 + ], + "15": [ + "2024-06-04 2 03:45:00 00,FF88,80", + 8, + 218031, + 0 + ], + "16": [ + "2024-06-04 2 04:00:00 00,FF88,80", + 8, + 218032, + 0 + ], + "17": [ + "2024-06-04 2 04:15:00 00,FF88,80", + 8, + 218033, + 0 + ], + "18": [ + "2024-06-04 2 04:30:00 00,FF88,80", + 8, + 218033, + 0 + ], + "19": [ + "2024-06-04 2 04:45:00 00,FF88,80", + 8, + 218034, + 0 + ], + "20": [ + "2024-06-04 2 05:00:00 00,FF88,80", + 8, + 218034, + 0 + ], + "21": [ + "2024-06-04 2 05:15:00 00,FF88,80", + 8, + 218035, + 0 + ], + "22": [ + "2024-06-04 2 05:30:00 00,FF88,80", + 8, + 218036, + 0 + ], + "23": [ + "2024-06-04 2 05:45:00 00,FF88,80", + 8, + 218036, + 0 + ], + "24": [ + "2024-06-04 2 06:00:00 00,FF88,80", + 8, + 218041, + 0 + ], + "25": [ + "2024-06-04 2 06:15:00 00,FF88,80", + 8, + 218048, + 0 + ], + "26": [ + "2024-06-04 2 06:30:00 00,FF88,80", + 8, + 218056, + 0 + ], + "27": [ + "2024-06-04 2 06:45:00 00,FF88,80", + 8, + 218064, + 0 + ], + "28": [ + "2024-06-04 2 07:00:00 00,FF88,80", + 8, + 218069, + 0 + ], + "29": [ + "2024-06-04 2 07:15:00 00,FF88,80", + 8, + 218075, + 0 + ], + "30": [ + "2024-06-04 2 07:30:00 00,FF88,80", + 8, + 218082, + 0 + ], + "31": [ + "2024-06-04 2 07:45:00 00,FF88,80", + 8, + 218090, + 0 + ], + "32": [ + "2024-06-04 2 08:00:00 00,FF88,80", + 8, + 218097, + 0 + ], + "33": [ + "2024-06-04 2 08:15:00 00,FF88,80", + 8, + 218104, + 0 + ], + "34": [ + "2024-06-04 2 08:30:00 00,FF88,80", + 8, + 218108, + 0 + ], + "35": [ + "2024-06-04 2 08:45:00 00,FF88,80", + 8, + 218115, + 0 + ], + "36": [ + "2024-06-04 2 09:00:00 00,FF88,80", + 8, + 218123, + 0 + ], + "37": [ + "2024-06-04 2 09:15:00 00,FF88,80", + 8, + 218129, + 0 + ], + "38": [ + "2024-06-04 2 09:30:00 00,FF88,80", + 8, + 218136, + 0 + ], + "39": [ + "2024-06-04 2 09:45:00 00,FF88,80", + 8, + 218144, + 0 + ], + "40": [ + "2024-06-04 2 10:00:00 00,FF88,80", + 8, + 218148, + 0 + ], + "41": [ + "2024-06-04 2 10:15:00 00,FF88,80", + 8, + 218151, + 0 + ], + "42": [ + "2024-06-04 2 10:30:00 00,FF88,80", + 8, + 218154, + 0 + ], + "43": [ + "2024-06-04 2 10:45:00 00,FF88,80", + 8, + 218156, + 0 + ], + "44": [ + "2024-06-04 2 11:00:00 00,FF88,80", + 8, + 218159, + 0 + ], + "45": [ + "2024-06-04 2 11:15:00 00,FF88,80", + 8, + 218162, + 0 + ], + "46": [ + "2024-06-04 2 11:30:00 00,FF88,80", + 8, + 218165, + 0 + ], + "47": [ + "2024-06-04 2 11:45:00 00,FF88,80", + 8, + 218167, + 0 + ], + "48": [ + "2024-06-04 2 12:00:00 00,FF88,80", + 8, + 218171, + 0 + ], + "49": [ + "2024-06-04 2 12:15:00 00,FF88,80", + 8, + 218175, + 0 + ], + "50": [ + "2024-06-04 2 12:30:00 00,FF88,80", + 8, + 218178, + 0 + ], + "51": [ + "2024-06-04 2 12:45:00 00,FF88,80", + 8, + 218181, + 0 + ], + "52": [ + "2024-06-04 2 13:00:00 00,FF88,80", + 8, + 218184, + 0 + ], + "53": [ + "2024-06-04 2 13:15:00 00,FF88,80", + 8, + 218186, + 0 + ], + "54": [ + "2024-06-04 2 13:30:00 00,FF88,80", + 8, + 218188, + 0 + ], + "55": [ + "2024-06-04 2 13:45:00 00,FF88,80", + 8, + 218191, + 0 + ], + "56": [ + "2024-06-04 2 14:00:00 00,FF88,80", + 8, + 218194, + 0 + ], + "57": [ + "2024-06-04 2 14:15:00 00,FF88,80", + 8, + 218198, + 0 + ], + "58": [ + "2024-06-04 2 14:30:00 00,FF88,80", + 8, + 218202, + 0 + ], + "59": [ + "2024-06-04 2 14:45:00 00,FF88,80", + 8, + 218205, + 0 + ], + "60": [ + "2024-06-04 2 15:00:00 00,FF88,80", + 8, + 218208, + 0 + ], + "61": [ + "2024-06-04 2 15:15:00 00,FF88,80", + 8, + 218209, + 0 + ], + "62": [ + "2024-06-04 2 15:30:00 00,FF88,80", + 8, + 218212, + 0 + ], + "63": [ + "2024-06-04 2 15:45:00 00,FF88,80", + 8, + 218214, + 0 + ], + "64": [ + "2024-06-04 2 16:00:00 00,FF88,80", + 8, + 218217, + 0 + ], + "65": [ + "2024-06-04 2 16:15:00 00,FF88,80", + 8, + 218221, + 0 + ], + "66": [ + "2024-06-04 2 16:30:00 00,FF88,80", + 8, + 218225, + 0 + ], + "67": [ + "2024-06-04 2 16:45:00 00,FF88,80", + 8, + 218228, + 0 + ], + "68": [ + "2024-06-04 2 17:00:00 00,FF88,80", + 8, + 218236, + 0 + ], + "69": [ + "2024-06-04 2 17:15:00 00,FF88,80", + 8, + 218244, + 0 + ], + "70": [ + "2024-06-04 2 17:30:00 00,FF88,80", + 8, + 218250, + 0 + ], + "71": [ + "2024-06-04 2 17:45:00 00,FF88,80", + 8, + 218257, + 0 + ], + "72": [ + "2024-06-04 2 18:00:00 00,FF88,80", + 8, + 218262, + 0 + ], + "73": [ + "2024-06-04 2 18:15:00 00,FF88,80", + 8, + 218267, + 0 + ], + "74": [ + "2024-06-04 2 18:30:00 00,FF88,80", + 8, + 218275, + 0 + ], + "75": [ + "2024-06-04 2 18:45:00 00,FF88,80", + 8, + 218282, + 0 + ], + "76": [ + "2024-06-04 2 19:00:00 00,FF88,80", + 8, + 218287, + 0 + ], + "77": [ + "2024-06-04 2 19:15:00 00,FF88,80", + 8, + 218296, + 0 + ], + "78": [ + "2024-06-04 2 19:30:00 00,FF88,80", + 8, + 218300, + 0 + ], + "79": [ + "2024-06-04 2 19:45:00 00,FF88,80", + 8, + 218308, + 0 + ], + "80": [ + "2024-06-04 2 20:00:00 00,FF88,80", + 8, + 218314, + 0 + ], + "81": [ + "2024-06-04 2 20:15:00 00,FF88,80", + 8, + 218320, + 0 + ], + "82": [ + "2024-06-04 2 20:30:00 00,FF88,80", + 8, + 218326, + 0 + ], + "83": [ + "2024-06-04 2 20:45:00 00,FF88,80", + 8, + 218333, + 0 + ], + "84": [ + "2024-06-04 2 21:00:00 00,FF88,80", + 8, + 218340, + 0 + ], + "85": [ + "2024-06-04 2 21:15:00 00,FF88,80", + 8, + 218348, + 0 + ], + "86": [ + "2024-06-04 2 21:30:00 00,FF88,80", + 8, + 218355, + 0 + ], + "87": [ + "2024-06-04 2 21:45:00 00,FF88,80", + 8, + 218362, + 0 + ], + "88": [ + "2024-06-04 2 22:00:00 00,FF88,80", + 8, + 218370, + 0 + ], + "89": [ + "2024-06-04 2 22:15:00 00,FF88,80", + 8, + 218377, + 0 + ], + "90": [ + "2024-06-04 2 22:30:00 00,FF88,80", + 8, + 218383, + 0 + ], + "91": [ + "2024-06-04 2 22:45:00 00,FF88,80", + 8, + 218391, + 0 + ], + "92": [ + "2024-06-04 2 23:00:00 00,FF88,80", + 8, + 218393, + 0 + ], + "93": [ + "2024-06-04 2 23:15:00 00,FF88,80", + 8, + 218395, + 0 + ], + "94": [ + "2024-06-04 2 23:30:00 00,FF88,80", + 8, + 218398, + 0 + ], + "95": [ + "2024-06-04 2 23:45:00 00,FF88,80", + 8, + 218402, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "1": [ + "2024-06-04 2 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "2": [ + "2024-06-04 2 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "4": [ + "2024-06-04 2 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "5": [ + "2024-06-04 2 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "6": [ + "2024-06-04 2 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "7": [ + "2024-06-04 2 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "8": [ + "2024-06-04 2 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "9": [ + "2024-06-04 2 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "10": [ + "2024-06-04 2 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "11": [ + "2024-06-04 2 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "12": [ + "2024-06-04 2 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "13": [ + "2024-06-04 2 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "14": [ + "2024-06-04 2 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "15": [ + "2024-06-04 2 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "16": [ + "2024-06-04 2 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "17": [ + "2024-06-04 2 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "18": [ + "2024-06-04 2 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "19": [ + "2024-06-04 2 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "20": [ + "2024-06-04 2 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "21": [ + "2024-06-04 2 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "22": [ + "2024-06-04 2 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "23": [ + "2024-06-04 2 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "24": [ + "2024-06-04 2 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "25": [ + "2024-06-04 2 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "26": [ + "2024-06-04 2 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "27": [ + "2024-06-04 2 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "28": [ + "2024-06-04 2 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "29": [ + "2024-06-04 2 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "30": [ + "2024-06-04 2 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "31": [ + "2024-06-04 2 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "32": [ + "2024-06-04 2 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "33": [ + "2024-06-04 2 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "34": [ + "2024-06-04 2 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "35": [ + "2024-06-04 2 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "36": [ + "2024-06-04 2 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "37": [ + "2024-06-04 2 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "38": [ + "2024-06-04 2 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "39": [ + "2024-06-04 2 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "40": [ + "2024-06-04 2 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "41": [ + "2024-06-04 2 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "42": [ + "2024-06-04 2 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "43": [ + "2024-06-04 2 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "44": [ + "2024-06-04 2 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "45": [ + "2024-06-04 2 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "46": [ + "2024-06-04 2 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "47": [ + "2024-06-04 2 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "48": [ + "2024-06-04 2 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "49": [ + "2024-06-04 2 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "50": [ + "2024-06-04 2 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "51": [ + "2024-06-04 2 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "52": [ + "2024-06-04 2 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "53": [ + "2024-06-04 2 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "54": [ + "2024-06-04 2 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "55": [ + "2024-06-04 2 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "56": [ + "2024-06-04 2 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "57": [ + "2024-06-04 2 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "58": [ + "2024-06-04 2 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "59": [ + "2024-06-04 2 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "60": [ + "2024-06-04 2 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "61": [ + "2024-06-04 2 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "62": [ + "2024-06-04 2 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "63": [ + "2024-06-04 2 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "64": [ + "2024-06-04 2 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "65": [ + "2024-06-04 2 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "66": [ + "2024-06-04 2 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "67": [ + "2024-06-04 2 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "68": [ + "2024-06-04 2 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "69": [ + "2024-06-04 2 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "70": [ + "2024-06-04 2 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "71": [ + "2024-06-04 2 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "72": [ + "2024-06-04 2 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "73": [ + "2024-06-04 2 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "74": [ + "2024-06-04 2 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "75": [ + "2024-06-04 2 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "76": [ + "2024-06-04 2 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "77": [ + "2024-06-04 2 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "78": [ + "2024-06-04 2 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "79": [ + "2024-06-04 2 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "80": [ + "2024-06-04 2 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "81": [ + "2024-06-04 2 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "82": [ + "2024-06-04 2 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "83": [ + "2024-06-04 2 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "84": [ + "2024-06-04 2 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "85": [ + "2024-06-04 2 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "86": [ + "2024-06-04 2 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "87": [ + "2024-06-04 2 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "88": [ + "2024-06-04 2 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "89": [ + "2024-06-04 2 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "90": [ + "2024-06-04 2 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "91": [ + "2024-06-04 2 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "92": [ + "2024-06-04 2 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "93": [ + "2024-06-04 2 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "94": [ + "2024-06-04 2 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "95": [ + "2024-06-04 2 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 351819, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 351819, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 29, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 38, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 31, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 222, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 217, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 220, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 315, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 65, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 26, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 88, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 221, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 221, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 32, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 30, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 33, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-11 0 02:46:00 00,FF88,80", + 73, + 4 + ], + "1": [ + "2025-05-25 0 23:46:00 00,FF88,80", + 74, + 27 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + } +] \ No newline at end of file diff --git a/docs/testdata/Draco-01_DCPP_DailyCheck.json b/docs/testdata/Draco-01_DCPP_DailyCheck.json new file mode 100644 index 0000000..3f6d1cb --- /dev/null +++ b/docs/testdata/Draco-01_DCPP_DailyCheck.json @@ -0,0 +1,79415 @@ +[ + { + "_id": "2025-06-01 03:12:04.579245", + "pos": 1, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:12:00", + "connection_status": true, + "connection_end": "2025-06-01 03:12:04", + "connection_consume": 4.9, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025040100001", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025040100001", + "actual_time": "2025-06-01 03:12:11.291238", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:12:11 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:12:11", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:12:12.955197", + "getProfile_end_time": "2025-06-01 03:12:13.392497", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 179623, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 196265, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 211860, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 228313, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 236200, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 244478, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 252455, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 269558, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 286430, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 294389, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 302533, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 311427, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 165172, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 165819, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 166208, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 166714, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 167359, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 167852, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 168308, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 168706, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 169354, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 169848, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 170335, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 170971, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 171560, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 172147, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 172791, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 173450, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 174122, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 174498, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 175008, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 175481, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 175976, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 176598, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 177249, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 177705, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 178267, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 178655, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 179216, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 179702, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 180246, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 180680, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 181182, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 181618, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 182160, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 182649, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 183243, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 183788, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 184285, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 184777, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 185291, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 185671, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 186117, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 186623, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 187166, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 187812, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 188358, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 188876, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 189551, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 190125, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 190646, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 191206, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 191691, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 192178, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 192731, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 193161, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 193673, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 194072, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 194584, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 195073, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 195657, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 196104, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 196486, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 196888, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 197393, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 197980, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 198653, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 199165, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 199830, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 200363, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 200907, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 201545, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 202035, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 202502, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 202901, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 203534, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 204138, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 204808, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 205355, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 206012, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 206670, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 207281, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 207765, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 208294, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 208962, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 209373, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 209895, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 210358, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 210761, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 211361, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 211883, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 212374, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 212805, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 213203, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 213475, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 213805, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 214100, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 214283, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 214454, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 214765, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 215006, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 215187, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 215397, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 215584, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 215870, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 216128, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 216393, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 216560, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 216722, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 217031, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 217406, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 217755, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 218068, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 218301, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 218658, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 218832, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 219107, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 219411, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 219645, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 219983, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 220143, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 220391, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 220655, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 220806, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 221086, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 221264, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 221610, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 221872, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 222022, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 222302, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 222664, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 222825, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 223118, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 223317, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 223626, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 223853, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 224065, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 224227, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 224416, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 224753, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 224966, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 225311, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 225685, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 225948, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 226305, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 226593, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 226943, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 227293, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 227506, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 227669, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 227928, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 228225, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 228581, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 228847, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 229033, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 229242, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 229494, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 229664, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 230038, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 230204, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 230566, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 230838, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 231198, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 231522, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 231673, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 231838, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 232165, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 232528, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 232823, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 233143, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 233306, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 233482, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 233716, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 233866, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 234056, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 234311, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 234643, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 235014, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 235312, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 235533, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 235779, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 236098, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 236258, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 236490, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 236854, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 237489, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 237997, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 238619, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 239035, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 239424, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 239939, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 240558, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 241112, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 241692, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 242069, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 242590, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 243238, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 243863, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 244435, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 245074, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 245622, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 246091, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 246680, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 247266, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 247710, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 248280, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 248895, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 249427, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 249927, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 250470, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 250910, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 251543, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 252022, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 252577, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 253036, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 253554, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 253964, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 254591, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 254993, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 255556, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 256148, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 256802, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 257472, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 257908, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 258377, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 258914, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 259354, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 259961, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 260569, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 260955, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 261430, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 261852, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 262461, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 263036, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 263533, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 264114, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 264510, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 265154, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 265594, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 266235, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 266848, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 267332, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 267785, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 268390, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 269013, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 269490, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 270142, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 270644, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 271038, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 271673, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 272343, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 272849, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 273449, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 273959, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 274511, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 274952, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 275543, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 275994, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 276460, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 276999, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 277433, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 277900, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 278329, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 278945, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 279436, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 280107, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 280756, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 281423, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 281888, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 282539, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 283077, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 283552, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 283943, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 284564, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 285218, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 285527, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 285766, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 286017, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 286243, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 286411, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 286778, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 286964, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 287241, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 287555, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 287707, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 287865, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 288226, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 288579, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 288802, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 288961, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 289253, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 289473, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 289629, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 290002, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 290175, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 290378, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 290742, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 291117, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 291371, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 291635, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 291872, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 292157, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 292462, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 292644, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 292976, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 293285, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 293535, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 293773, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 294078, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 294268, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 294561, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 294803, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 295093, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 295450, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 295671, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 296028, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 296238, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 296600, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 296904, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 297279, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 297630, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 297930, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 298121, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 298474, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 298801, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 299154, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 299385, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 299752, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 299904, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 300248, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 300569, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 300877, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 301038, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 301260, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 301486, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 301831, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 302191, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 302545, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 302773, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 303103, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 303408, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 303691, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 303940, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 304291, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 304518, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 304767, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 304927, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 305265, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 305437, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 305687, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 305880, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 306059, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 306343, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 306504, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 306734, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 307052, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 307354, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 307649, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 308005, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 308305, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 308642, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 308803, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 309175, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 309390, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 309693, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 309892, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 310110, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:12:22.716904", + "reading_end_time": "2025-06-01 03:12:40.497608", + "reading_consume": 17.524969, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 164698, + 0 + ], + "1": [ + "2024-12-04 3 00:15:00 00,FF88,80", + 8, + 164698, + 0 + ], + "2": [ + "2024-12-04 3 00:30:00 00,FF88,80", + 8, + 164698, + 0 + ], + "3": [ + "2024-12-04 3 00:45:00 00,FF88,80", + 8, + 164698, + 0 + ], + "4": [ + "2024-12-04 3 01:00:00 00,FF88,80", + 8, + 164699, + 0 + ], + "5": [ + "2024-12-04 3 01:15:00 00,FF88,80", + 8, + 164700, + 0 + ], + "6": [ + "2024-12-04 3 01:30:00 00,FF88,80", + 8, + 164700, + 0 + ], + "7": [ + "2024-12-04 3 01:45:00 00,FF88,80", + 8, + 164700, + 0 + ], + "8": [ + "2024-12-04 3 02:00:00 00,FF88,80", + 8, + 164701, + 0 + ], + "9": [ + "2024-12-04 3 02:15:00 00,FF88,80", + 8, + 164702, + 0 + ], + "10": [ + "2024-12-04 3 02:30:00 00,FF88,80", + 8, + 164703, + 0 + ], + "11": [ + "2024-12-04 3 02:45:00 00,FF88,80", + 8, + 164703, + 0 + ], + "12": [ + "2024-12-04 3 03:00:00 00,FF88,80", + 8, + 164703, + 0 + ], + "13": [ + "2024-12-04 3 03:15:00 00,FF88,80", + 8, + 164704, + 0 + ], + "14": [ + "2024-12-04 3 03:30:00 00,FF88,80", + 8, + 164704, + 0 + ], + "15": [ + "2024-12-04 3 03:45:00 00,FF88,80", + 8, + 164704, + 0 + ], + "16": [ + "2024-12-04 3 04:00:00 00,FF88,80", + 8, + 164705, + 0 + ], + "17": [ + "2024-12-04 3 04:15:00 00,FF88,80", + 8, + 164706, + 0 + ], + "18": [ + "2024-12-04 3 04:30:00 00,FF88,80", + 8, + 164707, + 0 + ], + "19": [ + "2024-12-04 3 04:45:00 00,FF88,80", + 8, + 164707, + 0 + ], + "20": [ + "2024-12-04 3 05:00:00 00,FF88,80", + 8, + 164707, + 0 + ], + "21": [ + "2024-12-04 3 05:15:00 00,FF88,80", + 8, + 164707, + 0 + ], + "22": [ + "2024-12-04 3 05:30:00 00,FF88,80", + 8, + 164708, + 0 + ], + "23": [ + "2024-12-04 3 05:45:00 00,FF88,80", + 8, + 164709, + 0 + ], + "24": [ + "2024-12-04 3 06:00:00 00,FF88,80", + 8, + 164717, + 0 + ], + "25": [ + "2024-12-04 3 06:15:00 00,FF88,80", + 8, + 164723, + 0 + ], + "26": [ + "2024-12-04 3 06:30:00 00,FF88,80", + 8, + 164731, + 0 + ], + "27": [ + "2024-12-04 3 06:45:00 00,FF88,80", + 8, + 164740, + 0 + ], + "28": [ + "2024-12-04 3 07:00:00 00,FF88,80", + 8, + 164748, + 0 + ], + "29": [ + "2024-12-04 3 07:15:00 00,FF88,80", + 8, + 164757, + 0 + ], + "30": [ + "2024-12-04 3 07:30:00 00,FF88,80", + 8, + 164763, + 0 + ], + "31": [ + "2024-12-04 3 07:45:00 00,FF88,80", + 8, + 164769, + 0 + ], + "32": [ + "2024-12-04 3 08:00:00 00,FF88,80", + 8, + 164775, + 0 + ], + "33": [ + "2024-12-04 3 08:15:00 00,FF88,80", + 8, + 164782, + 0 + ], + "34": [ + "2024-12-04 3 08:30:00 00,FF88,80", + 8, + 164791, + 0 + ], + "35": [ + "2024-12-04 3 08:45:00 00,FF88,80", + 8, + 164797, + 0 + ], + "36": [ + "2024-12-04 3 09:00:00 00,FF88,80", + 8, + 164806, + 0 + ], + "37": [ + "2024-12-04 3 09:15:00 00,FF88,80", + 8, + 164813, + 0 + ], + "38": [ + "2024-12-04 3 09:30:00 00,FF88,80", + 8, + 164820, + 0 + ], + "39": [ + "2024-12-04 3 09:45:00 00,FF88,80", + 8, + 164829, + 0 + ], + "40": [ + "2024-12-04 3 10:00:00 00,FF88,80", + 8, + 164831, + 0 + ], + "41": [ + "2024-12-04 3 10:15:00 00,FF88,80", + 8, + 164833, + 0 + ], + "42": [ + "2024-12-04 3 10:30:00 00,FF88,80", + 8, + 164835, + 0 + ], + "43": [ + "2024-12-04 3 10:45:00 00,FF88,80", + 8, + 164837, + 0 + ], + "44": [ + "2024-12-04 3 11:00:00 00,FF88,80", + 8, + 164839, + 0 + ], + "45": [ + "2024-12-04 3 11:15:00 00,FF88,80", + 8, + 164841, + 0 + ], + "46": [ + "2024-12-04 3 11:30:00 00,FF88,80", + 8, + 164844, + 0 + ], + "47": [ + "2024-12-04 3 11:45:00 00,FF88,80", + 8, + 164848, + 0 + ], + "48": [ + "2024-12-04 3 12:00:00 00,FF88,80", + 8, + 164851, + 0 + ], + "49": [ + "2024-12-04 3 12:15:00 00,FF88,80", + 8, + 164855, + 0 + ], + "50": [ + "2024-12-04 3 12:30:00 00,FF88,80", + 8, + 164859, + 0 + ], + "51": [ + "2024-12-04 3 12:45:00 00,FF88,80", + 8, + 164863, + 0 + ], + "52": [ + "2024-12-04 3 13:00:00 00,FF88,80", + 8, + 164865, + 0 + ], + "53": [ + "2024-12-04 3 13:15:00 00,FF88,80", + 8, + 164867, + 0 + ], + "54": [ + "2024-12-04 3 13:30:00 00,FF88,80", + 8, + 164869, + 0 + ], + "55": [ + "2024-12-04 3 13:45:00 00,FF88,80", + 8, + 164873, + 0 + ], + "56": [ + "2024-12-04 3 14:00:00 00,FF88,80", + 8, + 164876, + 0 + ], + "57": [ + "2024-12-04 3 14:15:00 00,FF88,80", + 8, + 164878, + 0 + ], + "58": [ + "2024-12-04 3 14:30:00 00,FF88,80", + 8, + 164882, + 0 + ], + "59": [ + "2024-12-04 3 14:45:00 00,FF88,80", + 8, + 164885, + 0 + ], + "60": [ + "2024-12-04 3 15:00:00 00,FF88,80", + 8, + 164888, + 0 + ], + "61": [ + "2024-12-04 3 15:15:00 00,FF88,80", + 8, + 164892, + 0 + ], + "62": [ + "2024-12-04 3 15:30:00 00,FF88,80", + 8, + 164894, + 0 + ], + "63": [ + "2024-12-04 3 15:45:00 00,FF88,80", + 8, + 164898, + 0 + ], + "64": [ + "2024-12-04 3 16:00:00 00,FF88,80", + 8, + 164900, + 0 + ], + "65": [ + "2024-12-04 3 16:15:00 00,FF88,80", + 8, + 164903, + 0 + ], + "66": [ + "2024-12-04 3 16:30:00 00,FF88,80", + 8, + 164907, + 0 + ], + "67": [ + "2024-12-04 3 16:45:00 00,FF88,80", + 8, + 164909, + 0 + ], + "68": [ + "2024-12-04 3 17:00:00 00,FF88,80", + 8, + 164915, + 0 + ], + "69": [ + "2024-12-04 3 17:15:00 00,FF88,80", + 8, + 164923, + 0 + ], + "70": [ + "2024-12-04 3 17:30:00 00,FF88,80", + 8, + 164932, + 0 + ], + "71": [ + "2024-12-04 3 17:45:00 00,FF88,80", + 8, + 164938, + 0 + ], + "72": [ + "2024-12-04 3 18:00:00 00,FF88,80", + 8, + 164944, + 0 + ], + "73": [ + "2024-12-04 3 18:15:00 00,FF88,80", + 8, + 164953, + 0 + ], + "74": [ + "2024-12-04 3 18:30:00 00,FF88,80", + 8, + 164959, + 0 + ], + "75": [ + "2024-12-04 3 18:45:00 00,FF88,80", + 8, + 164968, + 0 + ], + "76": [ + "2024-12-04 3 19:00:00 00,FF88,80", + 8, + 164977, + 0 + ], + "77": [ + "2024-12-04 3 19:15:00 00,FF88,80", + 8, + 164985, + 0 + ], + "78": [ + "2024-12-04 3 19:30:00 00,FF88,80", + 8, + 164992, + 0 + ], + "79": [ + "2024-12-04 3 19:45:00 00,FF88,80", + 8, + 164998, + 0 + ], + "80": [ + "2024-12-04 3 20:00:00 00,FF88,80", + 8, + 165007, + 0 + ], + "81": [ + "2024-12-04 3 20:15:00 00,FF88,80", + 8, + 165016, + 0 + ], + "82": [ + "2024-12-04 3 20:30:00 00,FF88,80", + 8, + 165024, + 0 + ], + "83": [ + "2024-12-04 3 20:45:00 00,FF88,80", + 8, + 165030, + 0 + ], + "84": [ + "2024-12-04 3 21:00:00 00,FF88,80", + 8, + 165036, + 0 + ], + "85": [ + "2024-12-04 3 21:15:00 00,FF88,80", + 8, + 165042, + 0 + ], + "86": [ + "2024-12-04 3 21:30:00 00,FF88,80", + 8, + 165050, + 0 + ], + "87": [ + "2024-12-04 3 21:45:00 00,FF88,80", + 8, + 165055, + 0 + ], + "88": [ + "2024-12-04 3 22:00:00 00,FF88,80", + 8, + 165062, + 0 + ], + "89": [ + "2024-12-04 3 22:15:00 00,FF88,80", + 8, + 165068, + 0 + ], + "90": [ + "2024-12-04 3 22:30:00 00,FF88,80", + 8, + 165076, + 0 + ], + "91": [ + "2024-12-04 3 22:45:00 00,FF88,80", + 8, + 165082, + 0 + ], + "92": [ + "2024-12-04 3 23:00:00 00,FF88,80", + 8, + 165086, + 0 + ], + "93": [ + "2024-12-04 3 23:15:00 00,FF88,80", + 8, + 165089, + 0 + ], + "94": [ + "2024-12-04 3 23:30:00 00,FF88,80", + 8, + 165091, + 0 + ], + "95": [ + "2024-12-04 3 23:45:00 00,FF88,80", + 8, + 165094, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "1": [ + "2024-12-04 3 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "2": [ + "2024-12-04 3 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "3": [ + "2024-12-04 3 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "4": [ + "2024-12-04 3 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "5": [ + "2024-12-04 3 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "6": [ + "2024-12-04 3 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "7": [ + "2024-12-04 3 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "8": [ + "2024-12-04 3 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "9": [ + "2024-12-04 3 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "10": [ + "2024-12-04 3 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "11": [ + "2024-12-04 3 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "12": [ + "2024-12-04 3 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "13": [ + "2024-12-04 3 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "14": [ + "2024-12-04 3 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "15": [ + "2024-12-04 3 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "16": [ + "2024-12-04 3 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "17": [ + "2024-12-04 3 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "18": [ + "2024-12-04 3 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "19": [ + "2024-12-04 3 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "20": [ + "2024-12-04 3 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "21": [ + "2024-12-04 3 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "22": [ + "2024-12-04 3 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "23": [ + "2024-12-04 3 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "24": [ + "2024-12-04 3 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "25": [ + "2024-12-04 3 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "26": [ + "2024-12-04 3 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "27": [ + "2024-12-04 3 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "28": [ + "2024-12-04 3 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "29": [ + "2024-12-04 3 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "30": [ + "2024-12-04 3 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "31": [ + "2024-12-04 3 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "32": [ + "2024-12-04 3 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "33": [ + "2024-12-04 3 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "34": [ + "2024-12-04 3 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "35": [ + "2024-12-04 3 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "36": [ + "2024-12-04 3 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "37": [ + "2024-12-04 3 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "38": [ + "2024-12-04 3 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "39": [ + "2024-12-04 3 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "40": [ + "2024-12-04 3 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "41": [ + "2024-12-04 3 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "42": [ + "2024-12-04 3 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "43": [ + "2024-12-04 3 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "44": [ + "2024-12-04 3 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "45": [ + "2024-12-04 3 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "46": [ + "2024-12-04 3 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "47": [ + "2024-12-04 3 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "48": [ + "2024-12-04 3 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "49": [ + "2024-12-04 3 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "50": [ + "2024-12-04 3 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "51": [ + "2024-12-04 3 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "52": [ + "2024-12-04 3 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "53": [ + "2024-12-04 3 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "54": [ + "2024-12-04 3 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "55": [ + "2024-12-04 3 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "56": [ + "2024-12-04 3 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "57": [ + "2024-12-04 3 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "58": [ + "2024-12-04 3 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "59": [ + "2024-12-04 3 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "60": [ + "2024-12-04 3 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "61": [ + "2024-12-04 3 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "62": [ + "2024-12-04 3 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "63": [ + "2024-12-04 3 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "64": [ + "2024-12-04 3 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "65": [ + "2024-12-04 3 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "66": [ + "2024-12-04 3 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "67": [ + "2024-12-04 3 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "68": [ + "2024-12-04 3 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "69": [ + "2024-12-04 3 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "70": [ + "2024-12-04 3 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "71": [ + "2024-12-04 3 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "72": [ + "2024-12-04 3 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "73": [ + "2024-12-04 3 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "74": [ + "2024-12-04 3 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "75": [ + "2024-12-04 3 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "76": [ + "2024-12-04 3 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "77": [ + "2024-12-04 3 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "78": [ + "2024-12-04 3 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "79": [ + "2024-12-04 3 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "80": [ + "2024-12-04 3 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "81": [ + "2024-12-04 3 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "82": [ + "2024-12-04 3 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "83": [ + "2024-12-04 3 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "84": [ + "2024-12-04 3 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "85": [ + "2024-12-04 3 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "86": [ + "2024-12-04 3 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "87": [ + "2024-12-04 3 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "88": [ + "2024-12-04 3 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "89": [ + "2024-12-04 3 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "90": [ + "2024-12-04 3 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "91": [ + "2024-12-04 3 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "92": [ + "2024-12-04 3 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "93": [ + "2024-12-04 3 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "94": [ + "2024-12-04 3 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "95": [ + "2024-12-04 3 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 310110, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 310110, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 0, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 16, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 16, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 230, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 231, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 225, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 240, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 7, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 34, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 50, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 229, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 229, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 226, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 4, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 4, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 9, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-24 6 00:12:00 00,FF88,80", + 73, + 0 + ], + "1": [ + "2025-05-16 5 06:12:00 00,FF88,80", + 75, + 29 + ], + "2": [ + "2025-05-04 0 10:12:00 00,FF88,80", + 74, + 98 + ], + "3": [ + "2025-05-28 3 07:12:00 00,FF88,80", + 78, + 41 + ], + "4": [ + "2025-05-28 3 03:12:00 00,FF88,80", + 80, + 9 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:14:10.520785", + "pos": 2, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:14:00", + "connection_status": true, + "connection_end": "2025-06-01 03:14:05", + "connection_consume": 5.1, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025040100002", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025040100002", + "actual_time": "2025-06-01 03:14:06.633429", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:14:06 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:14:06", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:14:08.340374", + "getProfile_end_time": "2025-06-01 03:14:08.698643", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 157529, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 183371, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 209181, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 234595, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 246630, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 258977, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 270999, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 296970, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 322109, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 333922, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 347127, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 360283, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 133219, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 133823, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 134554, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 135402, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 136357, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 137376, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 138266, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 139020, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 139802, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 140720, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 141336, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 142183, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 143194, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 143936, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 144718, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 145308, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 146326, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 146951, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 147870, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 148729, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 149410, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 150142, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 150980, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 151729, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 152398, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 153203, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 153786, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 154432, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 155133, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 155918, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 156574, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 157163, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 158036, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 158923, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 159550, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 160472, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 161096, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 161822, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 162843, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 163692, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 164625, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 165408, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 166432, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 167203, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 168034, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 168918, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 169690, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 170537, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 171364, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 172047, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 172706, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 173517, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 174325, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 174945, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 175808, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 176750, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 177394, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 178281, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 179178, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 179774, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 180804, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 181711, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 182743, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 183575, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 184379, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 185216, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 185963, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 186938, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 187957, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 188978, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 189880, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 190882, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 191790, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 192517, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 193153, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 193778, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 194720, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 195456, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 196126, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 197153, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 198049, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 198998, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 199878, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 200545, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 201186, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 201790, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 202429, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 203044, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 204019, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 204963, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 205772, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 206531, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 207111, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 207541, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 207933, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 208488, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 208889, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 209370, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 209603, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 209983, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 210412, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 210783, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 211124, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 211589, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 211974, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 212347, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 212780, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 213220, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 213776, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 214318, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 214582, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 215100, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 215468, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 215822, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 216296, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 216541, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 217074, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 217318, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 217693, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 218049, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 218526, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 218923, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 219169, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 219660, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 220234, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 220664, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 221112, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 221682, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 222069, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 222340, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 222795, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 223255, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 223536, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 224012, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 224323, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 224628, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 225104, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 225544, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 226028, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 226323, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 226678, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 226967, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 227256, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 227633, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 227938, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 228276, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 228854, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 229385, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 229833, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 230386, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 230836, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 231264, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 231696, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 232046, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 232416, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 232971, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 233348, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 233733, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 234070, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 234418, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 234742, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 235290, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 235846, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 236339, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 236679, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 237002, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 237260, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 237806, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 238253, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 238624, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 239181, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 239620, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 240116, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 240434, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 240914, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 241447, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 241776, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 242166, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 242478, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 243019, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 243559, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 243884, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 244301, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 245199, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 246088, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 246932, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 247583, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 248188, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 248924, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 249702, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 250567, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 251372, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 252391, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 253434, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 254329, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 255160, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 256102, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 256928, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 257911, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 258619, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 259318, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 259949, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 260535, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 261535, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 262384, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 263027, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 263932, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 264568, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 265374, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 265977, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 266712, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 267714, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 268538, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 269210, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 270086, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 271034, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 271789, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 272592, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 273448, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 274431, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 275072, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 275769, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 276372, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 277084, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 277868, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 278592, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 279608, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 280260, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 281127, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 281974, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 282940, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 283588, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 284514, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 285262, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 285908, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 286544, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 287469, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 288267, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 289250, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 290236, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 291065, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 291925, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 292596, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 293450, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 294325, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 295299, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 296331, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 297173, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 297956, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 298914, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 299927, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 300794, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 301817, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 302521, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 303272, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 303994, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 304697, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 305432, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 306195, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 306817, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 307503, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 308338, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 309094, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 310089, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 310810, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 311478, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 312447, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 313103, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 313998, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 314644, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 315627, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 316300, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 317096, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 317393, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 317768, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 318230, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 318469, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 318783, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 319173, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 319608, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 320017, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 320492, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 321005, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 321376, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 321896, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 322419, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 322663, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 323173, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 323752, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 324212, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 324693, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 325240, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 325672, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 326003, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 326499, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 327067, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 327353, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 327867, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 328131, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 328595, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 328998, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 329542, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 329797, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 330122, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 330702, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 331040, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 331567, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 331820, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 332133, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 332643, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 333168, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 333732, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 334022, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 334540, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 334986, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 335317, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 335686, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 335982, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 336478, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 336966, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 337462, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 337960, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 338262, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 338541, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 339121, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 339572, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 339886, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 340166, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 340446, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 340819, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 341399, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 341707, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 342247, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 342560, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 342869, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 343190, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 343587, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 343843, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 344318, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 344785, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 345167, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 345559, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 346118, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 346354, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 346886, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 347168, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 347568, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 348014, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 348509, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 348852, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 349399, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 349652, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 349982, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 350344, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 350596, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 351158, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 351451, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 351764, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 352200, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 352702, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 353220, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 353512, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 353755, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 354082, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 354636, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:14:20.504872", + "reading_end_time": "2025-06-01 03:14:34.166330", + "reading_consume": 14.56851, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 132270, + 0 + ], + "1": [ + "2025-05-29 4 00:15:00 00,FF88,80", + 8, + 132271, + 0 + ], + "2": [ + "2025-05-29 4 00:30:00 00,FF88,80", + 8, + 132272, + 0 + ], + "3": [ + "2025-05-29 4 00:45:00 00,FF88,80", + 8, + 132273, + 0 + ], + "4": [ + "2025-05-29 4 01:00:00 00,FF88,80", + 8, + 132275, + 0 + ], + "5": [ + "2025-05-29 4 01:15:00 00,FF88,80", + 8, + 132276, + 0 + ], + "6": [ + "2025-05-29 4 01:30:00 00,FF88,80", + 8, + 132276, + 0 + ], + "7": [ + "2025-05-29 4 01:45:00 00,FF88,80", + 8, + 132276, + 0 + ], + "8": [ + "2025-05-29 4 02:00:00 00,FF88,80", + 8, + 132277, + 0 + ], + "9": [ + "2025-05-29 4 02:15:00 00,FF88,80", + 8, + 132278, + 0 + ], + "10": [ + "2025-05-29 4 02:30:00 00,FF88,80", + 8, + 132280, + 0 + ], + "11": [ + "2025-05-29 4 02:45:00 00,FF88,80", + 8, + 132280, + 0 + ], + "12": [ + "2025-05-29 4 03:00:00 00,FF88,80", + 8, + 132281, + 0 + ], + "13": [ + "2025-05-29 4 03:15:00 00,FF88,80", + 8, + 132283, + 0 + ], + "14": [ + "2025-05-29 4 03:30:00 00,FF88,80", + 8, + 132284, + 0 + ], + "15": [ + "2025-05-29 4 03:45:00 00,FF88,80", + 8, + 132286, + 0 + ], + "16": [ + "2025-05-29 4 04:00:00 00,FF88,80", + 8, + 132288, + 0 + ], + "17": [ + "2025-05-29 4 04:15:00 00,FF88,80", + 8, + 132289, + 0 + ], + "18": [ + "2025-05-29 4 04:30:00 00,FF88,80", + 8, + 132289, + 0 + ], + "19": [ + "2025-05-29 4 04:45:00 00,FF88,80", + 8, + 132289, + 0 + ], + "20": [ + "2025-05-29 4 05:00:00 00,FF88,80", + 8, + 132290, + 0 + ], + "21": [ + "2025-05-29 4 05:15:00 00,FF88,80", + 8, + 132292, + 0 + ], + "22": [ + "2025-05-29 4 05:30:00 00,FF88,80", + 8, + 132292, + 0 + ], + "23": [ + "2025-05-29 4 05:45:00 00,FF88,80", + 8, + 132294, + 0 + ], + "24": [ + "2025-05-29 4 06:00:00 00,FF88,80", + 8, + 132306, + 0 + ], + "25": [ + "2025-05-29 4 06:15:00 00,FF88,80", + 8, + 132316, + 0 + ], + "26": [ + "2025-05-29 4 06:30:00 00,FF88,80", + 8, + 132328, + 0 + ], + "27": [ + "2025-05-29 4 06:45:00 00,FF88,80", + 8, + 132340, + 0 + ], + "28": [ + "2025-05-29 4 07:00:00 00,FF88,80", + 8, + 132351, + 0 + ], + "29": [ + "2025-05-29 4 07:15:00 00,FF88,80", + 8, + 132360, + 0 + ], + "30": [ + "2025-05-29 4 07:30:00 00,FF88,80", + 8, + 132372, + 0 + ], + "31": [ + "2025-05-29 4 07:45:00 00,FF88,80", + 8, + 132382, + 0 + ], + "32": [ + "2025-05-29 4 08:00:00 00,FF88,80", + 8, + 132393, + 0 + ], + "33": [ + "2025-05-29 4 08:15:00 00,FF88,80", + 8, + 132406, + 0 + ], + "34": [ + "2025-05-29 4 08:30:00 00,FF88,80", + 8, + 132414, + 0 + ], + "35": [ + "2025-05-29 4 08:45:00 00,FF88,80", + 8, + 132427, + 0 + ], + "36": [ + "2025-05-29 4 09:00:00 00,FF88,80", + 8, + 132440, + 0 + ], + "37": [ + "2025-05-29 4 09:15:00 00,FF88,80", + 8, + 132453, + 0 + ], + "38": [ + "2025-05-29 4 09:30:00 00,FF88,80", + 8, + 132463, + 0 + ], + "39": [ + "2025-05-29 4 09:45:00 00,FF88,80", + 8, + 132475, + 0 + ], + "40": [ + "2025-05-29 4 10:00:00 00,FF88,80", + 8, + 132481, + 0 + ], + "41": [ + "2025-05-29 4 10:15:00 00,FF88,80", + 8, + 132486, + 0 + ], + "42": [ + "2025-05-29 4 10:30:00 00,FF88,80", + 8, + 132492, + 0 + ], + "43": [ + "2025-05-29 4 10:45:00 00,FF88,80", + 8, + 132497, + 0 + ], + "44": [ + "2025-05-29 4 11:00:00 00,FF88,80", + 8, + 132501, + 0 + ], + "45": [ + "2025-05-29 4 11:15:00 00,FF88,80", + 8, + 132507, + 0 + ], + "46": [ + "2025-05-29 4 11:30:00 00,FF88,80", + 8, + 132510, + 0 + ], + "47": [ + "2025-05-29 4 11:45:00 00,FF88,80", + 8, + 132514, + 0 + ], + "48": [ + "2025-05-29 4 12:00:00 00,FF88,80", + 8, + 132518, + 0 + ], + "49": [ + "2025-05-29 4 12:15:00 00,FF88,80", + 8, + 132523, + 0 + ], + "50": [ + "2025-05-29 4 12:30:00 00,FF88,80", + 8, + 132528, + 0 + ], + "51": [ + "2025-05-29 4 12:45:00 00,FF88,80", + 8, + 132535, + 0 + ], + "52": [ + "2025-05-29 4 13:00:00 00,FF88,80", + 8, + 132539, + 0 + ], + "53": [ + "2025-05-29 4 13:15:00 00,FF88,80", + 8, + 132542, + 0 + ], + "54": [ + "2025-05-29 4 13:30:00 00,FF88,80", + 8, + 132546, + 0 + ], + "55": [ + "2025-05-29 4 13:45:00 00,FF88,80", + 8, + 132550, + 0 + ], + "56": [ + "2025-05-29 4 14:00:00 00,FF88,80", + 8, + 132555, + 0 + ], + "57": [ + "2025-05-29 4 14:15:00 00,FF88,80", + 8, + 132561, + 0 + ], + "58": [ + "2025-05-29 4 14:30:00 00,FF88,80", + 8, + 132567, + 0 + ], + "59": [ + "2025-05-29 4 14:45:00 00,FF88,80", + 8, + 132573, + 0 + ], + "60": [ + "2025-05-29 4 15:00:00 00,FF88,80", + 8, + 132578, + 0 + ], + "61": [ + "2025-05-29 4 15:15:00 00,FF88,80", + 8, + 132583, + 0 + ], + "62": [ + "2025-05-29 4 15:30:00 00,FF88,80", + 8, + 132587, + 0 + ], + "63": [ + "2025-05-29 4 15:45:00 00,FF88,80", + 8, + 132592, + 0 + ], + "64": [ + "2025-05-29 4 16:00:00 00,FF88,80", + 8, + 132595, + 0 + ], + "65": [ + "2025-05-29 4 16:15:00 00,FF88,80", + 8, + 132600, + 0 + ], + "66": [ + "2025-05-29 4 16:30:00 00,FF88,80", + 8, + 132604, + 0 + ], + "67": [ + "2025-05-29 4 16:45:00 00,FF88,80", + 8, + 132611, + 0 + ], + "68": [ + "2025-05-29 4 17:00:00 00,FF88,80", + 8, + 132621, + 0 + ], + "69": [ + "2025-05-29 4 17:15:00 00,FF88,80", + 8, + 132634, + 0 + ], + "70": [ + "2025-05-29 4 17:30:00 00,FF88,80", + 8, + 132646, + 0 + ], + "71": [ + "2025-05-29 4 17:45:00 00,FF88,80", + 8, + 132656, + 0 + ], + "72": [ + "2025-05-29 4 18:00:00 00,FF88,80", + 8, + 132664, + 0 + ], + "73": [ + "2025-05-29 4 18:15:00 00,FF88,80", + 8, + 132671, + 0 + ], + "74": [ + "2025-05-29 4 18:30:00 00,FF88,80", + 8, + 132684, + 0 + ], + "75": [ + "2025-05-29 4 18:45:00 00,FF88,80", + 8, + 132695, + 0 + ], + "76": [ + "2025-05-29 4 19:00:00 00,FF88,80", + 8, + 132707, + 0 + ], + "77": [ + "2025-05-29 4 19:15:00 00,FF88,80", + 8, + 132718, + 0 + ], + "78": [ + "2025-05-29 4 19:30:00 00,FF88,80", + 8, + 132729, + 0 + ], + "79": [ + "2025-05-29 4 19:45:00 00,FF88,80", + 8, + 132741, + 0 + ], + "80": [ + "2025-05-29 4 20:00:00 00,FF88,80", + 8, + 132755, + 0 + ], + "81": [ + "2025-05-29 4 20:15:00 00,FF88,80", + 8, + 132764, + 0 + ], + "82": [ + "2025-05-29 4 20:30:00 00,FF88,80", + 8, + 132773, + 0 + ], + "83": [ + "2025-05-29 4 20:45:00 00,FF88,80", + 8, + 132787, + 0 + ], + "84": [ + "2025-05-29 4 21:00:00 00,FF88,80", + 8, + 132796, + 0 + ], + "85": [ + "2025-05-29 4 21:15:00 00,FF88,80", + 8, + 132808, + 0 + ], + "86": [ + "2025-05-29 4 21:30:00 00,FF88,80", + 8, + 132819, + 0 + ], + "87": [ + "2025-05-29 4 21:45:00 00,FF88,80", + 8, + 132829, + 0 + ], + "88": [ + "2025-05-29 4 22:00:00 00,FF88,80", + 8, + 132839, + 0 + ], + "89": [ + "2025-05-29 4 22:15:00 00,FF88,80", + 8, + 132848, + 0 + ], + "90": [ + "2025-05-29 4 22:30:00 00,FF88,80", + 8, + 132862, + 0 + ], + "91": [ + "2025-05-29 4 22:45:00 00,FF88,80", + 8, + 132873, + 0 + ], + "92": [ + "2025-05-29 4 23:00:00 00,FF88,80", + 8, + 132878, + 0 + ], + "93": [ + "2025-05-29 4 23:15:00 00,FF88,80", + 8, + 132881, + 0 + ], + "94": [ + "2025-05-29 4 23:30:00 00,FF88,80", + 8, + 132887, + 0 + ], + "95": [ + "2025-05-29 4 23:45:00 00,FF88,80", + 8, + 132892, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "1": [ + "2025-05-29 4 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "2": [ + "2025-05-29 4 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "3": [ + "2025-05-29 4 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "4": [ + "2025-05-29 4 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "5": [ + "2025-05-29 4 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "6": [ + "2025-05-29 4 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "7": [ + "2025-05-29 4 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "8": [ + "2025-05-29 4 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "9": [ + "2025-05-29 4 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "10": [ + "2025-05-29 4 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "11": [ + "2025-05-29 4 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "12": [ + "2025-05-29 4 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "13": [ + "2025-05-29 4 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "14": [ + "2025-05-29 4 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "15": [ + "2025-05-29 4 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "16": [ + "2025-05-29 4 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "17": [ + "2025-05-29 4 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "18": [ + "2025-05-29 4 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "19": [ + "2025-05-29 4 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "20": [ + "2025-05-29 4 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "21": [ + "2025-05-29 4 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "22": [ + "2025-05-29 4 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "23": [ + "2025-05-29 4 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "24": [ + "2025-05-29 4 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "25": [ + "2025-05-29 4 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "26": [ + "2025-05-29 4 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "27": [ + "2025-05-29 4 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "28": [ + "2025-05-29 4 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "29": [ + "2025-05-29 4 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "30": [ + "2025-05-29 4 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "31": [ + "2025-05-29 4 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "32": [ + "2025-05-29 4 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "33": [ + "2025-05-29 4 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "34": [ + "2025-05-29 4 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "35": [ + "2025-05-29 4 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "36": [ + "2025-05-29 4 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "37": [ + "2025-05-29 4 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "38": [ + "2025-05-29 4 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "39": [ + "2025-05-29 4 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "40": [ + "2025-05-29 4 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "41": [ + "2025-05-29 4 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "42": [ + "2025-05-29 4 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "43": [ + "2025-05-29 4 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "44": [ + "2025-05-29 4 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "45": [ + "2025-05-29 4 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "46": [ + "2025-05-29 4 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "47": [ + "2025-05-29 4 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "48": [ + "2025-05-29 4 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "49": [ + "2025-05-29 4 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "50": [ + "2025-05-29 4 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "51": [ + "2025-05-29 4 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "52": [ + "2025-05-29 4 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "53": [ + "2025-05-29 4 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "54": [ + "2025-05-29 4 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "55": [ + "2025-05-29 4 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "56": [ + "2025-05-29 4 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "57": [ + "2025-05-29 4 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "58": [ + "2025-05-29 4 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "59": [ + "2025-05-29 4 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "60": [ + "2025-05-29 4 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "61": [ + "2025-05-29 4 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "62": [ + "2025-05-29 4 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "63": [ + "2025-05-29 4 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "64": [ + "2025-05-29 4 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "65": [ + "2025-05-29 4 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "66": [ + "2025-05-29 4 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "67": [ + "2025-05-29 4 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "68": [ + "2025-05-29 4 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "69": [ + "2025-05-29 4 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "70": [ + "2025-05-29 4 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "71": [ + "2025-05-29 4 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "72": [ + "2025-05-29 4 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "73": [ + "2025-05-29 4 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "74": [ + "2025-05-29 4 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "75": [ + "2025-05-29 4 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "76": [ + "2025-05-29 4 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "77": [ + "2025-05-29 4 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "78": [ + "2025-05-29 4 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "79": [ + "2025-05-29 4 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "80": [ + "2025-05-29 4 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "81": [ + "2025-05-29 4 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "82": [ + "2025-05-29 4 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "83": [ + "2025-05-29 4 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "84": [ + "2025-05-29 4 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "85": [ + "2025-05-29 4 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "86": [ + "2025-05-29 4 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "87": [ + "2025-05-29 4 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "88": [ + "2025-05-29 4 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "89": [ + "2025-05-29 4 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "90": [ + "2025-05-29 4 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "91": [ + "2025-05-29 4 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "92": [ + "2025-05-29 4 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "93": [ + "2025-05-29 4 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "94": [ + "2025-05-29 4 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "95": [ + "2025-05-29 4 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 354636, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 354636, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 13, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 18, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 24, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 222, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 225, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 220, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 392, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 94, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 21, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 114, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 223, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 221, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 223, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 15, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 19, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 20, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-30 5 17:14:00 00,FF88,80", + 70, + 67 + ], + "1": [ + "2025-05-04 0 07:14:00 00,FF88,80", + 70, + 46 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:19:12.570010", + "pos": 3, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:19:00", + "connection_status": true, + "connection_end": "2025-06-01 03:19:04", + "connection_consume": 4.4, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025040100003", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025040100003", + "actual_time": "2025-06-01 03:19:12.422181", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:19:12 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:19:12", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:19:14.901831", + "getProfile_end_time": "2025-06-01 03:19:14.483906", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 158788, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 189929, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 220997, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 251946, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 267279, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 283025, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 299398, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 332145, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 365029, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 380715, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 396522, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 411783, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 129274, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 130459, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 131717, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 132642, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 133888, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 135141, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 135960, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 137055, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 138223, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 139557, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 140579, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 141482, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 142737, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 143845, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 144614, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 145500, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 146553, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 147319, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 148183, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 149248, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 150248, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 151518, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 152307, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 153175, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 154416, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 155475, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 156582, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 157439, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 158747, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 159801, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 160851, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 162131, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 163364, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 164445, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 165404, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 166256, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 167329, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 168194, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 169112, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 170192, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 171050, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 172207, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 173142, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 173963, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 175124, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 176116, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 177361, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 178236, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 179179, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 180062, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 181296, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 182513, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 183290, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 184344, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 185608, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 186569, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 187727, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 188587, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 189502, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 190478, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 191278, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 192312, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 193504, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 194810, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 195912, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 196897, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 198202, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 199540, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 200422, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 201656, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 202485, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 203594, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 204495, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 205468, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 206691, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 207595, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 208885, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 209664, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 210763, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 211861, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 212626, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 213396, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 214172, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 215276, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 216227, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 217111, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 217869, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 219159, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 220405, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 221562, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 222513, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 223317, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 223654, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 224219, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 224816, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 225245, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 225673, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 226264, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 226738, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 227367, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 227897, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 228428, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 229005, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 229725, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 230400, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 230975, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 231479, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 231944, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 232319, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 233026, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 233491, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 234138, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 234657, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 235241, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 235796, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 236433, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 236788, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 237319, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 237668, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 238233, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 238612, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 238943, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 239576, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 240082, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 240623, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 241218, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 241814, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 242396, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 242728, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 243088, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 243624, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 244007, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 244579, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 245264, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 245966, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 246472, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 247186, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 247822, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 248358, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 249068, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 249485, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 249931, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 250274, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 250692, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 251406, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 251896, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 252536, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 252906, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 253651, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 254390, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 254736, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 255116, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 255512, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 255824, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 256360, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 256812, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 257306, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 257845, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 258492, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 259050, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 259622, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 260363, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 261036, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 261371, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 262094, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 262544, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 262848, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 263515, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 264145, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 264721, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 265431, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 266163, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 266785, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 267367, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 267741, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 268087, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 268596, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 268916, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 269356, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 269906, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 270396, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 270885, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 271277, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 272517, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 273488, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 274611, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 275752, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 276945, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 278015, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 278775, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 279954, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 281277, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 282032, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 283280, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 284218, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 285041, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 286025, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 287219, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 288039, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 289131, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 290350, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 291145, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 292041, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 293302, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 294125, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 295216, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 296247, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 297075, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 298341, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 299298, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 300191, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 301194, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 302285, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 303445, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 304389, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 305457, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 306265, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 307313, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 308134, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 309051, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 309835, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 310664, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 311538, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 312561, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 313548, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 314838, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 316144, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 317367, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 318432, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 319303, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 320504, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 321335, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 322346, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 323223, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 324179, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 325358, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 326345, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 327239, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 328198, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 329423, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 330207, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 330959, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 331906, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 332846, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 334116, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 335313, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 336642, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 337444, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 338570, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 339492, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 340638, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 341437, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 342385, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 343363, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 344335, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 345432, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 346519, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 347480, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 348700, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 349517, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 350492, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 351387, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 352707, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 353822, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 354964, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 356213, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 357506, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 358536, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 359392, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 360156, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 360998, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 362101, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 363445, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 364035, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 364518, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 364971, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 365382, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 365760, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 366096, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 366757, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 367171, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 367836, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 368441, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 368774, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 369474, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 370053, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 370664, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 371393, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 371837, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 372536, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 372985, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 373675, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 374259, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 374692, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 375362, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 375680, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 376146, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 376501, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 376884, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 377434, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 377733, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 378252, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 378647, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 379064, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 379581, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 379973, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 380332, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 381015, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 381705, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 382122, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 382537, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 382957, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 383308, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 383946, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 384348, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 384789, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 385183, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 385491, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 385974, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 386631, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 387117, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 387596, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 388207, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 388892, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 389487, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 390058, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 390790, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 391502, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 392056, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 392432, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 392972, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 393656, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 394376, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 394903, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 395545, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 396235, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 396872, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 397328, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 398011, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 398416, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 399088, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 399534, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 400169, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 400671, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 401349, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 401703, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 402121, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 402508, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 403095, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 403584, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 404131, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 404681, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 405033, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 405379, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 405850, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 406522, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 406942, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 407564, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 408235, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 408625, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 409349, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 409913, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 410553, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 411256, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 411782, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:19:29.909896", + "reading_end_time": "2025-06-01 03:19:39.248002", + "reading_consume": 10.148239, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 128005, + 0 + ], + "1": [ + "2024-09-22 0 00:15:00 00,FF88,80", + 8, + 128007, + 0 + ], + "2": [ + "2024-09-22 0 00:30:00 00,FF88,80", + 8, + 128009, + 0 + ], + "3": [ + "2024-09-22 0 00:45:00 00,FF88,80", + 8, + 128012, + 0 + ], + "4": [ + "2024-09-22 0 01:00:00 00,FF88,80", + 8, + 128013, + 0 + ], + "5": [ + "2024-09-22 0 01:15:00 00,FF88,80", + 8, + 128015, + 0 + ], + "6": [ + "2024-09-22 0 01:30:00 00,FF88,80", + 8, + 128016, + 0 + ], + "7": [ + "2024-09-22 0 01:45:00 00,FF88,80", + 8, + 128018, + 0 + ], + "8": [ + "2024-09-22 0 02:00:00 00,FF88,80", + 8, + 128019, + 0 + ], + "9": [ + "2024-09-22 0 02:15:00 00,FF88,80", + 8, + 128019, + 0 + ], + "10": [ + "2024-09-22 0 02:30:00 00,FF88,80", + 8, + 128020, + 0 + ], + "11": [ + "2024-09-22 0 02:45:00 00,FF88,80", + 8, + 128021, + 0 + ], + "12": [ + "2024-09-22 0 03:00:00 00,FF88,80", + 8, + 128022, + 0 + ], + "13": [ + "2024-09-22 0 03:15:00 00,FF88,80", + 8, + 128023, + 0 + ], + "14": [ + "2024-09-22 0 03:30:00 00,FF88,80", + 8, + 128025, + 0 + ], + "15": [ + "2024-09-22 0 03:45:00 00,FF88,80", + 8, + 128027, + 0 + ], + "16": [ + "2024-09-22 0 04:00:00 00,FF88,80", + 8, + 128028, + 0 + ], + "17": [ + "2024-09-22 0 04:15:00 00,FF88,80", + 8, + 128029, + 0 + ], + "18": [ + "2024-09-22 0 04:30:00 00,FF88,80", + 8, + 128032, + 0 + ], + "19": [ + "2024-09-22 0 04:45:00 00,FF88,80", + 8, + 128033, + 0 + ], + "20": [ + "2024-09-22 0 05:00:00 00,FF88,80", + 8, + 128036, + 0 + ], + "21": [ + "2024-09-22 0 05:15:00 00,FF88,80", + 8, + 128036, + 0 + ], + "22": [ + "2024-09-22 0 05:30:00 00,FF88,80", + 8, + 128037, + 0 + ], + "23": [ + "2024-09-22 0 05:45:00 00,FF88,80", + 8, + 128038, + 0 + ], + "24": [ + "2024-09-22 0 06:00:00 00,FF88,80", + 8, + 128049, + 0 + ], + "25": [ + "2024-09-22 0 06:15:00 00,FF88,80", + 8, + 128066, + 0 + ], + "26": [ + "2024-09-22 0 06:30:00 00,FF88,80", + 8, + 128085, + 0 + ], + "27": [ + "2024-09-22 0 06:45:00 00,FF88,80", + 8, + 128100, + 0 + ], + "28": [ + "2024-09-22 0 07:00:00 00,FF88,80", + 8, + 128113, + 0 + ], + "29": [ + "2024-09-22 0 07:15:00 00,FF88,80", + 8, + 128128, + 0 + ], + "30": [ + "2024-09-22 0 07:30:00 00,FF88,80", + 8, + 128144, + 0 + ], + "31": [ + "2024-09-22 0 07:45:00 00,FF88,80", + 8, + 128162, + 0 + ], + "32": [ + "2024-09-22 0 08:00:00 00,FF88,80", + 8, + 128178, + 0 + ], + "33": [ + "2024-09-22 0 08:15:00 00,FF88,80", + 8, + 128195, + 0 + ], + "34": [ + "2024-09-22 0 08:30:00 00,FF88,80", + 8, + 128214, + 0 + ], + "35": [ + "2024-09-22 0 08:45:00 00,FF88,80", + 8, + 128227, + 0 + ], + "36": [ + "2024-09-22 0 09:00:00 00,FF88,80", + 8, + 128237, + 0 + ], + "37": [ + "2024-09-22 0 09:15:00 00,FF88,80", + 8, + 128253, + 0 + ], + "38": [ + "2024-09-22 0 09:30:00 00,FF88,80", + 8, + 128271, + 0 + ], + "39": [ + "2024-09-22 0 09:45:00 00,FF88,80", + 8, + 128282, + 0 + ], + "40": [ + "2024-09-22 0 10:00:00 00,FF88,80", + 8, + 128286, + 0 + ], + "41": [ + "2024-09-22 0 10:15:00 00,FF88,80", + 8, + 128292, + 0 + ], + "42": [ + "2024-09-22 0 10:30:00 00,FF88,80", + 8, + 128296, + 0 + ], + "43": [ + "2024-09-22 0 10:45:00 00,FF88,80", + 8, + 128300, + 0 + ], + "44": [ + "2024-09-22 0 11:00:00 00,FF88,80", + 8, + 128306, + 0 + ], + "45": [ + "2024-09-22 0 11:15:00 00,FF88,80", + 8, + 128310, + 0 + ], + "46": [ + "2024-09-22 0 11:30:00 00,FF88,80", + 8, + 128314, + 0 + ], + "47": [ + "2024-09-22 0 11:45:00 00,FF88,80", + 8, + 128320, + 0 + ], + "48": [ + "2024-09-22 0 12:00:00 00,FF88,80", + 8, + 128326, + 0 + ], + "49": [ + "2024-09-22 0 12:15:00 00,FF88,80", + 8, + 128332, + 0 + ], + "50": [ + "2024-09-22 0 12:30:00 00,FF88,80", + 8, + 128336, + 0 + ], + "51": [ + "2024-09-22 0 12:45:00 00,FF88,80", + 8, + 128343, + 0 + ], + "52": [ + "2024-09-22 0 13:00:00 00,FF88,80", + 8, + 128350, + 0 + ], + "53": [ + "2024-09-22 0 13:15:00 00,FF88,80", + 8, + 128354, + 0 + ], + "54": [ + "2024-09-22 0 13:30:00 00,FF88,80", + 8, + 128363, + 0 + ], + "55": [ + "2024-09-22 0 13:45:00 00,FF88,80", + 8, + 128367, + 0 + ], + "56": [ + "2024-09-22 0 14:00:00 00,FF88,80", + 8, + 128374, + 0 + ], + "57": [ + "2024-09-22 0 14:15:00 00,FF88,80", + 8, + 128382, + 0 + ], + "58": [ + "2024-09-22 0 14:30:00 00,FF88,80", + 8, + 128388, + 0 + ], + "59": [ + "2024-09-22 0 14:45:00 00,FF88,80", + 8, + 128393, + 0 + ], + "60": [ + "2024-09-22 0 15:00:00 00,FF88,80", + 8, + 128397, + 0 + ], + "61": [ + "2024-09-22 0 15:15:00 00,FF88,80", + 8, + 128404, + 0 + ], + "62": [ + "2024-09-22 0 15:30:00 00,FF88,80", + 8, + 128409, + 0 + ], + "63": [ + "2024-09-22 0 15:45:00 00,FF88,80", + 8, + 128415, + 0 + ], + "64": [ + "2024-09-22 0 16:00:00 00,FF88,80", + 8, + 128420, + 0 + ], + "65": [ + "2024-09-22 0 16:15:00 00,FF88,80", + 8, + 128426, + 0 + ], + "66": [ + "2024-09-22 0 16:30:00 00,FF88,80", + 8, + 128432, + 0 + ], + "67": [ + "2024-09-22 0 16:45:00 00,FF88,80", + 8, + 128439, + 0 + ], + "68": [ + "2024-09-22 0 17:00:00 00,FF88,80", + 8, + 128451, + 0 + ], + "69": [ + "2024-09-22 0 17:15:00 00,FF88,80", + 8, + 128468, + 0 + ], + "70": [ + "2024-09-22 0 17:30:00 00,FF88,80", + 8, + 128486, + 0 + ], + "71": [ + "2024-09-22 0 17:45:00 00,FF88,80", + 8, + 128504, + 0 + ], + "72": [ + "2024-09-22 0 18:00:00 00,FF88,80", + 8, + 128521, + 0 + ], + "73": [ + "2024-09-22 0 18:15:00 00,FF88,80", + 8, + 128534, + 0 + ], + "74": [ + "2024-09-22 0 18:30:00 00,FF88,80", + 8, + 128550, + 0 + ], + "75": [ + "2024-09-22 0 18:45:00 00,FF88,80", + 8, + 128569, + 0 + ], + "76": [ + "2024-09-22 0 19:00:00 00,FF88,80", + 8, + 128581, + 0 + ], + "77": [ + "2024-09-22 0 19:15:00 00,FF88,80", + 8, + 128592, + 0 + ], + "78": [ + "2024-09-22 0 19:30:00 00,FF88,80", + 8, + 128603, + 0 + ], + "79": [ + "2024-09-22 0 19:45:00 00,FF88,80", + 8, + 128617, + 0 + ], + "80": [ + "2024-09-22 0 20:00:00 00,FF88,80", + 8, + 128636, + 0 + ], + "81": [ + "2024-09-22 0 20:15:00 00,FF88,80", + 8, + 128654, + 0 + ], + "82": [ + "2024-09-22 0 20:30:00 00,FF88,80", + 8, + 128666, + 0 + ], + "83": [ + "2024-09-22 0 20:45:00 00,FF88,80", + 8, + 128683, + 0 + ], + "84": [ + "2024-09-22 0 21:00:00 00,FF88,80", + 8, + 128693, + 0 + ], + "85": [ + "2024-09-22 0 21:15:00 00,FF88,80", + 8, + 128708, + 0 + ], + "86": [ + "2024-09-22 0 21:30:00 00,FF88,80", + 8, + 128721, + 0 + ], + "87": [ + "2024-09-22 0 21:45:00 00,FF88,80", + 8, + 128731, + 0 + ], + "88": [ + "2024-09-22 0 22:00:00 00,FF88,80", + 8, + 128745, + 0 + ], + "89": [ + "2024-09-22 0 22:15:00 00,FF88,80", + 8, + 128762, + 0 + ], + "90": [ + "2024-09-22 0 22:30:00 00,FF88,80", + 8, + 128777, + 0 + ], + "91": [ + "2024-09-22 0 22:45:00 00,FF88,80", + 8, + 128789, + 0 + ], + "92": [ + "2024-09-22 0 23:00:00 00,FF88,80", + 8, + 128796, + 0 + ], + "93": [ + "2024-09-22 0 23:15:00 00,FF88,80", + 8, + 128802, + 0 + ], + "94": [ + "2024-09-22 0 23:30:00 00,FF88,80", + 8, + 128806, + 0 + ], + "95": [ + "2024-09-22 0 23:45:00 00,FF88,80", + 8, + 128811, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "1": [ + "2024-09-22 0 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "2": [ + "2024-09-22 0 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "3": [ + "2024-09-22 0 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "4": [ + "2024-09-22 0 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "5": [ + "2024-09-22 0 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "6": [ + "2024-09-22 0 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "7": [ + "2024-09-22 0 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "8": [ + "2024-09-22 0 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "9": [ + "2024-09-22 0 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "10": [ + "2024-09-22 0 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "11": [ + "2024-09-22 0 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "12": [ + "2024-09-22 0 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "13": [ + "2024-09-22 0 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "14": [ + "2024-09-22 0 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "15": [ + "2024-09-22 0 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "16": [ + "2024-09-22 0 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "17": [ + "2024-09-22 0 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "18": [ + "2024-09-22 0 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "19": [ + "2024-09-22 0 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "20": [ + "2024-09-22 0 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "21": [ + "2024-09-22 0 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "22": [ + "2024-09-22 0 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "23": [ + "2024-09-22 0 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "24": [ + "2024-09-22 0 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "25": [ + "2024-09-22 0 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "26": [ + "2024-09-22 0 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "27": [ + "2024-09-22 0 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "28": [ + "2024-09-22 0 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "29": [ + "2024-09-22 0 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "30": [ + "2024-09-22 0 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "31": [ + "2024-09-22 0 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "32": [ + "2024-09-22 0 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "33": [ + "2024-09-22 0 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "34": [ + "2024-09-22 0 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "35": [ + "2024-09-22 0 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "36": [ + "2024-09-22 0 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "37": [ + "2024-09-22 0 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "38": [ + "2024-09-22 0 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "39": [ + "2024-09-22 0 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "40": [ + "2024-09-22 0 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "41": [ + "2024-09-22 0 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "42": [ + "2024-09-22 0 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "43": [ + "2024-09-22 0 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "44": [ + "2024-09-22 0 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "45": [ + "2024-09-22 0 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "46": [ + "2024-09-22 0 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "47": [ + "2024-09-22 0 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "48": [ + "2024-09-22 0 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "49": [ + "2024-09-22 0 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "50": [ + "2024-09-22 0 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "51": [ + "2024-09-22 0 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "52": [ + "2024-09-22 0 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "53": [ + "2024-09-22 0 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "54": [ + "2024-09-22 0 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "55": [ + "2024-09-22 0 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "56": [ + "2024-09-22 0 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "57": [ + "2024-09-22 0 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "58": [ + "2024-09-22 0 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "59": [ + "2024-09-22 0 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "60": [ + "2024-09-22 0 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "61": [ + "2024-09-22 0 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "62": [ + "2024-09-22 0 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "63": [ + "2024-09-22 0 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "64": [ + "2024-09-22 0 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "65": [ + "2024-09-22 0 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "66": [ + "2024-09-22 0 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "67": [ + "2024-09-22 0 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "68": [ + "2024-09-22 0 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "69": [ + "2024-09-22 0 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "70": [ + "2024-09-22 0 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "71": [ + "2024-09-22 0 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "72": [ + "2024-09-22 0 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "73": [ + "2024-09-22 0 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "74": [ + "2024-09-22 0 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "75": [ + "2024-09-22 0 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "76": [ + "2024-09-22 0 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "77": [ + "2024-09-22 0 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "78": [ + "2024-09-22 0 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "79": [ + "2024-09-22 0 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "80": [ + "2024-09-22 0 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "81": [ + "2024-09-22 0 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "82": [ + "2024-09-22 0 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "83": [ + "2024-09-22 0 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "84": [ + "2024-09-22 0 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "85": [ + "2024-09-22 0 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "86": [ + "2024-09-22 0 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "87": [ + "2024-09-22 0 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "88": [ + "2024-09-22 0 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "89": [ + "2024-09-22 0 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "90": [ + "2024-09-22 0 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "91": [ + "2024-09-22 0 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "92": [ + "2024-09-22 0 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "93": [ + "2024-09-22 0 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "94": [ + "2024-09-22 0 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "95": [ + "2024-09-22 0 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 411782, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 411782, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 17, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 14, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 26, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 234, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 237, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 231, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 51, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 0, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 17, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 16, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 235, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 233, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 232, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 27, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 25, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 24, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-07 3 08:19:00 00,FF88,80", + 77, + 19 + ], + "1": [ + "2025-05-27 2 21:19:00 00,FF88,80", + 80, + 76 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:56:25.502860", + "pos": 4, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:56:00", + "connection_status": true, + "connection_end": "2025-06-01 03:56:05", + "connection_consume": 5.0, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025040100004", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025040100004", + "actual_time": "2025-06-01 03:56:10.604492", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:56:10 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:56:10", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:56:12.661485", + "getProfile_end_time": "2025-06-01 03:56:12.307581", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 197876, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 229717, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 260590, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 290699, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 304649, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 320588, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 336327, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 366109, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 396634, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 411079, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 427712, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 443294, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 168340, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 169130, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 170385, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 171220, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 172116, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 172853, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 174003, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 175052, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 176238, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 177238, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 178532, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 179279, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 180106, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 180984, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 182219, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 183061, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 184237, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 185090, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 186049, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 186886, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 188180, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 188979, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 190049, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 191238, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 192191, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 193310, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 194262, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 195196, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 196190, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 197151, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 198155, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 199110, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 200097, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 201224, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 201991, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 203081, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 203879, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 204945, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 206247, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 207519, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 208654, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 209930, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 211209, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 211990, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 212751, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 213547, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 214513, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 215415, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 216228, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 216999, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 218008, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 218742, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 219586, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 220342, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 221619, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 222822, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 223855, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 224734, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 225918, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 226811, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 227663, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 228828, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 229622, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 230664, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 231522, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 232330, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 233374, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 234273, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 235040, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 235782, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 236686, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 237477, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 238453, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 239654, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 240426, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 241164, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 242393, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 243149, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 243936, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 245196, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 246144, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 247292, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 248466, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 249611, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 250916, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 252052, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 253016, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 254208, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 255071, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 256306, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 257393, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 258314, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 258741, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 259072, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 259364, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 259663, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 260006, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 260630, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 261320, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 261795, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 262422, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 262781, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 263293, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 263938, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 264573, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 265238, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 265583, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 266081, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 266613, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 267044, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 267670, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 268339, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 268690, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 269318, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 270005, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 270693, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 271128, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 271462, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 271856, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 272310, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 272847, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 273360, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 273800, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 274205, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 274661, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 275363, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 275674, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 276259, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 276812, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 277173, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 277785, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 278084, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 278504, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 278923, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 279546, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 280206, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 280659, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 281073, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 281702, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 282198, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 282505, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 282824, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 283160, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 283653, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 283971, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 284481, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 284826, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 285285, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 285691, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 286267, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 286791, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 287363, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 287755, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 288337, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 288655, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 288989, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 289419, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 290138, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 290661, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 291292, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 291972, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 292393, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 292716, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 293139, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 293800, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 294400, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 294985, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 295444, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 295806, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 296173, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 296578, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 297198, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 297789, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 298256, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 298612, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 299100, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 299634, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 300290, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 301017, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 301504, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 301983, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 302334, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 302820, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 304069, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 305196, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 306008, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 307288, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 308518, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 309658, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 310937, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 311787, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 312835, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 314101, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 315107, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 316239, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 317176, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 317978, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 319227, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 320207, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 321229, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 322235, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 322994, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 324245, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 325378, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 326572, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 327602, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 328876, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 330184, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 331257, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 332122, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 332884, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 333808, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 334753, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 335619, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 336351, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 337539, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 338668, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 339947, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 341028, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 341841, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 342686, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 343658, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 344435, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 345691, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 346767, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 347758, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 349041, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 350222, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 351134, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 352260, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 353419, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 354387, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 355149, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 356154, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 357230, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 358229, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 359372, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 360301, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 361122, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 362347, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 363418, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 364650, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 365519, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 366703, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 367583, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 368804, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 369811, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 371041, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 372207, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 373011, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 374164, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 374998, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 376138, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 376969, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 378073, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 379083, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 379874, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 380646, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 381646, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 382591, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 383837, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 384814, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 385613, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 386628, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 387603, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 388365, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 389265, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 390353, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 391398, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 392193, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 393078, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 394129, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 395194, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 395587, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 396042, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 396744, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 397401, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 398110, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 398405, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 398952, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 399596, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 399969, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 400653, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 401271, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 401997, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 402718, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 403357, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 403654, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 404381, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 405062, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 405434, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 405899, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 406407, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 406732, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 407208, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 407510, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 407832, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 408326, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 409005, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 409305, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 409691, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 410419, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 410885, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 411261, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 411940, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 412248, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 412689, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 412985, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 413290, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 413836, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 414218, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 414690, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 415182, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 415584, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 415997, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 416541, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 417205, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 417874, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 418358, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 418895, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 419528, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 420009, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 420406, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 420940, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 421467, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 422177, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 422482, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 422947, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 423645, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 424050, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 424409, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 424853, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 425463, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 426112, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 426644, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 426983, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 427538, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 428152, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 428541, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 429034, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 429394, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 430017, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 430387, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 431055, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 431416, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 431958, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 432609, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 432997, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 433573, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 433995, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 434624, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 435273, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 435590, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 436244, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 436849, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 437338, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 437912, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 438564, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 439054, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 439418, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 439991, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 440438, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 440819, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 441324, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 441888, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:56:24.337696", + "reading_end_time": "2025-06-01 03:56:35.142276", + "reading_consume": 11.38848, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 167286, + 0 + ], + "1": [ + "2024-06-06 4 00:15:00 00,FF88,80", + 8, + 167288, + 0 + ], + "2": [ + "2024-06-06 4 00:30:00 00,FF88,80", + 8, + 167290, + 0 + ], + "3": [ + "2024-06-06 4 00:45:00 00,FF88,80", + 8, + 167291, + 0 + ], + "4": [ + "2024-06-06 4 01:00:00 00,FF88,80", + 8, + 167292, + 0 + ], + "5": [ + "2024-06-06 4 01:15:00 00,FF88,80", + 8, + 167294, + 0 + ], + "6": [ + "2024-06-06 4 01:30:00 00,FF88,80", + 8, + 167295, + 0 + ], + "7": [ + "2024-06-06 4 01:45:00 00,FF88,80", + 8, + 167297, + 0 + ], + "8": [ + "2024-06-06 4 02:00:00 00,FF88,80", + 8, + 167297, + 0 + ], + "9": [ + "2024-06-06 4 02:15:00 00,FF88,80", + 8, + 167299, + 0 + ], + "10": [ + "2024-06-06 4 02:30:00 00,FF88,80", + 8, + 167300, + 0 + ], + "11": [ + "2024-06-06 4 02:45:00 00,FF88,80", + 8, + 167301, + 0 + ], + "12": [ + "2024-06-06 4 03:00:00 00,FF88,80", + 8, + 167303, + 0 + ], + "13": [ + "2024-06-06 4 03:15:00 00,FF88,80", + 8, + 167304, + 0 + ], + "14": [ + "2024-06-06 4 03:30:00 00,FF88,80", + 8, + 167306, + 0 + ], + "15": [ + "2024-06-06 4 03:45:00 00,FF88,80", + 8, + 167308, + 0 + ], + "16": [ + "2024-06-06 4 04:00:00 00,FF88,80", + 8, + 167308, + 0 + ], + "17": [ + "2024-06-06 4 04:15:00 00,FF88,80", + 8, + 167309, + 0 + ], + "18": [ + "2024-06-06 4 04:30:00 00,FF88,80", + 8, + 167310, + 0 + ], + "19": [ + "2024-06-06 4 04:45:00 00,FF88,80", + 8, + 167311, + 0 + ], + "20": [ + "2024-06-06 4 05:00:00 00,FF88,80", + 8, + 167313, + 0 + ], + "21": [ + "2024-06-06 4 05:15:00 00,FF88,80", + 8, + 167314, + 0 + ], + "22": [ + "2024-06-06 4 05:30:00 00,FF88,80", + 8, + 167316, + 0 + ], + "23": [ + "2024-06-06 4 05:45:00 00,FF88,80", + 8, + 167317, + 0 + ], + "24": [ + "2024-06-06 4 06:00:00 00,FF88,80", + 8, + 167330, + 0 + ], + "25": [ + "2024-06-06 4 06:15:00 00,FF88,80", + 8, + 167342, + 0 + ], + "26": [ + "2024-06-06 4 06:30:00 00,FF88,80", + 8, + 167354, + 0 + ], + "27": [ + "2024-06-06 4 06:45:00 00,FF88,80", + 8, + 167369, + 0 + ], + "28": [ + "2024-06-06 4 07:00:00 00,FF88,80", + 8, + 167379, + 0 + ], + "29": [ + "2024-06-06 4 07:15:00 00,FF88,80", + 8, + 167396, + 0 + ], + "30": [ + "2024-06-06 4 07:30:00 00,FF88,80", + 8, + 167411, + 0 + ], + "31": [ + "2024-06-06 4 07:45:00 00,FF88,80", + 8, + 167422, + 0 + ], + "32": [ + "2024-06-06 4 08:00:00 00,FF88,80", + 8, + 167436, + 0 + ], + "33": [ + "2024-06-06 4 08:15:00 00,FF88,80", + 8, + 167448, + 0 + ], + "34": [ + "2024-06-06 4 08:30:00 00,FF88,80", + 8, + 167461, + 0 + ], + "35": [ + "2024-06-06 4 08:45:00 00,FF88,80", + 8, + 167473, + 0 + ], + "36": [ + "2024-06-06 4 09:00:00 00,FF88,80", + 8, + 167490, + 0 + ], + "37": [ + "2024-06-06 4 09:15:00 00,FF88,80", + 8, + 167505, + 0 + ], + "38": [ + "2024-06-06 4 09:30:00 00,FF88,80", + 8, + 167521, + 0 + ], + "39": [ + "2024-06-06 4 09:45:00 00,FF88,80", + 8, + 167533, + 0 + ], + "40": [ + "2024-06-06 4 10:00:00 00,FF88,80", + 8, + 167539, + 0 + ], + "41": [ + "2024-06-06 4 10:15:00 00,FF88,80", + 8, + 167547, + 0 + ], + "42": [ + "2024-06-06 4 10:30:00 00,FF88,80", + 8, + 167553, + 0 + ], + "43": [ + "2024-06-06 4 10:45:00 00,FF88,80", + 8, + 167558, + 0 + ], + "44": [ + "2024-06-06 4 11:00:00 00,FF88,80", + 8, + 167564, + 0 + ], + "45": [ + "2024-06-06 4 11:15:00 00,FF88,80", + 8, + 167569, + 0 + ], + "46": [ + "2024-06-06 4 11:30:00 00,FF88,80", + 8, + 167574, + 0 + ], + "47": [ + "2024-06-06 4 11:45:00 00,FF88,80", + 8, + 167580, + 0 + ], + "48": [ + "2024-06-06 4 12:00:00 00,FF88,80", + 8, + 167586, + 0 + ], + "49": [ + "2024-06-06 4 12:15:00 00,FF88,80", + 8, + 167593, + 0 + ], + "50": [ + "2024-06-06 4 12:30:00 00,FF88,80", + 8, + 167601, + 0 + ], + "51": [ + "2024-06-06 4 12:45:00 00,FF88,80", + 8, + 167609, + 0 + ], + "52": [ + "2024-06-06 4 13:00:00 00,FF88,80", + 8, + 167614, + 0 + ], + "53": [ + "2024-06-06 4 13:15:00 00,FF88,80", + 8, + 167619, + 0 + ], + "54": [ + "2024-06-06 4 13:30:00 00,FF88,80", + 8, + 167625, + 0 + ], + "55": [ + "2024-06-06 4 13:45:00 00,FF88,80", + 8, + 167632, + 0 + ], + "56": [ + "2024-06-06 4 14:00:00 00,FF88,80", + 8, + 167637, + 0 + ], + "57": [ + "2024-06-06 4 14:15:00 00,FF88,80", + 8, + 167642, + 0 + ], + "58": [ + "2024-06-06 4 14:30:00 00,FF88,80", + 8, + 167648, + 0 + ], + "59": [ + "2024-06-06 4 14:45:00 00,FF88,80", + 8, + 167656, + 0 + ], + "60": [ + "2024-06-06 4 15:00:00 00,FF88,80", + 8, + 167664, + 0 + ], + "61": [ + "2024-06-06 4 15:15:00 00,FF88,80", + 8, + 167668, + 0 + ], + "62": [ + "2024-06-06 4 15:30:00 00,FF88,80", + 8, + 167675, + 0 + ], + "63": [ + "2024-06-06 4 15:45:00 00,FF88,80", + 8, + 167683, + 0 + ], + "64": [ + "2024-06-06 4 16:00:00 00,FF88,80", + 8, + 167687, + 0 + ], + "65": [ + "2024-06-06 4 16:15:00 00,FF88,80", + 8, + 167692, + 0 + ], + "66": [ + "2024-06-06 4 16:30:00 00,FF88,80", + 8, + 167698, + 0 + ], + "67": [ + "2024-06-06 4 16:45:00 00,FF88,80", + 8, + 167705, + 0 + ], + "68": [ + "2024-06-06 4 17:00:00 00,FF88,80", + 8, + 167715, + 0 + ], + "69": [ + "2024-06-06 4 17:15:00 00,FF88,80", + 8, + 167725, + 0 + ], + "70": [ + "2024-06-06 4 17:30:00 00,FF88,80", + 8, + 167738, + 0 + ], + "71": [ + "2024-06-06 4 17:45:00 00,FF88,80", + 8, + 167756, + 0 + ], + "72": [ + "2024-06-06 4 18:00:00 00,FF88,80", + 8, + 167767, + 0 + ], + "73": [ + "2024-06-06 4 18:15:00 00,FF88,80", + 8, + 167784, + 0 + ], + "74": [ + "2024-06-06 4 18:30:00 00,FF88,80", + 8, + 167793, + 0 + ], + "75": [ + "2024-06-06 4 18:45:00 00,FF88,80", + 8, + 167807, + 0 + ], + "76": [ + "2024-06-06 4 19:00:00 00,FF88,80", + 8, + 167819, + 0 + ], + "77": [ + "2024-06-06 4 19:15:00 00,FF88,80", + 8, + 167835, + 0 + ], + "78": [ + "2024-06-06 4 19:30:00 00,FF88,80", + 8, + 167850, + 0 + ], + "79": [ + "2024-06-06 4 19:45:00 00,FF88,80", + 8, + 167867, + 0 + ], + "80": [ + "2024-06-06 4 20:00:00 00,FF88,80", + 8, + 167880, + 0 + ], + "81": [ + "2024-06-06 4 20:15:00 00,FF88,80", + 8, + 167892, + 0 + ], + "82": [ + "2024-06-06 4 20:30:00 00,FF88,80", + 8, + 167904, + 0 + ], + "83": [ + "2024-06-06 4 20:45:00 00,FF88,80", + 8, + 167917, + 0 + ], + "84": [ + "2024-06-06 4 21:00:00 00,FF88,80", + 8, + 167934, + 0 + ], + "85": [ + "2024-06-06 4 21:15:00 00,FF88,80", + 8, + 167944, + 0 + ], + "86": [ + "2024-06-06 4 21:30:00 00,FF88,80", + 8, + 167962, + 0 + ], + "87": [ + "2024-06-06 4 21:45:00 00,FF88,80", + 8, + 167973, + 0 + ], + "88": [ + "2024-06-06 4 22:00:00 00,FF88,80", + 8, + 167985, + 0 + ], + "89": [ + "2024-06-06 4 22:15:00 00,FF88,80", + 8, + 167997, + 0 + ], + "90": [ + "2024-06-06 4 22:30:00 00,FF88,80", + 8, + 168010, + 0 + ], + "91": [ + "2024-06-06 4 22:45:00 00,FF88,80", + 8, + 168024, + 0 + ], + "92": [ + "2024-06-06 4 23:00:00 00,FF88,80", + 8, + 168028, + 0 + ], + "93": [ + "2024-06-06 4 23:15:00 00,FF88,80", + 8, + 168033, + 0 + ], + "94": [ + "2024-06-06 4 23:30:00 00,FF88,80", + 8, + 168040, + 0 + ], + "95": [ + "2024-06-06 4 23:45:00 00,FF88,80", + 8, + 168047, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "1": [ + "2024-06-06 4 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "2": [ + "2024-06-06 4 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "3": [ + "2024-06-06 4 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "4": [ + "2024-06-06 4 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "6": [ + "2024-06-06 4 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "7": [ + "2024-06-06 4 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "8": [ + "2024-06-06 4 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "9": [ + "2024-06-06 4 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "10": [ + "2024-06-06 4 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "11": [ + "2024-06-06 4 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "12": [ + "2024-06-06 4 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "13": [ + "2024-06-06 4 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "14": [ + "2024-06-06 4 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "15": [ + "2024-06-06 4 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "16": [ + "2024-06-06 4 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "17": [ + "2024-06-06 4 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "18": [ + "2024-06-06 4 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "19": [ + "2024-06-06 4 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "20": [ + "2024-06-06 4 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "21": [ + "2024-06-06 4 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "22": [ + "2024-06-06 4 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "23": [ + "2024-06-06 4 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "24": [ + "2024-06-06 4 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "25": [ + "2024-06-06 4 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "26": [ + "2024-06-06 4 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "27": [ + "2024-06-06 4 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "28": [ + "2024-06-06 4 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "29": [ + "2024-06-06 4 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "30": [ + "2024-06-06 4 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "31": [ + "2024-06-06 4 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "32": [ + "2024-06-06 4 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "33": [ + "2024-06-06 4 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "34": [ + "2024-06-06 4 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "35": [ + "2024-06-06 4 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "36": [ + "2024-06-06 4 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "37": [ + "2024-06-06 4 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "38": [ + "2024-06-06 4 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "39": [ + "2024-06-06 4 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "40": [ + "2024-06-06 4 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "41": [ + "2024-06-06 4 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "42": [ + "2024-06-06 4 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "43": [ + "2024-06-06 4 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "44": [ + "2024-06-06 4 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "45": [ + "2024-06-06 4 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "46": [ + "2024-06-06 4 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "47": [ + "2024-06-06 4 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "48": [ + "2024-06-06 4 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "49": [ + "2024-06-06 4 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "50": [ + "2024-06-06 4 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "51": [ + "2024-06-06 4 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "52": [ + "2024-06-06 4 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "53": [ + "2024-06-06 4 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "54": [ + "2024-06-06 4 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "55": [ + "2024-06-06 4 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "56": [ + "2024-06-06 4 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "57": [ + "2024-06-06 4 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "58": [ + "2024-06-06 4 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "59": [ + "2024-06-06 4 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "60": [ + "2024-06-06 4 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "61": [ + "2024-06-06 4 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "62": [ + "2024-06-06 4 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "63": [ + "2024-06-06 4 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "64": [ + "2024-06-06 4 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "65": [ + "2024-06-06 4 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "66": [ + "2024-06-06 4 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "67": [ + "2024-06-06 4 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "68": [ + "2024-06-06 4 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "69": [ + "2024-06-06 4 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "70": [ + "2024-06-06 4 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "71": [ + "2024-06-06 4 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "72": [ + "2024-06-06 4 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "73": [ + "2024-06-06 4 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "74": [ + "2024-06-06 4 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "75": [ + "2024-06-06 4 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "76": [ + "2024-06-06 4 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "77": [ + "2024-06-06 4 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "78": [ + "2024-06-06 4 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "79": [ + "2024-06-06 4 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "80": [ + "2024-06-06 4 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "81": [ + "2024-06-06 4 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "82": [ + "2024-06-06 4 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "83": [ + "2024-06-06 4 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "84": [ + "2024-06-06 4 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "85": [ + "2024-06-06 4 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "86": [ + "2024-06-06 4 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "87": [ + "2024-06-06 4 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "88": [ + "2024-06-06 4 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "89": [ + "2024-06-06 4 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "90": [ + "2024-06-06 4 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "91": [ + "2024-06-06 4 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "92": [ + "2024-06-06 4 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "93": [ + "2024-06-06 4 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "94": [ + "2024-06-06 4 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "95": [ + "2024-06-06 4 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 441888, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 441888, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 22, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 22, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 31, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 233, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 234, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 231, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 353, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 71, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 4, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 67, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 233, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 230, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 230, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 30, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 31, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 24, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-06 2 03:56:00 00,FF88,80", + 73, + 79 + ], + "1": [ + "2025-05-28 3 13:56:00 00,FF88,80", + 70, + 81 + ], + "2": [ + "2025-05-07 3 22:56:00 00,FF88,80", + 76, + 24 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:43:13.394241", + "pos": 5, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:43:00", + "connection_status": true, + "connection_end": "2025-06-01 03:43:05", + "connection_consume": 5.6, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025040100005", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025040100005", + "actual_time": "2025-06-01 03:43:10.328948", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:43:10 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:43:10", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:43:12.500016", + "getProfile_end_time": "2025-06-01 03:43:13.760827", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 220480, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 254708, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 288163, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 322095, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 338287, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 354982, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 371433, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 406765, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 441135, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 457333, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 473553, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 489755, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 188187, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 189034, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 189836, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 191107, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 192419, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 193807, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 194693, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 195592, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 196946, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 197878, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 199053, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 200221, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 201614, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 202509, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 203446, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 204473, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 205274, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 206421, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 207386, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 208469, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 209789, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 211175, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 212008, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 213192, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 214401, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 215482, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 216361, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 217637, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 218587, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 219585, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 220918, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 222281, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 223273, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 224293, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 225230, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 226512, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 227470, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 228746, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 229987, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 231302, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 232600, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 233891, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 234864, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 235670, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 236620, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 237670, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 238912, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 240243, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 241611, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 242755, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 243626, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 244978, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 246136, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 247567, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 248521, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 249552, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 250945, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 251995, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 252887, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 253808, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 254684, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 255752, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 256790, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 258099, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 259279, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 260472, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 261604, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 262580, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 263422, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 264455, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 265448, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 266764, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 268176, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 269516, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 270736, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 271642, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 272914, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 274315, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 275229, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 276358, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 277271, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 278679, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 279833, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 280711, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 281751, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 282800, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 284211, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 285611, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 286769, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 287824, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 288740, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 289755, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 290364, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 290964, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 291707, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 292312, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 293022, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 293621, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 294291, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 294987, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 295655, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 296091, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 296562, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 297144, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 297690, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 298472, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 299055, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 299595, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 300150, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 300760, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 301256, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 301947, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 302271, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 302647, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 303087, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 303487, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 304055, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 304787, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 305225, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 305833, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 306269, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 306743, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 307349, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 308023, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 308807, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 309411, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 309803, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 310181, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 310504, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 310824, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 311174, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 311634, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 312263, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 312895, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 313436, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 313944, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 314663, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 315327, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 316096, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 316871, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 317335, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 317964, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 318390, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 318724, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 319178, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 319943, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 320295, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 320756, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 321082, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 321647, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 322239, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 322710, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 323458, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 324179, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 324721, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 325055, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 325666, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 326192, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 326666, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 327305, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 327765, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 328437, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 329074, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 329725, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 330185, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 330508, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 331123, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 331780, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 332170, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 332736, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 333165, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 333880, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 334213, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 334976, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 335768, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 336290, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 337058, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 337425, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 338193, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 338778, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 339392, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 339770, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 340536, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 341930, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 343252, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 344395, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 345810, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 347125, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 348334, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 349675, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 350727, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 351606, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 352404, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 353501, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 354529, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 355724, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 356521, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 357709, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 358765, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 360157, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 361227, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 362235, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 363336, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 364614, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 365824, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 367086, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 368495, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 369475, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 370810, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 371803, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 373105, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 374096, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 375056, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 376304, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 377302, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 378712, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 379926, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 381029, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 382218, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 383555, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 384412, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 385241, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 386349, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 387270, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 388173, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 389285, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 390699, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 391534, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 392596, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 393874, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 395155, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 396065, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 396889, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 398127, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 399453, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 400722, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 401889, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 403144, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 404316, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 405440, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 406359, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 407447, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 408363, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 409624, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 410936, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 412274, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 413267, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 414602, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 415580, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 416763, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 418055, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 419165, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 419977, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 421250, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 422386, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 423733, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 425022, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 426018, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 426855, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 428267, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 429066, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 430394, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 431453, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 432297, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 433575, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 434416, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 435512, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 436329, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 437710, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 438860, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 440153, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 441176, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 442279, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 442711, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 443343, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 444073, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 444674, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 445029, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 445515, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 445925, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 446365, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 446972, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 447325, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 448022, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 448583, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 449065, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 449643, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 449999, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 450669, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 451032, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 451777, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 452311, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 452758, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 453458, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 453963, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 454456, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 455062, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 455436, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 455944, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 456571, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 457281, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 457600, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 458054, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 458653, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 459397, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 460098, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 460758, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 461228, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 461695, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 462271, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 463059, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 463852, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 464289, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 465048, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 465706, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 466095, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 466452, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 467028, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 467671, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 468270, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 468776, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 469170, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 469937, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 470604, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 471036, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 471531, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 472241, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 472824, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 473469, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 473920, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 474702, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 475375, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 476008, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 476581, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 476905, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 477410, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 477803, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 478454, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 478815, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 479563, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 480016, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 480543, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 481148, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 481880, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 482543, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 483024, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 483541, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 483954, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 484717, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 485324, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 485866, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 486310, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 486638, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 487390, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 488138, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 488820, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 489539, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 490090, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 490649, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 491428, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 492013, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 492805, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 493143, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 493541, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 494326, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:43:27.365375", + "reading_end_time": "2025-06-01 03:43:37.450232", + "reading_consume": 9.838804, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 186820, + 0 + ], + "1": [ + "2024-09-06 5 00:15:00 00,FF88,80", + 8, + 186822, + 0 + ], + "2": [ + "2024-09-06 5 00:30:00 00,FF88,80", + 8, + 186823, + 0 + ], + "3": [ + "2024-09-06 5 00:45:00 00,FF88,80", + 8, + 186825, + 0 + ], + "4": [ + "2024-09-06 5 01:00:00 00,FF88,80", + 8, + 186827, + 0 + ], + "5": [ + "2024-09-06 5 01:15:00 00,FF88,80", + 8, + 186828, + 0 + ], + "6": [ + "2024-09-06 5 01:30:00 00,FF88,80", + 8, + 186831, + 0 + ], + "7": [ + "2024-09-06 5 01:45:00 00,FF88,80", + 8, + 186832, + 0 + ], + "8": [ + "2024-09-06 5 02:00:00 00,FF88,80", + 8, + 186833, + 0 + ], + "9": [ + "2024-09-06 5 02:15:00 00,FF88,80", + 8, + 186834, + 0 + ], + "10": [ + "2024-09-06 5 02:30:00 00,FF88,80", + 8, + 186836, + 0 + ], + "11": [ + "2024-09-06 5 02:45:00 00,FF88,80", + 8, + 186837, + 0 + ], + "12": [ + "2024-09-06 5 03:00:00 00,FF88,80", + 8, + 186839, + 0 + ], + "13": [ + "2024-09-06 5 03:15:00 00,FF88,80", + 8, + 186841, + 0 + ], + "14": [ + "2024-09-06 5 03:30:00 00,FF88,80", + 8, + 186842, + 0 + ], + "15": [ + "2024-09-06 5 03:45:00 00,FF88,80", + 8, + 186844, + 0 + ], + "16": [ + "2024-09-06 5 04:00:00 00,FF88,80", + 8, + 186845, + 0 + ], + "17": [ + "2024-09-06 5 04:15:00 00,FF88,80", + 8, + 186847, + 0 + ], + "18": [ + "2024-09-06 5 04:30:00 00,FF88,80", + 8, + 186849, + 0 + ], + "19": [ + "2024-09-06 5 04:45:00 00,FF88,80", + 8, + 186851, + 0 + ], + "20": [ + "2024-09-06 5 05:00:00 00,FF88,80", + 8, + 186853, + 0 + ], + "21": [ + "2024-09-06 5 05:15:00 00,FF88,80", + 8, + 186855, + 0 + ], + "22": [ + "2024-09-06 5 05:30:00 00,FF88,80", + 8, + 186857, + 0 + ], + "23": [ + "2024-09-06 5 05:45:00 00,FF88,80", + 8, + 186859, + 0 + ], + "24": [ + "2024-09-06 5 06:00:00 00,FF88,80", + 8, + 186875, + 0 + ], + "25": [ + "2024-09-06 5 06:15:00 00,FF88,80", + 8, + 186886, + 0 + ], + "26": [ + "2024-09-06 5 06:30:00 00,FF88,80", + 8, + 186902, + 0 + ], + "27": [ + "2024-09-06 5 06:45:00 00,FF88,80", + 8, + 186919, + 0 + ], + "28": [ + "2024-09-06 5 07:00:00 00,FF88,80", + 8, + 186934, + 0 + ], + "29": [ + "2024-09-06 5 07:15:00 00,FF88,80", + 8, + 186950, + 0 + ], + "30": [ + "2024-09-06 5 07:30:00 00,FF88,80", + 8, + 186966, + 0 + ], + "31": [ + "2024-09-06 5 07:45:00 00,FF88,80", + 8, + 186979, + 0 + ], + "32": [ + "2024-09-06 5 08:00:00 00,FF88,80", + 8, + 186992, + 0 + ], + "33": [ + "2024-09-06 5 08:15:00 00,FF88,80", + 8, + 187011, + 0 + ], + "34": [ + "2024-09-06 5 08:30:00 00,FF88,80", + 8, + 187027, + 0 + ], + "35": [ + "2024-09-06 5 08:45:00 00,FF88,80", + 8, + 187045, + 0 + ], + "36": [ + "2024-09-06 5 09:00:00 00,FF88,80", + 8, + 187057, + 0 + ], + "37": [ + "2024-09-06 5 09:15:00 00,FF88,80", + 8, + 187075, + 0 + ], + "38": [ + "2024-09-06 5 09:30:00 00,FF88,80", + 8, + 187093, + 0 + ], + "39": [ + "2024-09-06 5 09:45:00 00,FF88,80", + 8, + 187108, + 0 + ], + "40": [ + "2024-09-06 5 10:00:00 00,FF88,80", + 8, + 187113, + 0 + ], + "41": [ + "2024-09-06 5 10:15:00 00,FF88,80", + 8, + 187117, + 0 + ], + "42": [ + "2024-09-06 5 10:30:00 00,FF88,80", + 8, + 187122, + 0 + ], + "43": [ + "2024-09-06 5 10:45:00 00,FF88,80", + 8, + 187129, + 0 + ], + "44": [ + "2024-09-06 5 11:00:00 00,FF88,80", + 8, + 187138, + 0 + ], + "45": [ + "2024-09-06 5 11:15:00 00,FF88,80", + 8, + 187142, + 0 + ], + "46": [ + "2024-09-06 5 11:30:00 00,FF88,80", + 8, + 187146, + 0 + ], + "47": [ + "2024-09-06 5 11:45:00 00,FF88,80", + 8, + 187154, + 0 + ], + "48": [ + "2024-09-06 5 12:00:00 00,FF88,80", + 8, + 187161, + 0 + ], + "49": [ + "2024-09-06 5 12:15:00 00,FF88,80", + 8, + 187170, + 0 + ], + "50": [ + "2024-09-06 5 12:30:00 00,FF88,80", + 8, + 187177, + 0 + ], + "51": [ + "2024-09-06 5 12:45:00 00,FF88,80", + 8, + 187184, + 0 + ], + "52": [ + "2024-09-06 5 13:00:00 00,FF88,80", + 8, + 187191, + 0 + ], + "53": [ + "2024-09-06 5 13:15:00 00,FF88,80", + 8, + 187200, + 0 + ], + "54": [ + "2024-09-06 5 13:30:00 00,FF88,80", + 8, + 187206, + 0 + ], + "55": [ + "2024-09-06 5 13:45:00 00,FF88,80", + 8, + 187211, + 0 + ], + "56": [ + "2024-09-06 5 14:00:00 00,FF88,80", + 8, + 187220, + 0 + ], + "57": [ + "2024-09-06 5 14:15:00 00,FF88,80", + 8, + 187225, + 0 + ], + "58": [ + "2024-09-06 5 14:30:00 00,FF88,80", + 8, + 187229, + 0 + ], + "59": [ + "2024-09-06 5 14:45:00 00,FF88,80", + 8, + 187237, + 0 + ], + "60": [ + "2024-09-06 5 15:00:00 00,FF88,80", + 8, + 187242, + 0 + ], + "61": [ + "2024-09-06 5 15:15:00 00,FF88,80", + 8, + 187248, + 0 + ], + "62": [ + "2024-09-06 5 15:30:00 00,FF88,80", + 8, + 187256, + 0 + ], + "63": [ + "2024-09-06 5 15:45:00 00,FF88,80", + 8, + 187265, + 0 + ], + "64": [ + "2024-09-06 5 16:00:00 00,FF88,80", + 8, + 187274, + 0 + ], + "65": [ + "2024-09-06 5 16:15:00 00,FF88,80", + 8, + 187278, + 0 + ], + "66": [ + "2024-09-06 5 16:30:00 00,FF88,80", + 8, + 187283, + 0 + ], + "67": [ + "2024-09-06 5 16:45:00 00,FF88,80", + 8, + 187290, + 0 + ], + "68": [ + "2024-09-06 5 17:00:00 00,FF88,80", + 8, + 187306, + 0 + ], + "69": [ + "2024-09-06 5 17:15:00 00,FF88,80", + 8, + 187325, + 0 + ], + "70": [ + "2024-09-06 5 17:30:00 00,FF88,80", + 8, + 187345, + 0 + ], + "71": [ + "2024-09-06 5 17:45:00 00,FF88,80", + 8, + 187358, + 0 + ], + "72": [ + "2024-09-06 5 18:00:00 00,FF88,80", + 8, + 187377, + 0 + ], + "73": [ + "2024-09-06 5 18:15:00 00,FF88,80", + 8, + 187397, + 0 + ], + "74": [ + "2024-09-06 5 18:30:00 00,FF88,80", + 8, + 187409, + 0 + ], + "75": [ + "2024-09-06 5 18:45:00 00,FF88,80", + 8, + 187423, + 0 + ], + "76": [ + "2024-09-06 5 19:00:00 00,FF88,80", + 8, + 187438, + 0 + ], + "77": [ + "2024-09-06 5 19:15:00 00,FF88,80", + 8, + 187453, + 0 + ], + "78": [ + "2024-09-06 5 19:30:00 00,FF88,80", + 8, + 187468, + 0 + ], + "79": [ + "2024-09-06 5 19:45:00 00,FF88,80", + 8, + 187487, + 0 + ], + "80": [ + "2024-09-06 5 20:00:00 00,FF88,80", + 8, + 187505, + 0 + ], + "81": [ + "2024-09-06 5 20:15:00 00,FF88,80", + 8, + 187521, + 0 + ], + "82": [ + "2024-09-06 5 20:30:00 00,FF88,80", + 8, + 187540, + 0 + ], + "83": [ + "2024-09-06 5 20:45:00 00,FF88,80", + 8, + 187552, + 0 + ], + "84": [ + "2024-09-06 5 21:00:00 00,FF88,80", + 8, + 187567, + 0 + ], + "85": [ + "2024-09-06 5 21:15:00 00,FF88,80", + 8, + 187584, + 0 + ], + "86": [ + "2024-09-06 5 21:30:00 00,FF88,80", + 8, + 187601, + 0 + ], + "87": [ + "2024-09-06 5 21:45:00 00,FF88,80", + 8, + 187612, + 0 + ], + "88": [ + "2024-09-06 5 22:00:00 00,FF88,80", + 8, + 187629, + 0 + ], + "89": [ + "2024-09-06 5 22:15:00 00,FF88,80", + 8, + 187649, + 0 + ], + "90": [ + "2024-09-06 5 22:30:00 00,FF88,80", + 8, + 187662, + 0 + ], + "91": [ + "2024-09-06 5 22:45:00 00,FF88,80", + 8, + 187676, + 0 + ], + "92": [ + "2024-09-06 5 23:00:00 00,FF88,80", + 8, + 187680, + 0 + ], + "93": [ + "2024-09-06 5 23:15:00 00,FF88,80", + 8, + 187688, + 0 + ], + "94": [ + "2024-09-06 5 23:30:00 00,FF88,80", + 8, + 187697, + 0 + ], + "95": [ + "2024-09-06 5 23:45:00 00,FF88,80", + 8, + 187702, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "1": [ + "2024-09-06 5 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 119, + 0, + 0, + 0 + ], + "2": [ + "2024-09-06 5 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "3": [ + "2024-09-06 5 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "4": [ + "2024-09-06 5 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "5": [ + "2024-09-06 5 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "6": [ + "2024-09-06 5 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "7": [ + "2024-09-06 5 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "8": [ + "2024-09-06 5 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "9": [ + "2024-09-06 5 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "10": [ + "2024-09-06 5 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "11": [ + "2024-09-06 5 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "12": [ + "2024-09-06 5 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "13": [ + "2024-09-06 5 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "14": [ + "2024-09-06 5 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "15": [ + "2024-09-06 5 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "16": [ + "2024-09-06 5 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "17": [ + "2024-09-06 5 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "18": [ + "2024-09-06 5 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "19": [ + "2024-09-06 5 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "20": [ + "2024-09-06 5 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "21": [ + "2024-09-06 5 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "22": [ + "2024-09-06 5 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "23": [ + "2024-09-06 5 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "24": [ + "2024-09-06 5 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "25": [ + "2024-09-06 5 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "26": [ + "2024-09-06 5 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "27": [ + "2024-09-06 5 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "28": [ + "2024-09-06 5 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "29": [ + "2024-09-06 5 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "30": [ + "2024-09-06 5 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "31": [ + "2024-09-06 5 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "32": [ + "2024-09-06 5 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "33": [ + "2024-09-06 5 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "34": [ + "2024-09-06 5 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "35": [ + "2024-09-06 5 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "36": [ + "2024-09-06 5 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "37": [ + "2024-09-06 5 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "38": [ + "2024-09-06 5 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "39": [ + "2024-09-06 5 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "40": [ + "2024-09-06 5 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "41": [ + "2024-09-06 5 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "42": [ + "2024-09-06 5 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "43": [ + "2024-09-06 5 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "44": [ + "2024-09-06 5 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "45": [ + "2024-09-06 5 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "46": [ + "2024-09-06 5 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "47": [ + "2024-09-06 5 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "48": [ + "2024-09-06 5 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "49": [ + "2024-09-06 5 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "50": [ + "2024-09-06 5 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "51": [ + "2024-09-06 5 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "52": [ + "2024-09-06 5 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "53": [ + "2024-09-06 5 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "54": [ + "2024-09-06 5 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "55": [ + "2024-09-06 5 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "56": [ + "2024-09-06 5 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "57": [ + "2024-09-06 5 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "58": [ + "2024-09-06 5 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "59": [ + "2024-09-06 5 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "60": [ + "2024-09-06 5 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "61": [ + "2024-09-06 5 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "62": [ + "2024-09-06 5 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "63": [ + "2024-09-06 5 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "64": [ + "2024-09-06 5 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "65": [ + "2024-09-06 5 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "66": [ + "2024-09-06 5 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "67": [ + "2024-09-06 5 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "68": [ + "2024-09-06 5 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "69": [ + "2024-09-06 5 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "70": [ + "2024-09-06 5 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "71": [ + "2024-09-06 5 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "72": [ + "2024-09-06 5 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "73": [ + "2024-09-06 5 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "74": [ + "2024-09-06 5 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "75": [ + "2024-09-06 5 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "76": [ + "2024-09-06 5 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "77": [ + "2024-09-06 5 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "78": [ + "2024-09-06 5 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "79": [ + "2024-09-06 5 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 108, + 0, + 0, + 0 + ], + "80": [ + "2024-09-06 5 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "81": [ + "2024-09-06 5 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "82": [ + "2024-09-06 5 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "83": [ + "2024-09-06 5 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "84": [ + "2024-09-06 5 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "85": [ + "2024-09-06 5 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "86": [ + "2024-09-06 5 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "87": [ + "2024-09-06 5 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "88": [ + "2024-09-06 5 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "89": [ + "2024-09-06 5 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "90": [ + "2024-09-06 5 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "91": [ + "2024-09-06 5 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "92": [ + "2024-09-06 5 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "93": [ + "2024-09-06 5 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "94": [ + "2024-09-06 5 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "95": [ + "2024-09-06 5 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 494326, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 494326, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 18, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 16, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 15, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 227, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 224, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 227, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 273, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 25, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 0, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 64, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 229, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 225, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 229, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 17, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 20, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 14, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-07 3 04:43:00 00,FF88,80", + 72, + 77 + ], + "1": [ + "2025-05-21 3 07:43:00 00,FF88,80", + 78, + 50 + ], + "2": [ + "2025-05-09 5 11:43:00 00,FF88,80", + 74, + 13 + ], + "3": [ + "2025-05-13 2 14:43:00 00,FF88,80", + 72, + 31 + ], + "4": [ + "2025-05-11 0 20:43:00 00,FF88,80", + 72, + 54 + ], + "5": [ + "2025-05-31 6 04:43:00 00,FF88,80", + 80, + 46 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:46:26.752959", + "pos": 6, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:46:00", + "connection_status": true, + "connection_end": "2025-06-01 03:46:04", + "connection_consume": 4.2, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025040100006", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025040100006", + "actual_time": "2025-06-01 03:46:09.273797", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:46:09 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:46:09", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:46:11.603909", + "getProfile_end_time": "2025-06-01 03:46:11.406745", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 113131, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 125895, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 138175, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 150611, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 156704, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 162547, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 168836, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 182441, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 195811, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 202121, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 208644, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 215247, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 100848, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 101193, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 101637, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 102097, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 102554, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 103020, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 103411, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 103950, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 104379, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 104896, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 105382, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 105797, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 106219, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 106592, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 106929, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 107323, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 107712, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 108096, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 108473, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 108925, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 109370, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 109677, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 110080, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 110418, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 110752, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 111229, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 111584, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 112000, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 112410, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 112833, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 113274, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 113812, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 114327, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 114684, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 115150, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 115590, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 115900, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 116398, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 116884, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 117289, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 117790, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 118302, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 118776, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 119229, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 119639, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 120103, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 120538, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 121035, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 121574, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 122016, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 122487, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 122806, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 123299, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 123702, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 124079, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 124429, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 124857, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 125397, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 125911, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 126344, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 126796, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 127107, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 127518, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 127870, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 128296, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 128683, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 129000, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 129421, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 129737, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 130179, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 130570, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 131110, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 131596, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 132049, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 132391, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 132892, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 133244, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 133609, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 134034, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 134435, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 134863, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 135373, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 135906, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 136373, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 136771, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 137109, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 137554, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 138020, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 138365, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 138893, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 139384, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 139831, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 140066, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 140247, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 140383, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 140662, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 140881, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 141029, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 141252, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 141515, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 141730, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 141920, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 142159, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 142417, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 142630, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 142775, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 143042, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 143280, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 143489, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 143775, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 143966, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 144224, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 144519, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 144646, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 144788, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 144991, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 145135, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 145342, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 145489, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 145710, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 145901, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 146131, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 146293, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 146463, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 146711, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 146951, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 147225, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 147465, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 147695, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 147898, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 148027, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 148277, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 148405, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 148614, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 148818, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 149050, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 149327, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 149589, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 149866, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 150167, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 150322, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 150507, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 150708, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 150973, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 151173, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 151427, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 151686, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 151958, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 152198, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 152478, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 152616, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 152796, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 153031, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 153275, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 153534, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 153734, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 154018, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 154203, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 154440, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 154655, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 154887, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 155130, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 155384, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 155598, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 155847, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 156018, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 156146, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 156333, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 156546, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 156704, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 157000, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 157177, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 157353, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 157561, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 157691, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 157978, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 158117, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 158265, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 158426, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 158664, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 158843, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 158972, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 159165, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 159706, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 160035, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 160488, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 160885, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 161412, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 161842, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 162162, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 162473, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 162929, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 163443, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 163853, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 164262, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 164576, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 165091, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 165449, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 165986, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 166482, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 166935, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 167323, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 167748, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 168113, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 168650, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 169090, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 169462, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 169985, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 170526, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 171025, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 171429, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 171937, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 172469, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 172967, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 173285, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 173639, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 173973, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 174352, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 174706, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 175128, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 175589, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 176100, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 176487, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 177017, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 177407, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 177879, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 178219, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 178740, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 179203, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 179665, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 180023, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 180447, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 180981, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 181470, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 181822, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 182133, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 182571, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 182894, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 183331, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 183855, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 184316, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 184773, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 185315, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 185671, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 186015, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 186338, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 186846, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 187325, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 187643, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 188028, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 188508, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 188939, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 189381, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 189875, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 190182, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 190596, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 190948, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 191320, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 191714, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 192129, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 192492, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 192836, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 193167, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 193648, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 194088, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 194521, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 194980, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 195504, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 195923, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 196403, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 196928, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 197377, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 197781, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 197981, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 198162, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 198454, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 198737, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 198871, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 199112, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 199306, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 199526, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 199763, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 200054, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 200336, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 200474, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 200737, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 200912, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 201082, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 201289, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 201536, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 201667, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 201894, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 202162, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 202319, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 202528, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 202730, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 202855, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 203156, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 203383, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 203634, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 203777, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 203971, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 204212, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 204513, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 204809, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 205069, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 205194, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 205342, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 205637, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 205872, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 206168, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 206424, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 206649, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 206886, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 207076, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 207345, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 207486, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 207768, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 207964, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 208166, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 208309, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 208565, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 208865, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 209060, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 209353, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 209474, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 209775, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 210031, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 210317, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 210488, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 210755, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 211042, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 211187, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 211461, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 211604, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 211848, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 212146, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 212315, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 212542, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 212669, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 212952, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 213110, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 213310, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 213507, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 213667, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 213864, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 214049, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 214303, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 214440, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 214717, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 214949, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 215129, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 215364, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 215534, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 215727, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 215897, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 216022, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 216172, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 216337, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 216613, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 216745, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 216920, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 217112, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 217298, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 217578, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:46:24.990562", + "reading_end_time": "2025-06-01 03:46:34.564993", + "reading_consume": 10.09787, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 100454, + 0 + ], + "1": [ + "2024-10-05 6 00:15:00 00,FF88,80", + 8, + 100454, + 0 + ], + "2": [ + "2024-10-05 6 00:30:00 00,FF88,80", + 8, + 100454, + 0 + ], + "3": [ + "2024-10-05 6 00:45:00 00,FF88,80", + 8, + 100455, + 0 + ], + "4": [ + "2024-10-05 6 01:00:00 00,FF88,80", + 8, + 100455, + 0 + ], + "5": [ + "2024-10-05 6 01:15:00 00,FF88,80", + 8, + 100455, + 0 + ], + "6": [ + "2024-10-05 6 01:30:00 00,FF88,80", + 8, + 100455, + 0 + ], + "7": [ + "2024-10-05 6 01:45:00 00,FF88,80", + 8, + 100455, + 0 + ], + "8": [ + "2024-10-05 6 02:00:00 00,FF88,80", + 8, + 100455, + 0 + ], + "9": [ + "2024-10-05 6 02:15:00 00,FF88,80", + 8, + 100455, + 0 + ], + "10": [ + "2024-10-05 6 02:30:00 00,FF88,80", + 8, + 100456, + 0 + ], + "11": [ + "2024-10-05 6 02:45:00 00,FF88,80", + 8, + 100456, + 0 + ], + "12": [ + "2024-10-05 6 03:00:00 00,FF88,80", + 8, + 100456, + 0 + ], + "13": [ + "2024-10-05 6 03:15:00 00,FF88,80", + 8, + 100456, + 0 + ], + "14": [ + "2024-10-05 6 03:30:00 00,FF88,80", + 8, + 100456, + 0 + ], + "15": [ + "2024-10-05 6 03:45:00 00,FF88,80", + 8, + 100456, + 0 + ], + "16": [ + "2024-10-05 6 04:00:00 00,FF88,80", + 8, + 100456, + 0 + ], + "17": [ + "2024-10-05 6 04:15:00 00,FF88,80", + 8, + 100456, + 0 + ], + "18": [ + "2024-10-05 6 04:30:00 00,FF88,80", + 8, + 100457, + 0 + ], + "19": [ + "2024-10-05 6 04:45:00 00,FF88,80", + 8, + 100457, + 0 + ], + "20": [ + "2024-10-05 6 05:00:00 00,FF88,80", + 8, + 100458, + 0 + ], + "21": [ + "2024-10-05 6 05:15:00 00,FF88,80", + 8, + 100459, + 0 + ], + "22": [ + "2024-10-05 6 05:30:00 00,FF88,80", + 8, + 100460, + 0 + ], + "23": [ + "2024-10-05 6 05:45:00 00,FF88,80", + 8, + 100460, + 0 + ], + "24": [ + "2024-10-05 6 06:00:00 00,FF88,80", + 8, + 100464, + 0 + ], + "25": [ + "2024-10-05 6 06:15:00 00,FF88,80", + 8, + 100468, + 0 + ], + "26": [ + "2024-10-05 6 06:30:00 00,FF88,80", + 8, + 100473, + 0 + ], + "27": [ + "2024-10-05 6 06:45:00 00,FF88,80", + 8, + 100479, + 0 + ], + "28": [ + "2024-10-05 6 07:00:00 00,FF88,80", + 8, + 100483, + 0 + ], + "29": [ + "2024-10-05 6 07:15:00 00,FF88,80", + 8, + 100487, + 0 + ], + "30": [ + "2024-10-05 6 07:30:00 00,FF88,80", + 8, + 100492, + 0 + ], + "31": [ + "2024-10-05 6 07:45:00 00,FF88,80", + 8, + 100498, + 0 + ], + "32": [ + "2024-10-05 6 08:00:00 00,FF88,80", + 8, + 100504, + 0 + ], + "33": [ + "2024-10-05 6 08:15:00 00,FF88,80", + 8, + 100510, + 0 + ], + "34": [ + "2024-10-05 6 08:30:00 00,FF88,80", + 8, + 100517, + 0 + ], + "35": [ + "2024-10-05 6 08:45:00 00,FF88,80", + 8, + 100521, + 0 + ], + "36": [ + "2024-10-05 6 09:00:00 00,FF88,80", + 8, + 100526, + 0 + ], + "37": [ + "2024-10-05 6 09:15:00 00,FF88,80", + 8, + 100533, + 0 + ], + "38": [ + "2024-10-05 6 09:30:00 00,FF88,80", + 8, + 100537, + 0 + ], + "39": [ + "2024-10-05 6 09:45:00 00,FF88,80", + 8, + 100544, + 0 + ], + "40": [ + "2024-10-05 6 10:00:00 00,FF88,80", + 8, + 100545, + 0 + ], + "41": [ + "2024-10-05 6 10:15:00 00,FF88,80", + 8, + 100547, + 0 + ], + "42": [ + "2024-10-05 6 10:30:00 00,FF88,80", + 8, + 100550, + 0 + ], + "43": [ + "2024-10-05 6 10:45:00 00,FF88,80", + 8, + 100553, + 0 + ], + "44": [ + "2024-10-05 6 11:00:00 00,FF88,80", + 8, + 100556, + 0 + ], + "45": [ + "2024-10-05 6 11:15:00 00,FF88,80", + 8, + 100558, + 0 + ], + "46": [ + "2024-10-05 6 11:30:00 00,FF88,80", + 8, + 100560, + 0 + ], + "47": [ + "2024-10-05 6 11:45:00 00,FF88,80", + 8, + 100561, + 0 + ], + "48": [ + "2024-10-05 6 12:00:00 00,FF88,80", + 8, + 100564, + 0 + ], + "49": [ + "2024-10-05 6 12:15:00 00,FF88,80", + 8, + 100567, + 0 + ], + "50": [ + "2024-10-05 6 12:30:00 00,FF88,80", + 8, + 100569, + 0 + ], + "51": [ + "2024-10-05 6 12:45:00 00,FF88,80", + 8, + 100571, + 0 + ], + "52": [ + "2024-10-05 6 13:00:00 00,FF88,80", + 8, + 100572, + 0 + ], + "53": [ + "2024-10-05 6 13:15:00 00,FF88,80", + 8, + 100575, + 0 + ], + "54": [ + "2024-10-05 6 13:30:00 00,FF88,80", + 8, + 100578, + 0 + ], + "55": [ + "2024-10-05 6 13:45:00 00,FF88,80", + 8, + 100580, + 0 + ], + "56": [ + "2024-10-05 6 14:00:00 00,FF88,80", + 8, + 100583, + 0 + ], + "57": [ + "2024-10-05 6 14:15:00 00,FF88,80", + 8, + 100586, + 0 + ], + "58": [ + "2024-10-05 6 14:30:00 00,FF88,80", + 8, + 100588, + 0 + ], + "59": [ + "2024-10-05 6 14:45:00 00,FF88,80", + 8, + 100590, + 0 + ], + "60": [ + "2024-10-05 6 15:00:00 00,FF88,80", + 8, + 100591, + 0 + ], + "61": [ + "2024-10-05 6 15:15:00 00,FF88,80", + 8, + 100592, + 0 + ], + "62": [ + "2024-10-05 6 15:30:00 00,FF88,80", + 8, + 100594, + 0 + ], + "63": [ + "2024-10-05 6 15:45:00 00,FF88,80", + 8, + 100595, + 0 + ], + "64": [ + "2024-10-05 6 16:00:00 00,FF88,80", + 8, + 100596, + 0 + ], + "65": [ + "2024-10-05 6 16:15:00 00,FF88,80", + 8, + 100598, + 0 + ], + "66": [ + "2024-10-05 6 16:30:00 00,FF88,80", + 8, + 100601, + 0 + ], + "67": [ + "2024-10-05 6 16:45:00 00,FF88,80", + 8, + 100602, + 0 + ], + "68": [ + "2024-10-05 6 17:00:00 00,FF88,80", + 8, + 100609, + 0 + ], + "69": [ + "2024-10-05 6 17:15:00 00,FF88,80", + 8, + 100616, + 0 + ], + "70": [ + "2024-10-05 6 17:30:00 00,FF88,80", + 8, + 100620, + 0 + ], + "71": [ + "2024-10-05 6 17:45:00 00,FF88,80", + 8, + 100627, + 0 + ], + "72": [ + "2024-10-05 6 18:00:00 00,FF88,80", + 8, + 100632, + 0 + ], + "73": [ + "2024-10-05 6 18:15:00 00,FF88,80", + 8, + 100636, + 0 + ], + "74": [ + "2024-10-05 6 18:30:00 00,FF88,80", + 8, + 100643, + 0 + ], + "75": [ + "2024-10-05 6 18:45:00 00,FF88,80", + 8, + 100647, + 0 + ], + "76": [ + "2024-10-05 6 19:00:00 00,FF88,80", + 8, + 100653, + 0 + ], + "77": [ + "2024-10-05 6 19:15:00 00,FF88,80", + 8, + 100657, + 0 + ], + "78": [ + "2024-10-05 6 19:30:00 00,FF88,80", + 8, + 100662, + 0 + ], + "79": [ + "2024-10-05 6 19:45:00 00,FF88,80", + 8, + 100666, + 0 + ], + "80": [ + "2024-10-05 6 20:00:00 00,FF88,80", + 8, + 100670, + 0 + ], + "81": [ + "2024-10-05 6 20:15:00 00,FF88,80", + 8, + 100676, + 0 + ], + "82": [ + "2024-10-05 6 20:30:00 00,FF88,80", + 8, + 100682, + 0 + ], + "83": [ + "2024-10-05 6 20:45:00 00,FF88,80", + 8, + 100687, + 0 + ], + "84": [ + "2024-10-05 6 21:00:00 00,FF88,80", + 8, + 100694, + 0 + ], + "85": [ + "2024-10-05 6 21:15:00 00,FF88,80", + 8, + 100698, + 0 + ], + "86": [ + "2024-10-05 6 21:30:00 00,FF88,80", + 8, + 100702, + 0 + ], + "87": [ + "2024-10-05 6 21:45:00 00,FF88,80", + 8, + 100709, + 0 + ], + "88": [ + "2024-10-05 6 22:00:00 00,FF88,80", + 8, + 100715, + 0 + ], + "89": [ + "2024-10-05 6 22:15:00 00,FF88,80", + 8, + 100719, + 0 + ], + "90": [ + "2024-10-05 6 22:30:00 00,FF88,80", + 8, + 100726, + 0 + ], + "91": [ + "2024-10-05 6 22:45:00 00,FF88,80", + 8, + 100732, + 0 + ], + "92": [ + "2024-10-05 6 23:00:00 00,FF88,80", + 8, + 100735, + 0 + ], + "93": [ + "2024-10-05 6 23:15:00 00,FF88,80", + 8, + 100736, + 0 + ], + "94": [ + "2024-10-05 6 23:30:00 00,FF88,80", + 8, + 100737, + 0 + ], + "95": [ + "2024-10-05 6 23:45:00 00,FF88,80", + 8, + 100738, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "1": [ + "2024-10-05 6 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "2": [ + "2024-10-05 6 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "3": [ + "2024-10-05 6 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "4": [ + "2024-10-05 6 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "5": [ + "2024-10-05 6 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "6": [ + "2024-10-05 6 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "7": [ + "2024-10-05 6 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "8": [ + "2024-10-05 6 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "9": [ + "2024-10-05 6 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "10": [ + "2024-10-05 6 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "11": [ + "2024-10-05 6 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "12": [ + "2024-10-05 6 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "13": [ + "2024-10-05 6 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "14": [ + "2024-10-05 6 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "15": [ + "2024-10-05 6 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "16": [ + "2024-10-05 6 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "17": [ + "2024-10-05 6 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "18": [ + "2024-10-05 6 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "19": [ + "2024-10-05 6 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "20": [ + "2024-10-05 6 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "21": [ + "2024-10-05 6 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "22": [ + "2024-10-05 6 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "23": [ + "2024-10-05 6 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "24": [ + "2024-10-05 6 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "25": [ + "2024-10-05 6 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "26": [ + "2024-10-05 6 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "27": [ + "2024-10-05 6 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "28": [ + "2024-10-05 6 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "29": [ + "2024-10-05 6 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "30": [ + "2024-10-05 6 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "31": [ + "2024-10-05 6 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "32": [ + "2024-10-05 6 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "33": [ + "2024-10-05 6 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "34": [ + "2024-10-05 6 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "35": [ + "2024-10-05 6 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "36": [ + "2024-10-05 6 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "37": [ + "2024-10-05 6 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "38": [ + "2024-10-05 6 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "39": [ + "2024-10-05 6 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "40": [ + "2024-10-05 6 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "41": [ + "2024-10-05 6 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "42": [ + "2024-10-05 6 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "43": [ + "2024-10-05 6 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "44": [ + "2024-10-05 6 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "45": [ + "2024-10-05 6 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "46": [ + "2024-10-05 6 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "47": [ + "2024-10-05 6 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "48": [ + "2024-10-05 6 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "49": [ + "2024-10-05 6 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "50": [ + "2024-10-05 6 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 126, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "51": [ + "2024-10-05 6 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "52": [ + "2024-10-05 6 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "53": [ + "2024-10-05 6 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "54": [ + "2024-10-05 6 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "55": [ + "2024-10-05 6 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "56": [ + "2024-10-05 6 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "57": [ + "2024-10-05 6 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "58": [ + "2024-10-05 6 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 133, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "59": [ + "2024-10-05 6 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "60": [ + "2024-10-05 6 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "61": [ + "2024-10-05 6 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "62": [ + "2024-10-05 6 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "63": [ + "2024-10-05 6 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "64": [ + "2024-10-05 6 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 114, + 0, + 0, + 0 + ], + "65": [ + "2024-10-05 6 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "66": [ + "2024-10-05 6 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "67": [ + "2024-10-05 6 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "68": [ + "2024-10-05 6 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "69": [ + "2024-10-05 6 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "70": [ + "2024-10-05 6 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "71": [ + "2024-10-05 6 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "72": [ + "2024-10-05 6 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "73": [ + "2024-10-05 6 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "74": [ + "2024-10-05 6 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "75": [ + "2024-10-05 6 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "76": [ + "2024-10-05 6 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "77": [ + "2024-10-05 6 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "78": [ + "2024-10-05 6 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "79": [ + "2024-10-05 6 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "80": [ + "2024-10-05 6 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "81": [ + "2024-10-05 6 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "82": [ + "2024-10-05 6 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "83": [ + "2024-10-05 6 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "84": [ + "2024-10-05 6 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "85": [ + "2024-10-05 6 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "86": [ + "2024-10-05 6 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "87": [ + "2024-10-05 6 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "88": [ + "2024-10-05 6 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 94, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "89": [ + "2024-10-05 6 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "90": [ + "2024-10-05 6 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "91": [ + "2024-10-05 6 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "92": [ + "2024-10-05 6 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "93": [ + "2024-10-05 6 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "94": [ + "2024-10-05 6 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "95": [ + "2024-10-05 6 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 217578, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 217578, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 21, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 27, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 20, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 230, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 230, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 230, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 300, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 38, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 13, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 79, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 231, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 227, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 227, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 32, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 27, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 25, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-02 5 05:46:00 00,FF88,80", + 75, + 31 + ], + "1": [ + "2025-05-23 5 01:46:00 00,FF88,80", + 79, + 42 + ], + "2": [ + "2025-05-04 0 23:46:00 00,FF88,80", + 78, + 97 + ], + "3": [ + "2025-05-03 6 00:46:00 00,FF88,80", + 80, + 33 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:18:16.938721", + "pos": 7, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:18:00", + "connection_status": true, + "connection_end": "2025-06-01 03:18:03", + "connection_consume": 3.9, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025040100007", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025040100007", + "actual_time": "2025-06-01 03:18:11.401819", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:18:11 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:18:11", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:18:14.235153", + "getProfile_end_time": "2025-06-01 03:18:15.677348", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 261925, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 301361, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 340264, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 379599, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 396315, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 414949, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 432920, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 470596, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 507630, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 525969, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 544022, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 560998, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 228231, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 229254, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 230389, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 231781, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 232994, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 234495, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 235809, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 237349, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 238684, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 239709, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 240964, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 242368, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 243699, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 244634, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 246074, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 247372, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 248868, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 250044, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 251558, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 253053, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 254491, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 255638, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 256905, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 257994, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 259092, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 260184, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 261291, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 262501, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 263627, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 264892, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 266244, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 267126, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 268521, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 269518, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 271007, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 271875, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 273034, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 274571, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 275832, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 276733, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 277807, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 279295, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 280523, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 281947, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 283113, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 284242, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 285615, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 286752, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 287911, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 288946, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 290128, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 291185, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 292361, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 293259, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 294404, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 295371, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 296526, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 298037, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 299195, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 300451, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 301526, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 303018, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 303926, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 305042, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 306350, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 307573, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 308576, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 309945, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 311240, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 312219, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 313512, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 314656, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 315711, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 316898, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 318347, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 319811, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 320804, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 322229, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 323660, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 324897, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 326233, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 327267, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 328232, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 329273, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 330288, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 331511, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 332911, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 333969, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 335152, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 336107, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 337051, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 338148, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 338623, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 339424, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 340083, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 340600, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 341123, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 341709, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 342496, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 343147, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 343509, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 343946, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 344553, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 345321, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 345675, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 346166, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 346705, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 347084, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 347950, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 348408, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 349097, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 349767, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 350290, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 350949, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 351483, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 352315, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 353104, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 353618, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 354245, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 355014, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 355634, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 356099, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 356591, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 357412, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 357832, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 358405, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 358847, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 359653, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 360321, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 360715, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 361144, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 361743, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 362585, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 363244, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 364023, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 364383, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 364775, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 365363, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 366193, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 366632, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 367041, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 367744, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 368398, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 369213, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 369759, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 370215, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 371009, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 371790, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 372343, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 373203, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 373976, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 374714, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 375566, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 375976, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 376443, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 376871, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 377241, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 377865, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 378700, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 379233, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 379676, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 380046, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 380442, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 381093, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 381495, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 381966, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 382440, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 382981, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 383445, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 384106, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 384497, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 384876, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 385253, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 385611, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 386327, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 387011, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 387582, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 388125, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 388568, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 389092, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 389811, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 390510, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 391221, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 392133, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 393514, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 394627, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 395911, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 396780, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 397960, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 399520, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 400951, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 401918, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 402786, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 404205, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 405311, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 406737, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 407755, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 409138, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 410063, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 411198, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 412501, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 413692, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 415102, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 416503, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 417568, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 418697, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 419871, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 420938, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 421976, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 422852, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 424233, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 425528, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 427052, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 428164, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 429502, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 430855, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 431795, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 432718, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 433899, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 435113, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 436654, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 438016, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 439120, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 440227, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 441552, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 442870, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 444265, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 445179, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 446065, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 447332, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 448584, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 450022, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 451339, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 452538, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 453444, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 454771, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 456192, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 457493, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 458469, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 459507, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 460843, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 461982, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 463284, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 464624, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 465798, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 466934, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 468375, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 469682, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 470692, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 471730, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 472702, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 474044, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 474997, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 476112, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 477087, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 478558, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 479688, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 480997, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 482365, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 483682, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 484805, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 485826, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 487039, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 487964, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 489419, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 490707, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 491708, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 492603, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 494123, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 495161, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 496605, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 498009, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 499047, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 499786, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 500427, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 501137, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 501939, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 502652, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 503037, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 503458, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 504032, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 504691, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 505364, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 506154, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 506699, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 507154, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 508006, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 508746, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 509372, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 509853, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 510455, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 511090, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 511854, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 512460, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 512985, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 513369, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 514229, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 515042, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 515867, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 516286, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 516682, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 517434, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 518128, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 518490, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 519039, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 519570, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 520281, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 520832, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 521275, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 521854, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 522614, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 523075, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 523884, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 524264, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 524686, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 525128, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 525620, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 526458, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 526920, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 527687, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 528163, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 529005, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 529542, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 530093, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 530924, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 531472, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 532063, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 532624, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 533246, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 533859, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 534512, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 534942, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 535434, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 536198, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 536695, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 537233, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 537642, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 538148, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 538820, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 539331, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 540177, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 540825, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 541677, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 542242, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 542788, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 543618, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 544412, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 544833, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 545530, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 546328, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 547074, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 547812, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 548615, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 549332, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 549772, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 550611, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 551343, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 552055, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 552721, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 553372, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 553831, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 554534, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 555021, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 555440, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 555855, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:18:19.772723", + "reading_end_time": "2025-06-01 03:18:29.634710", + "reading_consume": 9.752862, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 226721, + 0 + ], + "1": [ + "2024-12-14 6 00:15:00 00,FF88,80", + 8, + 226724, + 0 + ], + "2": [ + "2024-12-14 6 00:30:00 00,FF88,80", + 8, + 226726, + 0 + ], + "3": [ + "2024-12-14 6 00:45:00 00,FF88,80", + 8, + 226728, + 0 + ], + "4": [ + "2024-12-14 6 01:00:00 00,FF88,80", + 8, + 226730, + 0 + ], + "5": [ + "2024-12-14 6 01:15:00 00,FF88,80", + 8, + 226733, + 0 + ], + "6": [ + "2024-12-14 6 01:30:00 00,FF88,80", + 8, + 226735, + 0 + ], + "7": [ + "2024-12-14 6 01:45:00 00,FF88,80", + 8, + 226736, + 0 + ], + "8": [ + "2024-12-14 6 02:00:00 00,FF88,80", + 8, + 226737, + 0 + ], + "9": [ + "2024-12-14 6 02:15:00 00,FF88,80", + 8, + 226740, + 0 + ], + "10": [ + "2024-12-14 6 02:30:00 00,FF88,80", + 8, + 226741, + 0 + ], + "11": [ + "2024-12-14 6 02:45:00 00,FF88,80", + 8, + 226744, + 0 + ], + "12": [ + "2024-12-14 6 03:00:00 00,FF88,80", + 8, + 226746, + 0 + ], + "13": [ + "2024-12-14 6 03:15:00 00,FF88,80", + 8, + 226747, + 0 + ], + "14": [ + "2024-12-14 6 03:30:00 00,FF88,80", + 8, + 226749, + 0 + ], + "15": [ + "2024-12-14 6 03:45:00 00,FF88,80", + 8, + 226751, + 0 + ], + "16": [ + "2024-12-14 6 04:00:00 00,FF88,80", + 8, + 226752, + 0 + ], + "17": [ + "2024-12-14 6 04:15:00 00,FF88,80", + 8, + 226754, + 0 + ], + "18": [ + "2024-12-14 6 04:30:00 00,FF88,80", + 8, + 226755, + 0 + ], + "19": [ + "2024-12-14 6 04:45:00 00,FF88,80", + 8, + 226757, + 0 + ], + "20": [ + "2024-12-14 6 05:00:00 00,FF88,80", + 8, + 226758, + 0 + ], + "21": [ + "2024-12-14 6 05:15:00 00,FF88,80", + 8, + 226761, + 0 + ], + "22": [ + "2024-12-14 6 05:30:00 00,FF88,80", + 8, + 226764, + 0 + ], + "23": [ + "2024-12-14 6 05:45:00 00,FF88,80", + 8, + 226767, + 0 + ], + "24": [ + "2024-12-14 6 06:00:00 00,FF88,80", + 8, + 226784, + 0 + ], + "25": [ + "2024-12-14 6 06:15:00 00,FF88,80", + 8, + 226797, + 0 + ], + "26": [ + "2024-12-14 6 06:30:00 00,FF88,80", + 8, + 226808, + 0 + ], + "27": [ + "2024-12-14 6 06:45:00 00,FF88,80", + 8, + 226828, + 0 + ], + "28": [ + "2024-12-14 6 07:00:00 00,FF88,80", + 8, + 226847, + 0 + ], + "29": [ + "2024-12-14 6 07:15:00 00,FF88,80", + 8, + 226866, + 0 + ], + "30": [ + "2024-12-14 6 07:30:00 00,FF88,80", + 8, + 226884, + 0 + ], + "31": [ + "2024-12-14 6 07:45:00 00,FF88,80", + 8, + 226895, + 0 + ], + "32": [ + "2024-12-14 6 08:00:00 00,FF88,80", + 8, + 226910, + 0 + ], + "33": [ + "2024-12-14 6 08:15:00 00,FF88,80", + 8, + 226922, + 0 + ], + "34": [ + "2024-12-14 6 08:30:00 00,FF88,80", + 8, + 226937, + 0 + ], + "35": [ + "2024-12-14 6 08:45:00 00,FF88,80", + 8, + 226956, + 0 + ], + "36": [ + "2024-12-14 6 09:00:00 00,FF88,80", + 8, + 226976, + 0 + ], + "37": [ + "2024-12-14 6 09:15:00 00,FF88,80", + 8, + 226991, + 0 + ], + "38": [ + "2024-12-14 6 09:30:00 00,FF88,80", + 8, + 227009, + 0 + ], + "39": [ + "2024-12-14 6 09:45:00 00,FF88,80", + 8, + 227026, + 0 + ], + "40": [ + "2024-12-14 6 10:00:00 00,FF88,80", + 8, + 227032, + 0 + ], + "41": [ + "2024-12-14 6 10:15:00 00,FF88,80", + 8, + 227037, + 0 + ], + "42": [ + "2024-12-14 6 10:30:00 00,FF88,80", + 8, + 227042, + 0 + ], + "43": [ + "2024-12-14 6 10:45:00 00,FF88,80", + 8, + 227052, + 0 + ], + "44": [ + "2024-12-14 6 11:00:00 00,FF88,80", + 8, + 227059, + 0 + ], + "45": [ + "2024-12-14 6 11:15:00 00,FF88,80", + 8, + 227067, + 0 + ], + "46": [ + "2024-12-14 6 11:30:00 00,FF88,80", + 8, + 227076, + 0 + ], + "47": [ + "2024-12-14 6 11:45:00 00,FF88,80", + 8, + 227086, + 0 + ], + "48": [ + "2024-12-14 6 12:00:00 00,FF88,80", + 8, + 227094, + 0 + ], + "49": [ + "2024-12-14 6 12:15:00 00,FF88,80", + 8, + 227099, + 0 + ], + "50": [ + "2024-12-14 6 12:30:00 00,FF88,80", + 8, + 227105, + 0 + ], + "51": [ + "2024-12-14 6 12:45:00 00,FF88,80", + 8, + 227115, + 0 + ], + "52": [ + "2024-12-14 6 13:00:00 00,FF88,80", + 8, + 227124, + 0 + ], + "53": [ + "2024-12-14 6 13:15:00 00,FF88,80", + 8, + 227134, + 0 + ], + "54": [ + "2024-12-14 6 13:30:00 00,FF88,80", + 8, + 227140, + 0 + ], + "55": [ + "2024-12-14 6 13:45:00 00,FF88,80", + 8, + 227149, + 0 + ], + "56": [ + "2024-12-14 6 14:00:00 00,FF88,80", + 8, + 227158, + 0 + ], + "57": [ + "2024-12-14 6 14:15:00 00,FF88,80", + 8, + 227163, + 0 + ], + "58": [ + "2024-12-14 6 14:30:00 00,FF88,80", + 8, + 227167, + 0 + ], + "59": [ + "2024-12-14 6 14:45:00 00,FF88,80", + 8, + 227177, + 0 + ], + "60": [ + "2024-12-14 6 15:00:00 00,FF88,80", + 8, + 227181, + 0 + ], + "61": [ + "2024-12-14 6 15:15:00 00,FF88,80", + 8, + 227185, + 0 + ], + "62": [ + "2024-12-14 6 15:30:00 00,FF88,80", + 8, + 227189, + 0 + ], + "63": [ + "2024-12-14 6 15:45:00 00,FF88,80", + 8, + 227198, + 0 + ], + "64": [ + "2024-12-14 6 16:00:00 00,FF88,80", + 8, + 227206, + 0 + ], + "65": [ + "2024-12-14 6 16:15:00 00,FF88,80", + 8, + 227210, + 0 + ], + "66": [ + "2024-12-14 6 16:30:00 00,FF88,80", + 8, + 227217, + 0 + ], + "67": [ + "2024-12-14 6 16:45:00 00,FF88,80", + 8, + 227222, + 0 + ], + "68": [ + "2024-12-14 6 17:00:00 00,FF88,80", + 8, + 227233, + 0 + ], + "69": [ + "2024-12-14 6 17:15:00 00,FF88,80", + 8, + 227254, + 0 + ], + "70": [ + "2024-12-14 6 17:30:00 00,FF88,80", + 8, + 227275, + 0 + ], + "71": [ + "2024-12-14 6 17:45:00 00,FF88,80", + 8, + 227292, + 0 + ], + "72": [ + "2024-12-14 6 18:00:00 00,FF88,80", + 8, + 227304, + 0 + ], + "73": [ + "2024-12-14 6 18:15:00 00,FF88,80", + 8, + 227321, + 0 + ], + "74": [ + "2024-12-14 6 18:30:00 00,FF88,80", + 8, + 227343, + 0 + ], + "75": [ + "2024-12-14 6 18:45:00 00,FF88,80", + 8, + 227357, + 0 + ], + "76": [ + "2024-12-14 6 19:00:00 00,FF88,80", + 8, + 227376, + 0 + ], + "77": [ + "2024-12-14 6 19:15:00 00,FF88,80", + 8, + 227390, + 0 + ], + "78": [ + "2024-12-14 6 19:30:00 00,FF88,80", + 8, + 227405, + 0 + ], + "79": [ + "2024-12-14 6 19:45:00 00,FF88,80", + 8, + 227426, + 0 + ], + "80": [ + "2024-12-14 6 20:00:00 00,FF88,80", + 8, + 227444, + 0 + ], + "81": [ + "2024-12-14 6 20:15:00 00,FF88,80", + 8, + 227457, + 0 + ], + "82": [ + "2024-12-14 6 20:30:00 00,FF88,80", + 8, + 227476, + 0 + ], + "83": [ + "2024-12-14 6 20:45:00 00,FF88,80", + 8, + 227494, + 0 + ], + "84": [ + "2024-12-14 6 21:00:00 00,FF88,80", + 8, + 227508, + 0 + ], + "85": [ + "2024-12-14 6 21:15:00 00,FF88,80", + 8, + 227529, + 0 + ], + "86": [ + "2024-12-14 6 21:30:00 00,FF88,80", + 8, + 227548, + 0 + ], + "87": [ + "2024-12-14 6 21:45:00 00,FF88,80", + 8, + 227566, + 0 + ], + "88": [ + "2024-12-14 6 22:00:00 00,FF88,80", + 8, + 227582, + 0 + ], + "89": [ + "2024-12-14 6 22:15:00 00,FF88,80", + 8, + 227594, + 0 + ], + "90": [ + "2024-12-14 6 22:30:00 00,FF88,80", + 8, + 227614, + 0 + ], + "91": [ + "2024-12-14 6 22:45:00 00,FF88,80", + 8, + 227630, + 0 + ], + "92": [ + "2024-12-14 6 23:00:00 00,FF88,80", + 8, + 227637, + 0 + ], + "93": [ + "2024-12-14 6 23:15:00 00,FF88,80", + 8, + 227645, + 0 + ], + "94": [ + "2024-12-14 6 23:30:00 00,FF88,80", + 8, + 227652, + 0 + ], + "95": [ + "2024-12-14 6 23:45:00 00,FF88,80", + 8, + 227661, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "1": [ + "2024-12-14 6 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "2": [ + "2024-12-14 6 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "3": [ + "2024-12-14 6 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "4": [ + "2024-12-14 6 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 112, + 0, + 0, + 3, + 138, + 0, + 0, + 0 + ], + "5": [ + "2024-12-14 6 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "6": [ + "2024-12-14 6 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "7": [ + "2024-12-14 6 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "8": [ + "2024-12-14 6 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 124, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "9": [ + "2024-12-14 6 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "10": [ + "2024-12-14 6 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "11": [ + "2024-12-14 6 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "12": [ + "2024-12-14 6 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 137, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "13": [ + "2024-12-14 6 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "14": [ + "2024-12-14 6 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "15": [ + "2024-12-14 6 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "16": [ + "2024-12-14 6 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "17": [ + "2024-12-14 6 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "18": [ + "2024-12-14 6 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "19": [ + "2024-12-14 6 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "20": [ + "2024-12-14 6 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "21": [ + "2024-12-14 6 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "22": [ + "2024-12-14 6 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "23": [ + "2024-12-14 6 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 130, + 0, + 0, + 0 + ], + "24": [ + "2024-12-14 6 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 96, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "25": [ + "2024-12-14 6 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 149, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "26": [ + "2024-12-14 6 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "27": [ + "2024-12-14 6 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "28": [ + "2024-12-14 6 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "29": [ + "2024-12-14 6 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 91, + 0, + 0, + 0 + ], + "30": [ + "2024-12-14 6 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "31": [ + "2024-12-14 6 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 131, + 0, + 0, + 0 + ], + "32": [ + "2024-12-14 6 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 100, + 0, + 0, + 0 + ], + "33": [ + "2024-12-14 6 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "34": [ + "2024-12-14 6 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "35": [ + "2024-12-14 6 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "36": [ + "2024-12-14 6 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "37": [ + "2024-12-14 6 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "38": [ + "2024-12-14 6 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "39": [ + "2024-12-14 6 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "40": [ + "2024-12-14 6 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "41": [ + "2024-12-14 6 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "42": [ + "2024-12-14 6 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 139, + 0, + 0, + 0 + ], + "43": [ + "2024-12-14 6 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 110, + 0, + 0, + 0 + ], + "44": [ + "2024-12-14 6 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 120, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "45": [ + "2024-12-14 6 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "46": [ + "2024-12-14 6 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "47": [ + "2024-12-14 6 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "48": [ + "2024-12-14 6 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "49": [ + "2024-12-14 6 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "50": [ + "2024-12-14 6 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "51": [ + "2024-12-14 6 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "52": [ + "2024-12-14 6 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 104, + 0, + 0, + 0 + ], + "53": [ + "2024-12-14 6 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "54": [ + "2024-12-14 6 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 120, + 0, + 0, + 0 + ], + "55": [ + "2024-12-14 6 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 83, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "56": [ + "2024-12-14 6 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "57": [ + "2024-12-14 6 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "58": [ + "2024-12-14 6 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "59": [ + "2024-12-14 6 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 141, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "60": [ + "2024-12-14 6 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 88, + 0, + 0, + 0 + ], + "61": [ + "2024-12-14 6 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 125, + 0, + 0, + 0 + ], + "62": [ + "2024-12-14 6 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "63": [ + "2024-12-14 6 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "64": [ + "2024-12-14 6 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 136, + 0, + 0, + 0 + ], + "65": [ + "2024-12-14 6 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 94, + 0, + 0, + 0 + ], + "66": [ + "2024-12-14 6 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "67": [ + "2024-12-14 6 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "68": [ + "2024-12-14 6 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 87, + 0, + 0, + 3, + 126, + 0, + 0, + 0 + ], + "69": [ + "2024-12-14 6 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "70": [ + "2024-12-14 6 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "71": [ + "2024-12-14 6 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "72": [ + "2024-12-14 6 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "73": [ + "2024-12-14 6 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "74": [ + "2024-12-14 6 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 139, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "75": [ + "2024-12-14 6 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "76": [ + "2024-12-14 6 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "77": [ + "2024-12-14 6 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "78": [ + "2024-12-14 6 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 99, + 0, + 0, + 0 + ], + "79": [ + "2024-12-14 6 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 123, + 0, + 0, + 3, + 81, + 0, + 0, + 0 + ], + "80": [ + "2024-12-14 6 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 88, + 0, + 0, + 3, + 144, + 0, + 0, + 0 + ], + "81": [ + "2024-12-14 6 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 84, + 0, + 0, + 0 + ], + "82": [ + "2024-12-14 6 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 143, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "83": [ + "2024-12-14 6 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "84": [ + "2024-12-14 6 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "85": [ + "2024-12-14 6 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 103, + 0, + 0, + 0 + ], + "86": [ + "2024-12-14 6 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 100, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "87": [ + "2024-12-14 6 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "88": [ + "2024-12-14 6 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "89": [ + "2024-12-14 6 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "90": [ + "2024-12-14 6 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 101, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "91": [ + "2024-12-14 6 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 143, + 0, + 0, + 0 + ], + "92": [ + "2024-12-14 6 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "93": [ + "2024-12-14 6 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "94": [ + "2024-12-14 6 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "95": [ + "2024-12-14 6 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 555855, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 555855, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 26, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 32, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 22, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 227, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 226, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 228, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 462, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 70, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 78, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 100, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 226, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 226, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 227, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 20, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 17, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 18, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-20 2 14:18:00 00,FF88,80", + 80, + 99 + ], + "1": [ + "2025-05-02 5 12:18:00 00,FF88,80", + 74, + 6 + ], + "2": [ + "2025-05-08 4 15:18:00 00,FF88,80", + 78, + 63 + ], + "3": [ + "2025-05-06 2 21:18:00 00,FF88,80", + 75, + 82 + ], + "4": [ + "2025-05-22 4 19:18:00 00,FF88,80", + 75, + 28 + ], + "5": [ + "2025-05-23 5 17:18:00 00,FF88,80", + 71, + 35 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + }, + { + "_id": "2025-06-01 03:24:32.675639", + "pos": 8, + "ip": null, + "ping": false, + "connection_start": "2025-06-01 03:24:00", + "connection_status": true, + "connection_end": "2025-06-01 03:24:04", + "connection_consume": 4.6, + "pdu_size_negotiate": 1267, + "app1_version": "10000021", + "app2_version": "11000214", + "eeprom_write_times": [ + "D117731A", + 0, + 0, + [ + 0, + 0, + 42, + 0, + 0, + 0, + 12, + 1, + 1, + 51, + 668, + 333, + 6, + 0, + 0, + 1, + 1, + 4, + 0, + 0, + 0, + 0, + 2, + 22, + 0, + 1, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2289, + 0, + 0, + 0, + 0, + 0, + 0, + 1 + ] + ], + "stack_information": [ + "BC37675B", + 5, + [ + [ + "main", + 5632, + 536872428, + 1980, + 0 + ], + [ + "mic", + 1536, + 536878176, + 1032, + 0 + ], + [ + "dlms", + 4608, + 536879828, + 2492, + 0 + ], + [ + "mbus", + 1536, + 536886204, + 996, + 0 + ], + [ + "module", + 1536, + 536884552, + 352, + 0 + ] + ], + [ + 303, + 0, + 3291, + 7530, + 3296 + ] + ], + "1,0.0.96.1.0.255,2#Device ID&value": "2025040100008", + "1,0.0.42.0.0.255,2#LogicalName&value": "KFM2025040100008", + "actual_time": "2025-06-01 03:24:11.471128", + "8,0.0.1.0.0.255,2#Clock&time": "2025-06-01 0 03:24:11 00,FF88,80", + "8,0.0.1.0.0.255,3#Clock&time_zone": -60, + "8,0.0.1.0.0.255,4#Clock&status": 128, + "8,0.0.1.0.0.255,5#Clock&daylights_savings_begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "8,0.0.1.0.0.255,6#Clock&daylights_savings_end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "8,0.0.1.0.0.255,7#Clock&daylights_savings_deviation": 60, + "8,0.0.1.0.0.255,8#Clock&daylights_savings_enabled": 1, + "20,0.0.13.0.0.255,3#Activity calendar&season_profile_active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "00" + ] + }, + "20,0.0.13.0.0.255,4#Activity calendar&week_profile_table_active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,5#Activity calendar&day_profile_table_active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "20,0.0.13.0.0.255,7#Activity calendar&season_profile_passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "20,0.0.13.0.0.255,8#Activity calendar&week_profile_table_passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "20,0.0.13.0.0.255,9#Activity calendar&day_profile_table_passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "11,0.0.11.0.0.255,2#Special Days Table&entries": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "currently_time": "2025-06-01 03:24:11", + "1,0.0.96.14.0.255,2#Currently active tariff&value": "0001", + "get_buffer_status": true, + "getProfile_start_time": "2025-06-01 03:24:14.883850", + "getProfile_end_time": "2025-06-01 03:24:14.380670", + "7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer": { + "0": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 265408, + 0, + 0, + 0 + ], + "1": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 288970, + 0, + 0, + 0 + ], + "2": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 312277, + 0, + 0, + 0 + ], + "3": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 335761, + 0, + 0, + 0 + ], + "4": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 346746, + 0, + 0, + 0 + ], + "5": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 358419, + 0, + 0, + 0 + ], + "6": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 369499, + 0, + 0, + 0 + ], + "7": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 393907, + 0, + 0, + 0 + ], + "8": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 418000, + 0, + 0, + 0 + ], + "9": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 429244, + 0, + 0, + 0 + ], + "10": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 440168, + 0, + 0, + 0 + ], + "11": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 451691, + 0, + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,3#Monthly Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.98.1.0.255,4#Monthly Billing Profile&capture_period": 0, + "7,1.0.98.1.0.255,5#Monthly Billing Profile&sort_method": 1, + "7,1.0.98.1.0.255,6#Monthly Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use": 12, + "7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries": 13, + "22,0.0.15.0.0.255,4#Monthly Billing Profile&monthbilling_schedule": { + "0": [ + "00:00:00:00", + "FFFF-FF-01-FF" + ] + }, + "7,1.0.99.2.0.255,2#Daily Billing Profile&buffer": { + "0": [ + "2024-06-01 6 00:00:00 00,FF88,80", + 8, + 245172, + 0, + 0, + 0 + ], + "1": [ + "2024-06-02 0 00:00:00 00,FF88,80", + 8, + 246101, + 0, + 0, + 0 + ], + "2": [ + "2024-06-03 1 00:00:00 00,FF88,80", + 8, + 246914, + 0, + 0, + 0 + ], + "3": [ + "2024-06-04 2 00:00:00 00,FF88,80", + 8, + 247851, + 0, + 0, + 0 + ], + "4": [ + "2024-06-05 3 00:00:00 00,FF88,80", + 8, + 248654, + 0, + 0, + 0 + ], + "5": [ + "2024-06-06 4 00:00:00 00,FF88,80", + 8, + 249553, + 0, + 0, + 0 + ], + "6": [ + "2024-06-07 5 00:00:00 00,FF88,80", + 8, + 250442, + 0, + 0, + 0 + ], + "7": [ + "2024-06-08 6 00:00:00 00,FF88,80", + 8, + 251068, + 0, + 0, + 0 + ], + "8": [ + "2024-06-09 0 00:00:00 00,FF88,80", + 8, + 252020, + 0, + 0, + 0 + ], + "9": [ + "2024-06-10 1 00:00:00 00,FF88,80", + 8, + 252908, + 0, + 0, + 0 + ], + "10": [ + "2024-06-11 2 00:00:00 00,FF88,80", + 8, + 253663, + 0, + 0, + 0 + ], + "11": [ + "2024-06-12 3 00:00:00 00,FF88,80", + 8, + 254299, + 0, + 0, + 0 + ], + "12": [ + "2024-06-13 4 00:00:00 00,FF88,80", + 8, + 254845, + 0, + 0, + 0 + ], + "13": [ + "2024-06-14 5 00:00:00 00,FF88,80", + 8, + 255662, + 0, + 0, + 0 + ], + "14": [ + "2024-06-15 6 00:00:00 00,FF88,80", + 8, + 256392, + 0, + 0, + 0 + ], + "15": [ + "2024-06-16 0 00:00:00 00,FF88,80", + 8, + 257081, + 0, + 0, + 0 + ], + "16": [ + "2024-06-17 1 00:00:00 00,FF88,80", + 8, + 257816, + 0, + 0, + 0 + ], + "17": [ + "2024-06-18 2 00:00:00 00,FF88,80", + 8, + 258744, + 0, + 0, + 0 + ], + "18": [ + "2024-06-19 3 00:00:00 00,FF88,80", + 8, + 259662, + 0, + 0, + 0 + ], + "19": [ + "2024-06-20 4 00:00:00 00,FF88,80", + 8, + 260320, + 0, + 0, + 0 + ], + "20": [ + "2024-06-21 5 00:00:00 00,FF88,80", + 8, + 260921, + 0, + 0, + 0 + ], + "21": [ + "2024-06-22 6 00:00:00 00,FF88,80", + 8, + 261832, + 0, + 0, + 0 + ], + "22": [ + "2024-06-23 0 00:00:00 00,FF88,80", + 8, + 262540, + 0, + 0, + 0 + ], + "23": [ + "2024-06-24 1 00:00:00 00,FF88,80", + 8, + 263417, + 0, + 0, + 0 + ], + "24": [ + "2024-06-25 2 00:00:00 00,FF88,80", + 8, + 264190, + 0, + 0, + 0 + ], + "25": [ + "2024-06-26 3 00:00:00 00,FF88,80", + 8, + 265004, + 0, + 0, + 0 + ], + "26": [ + "2024-06-27 4 00:00:00 00,FF88,80", + 8, + 265815, + 0, + 0, + 0 + ], + "27": [ + "2024-06-28 5 00:00:00 00,FF88,80", + 8, + 266477, + 0, + 0, + 0 + ], + "28": [ + "2024-06-29 6 00:00:00 00,FF88,80", + 8, + 267383, + 0, + 0, + 0 + ], + "29": [ + "2024-06-30 0 00:00:00 00,FF88,80", + 8, + 268228, + 0, + 0, + 0 + ], + "30": [ + "2024-07-01 1 00:00:00 00,FF88,80", + 8, + 269187, + 0, + 0, + 0 + ], + "31": [ + "2024-07-02 2 00:00:00 00,FF88,80", + 8, + 270015, + 0, + 0, + 0 + ], + "32": [ + "2024-07-03 3 00:00:00 00,FF88,80", + 8, + 270919, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 271466, + 0, + 0, + 0 + ], + "34": [ + "2024-07-05 5 00:00:00 00,FF88,80", + 8, + 272010, + 0, + 0, + 0 + ], + "35": [ + "2024-07-06 6 00:00:00 00,FF88,80", + 8, + 272853, + 0, + 0, + 0 + ], + "36": [ + "2024-07-07 0 00:00:00 00,FF88,80", + 8, + 273517, + 0, + 0, + 0 + ], + "37": [ + "2024-07-08 1 00:00:00 00,FF88,80", + 8, + 274392, + 0, + 0, + 0 + ], + "38": [ + "2024-07-09 2 00:00:00 00,FF88,80", + 8, + 275080, + 0, + 0, + 0 + ], + "39": [ + "2024-07-10 3 00:00:00 00,FF88,80", + 8, + 275921, + 0, + 0, + 0 + ], + "40": [ + "2024-07-11 4 00:00:00 00,FF88,80", + 8, + 276709, + 0, + 0, + 0 + ], + "41": [ + "2024-07-12 5 00:00:00 00,FF88,80", + 8, + 277470, + 0, + 0, + 0 + ], + "42": [ + "2024-07-13 6 00:00:00 00,FF88,80", + 8, + 278175, + 0, + 0, + 0 + ], + "43": [ + "2024-07-14 0 00:00:00 00,FF88,80", + 8, + 278779, + 0, + 0, + 0 + ], + "44": [ + "2024-07-15 1 00:00:00 00,FF88,80", + 8, + 279664, + 0, + 0, + 0 + ], + "45": [ + "2024-07-16 2 00:00:00 00,FF88,80", + 8, + 280219, + 0, + 0, + 0 + ], + "46": [ + "2024-07-17 3 00:00:00 00,FF88,80", + 8, + 280837, + 0, + 0, + 0 + ], + "47": [ + "2024-07-18 4 00:00:00 00,FF88,80", + 8, + 281444, + 0, + 0, + 0 + ], + "48": [ + "2024-07-19 5 00:00:00 00,FF88,80", + 8, + 282399, + 0, + 0, + 0 + ], + "49": [ + "2024-07-20 6 00:00:00 00,FF88,80", + 8, + 283190, + 0, + 0, + 0 + ], + "50": [ + "2024-07-21 0 00:00:00 00,FF88,80", + 8, + 283807, + 0, + 0, + 0 + ], + "51": [ + "2024-07-22 1 00:00:00 00,FF88,80", + 8, + 284360, + 0, + 0, + 0 + ], + "52": [ + "2024-07-23 2 00:00:00 00,FF88,80", + 8, + 285093, + 0, + 0, + 0 + ], + "53": [ + "2024-07-24 3 00:00:00 00,FF88,80", + 8, + 285724, + 0, + 0, + 0 + ], + "54": [ + "2024-07-25 4 00:00:00 00,FF88,80", + 8, + 286573, + 0, + 0, + 0 + ], + "55": [ + "2024-07-26 5 00:00:00 00,FF88,80", + 8, + 287494, + 0, + 0, + 0 + ], + "56": [ + "2024-07-27 6 00:00:00 00,FF88,80", + 8, + 288388, + 0, + 0, + 0 + ], + "57": [ + "2024-07-28 0 00:00:00 00,FF88,80", + 8, + 289174, + 0, + 0, + 0 + ], + "58": [ + "2024-07-29 1 00:00:00 00,FF88,80", + 8, + 289823, + 0, + 0, + 0 + ], + "59": [ + "2024-07-30 2 00:00:00 00,FF88,80", + 8, + 290693, + 0, + 0, + 0 + ], + "60": [ + "2024-07-31 3 00:00:00 00,FF88,80", + 8, + 291374, + 0, + 0, + 0 + ], + "61": [ + "2024-08-01 4 00:00:00 00,FF88,80", + 8, + 292176, + 0, + 0, + 0 + ], + "62": [ + "2024-08-02 5 00:00:00 00,FF88,80", + 8, + 293002, + 0, + 0, + 0 + ], + "63": [ + "2024-08-03 6 00:00:00 00,FF88,80", + 8, + 293639, + 0, + 0, + 0 + ], + "64": [ + "2024-08-04 0 00:00:00 00,FF88,80", + 8, + 294568, + 0, + 0, + 0 + ], + "65": [ + "2024-08-05 1 00:00:00 00,FF88,80", + 8, + 295129, + 0, + 0, + 0 + ], + "66": [ + "2024-08-06 2 00:00:00 00,FF88,80", + 8, + 295721, + 0, + 0, + 0 + ], + "67": [ + "2024-08-07 3 00:00:00 00,FF88,80", + 8, + 296493, + 0, + 0, + 0 + ], + "68": [ + "2024-08-08 4 00:00:00 00,FF88,80", + 8, + 297177, + 0, + 0, + 0 + ], + "69": [ + "2024-08-09 5 00:00:00 00,FF88,80", + 8, + 297862, + 0, + 0, + 0 + ], + "70": [ + "2024-08-10 6 00:00:00 00,FF88,80", + 8, + 298685, + 0, + 0, + 0 + ], + "71": [ + "2024-08-11 0 00:00:00 00,FF88,80", + 8, + 299513, + 0, + 0, + 0 + ], + "72": [ + "2024-08-12 1 00:00:00 00,FF88,80", + 8, + 300318, + 0, + 0, + 0 + ], + "73": [ + "2024-08-13 2 00:00:00 00,FF88,80", + 8, + 300980, + 0, + 0, + 0 + ], + "74": [ + "2024-08-14 3 00:00:00 00,FF88,80", + 8, + 301660, + 0, + 0, + 0 + ], + "75": [ + "2024-08-15 4 00:00:00 00,FF88,80", + 8, + 302475, + 0, + 0, + 0 + ], + "76": [ + "2024-08-16 5 00:00:00 00,FF88,80", + 8, + 303418, + 0, + 0, + 0 + ], + "77": [ + "2024-08-17 6 00:00:00 00,FF88,80", + 8, + 303992, + 0, + 0, + 0 + ], + "78": [ + "2024-08-18 0 00:00:00 00,FF88,80", + 8, + 304615, + 0, + 0, + 0 + ], + "79": [ + "2024-08-19 1 00:00:00 00,FF88,80", + 8, + 305245, + 0, + 0, + 0 + ], + "80": [ + "2024-08-20 2 00:00:00 00,FF88,80", + 8, + 305806, + 0, + 0, + 0 + ], + "81": [ + "2024-08-21 3 00:00:00 00,FF88,80", + 8, + 306728, + 0, + 0, + 0 + ], + "82": [ + "2024-08-22 4 00:00:00 00,FF88,80", + 8, + 307516, + 0, + 0, + 0 + ], + "83": [ + "2024-08-23 5 00:00:00 00,FF88,80", + 8, + 308379, + 0, + 0, + 0 + ], + "84": [ + "2024-08-24 6 00:00:00 00,FF88,80", + 8, + 309206, + 0, + 0, + 0 + ], + "85": [ + "2024-08-25 0 00:00:00 00,FF88,80", + 8, + 310032, + 0, + 0, + 0 + ], + "86": [ + "2024-08-26 1 00:00:00 00,FF88,80", + 8, + 310918, + 0, + 0, + 0 + ], + "87": [ + "2024-08-27 2 00:00:00 00,FF88,80", + 8, + 311772, + 0, + 0, + 0 + ], + "88": [ + "2024-08-28 3 00:00:00 00,FF88,80", + 8, + 312571, + 0, + 0, + 0 + ], + "89": [ + "2024-08-29 4 00:00:00 00,FF88,80", + 8, + 313460, + 0, + 0, + 0 + ], + "90": [ + "2024-08-30 5 00:00:00 00,FF88,80", + 8, + 314135, + 0, + 0, + 0 + ], + "91": [ + "2024-08-31 6 00:00:00 00,FF88,80", + 8, + 314702, + 0, + 0, + 0 + ], + "92": [ + "2024-09-01 0 00:00:00 00,FF88,80", + 8, + 315146, + 0, + 0, + 0 + ], + "93": [ + "2024-09-02 1 00:00:00 00,FF88,80", + 8, + 315649, + 0, + 0, + 0 + ], + "94": [ + "2024-09-03 2 00:00:00 00,FF88,80", + 8, + 315898, + 0, + 0, + 0 + ], + "95": [ + "2024-09-04 3 00:00:00 00,FF88,80", + 8, + 316188, + 0, + 0, + 0 + ], + "96": [ + "2024-09-05 4 00:00:00 00,FF88,80", + 8, + 316514, + 0, + 0, + 0 + ], + "97": [ + "2024-09-06 5 00:00:00 00,FF88,80", + 8, + 316736, + 0, + 0, + 0 + ], + "98": [ + "2024-09-07 6 00:00:00 00,FF88,80", + 8, + 317268, + 0, + 0, + 0 + ], + "99": [ + "2024-09-08 0 00:00:00 00,FF88,80", + 8, + 317535, + 0, + 0, + 0 + ], + "100": [ + "2024-09-09 1 00:00:00 00,FF88,80", + 8, + 317863, + 0, + 0, + 0 + ], + "101": [ + "2024-09-10 2 00:00:00 00,FF88,80", + 8, + 318360, + 0, + 0, + 0 + ], + "102": [ + "2024-09-11 3 00:00:00 00,FF88,80", + 8, + 318835, + 0, + 0, + 0 + ], + "103": [ + "2024-09-12 4 00:00:00 00,FF88,80", + 8, + 319096, + 0, + 0, + 0 + ], + "104": [ + "2024-09-13 5 00:00:00 00,FF88,80", + 8, + 319448, + 0, + 0, + 0 + ], + "105": [ + "2024-09-14 6 00:00:00 00,FF88,80", + 8, + 319878, + 0, + 0, + 0 + ], + "106": [ + "2024-09-15 0 00:00:00 00,FF88,80", + 8, + 320381, + 0, + 0, + 0 + ], + "107": [ + "2024-09-16 1 00:00:00 00,FF88,80", + 8, + 320852, + 0, + 0, + 0 + ], + "108": [ + "2024-09-17 2 00:00:00 00,FF88,80", + 8, + 321175, + 0, + 0, + 0 + ], + "109": [ + "2024-09-18 3 00:00:00 00,FF88,80", + 8, + 321610, + 0, + 0, + 0 + ], + "110": [ + "2024-09-19 4 00:00:00 00,FF88,80", + 8, + 321991, + 0, + 0, + 0 + ], + "111": [ + "2024-09-20 5 00:00:00 00,FF88,80", + 8, + 322363, + 0, + 0, + 0 + ], + "112": [ + "2024-09-21 6 00:00:00 00,FF88,80", + 8, + 322745, + 0, + 0, + 0 + ], + "113": [ + "2024-09-22 0 00:00:00 00,FF88,80", + 8, + 323136, + 0, + 0, + 0 + ], + "114": [ + "2024-09-23 1 00:00:00 00,FF88,80", + 8, + 323566, + 0, + 0, + 0 + ], + "115": [ + "2024-09-24 2 00:00:00 00,FF88,80", + 8, + 323891, + 0, + 0, + 0 + ], + "116": [ + "2024-09-25 3 00:00:00 00,FF88,80", + 8, + 324214, + 0, + 0, + 0 + ], + "117": [ + "2024-09-26 4 00:00:00 00,FF88,80", + 8, + 324453, + 0, + 0, + 0 + ], + "118": [ + "2024-09-27 5 00:00:00 00,FF88,80", + 8, + 324869, + 0, + 0, + 0 + ], + "119": [ + "2024-09-28 6 00:00:00 00,FF88,80", + 8, + 325220, + 0, + 0, + 0 + ], + "120": [ + "2024-09-29 0 00:00:00 00,FF88,80", + 8, + 325446, + 0, + 0, + 0 + ], + "121": [ + "2024-09-30 1 00:00:00 00,FF88,80", + 8, + 325853, + 0, + 0, + 0 + ], + "122": [ + "2024-10-01 2 00:00:00 00,FF88,80", + 8, + 326357, + 0, + 0, + 0 + ], + "123": [ + "2024-10-02 3 00:00:00 00,FF88,80", + 8, + 326596, + 0, + 0, + 0 + ], + "124": [ + "2024-10-03 4 00:00:00 00,FF88,80", + 8, + 326883, + 0, + 0, + 0 + ], + "125": [ + "2024-10-04 5 00:00:00 00,FF88,80", + 8, + 327126, + 0, + 0, + 0 + ], + "126": [ + "2024-10-05 6 00:00:00 00,FF88,80", + 8, + 327492, + 0, + 0, + 0 + ], + "127": [ + "2024-10-06 0 00:00:00 00,FF88,80", + 8, + 327994, + 0, + 0, + 0 + ], + "128": [ + "2024-10-07 1 00:00:00 00,FF88,80", + 8, + 328305, + 0, + 0, + 0 + ], + "129": [ + "2024-10-08 2 00:00:00 00,FF88,80", + 8, + 328784, + 0, + 0, + 0 + ], + "130": [ + "2024-10-09 3 00:00:00 00,FF88,80", + 8, + 329097, + 0, + 0, + 0 + ], + "131": [ + "2024-10-10 4 00:00:00 00,FF88,80", + 8, + 329529, + 0, + 0, + 0 + ], + "132": [ + "2024-10-11 5 00:00:00 00,FF88,80", + 8, + 329963, + 0, + 0, + 0 + ], + "133": [ + "2024-10-12 6 00:00:00 00,FF88,80", + 8, + 330400, + 0, + 0, + 0 + ], + "134": [ + "2024-10-13 0 00:00:00 00,FF88,80", + 8, + 330909, + 0, + 0, + 0 + ], + "135": [ + "2024-10-14 1 00:00:00 00,FF88,80", + 8, + 331256, + 0, + 0, + 0 + ], + "136": [ + "2024-10-15 2 00:00:00 00,FF88,80", + 8, + 331621, + 0, + 0, + 0 + ], + "137": [ + "2024-10-16 3 00:00:00 00,FF88,80", + 8, + 332008, + 0, + 0, + 0 + ], + "138": [ + "2024-10-17 4 00:00:00 00,FF88,80", + 8, + 332256, + 0, + 0, + 0 + ], + "139": [ + "2024-10-18 5 00:00:00 00,FF88,80", + 8, + 332615, + 0, + 0, + 0 + ], + "140": [ + "2024-10-19 6 00:00:00 00,FF88,80", + 8, + 332907, + 0, + 0, + 0 + ], + "141": [ + "2024-10-20 0 00:00:00 00,FF88,80", + 8, + 333200, + 0, + 0, + 0 + ], + "142": [ + "2024-10-21 1 00:00:00 00,FF88,80", + 8, + 333444, + 0, + 0, + 0 + ], + "143": [ + "2024-10-22 2 00:00:00 00,FF88,80", + 8, + 333927, + 0, + 0, + 0 + ], + "144": [ + "2024-10-23 3 00:00:00 00,FF88,80", + 8, + 334411, + 0, + 0, + 0 + ], + "145": [ + "2024-10-24 4 00:00:00 00,FF88,80", + 8, + 334838, + 0, + 0, + 0 + ], + "146": [ + "2024-10-25 5 00:00:00 00,FF88,80", + 8, + 335317, + 0, + 0, + 0 + ], + "147": [ + "2024-10-26 6 00:00:00 00,FF88,80", + 8, + 335650, + 0, + 0, + 0 + ], + "148": [ + "2024-10-27 0 00:00:00 00,FF88,80", + 8, + 335999, + 0, + 0, + 0 + ], + "149": [ + "2024-10-28 1 00:00:00 00,FF88,80", + 8, + 336443, + 0, + 0, + 0 + ], + "150": [ + "2024-10-29 2 00:00:00 00,FF88,80", + 8, + 336935, + 0, + 0, + 0 + ], + "151": [ + "2024-10-30 3 00:00:00 00,FF88,80", + 8, + 337202, + 0, + 0, + 0 + ], + "152": [ + "2024-10-31 4 00:00:00 00,FF88,80", + 8, + 337551, + 0, + 0, + 0 + ], + "153": [ + "2024-11-01 5 00:00:00 00,FF88,80", + 8, + 338047, + 0, + 0, + 0 + ], + "154": [ + "2024-11-02 6 00:00:00 00,FF88,80", + 8, + 338316, + 0, + 0, + 0 + ], + "155": [ + "2024-11-03 0 00:00:00 00,FF88,80", + 8, + 338665, + 0, + 0, + 0 + ], + "156": [ + "2024-11-04 1 00:00:00 00,FF88,80", + 8, + 339043, + 0, + 0, + 0 + ], + "157": [ + "2024-11-05 2 00:00:00 00,FF88,80", + 8, + 339425, + 0, + 0, + 0 + ], + "158": [ + "2024-11-06 3 00:00:00 00,FF88,80", + 8, + 339802, + 0, + 0, + 0 + ], + "159": [ + "2024-11-07 4 00:00:00 00,FF88,80", + 8, + 340266, + 0, + 0, + 0 + ], + "160": [ + "2024-11-08 5 00:00:00 00,FF88,80", + 8, + 340621, + 0, + 0, + 0 + ], + "161": [ + "2024-11-09 6 00:00:00 00,FF88,80", + 8, + 340885, + 0, + 0, + 0 + ], + "162": [ + "2024-11-10 0 00:00:00 00,FF88,80", + 8, + 341287, + 0, + 0, + 0 + ], + "163": [ + "2024-11-11 1 00:00:00 00,FF88,80", + 8, + 341799, + 0, + 0, + 0 + ], + "164": [ + "2024-11-12 2 00:00:00 00,FF88,80", + 8, + 342148, + 0, + 0, + 0 + ], + "165": [ + "2024-11-13 3 00:00:00 00,FF88,80", + 8, + 342436, + 0, + 0, + 0 + ], + "166": [ + "2024-11-14 4 00:00:00 00,FF88,80", + 8, + 342842, + 0, + 0, + 0 + ], + "167": [ + "2024-11-15 5 00:00:00 00,FF88,80", + 8, + 343193, + 0, + 0, + 0 + ], + "168": [ + "2024-11-16 6 00:00:00 00,FF88,80", + 8, + 343413, + 0, + 0, + 0 + ], + "169": [ + "2024-11-17 0 00:00:00 00,FF88,80", + 8, + 343897, + 0, + 0, + 0 + ], + "170": [ + "2024-11-18 1 00:00:00 00,FF88,80", + 8, + 344406, + 0, + 0, + 0 + ], + "171": [ + "2024-11-19 2 00:00:00 00,FF88,80", + 8, + 344811, + 0, + 0, + 0 + ], + "172": [ + "2024-11-20 3 00:00:00 00,FF88,80", + 8, + 345328, + 0, + 0, + 0 + ], + "173": [ + "2024-11-21 4 00:00:00 00,FF88,80", + 8, + 345681, + 0, + 0, + 0 + ], + "174": [ + "2024-11-22 5 00:00:00 00,FF88,80", + 8, + 346052, + 0, + 0, + 0 + ], + "175": [ + "2024-11-23 6 00:00:00 00,FF88,80", + 8, + 346284, + 0, + 0, + 0 + ], + "176": [ + "2024-11-24 0 00:00:00 00,FF88,80", + 8, + 346605, + 0, + 0, + 0 + ], + "177": [ + "2024-11-25 1 00:00:00 00,FF88,80", + 8, + 347046, + 0, + 0, + 0 + ], + "178": [ + "2024-11-26 2 00:00:00 00,FF88,80", + 8, + 347490, + 0, + 0, + 0 + ], + "179": [ + "2024-11-27 3 00:00:00 00,FF88,80", + 8, + 347966, + 0, + 0, + 0 + ], + "180": [ + "2024-11-28 4 00:00:00 00,FF88,80", + 8, + 348352, + 0, + 0, + 0 + ], + "181": [ + "2024-11-29 5 00:00:00 00,FF88,80", + 8, + 348859, + 0, + 0, + 0 + ], + "182": [ + "2024-11-30 6 00:00:00 00,FF88,80", + 8, + 349112, + 0, + 0, + 0 + ], + "183": [ + "2024-12-01 0 00:00:00 00,FF88,80", + 8, + 349935, + 0, + 0, + 0 + ], + "184": [ + "2024-12-02 1 00:00:00 00,FF88,80", + 8, + 350778, + 0, + 0, + 0 + ], + "185": [ + "2024-12-03 2 00:00:00 00,FF88,80", + 8, + 351500, + 0, + 0, + 0 + ], + "186": [ + "2024-12-04 3 00:00:00 00,FF88,80", + 8, + 352323, + 0, + 0, + 0 + ], + "187": [ + "2024-12-05 4 00:00:00 00,FF88,80", + 8, + 352899, + 0, + 0, + 0 + ], + "188": [ + "2024-12-06 5 00:00:00 00,FF88,80", + 8, + 353507, + 0, + 0, + 0 + ], + "189": [ + "2024-12-07 6 00:00:00 00,FF88,80", + 8, + 354365, + 0, + 0, + 0 + ], + "190": [ + "2024-12-08 0 00:00:00 00,FF88,80", + 8, + 355018, + 0, + 0, + 0 + ], + "191": [ + "2024-12-09 1 00:00:00 00,FF88,80", + 8, + 355649, + 0, + 0, + 0 + ], + "192": [ + "2024-12-10 2 00:00:00 00,FF88,80", + 8, + 356514, + 0, + 0, + 0 + ], + "193": [ + "2024-12-11 3 00:00:00 00,FF88,80", + 8, + 357440, + 0, + 0, + 0 + ], + "194": [ + "2024-12-12 4 00:00:00 00,FF88,80", + 8, + 358200, + 0, + 0, + 0 + ], + "195": [ + "2024-12-13 5 00:00:00 00,FF88,80", + 8, + 358750, + 0, + 0, + 0 + ], + "196": [ + "2024-12-14 6 00:00:00 00,FF88,80", + 8, + 359498, + 0, + 0, + 0 + ], + "197": [ + "2024-12-15 0 00:00:00 00,FF88,80", + 8, + 360395, + 0, + 0, + 0 + ], + "198": [ + "2024-12-16 1 00:00:00 00,FF88,80", + 8, + 360967, + 0, + 0, + 0 + ], + "199": [ + "2024-12-17 2 00:00:00 00,FF88,80", + 8, + 361625, + 0, + 0, + 0 + ], + "200": [ + "2024-12-18 3 00:00:00 00,FF88,80", + 8, + 362224, + 0, + 0, + 0 + ], + "201": [ + "2024-12-19 4 00:00:00 00,FF88,80", + 8, + 362820, + 0, + 0, + 0 + ], + "202": [ + "2024-12-20 5 00:00:00 00,FF88,80", + 8, + 363613, + 0, + 0, + 0 + ], + "203": [ + "2024-12-21 6 00:00:00 00,FF88,80", + 8, + 364250, + 0, + 0, + 0 + ], + "204": [ + "2024-12-22 0 00:00:00 00,FF88,80", + 8, + 364911, + 0, + 0, + 0 + ], + "205": [ + "2024-12-23 1 00:00:00 00,FF88,80", + 8, + 365464, + 0, + 0, + 0 + ], + "206": [ + "2024-12-24 2 00:00:00 00,FF88,80", + 8, + 366288, + 0, + 0, + 0 + ], + "207": [ + "2024-12-25 3 00:00:00 00,FF88,80", + 8, + 367058, + 0, + 0, + 0 + ], + "208": [ + "2024-12-26 4 00:00:00 00,FF88,80", + 8, + 367927, + 0, + 0, + 0 + ], + "209": [ + "2024-12-27 5 00:00:00 00,FF88,80", + 8, + 368562, + 0, + 0, + 0 + ], + "210": [ + "2024-12-28 6 00:00:00 00,FF88,80", + 8, + 369201, + 0, + 0, + 0 + ], + "211": [ + "2024-12-29 0 00:00:00 00,FF88,80", + 8, + 369791, + 0, + 0, + 0 + ], + "212": [ + "2024-12-30 1 00:00:00 00,FF88,80", + 8, + 370479, + 0, + 0, + 0 + ], + "213": [ + "2024-12-31 2 00:00:00 00,FF88,80", + 8, + 371171, + 0, + 0, + 0 + ], + "214": [ + "2025-01-01 3 00:00:00 00,FF88,80", + 8, + 371866, + 0, + 0, + 0 + ], + "215": [ + "2025-01-02 4 00:00:00 00,FF88,80", + 8, + 372478, + 0, + 0, + 0 + ], + "216": [ + "2025-01-03 5 00:00:00 00,FF88,80", + 8, + 373272, + 0, + 0, + 0 + ], + "217": [ + "2025-01-04 6 00:00:00 00,FF88,80", + 8, + 373853, + 0, + 0, + 0 + ], + "218": [ + "2025-01-05 0 00:00:00 00,FF88,80", + 8, + 374528, + 0, + 0, + 0 + ], + "219": [ + "2025-01-06 1 00:00:00 00,FF88,80", + 8, + 375314, + 0, + 0, + 0 + ], + "220": [ + "2025-01-07 2 00:00:00 00,FF88,80", + 8, + 376167, + 0, + 0, + 0 + ], + "221": [ + "2025-01-08 3 00:00:00 00,FF88,80", + 8, + 376969, + 0, + 0, + 0 + ], + "222": [ + "2025-01-09 4 00:00:00 00,FF88,80", + 8, + 377585, + 0, + 0, + 0 + ], + "223": [ + "2025-01-10 5 00:00:00 00,FF88,80", + 8, + 378155, + 0, + 0, + 0 + ], + "224": [ + "2025-01-11 6 00:00:00 00,FF88,80", + 8, + 379052, + 0, + 0, + 0 + ], + "225": [ + "2025-01-12 0 00:00:00 00,FF88,80", + 8, + 379672, + 0, + 0, + 0 + ], + "226": [ + "2025-01-13 1 00:00:00 00,FF88,80", + 8, + 380333, + 0, + 0, + 0 + ], + "227": [ + "2025-01-14 2 00:00:00 00,FF88,80", + 8, + 381053, + 0, + 0, + 0 + ], + "228": [ + "2025-01-15 3 00:00:00 00,FF88,80", + 8, + 381849, + 0, + 0, + 0 + ], + "229": [ + "2025-01-16 4 00:00:00 00,FF88,80", + 8, + 382479, + 0, + 0, + 0 + ], + "230": [ + "2025-01-17 5 00:00:00 00,FF88,80", + 8, + 383352, + 0, + 0, + 0 + ], + "231": [ + "2025-01-18 6 00:00:00 00,FF88,80", + 8, + 384264, + 0, + 0, + 0 + ], + "232": [ + "2025-01-19 0 00:00:00 00,FF88,80", + 8, + 385090, + 0, + 0, + 0 + ], + "233": [ + "2025-01-20 1 00:00:00 00,FF88,80", + 8, + 385989, + 0, + 0, + 0 + ], + "234": [ + "2025-01-21 2 00:00:00 00,FF88,80", + 8, + 386806, + 0, + 0, + 0 + ], + "235": [ + "2025-01-22 3 00:00:00 00,FF88,80", + 8, + 387590, + 0, + 0, + 0 + ], + "236": [ + "2025-01-23 4 00:00:00 00,FF88,80", + 8, + 388330, + 0, + 0, + 0 + ], + "237": [ + "2025-01-24 5 00:00:00 00,FF88,80", + 8, + 389153, + 0, + 0, + 0 + ], + "238": [ + "2025-01-25 6 00:00:00 00,FF88,80", + 8, + 389732, + 0, + 0, + 0 + ], + "239": [ + "2025-01-26 0 00:00:00 00,FF88,80", + 8, + 390272, + 0, + 0, + 0 + ], + "240": [ + "2025-01-27 1 00:00:00 00,FF88,80", + 8, + 390868, + 0, + 0, + 0 + ], + "241": [ + "2025-01-28 2 00:00:00 00,FF88,80", + 8, + 391651, + 0, + 0, + 0 + ], + "242": [ + "2025-01-29 3 00:00:00 00,FF88,80", + 8, + 392590, + 0, + 0, + 0 + ], + "243": [ + "2025-01-30 4 00:00:00 00,FF88,80", + 8, + 393523, + 0, + 0, + 0 + ], + "244": [ + "2025-01-31 5 00:00:00 00,FF88,80", + 8, + 394315, + 0, + 0, + 0 + ], + "245": [ + "2025-02-01 6 00:00:00 00,FF88,80", + 8, + 395015, + 0, + 0, + 0 + ], + "246": [ + "2025-02-02 0 00:00:00 00,FF88,80", + 8, + 395883, + 0, + 0, + 0 + ], + "247": [ + "2025-02-03 1 00:00:00 00,FF88,80", + 8, + 396562, + 0, + 0, + 0 + ], + "248": [ + "2025-02-04 2 00:00:00 00,FF88,80", + 8, + 397123, + 0, + 0, + 0 + ], + "249": [ + "2025-02-05 3 00:00:00 00,FF88,80", + 8, + 397850, + 0, + 0, + 0 + ], + "250": [ + "2025-02-06 4 00:00:00 00,FF88,80", + 8, + 398750, + 0, + 0, + 0 + ], + "251": [ + "2025-02-07 5 00:00:00 00,FF88,80", + 8, + 399501, + 0, + 0, + 0 + ], + "252": [ + "2025-02-08 6 00:00:00 00,FF88,80", + 8, + 400394, + 0, + 0, + 0 + ], + "253": [ + "2025-02-09 0 00:00:00 00,FF88,80", + 8, + 400988, + 0, + 0, + 0 + ], + "254": [ + "2025-02-10 1 00:00:00 00,FF88,80", + 8, + 401784, + 0, + 0, + 0 + ], + "255": [ + "2025-02-11 2 00:00:00 00,FF88,80", + 8, + 402635, + 0, + 0, + 0 + ], + "256": [ + "2025-02-12 3 00:00:00 00,FF88,80", + 8, + 403481, + 0, + 0, + 0 + ], + "257": [ + "2025-02-13 4 00:00:00 00,FF88,80", + 8, + 404223, + 0, + 0, + 0 + ], + "258": [ + "2025-02-14 5 00:00:00 00,FF88,80", + 8, + 405107, + 0, + 0, + 0 + ], + "259": [ + "2025-02-15 6 00:00:00 00,FF88,80", + 8, + 405707, + 0, + 0, + 0 + ], + "260": [ + "2025-02-16 0 00:00:00 00,FF88,80", + 8, + 406282, + 0, + 0, + 0 + ], + "261": [ + "2025-02-17 1 00:00:00 00,FF88,80", + 8, + 407050, + 0, + 0, + 0 + ], + "262": [ + "2025-02-18 2 00:00:00 00,FF88,80", + 8, + 407753, + 0, + 0, + 0 + ], + "263": [ + "2025-02-19 3 00:00:00 00,FF88,80", + 8, + 408671, + 0, + 0, + 0 + ], + "264": [ + "2025-02-20 4 00:00:00 00,FF88,80", + 8, + 409541, + 0, + 0, + 0 + ], + "265": [ + "2025-02-21 5 00:00:00 00,FF88,80", + 8, + 410264, + 0, + 0, + 0 + ], + "266": [ + "2025-02-22 6 00:00:00 00,FF88,80", + 8, + 411088, + 0, + 0, + 0 + ], + "267": [ + "2025-02-23 0 00:00:00 00,FF88,80", + 8, + 411807, + 0, + 0, + 0 + ], + "268": [ + "2025-02-24 1 00:00:00 00,FF88,80", + 8, + 412547, + 0, + 0, + 0 + ], + "269": [ + "2025-02-25 2 00:00:00 00,FF88,80", + 8, + 413411, + 0, + 0, + 0 + ], + "270": [ + "2025-02-26 3 00:00:00 00,FF88,80", + 8, + 414098, + 0, + 0, + 0 + ], + "271": [ + "2025-02-27 4 00:00:00 00,FF88,80", + 8, + 414873, + 0, + 0, + 0 + ], + "272": [ + "2025-02-28 5 00:00:00 00,FF88,80", + 8, + 415698, + 0, + 0, + 0 + ], + "273": [ + "2025-03-01 6 00:00:00 00,FF88,80", + 8, + 416067, + 0, + 0, + 0 + ], + "274": [ + "2025-03-02 0 00:00:00 00,FF88,80", + 8, + 416422, + 0, + 0, + 0 + ], + "275": [ + "2025-03-03 1 00:00:00 00,FF88,80", + 8, + 416729, + 0, + 0, + 0 + ], + "276": [ + "2025-03-04 2 00:00:00 00,FF88,80", + 8, + 417215, + 0, + 0, + 0 + ], + "277": [ + "2025-03-05 3 00:00:00 00,FF88,80", + 8, + 417665, + 0, + 0, + 0 + ], + "278": [ + "2025-03-06 4 00:00:00 00,FF88,80", + 8, + 418147, + 0, + 0, + 0 + ], + "279": [ + "2025-03-07 5 00:00:00 00,FF88,80", + 8, + 418386, + 0, + 0, + 0 + ], + "280": [ + "2025-03-08 6 00:00:00 00,FF88,80", + 8, + 418876, + 0, + 0, + 0 + ], + "281": [ + "2025-03-09 0 00:00:00 00,FF88,80", + 8, + 419107, + 0, + 0, + 0 + ], + "282": [ + "2025-03-10 1 00:00:00 00,FF88,80", + 8, + 419408, + 0, + 0, + 0 + ], + "283": [ + "2025-03-11 2 00:00:00 00,FF88,80", + 8, + 419637, + 0, + 0, + 0 + ], + "284": [ + "2025-03-12 3 00:00:00 00,FF88,80", + 8, + 420109, + 0, + 0, + 0 + ], + "285": [ + "2025-03-13 4 00:00:00 00,FF88,80", + 8, + 420379, + 0, + 0, + 0 + ], + "286": [ + "2025-03-14 5 00:00:00 00,FF88,80", + 8, + 420634, + 0, + 0, + 0 + ], + "287": [ + "2025-03-15 6 00:00:00 00,FF88,80", + 8, + 421054, + 0, + 0, + 0 + ], + "288": [ + "2025-03-16 0 00:00:00 00,FF88,80", + 8, + 421505, + 0, + 0, + 0 + ], + "289": [ + "2025-03-17 1 00:00:00 00,FF88,80", + 8, + 421885, + 0, + 0, + 0 + ], + "290": [ + "2025-03-18 2 00:00:00 00,FF88,80", + 8, + 422278, + 0, + 0, + 0 + ], + "291": [ + "2025-03-19 3 00:00:00 00,FF88,80", + 8, + 422669, + 0, + 0, + 0 + ], + "292": [ + "2025-03-20 4 00:00:00 00,FF88,80", + 8, + 422893, + 0, + 0, + 0 + ], + "293": [ + "2025-03-21 5 00:00:00 00,FF88,80", + 8, + 423174, + 0, + 0, + 0 + ], + "294": [ + "2025-03-22 6 00:00:00 00,FF88,80", + 8, + 423688, + 0, + 0, + 0 + ], + "295": [ + "2025-03-23 0 00:00:00 00,FF88,80", + 8, + 424105, + 0, + 0, + 0 + ], + "296": [ + "2025-03-24 1 00:00:00 00,FF88,80", + 8, + 424600, + 0, + 0, + 0 + ], + "297": [ + "2025-03-25 2 00:00:00 00,FF88,80", + 8, + 424868, + 0, + 0, + 0 + ], + "298": [ + "2025-03-26 3 00:00:00 00,FF88,80", + 8, + 425182, + 0, + 0, + 0 + ], + "299": [ + "2025-03-27 4 00:00:00 00,FF88,80", + 8, + 425523, + 0, + 0, + 0 + ], + "300": [ + "2025-03-28 5 00:00:00 00,FF88,80", + 8, + 425980, + 0, + 0, + 0 + ], + "301": [ + "2025-03-29 6 00:00:00 00,FF88,80", + 8, + 426208, + 0, + 0, + 0 + ], + "302": [ + "2025-03-30 0 00:00:00 00,FF88,80", + 8, + 426629, + 0, + 0, + 0 + ], + "303": [ + "2025-03-31 1 00:00:00 00,FF88,80", + 8, + 426857, + 0, + 0, + 0 + ], + "304": [ + "2025-04-01 2 00:00:00 00,FF88,80", + 8, + 427073, + 0, + 0, + 0 + ], + "305": [ + "2025-04-02 3 00:00:00 00,FF88,80", + 8, + 427536, + 0, + 0, + 0 + ], + "306": [ + "2025-04-03 4 00:00:00 00,FF88,80", + 8, + 428002, + 0, + 0, + 0 + ], + "307": [ + "2025-04-04 5 00:00:00 00,FF88,80", + 8, + 428303, + 0, + 0, + 0 + ], + "308": [ + "2025-04-05 6 00:00:00 00,FF88,80", + 8, + 428736, + 0, + 0, + 0 + ], + "309": [ + "2025-04-06 0 00:00:00 00,FF88,80", + 8, + 429096, + 0, + 0, + 0 + ], + "310": [ + "2025-04-07 1 00:00:00 00,FF88,80", + 8, + 429421, + 0, + 0, + 0 + ], + "311": [ + "2025-04-08 2 00:00:00 00,FF88,80", + 8, + 429834, + 0, + 0, + 0 + ], + "312": [ + "2025-04-09 3 00:00:00 00,FF88,80", + 8, + 430219, + 0, + 0, + 0 + ], + "313": [ + "2025-04-10 4 00:00:00 00,FF88,80", + 8, + 430664, + 0, + 0, + 0 + ], + "314": [ + "2025-04-11 5 00:00:00 00,FF88,80", + 8, + 430954, + 0, + 0, + 0 + ], + "315": [ + "2025-04-12 6 00:00:00 00,FF88,80", + 8, + 431303, + 0, + 0, + 0 + ], + "316": [ + "2025-04-13 0 00:00:00 00,FF88,80", + 8, + 431678, + 0, + 0, + 0 + ], + "317": [ + "2025-04-14 1 00:00:00 00,FF88,80", + 8, + 431905, + 0, + 0, + 0 + ], + "318": [ + "2025-04-15 2 00:00:00 00,FF88,80", + 8, + 432403, + 0, + 0, + 0 + ], + "319": [ + "2025-04-16 3 00:00:00 00,FF88,80", + 8, + 432882, + 0, + 0, + 0 + ], + "320": [ + "2025-04-17 4 00:00:00 00,FF88,80", + 8, + 433308, + 0, + 0, + 0 + ], + "321": [ + "2025-04-18 5 00:00:00 00,FF88,80", + 8, + 433664, + 0, + 0, + 0 + ], + "322": [ + "2025-04-19 6 00:00:00 00,FF88,80", + 8, + 433900, + 0, + 0, + 0 + ], + "323": [ + "2025-04-20 0 00:00:00 00,FF88,80", + 8, + 434392, + 0, + 0, + 0 + ], + "324": [ + "2025-04-21 1 00:00:00 00,FF88,80", + 8, + 434706, + 0, + 0, + 0 + ], + "325": [ + "2025-04-22 2 00:00:00 00,FF88,80", + 8, + 434997, + 0, + 0, + 0 + ], + "326": [ + "2025-04-23 3 00:00:00 00,FF88,80", + 8, + 435300, + 0, + 0, + 0 + ], + "327": [ + "2025-04-24 4 00:00:00 00,FF88,80", + 8, + 435532, + 0, + 0, + 0 + ], + "328": [ + "2025-04-25 5 00:00:00 00,FF88,80", + 8, + 435920, + 0, + 0, + 0 + ], + "329": [ + "2025-04-26 6 00:00:00 00,FF88,80", + 8, + 436184, + 0, + 0, + 0 + ], + "330": [ + "2025-04-27 0 00:00:00 00,FF88,80", + 8, + 436398, + 0, + 0, + 0 + ], + "331": [ + "2025-04-28 1 00:00:00 00,FF88,80", + 8, + 436686, + 0, + 0, + 0 + ], + "332": [ + "2025-04-29 2 00:00:00 00,FF88,80", + 8, + 437110, + 0, + 0, + 0 + ], + "333": [ + "2025-04-30 3 00:00:00 00,FF88,80", + 8, + 437377, + 0, + 0, + 0 + ], + "334": [ + "2025-05-01 4 00:00:00 00,FF88,80", + 8, + 437845, + 0, + 0, + 0 + ], + "335": [ + "2025-05-02 5 00:00:00 00,FF88,80", + 8, + 438114, + 0, + 0, + 0 + ], + "336": [ + "2025-05-03 6 00:00:00 00,FF88,80", + 8, + 438574, + 0, + 0, + 0 + ], + "337": [ + "2025-05-04 0 00:00:00 00,FF88,80", + 8, + 439024, + 0, + 0, + 0 + ], + "338": [ + "2025-05-05 1 00:00:00 00,FF88,80", + 8, + 439457, + 0, + 0, + 0 + ], + "339": [ + "2025-05-06 2 00:00:00 00,FF88,80", + 8, + 439695, + 0, + 0, + 0 + ], + "340": [ + "2025-05-07 3 00:00:00 00,FF88,80", + 8, + 440149, + 0, + 0, + 0 + ], + "341": [ + "2025-05-08 4 00:00:00 00,FF88,80", + 8, + 440486, + 0, + 0, + 0 + ], + "342": [ + "2025-05-09 5 00:00:00 00,FF88,80", + 8, + 440738, + 0, + 0, + 0 + ], + "343": [ + "2025-05-10 6 00:00:00 00,FF88,80", + 8, + 441201, + 0, + 0, + 0 + ], + "344": [ + "2025-05-11 0 00:00:00 00,FF88,80", + 8, + 441546, + 0, + 0, + 0 + ], + "345": [ + "2025-05-12 1 00:00:00 00,FF88,80", + 8, + 441892, + 0, + 0, + 0 + ], + "346": [ + "2025-05-13 2 00:00:00 00,FF88,80", + 8, + 442108, + 0, + 0, + 0 + ], + "347": [ + "2025-05-14 3 00:00:00 00,FF88,80", + 8, + 442493, + 0, + 0, + 0 + ], + "348": [ + "2025-05-15 4 00:00:00 00,FF88,80", + 8, + 442923, + 0, + 0, + 0 + ], + "349": [ + "2025-05-16 5 00:00:00 00,FF88,80", + 8, + 443354, + 0, + 0, + 0 + ], + "350": [ + "2025-05-17 6 00:00:00 00,FF88,80", + 8, + 443775, + 0, + 0, + 0 + ], + "351": [ + "2025-05-18 0 00:00:00 00,FF88,80", + 8, + 444213, + 0, + 0, + 0 + ], + "352": [ + "2025-05-19 1 00:00:00 00,FF88,80", + 8, + 444743, + 0, + 0, + 0 + ], + "353": [ + "2025-05-20 2 00:00:00 00,FF88,80", + 8, + 445193, + 0, + 0, + 0 + ], + "354": [ + "2025-05-21 3 00:00:00 00,FF88,80", + 8, + 445598, + 0, + 0, + 0 + ], + "355": [ + "2025-05-22 4 00:00:00 00,FF88,80", + 8, + 445960, + 0, + 0, + 0 + ], + "356": [ + "2025-05-23 5 00:00:00 00,FF88,80", + 8, + 446337, + 0, + 0, + 0 + ], + "357": [ + "2025-05-24 6 00:00:00 00,FF88,80", + 8, + 446776, + 0, + 0, + 0 + ], + "358": [ + "2025-05-25 0 00:00:00 00,FF88,80", + 8, + 447197, + 0, + 0, + 0 + ], + "359": [ + "2025-05-26 1 00:00:00 00,FF88,80", + 8, + 447547, + 0, + 0, + 0 + ], + "360": [ + "2025-05-27 2 00:00:00 00,FF88,80", + 8, + 447819, + 0, + 0, + 0 + ], + "361": [ + "2025-05-28 3 00:00:00 00,FF88,80", + 8, + 448046, + 0, + 0, + 0 + ], + "362": [ + "2025-05-29 4 00:00:00 00,FF88,80", + 8, + 448372, + 0, + 0, + 0 + ], + "363": [ + "2025-05-30 5 00:00:00 00,FF88,80", + 8, + 448611, + 0, + 0, + 0 + ], + "364": [ + "2025-05-31 6 00:00:00 00,FF88,80", + 8, + 449048, + 0, + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,3#Daily Billing Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "7,1.0.99.2.0.255,4#Daily Billing Profile&capture_period": 86400, + "7,1.0.99.2.0.255,5#Daily Billing Profile&sort_method": 1, + "7,1.0.99.2.0.255,6#Daily Billing Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use": 365, + "7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries": 365, + "reading_status": true, + "reading_start_time": "2025-06-01 03:24:27.411084", + "reading_end_time": "2025-06-01 03:24:37.688842", + "reading_consume": 9.982991, + "7,1.0.99.1.0.255,2#Load profile with period 1&buffer": { + "0": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 244358, + 0 + ], + "1": [ + "2024-07-04 4 00:15:00 00,FF88,80", + 8, + 244359, + 0 + ], + "2": [ + "2024-07-04 4 00:30:00 00,FF88,80", + 8, + 244360, + 0 + ], + "3": [ + "2024-07-04 4 00:45:00 00,FF88,80", + 8, + 244361, + 0 + ], + "4": [ + "2024-07-04 4 01:00:00 00,FF88,80", + 8, + 244362, + 0 + ], + "5": [ + "2024-07-04 4 01:15:00 00,FF88,80", + 8, + 244362, + 0 + ], + "6": [ + "2024-07-04 4 01:30:00 00,FF88,80", + 8, + 244363, + 0 + ], + "7": [ + "2024-07-04 4 01:45:00 00,FF88,80", + 8, + 244363, + 0 + ], + "8": [ + "2024-07-04 4 02:00:00 00,FF88,80", + 8, + 244364, + 0 + ], + "9": [ + "2024-07-04 4 02:15:00 00,FF88,80", + 8, + 244365, + 0 + ], + "10": [ + "2024-07-04 4 02:30:00 00,FF88,80", + 8, + 244367, + 0 + ], + "11": [ + "2024-07-04 4 02:45:00 00,FF88,80", + 8, + 244368, + 0 + ], + "12": [ + "2024-07-04 4 03:00:00 00,FF88,80", + 8, + 244369, + 0 + ], + "13": [ + "2024-07-04 4 03:15:00 00,FF88,80", + 8, + 244370, + 0 + ], + "14": [ + "2024-07-04 4 03:30:00 00,FF88,80", + 8, + 244370, + 0 + ], + "15": [ + "2024-07-04 4 03:45:00 00,FF88,80", + 8, + 244371, + 0 + ], + "16": [ + "2024-07-04 4 04:00:00 00,FF88,80", + 8, + 244373, + 0 + ], + "17": [ + "2024-07-04 4 04:15:00 00,FF88,80", + 8, + 244374, + 0 + ], + "18": [ + "2024-07-04 4 04:30:00 00,FF88,80", + 8, + 244375, + 0 + ], + "19": [ + "2024-07-04 4 04:45:00 00,FF88,80", + 8, + 244376, + 0 + ], + "20": [ + "2024-07-04 4 05:00:00 00,FF88,80", + 8, + 244377, + 0 + ], + "21": [ + "2024-07-04 4 05:15:00 00,FF88,80", + 8, + 244378, + 0 + ], + "22": [ + "2024-07-04 4 05:30:00 00,FF88,80", + 8, + 244378, + 0 + ], + "23": [ + "2024-07-04 4 05:45:00 00,FF88,80", + 8, + 244380, + 0 + ], + "24": [ + "2024-07-04 4 06:00:00 00,FF88,80", + 8, + 244392, + 0 + ], + "25": [ + "2024-07-04 4 06:15:00 00,FF88,80", + 8, + 244399, + 0 + ], + "26": [ + "2024-07-04 4 06:30:00 00,FF88,80", + 8, + 244407, + 0 + ], + "27": [ + "2024-07-04 4 06:45:00 00,FF88,80", + 8, + 244416, + 0 + ], + "28": [ + "2024-07-04 4 07:00:00 00,FF88,80", + 8, + 244427, + 0 + ], + "29": [ + "2024-07-04 4 07:15:00 00,FF88,80", + 8, + 244435, + 0 + ], + "30": [ + "2024-07-04 4 07:30:00 00,FF88,80", + 8, + 244446, + 0 + ], + "31": [ + "2024-07-04 4 07:45:00 00,FF88,80", + 8, + 244459, + 0 + ], + "32": [ + "2024-07-04 4 08:00:00 00,FF88,80", + 8, + 244466, + 0 + ], + "33": [ + "2024-07-04 4 08:15:00 00,FF88,80", + 8, + 244479, + 0 + ], + "34": [ + "2024-07-04 4 08:30:00 00,FF88,80", + 8, + 244487, + 0 + ], + "35": [ + "2024-07-04 4 08:45:00 00,FF88,80", + 8, + 244496, + 0 + ], + "36": [ + "2024-07-04 4 09:00:00 00,FF88,80", + 8, + 244505, + 0 + ], + "37": [ + "2024-07-04 4 09:15:00 00,FF88,80", + 8, + 244516, + 0 + ], + "38": [ + "2024-07-04 4 09:30:00 00,FF88,80", + 8, + 244529, + 0 + ], + "39": [ + "2024-07-04 4 09:45:00 00,FF88,80", + 8, + 244539, + 0 + ], + "40": [ + "2024-07-04 4 10:00:00 00,FF88,80", + 8, + 244542, + 0 + ], + "41": [ + "2024-07-04 4 10:15:00 00,FF88,80", + 8, + 244545, + 0 + ], + "42": [ + "2024-07-04 4 10:30:00 00,FF88,80", + 8, + 244549, + 0 + ], + "43": [ + "2024-07-04 4 10:45:00 00,FF88,80", + 8, + 244552, + 0 + ], + "44": [ + "2024-07-04 4 11:00:00 00,FF88,80", + 8, + 244556, + 0 + ], + "45": [ + "2024-07-04 4 11:15:00 00,FF88,80", + 8, + 244560, + 0 + ], + "46": [ + "2024-07-04 4 11:30:00 00,FF88,80", + 8, + 244563, + 0 + ], + "47": [ + "2024-07-04 4 11:45:00 00,FF88,80", + 8, + 244566, + 0 + ], + "48": [ + "2024-07-04 4 12:00:00 00,FF88,80", + 8, + 244571, + 0 + ], + "49": [ + "2024-07-04 4 12:15:00 00,FF88,80", + 8, + 244576, + 0 + ], + "50": [ + "2024-07-04 4 12:30:00 00,FF88,80", + 8, + 244579, + 0 + ], + "51": [ + "2024-07-04 4 12:45:00 00,FF88,80", + 8, + 244584, + 0 + ], + "52": [ + "2024-07-04 4 13:00:00 00,FF88,80", + 8, + 244590, + 0 + ], + "53": [ + "2024-07-04 4 13:15:00 00,FF88,80", + 8, + 244595, + 0 + ], + "54": [ + "2024-07-04 4 13:30:00 00,FF88,80", + 8, + 244600, + 0 + ], + "55": [ + "2024-07-04 4 13:45:00 00,FF88,80", + 8, + 244603, + 0 + ], + "56": [ + "2024-07-04 4 14:00:00 00,FF88,80", + 8, + 244606, + 0 + ], + "57": [ + "2024-07-04 4 14:15:00 00,FF88,80", + 8, + 244611, + 0 + ], + "58": [ + "2024-07-04 4 14:30:00 00,FF88,80", + 8, + 244614, + 0 + ], + "59": [ + "2024-07-04 4 14:45:00 00,FF88,80", + 8, + 244616, + 0 + ], + "60": [ + "2024-07-04 4 15:00:00 00,FF88,80", + 8, + 244620, + 0 + ], + "61": [ + "2024-07-04 4 15:15:00 00,FF88,80", + 8, + 244623, + 0 + ], + "62": [ + "2024-07-04 4 15:30:00 00,FF88,80", + 8, + 244628, + 0 + ], + "63": [ + "2024-07-04 4 15:45:00 00,FF88,80", + 8, + 244631, + 0 + ], + "64": [ + "2024-07-04 4 16:00:00 00,FF88,80", + 8, + 244634, + 0 + ], + "65": [ + "2024-07-04 4 16:15:00 00,FF88,80", + 8, + 244639, + 0 + ], + "66": [ + "2024-07-04 4 16:30:00 00,FF88,80", + 8, + 244644, + 0 + ], + "67": [ + "2024-07-04 4 16:45:00 00,FF88,80", + 8, + 244648, + 0 + ], + "68": [ + "2024-07-04 4 17:00:00 00,FF88,80", + 8, + 244656, + 0 + ], + "69": [ + "2024-07-04 4 17:15:00 00,FF88,80", + 8, + 244664, + 0 + ], + "70": [ + "2024-07-04 4 17:30:00 00,FF88,80", + 8, + 244672, + 0 + ], + "71": [ + "2024-07-04 4 17:45:00 00,FF88,80", + 8, + 244681, + 0 + ], + "72": [ + "2024-07-04 4 18:00:00 00,FF88,80", + 8, + 244694, + 0 + ], + "73": [ + "2024-07-04 4 18:15:00 00,FF88,80", + 8, + 244706, + 0 + ], + "74": [ + "2024-07-04 4 18:30:00 00,FF88,80", + 8, + 244715, + 0 + ], + "75": [ + "2024-07-04 4 18:45:00 00,FF88,80", + 8, + 244728, + 0 + ], + "76": [ + "2024-07-04 4 19:00:00 00,FF88,80", + 8, + 244736, + 0 + ], + "77": [ + "2024-07-04 4 19:15:00 00,FF88,80", + 8, + 244743, + 0 + ], + "78": [ + "2024-07-04 4 19:30:00 00,FF88,80", + 8, + 244753, + 0 + ], + "79": [ + "2024-07-04 4 19:45:00 00,FF88,80", + 8, + 244765, + 0 + ], + "80": [ + "2024-07-04 4 20:00:00 00,FF88,80", + 8, + 244777, + 0 + ], + "81": [ + "2024-07-04 4 20:15:00 00,FF88,80", + 8, + 244785, + 0 + ], + "82": [ + "2024-07-04 4 20:30:00 00,FF88,80", + 8, + 244793, + 0 + ], + "83": [ + "2024-07-04 4 20:45:00 00,FF88,80", + 8, + 244803, + 0 + ], + "84": [ + "2024-07-04 4 21:00:00 00,FF88,80", + 8, + 244812, + 0 + ], + "85": [ + "2024-07-04 4 21:15:00 00,FF88,80", + 8, + 244823, + 0 + ], + "86": [ + "2024-07-04 4 21:30:00 00,FF88,80", + 8, + 244831, + 0 + ], + "87": [ + "2024-07-04 4 21:45:00 00,FF88,80", + 8, + 244840, + 0 + ], + "88": [ + "2024-07-04 4 22:00:00 00,FF88,80", + 8, + 244847, + 0 + ], + "89": [ + "2024-07-04 4 22:15:00 00,FF88,80", + 8, + 244856, + 0 + ], + "90": [ + "2024-07-04 4 22:30:00 00,FF88,80", + 8, + 244865, + 0 + ], + "91": [ + "2024-07-04 4 22:45:00 00,FF88,80", + 8, + 244877, + 0 + ], + "92": [ + "2024-07-04 4 23:00:00 00,FF88,80", + 8, + 244882, + 0 + ], + "93": [ + "2024-07-04 4 23:15:00 00,FF88,80", + 8, + 244886, + 0 + ], + "94": [ + "2024-07-04 4 23:30:00 00,FF88,80", + 8, + 244892, + 0 + ], + "95": [ + "2024-07-04 4 23:45:00 00,FF88,80", + 8, + 244898, + 0 + ] + }, + "7,1.0.99.1.0.255,3#Load profile with period 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.0.255,4#Load profile with period 1&capture_period": 900, + "7,1.0.99.1.0.255,5#Load profile with period 1&sort_method": 1, + "7,1.0.99.1.0.255,6#Load profile with period 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.0.255,7#Load profile with period 1&entries_in_use": 960, + "7,1.0.99.1.0.255,8#Load profile with period 1&profile_entries": 960, + "7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer": { + "0": [ + "2024-07-04 4 00:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "1": [ + "2024-07-04 4 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 114, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "2": [ + "2024-07-04 4 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 81, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "3": [ + "2024-07-04 4 00:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "4": [ + "2024-07-04 4 01:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "5": [ + "2024-07-04 4 01:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 106, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "6": [ + "2024-07-04 4 01:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 92, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "7": [ + "2024-07-04 4 01:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "8": [ + "2024-07-04 4 02:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 85, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "9": [ + "2024-07-04 4 02:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 95, + 0, + 0, + 0 + ], + "10": [ + "2024-07-04 4 02:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 146, + 0, + 0, + 0 + ], + "11": [ + "2024-07-04 4 02:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 80, + 0, + 0, + 0 + ], + "12": [ + "2024-07-04 4 03:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "13": [ + "2024-07-04 4 03:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 97, + 0, + 0, + 0 + ], + "14": [ + "2024-07-04 4 03:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 150, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "15": [ + "2024-07-04 4 03:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 107, + 0, + 0, + 0 + ], + "16": [ + "2024-07-04 4 04:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 115, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "17": [ + "2024-07-04 4 04:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "18": [ + "2024-07-04 4 04:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "19": [ + "2024-07-04 4 04:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "20": [ + "2024-07-04 4 05:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "21": [ + "2024-07-04 4 05:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "22": [ + "2024-07-04 4 05:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "23": [ + "2024-07-04 4 05:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "24": [ + "2024-07-04 4 06:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "25": [ + "2024-07-04 4 06:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "26": [ + "2024-07-04 4 06:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 90, + 0, + 0, + 0 + ], + "27": [ + "2024-07-04 4 06:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 83, + 0, + 0, + 0 + ], + "28": [ + "2024-07-04 4 07:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 147, + 0, + 0, + 0 + ], + "29": [ + "2024-07-04 4 07:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 113, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "30": [ + "2024-07-04 4 07:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 93, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "31": [ + "2024-07-04 4 07:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 130, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ], + "32": [ + "2024-07-04 4 08:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 125, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "33": [ + "2024-07-04 4 08:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 135, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "34": [ + "2024-07-04 4 08:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "35": [ + "2024-07-04 4 08:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 149, + 0, + 0, + 0 + ], + "36": [ + "2024-07-04 4 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "37": [ + "2024-07-04 4 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 92, + 0, + 0, + 0 + ], + "38": [ + "2024-07-04 4 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 129, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "39": [ + "2024-07-04 4 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 117, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "40": [ + "2024-07-04 4 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 103, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "41": [ + "2024-07-04 4 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 116, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "42": [ + "2024-07-04 4 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 127, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "43": [ + "2024-07-04 4 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "44": [ + "2024-07-04 4 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 82, + 0, + 0, + 3, + 115, + 0, + 0, + 0 + ], + "45": [ + "2024-07-04 4 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "46": [ + "2024-07-04 4 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "47": [ + "2024-07-04 4 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 109, + 0, + 0, + 0 + ], + "48": [ + "2024-07-04 4 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 142, + 0, + 0, + 3, + 123, + 0, + 0, + 0 + ], + "49": [ + "2024-07-04 4 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 119, + 0, + 0, + 3, + 85, + 0, + 0, + 0 + ], + "50": [ + "2024-07-04 4 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 97, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "51": [ + "2024-07-04 4 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 102, + 0, + 0, + 3, + 135, + 0, + 0, + 0 + ], + "52": [ + "2024-07-04 4 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 89, + 0, + 0, + 3, + 140, + 0, + 0, + 0 + ], + "53": [ + "2024-07-04 4 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 101, + 0, + 0, + 0 + ], + "54": [ + "2024-07-04 4 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 137, + 0, + 0, + 0 + ], + "55": [ + "2024-07-04 4 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 95, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "56": [ + "2024-07-04 4 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 84, + 0, + 0, + 3, + 96, + 0, + 0, + 0 + ], + "57": [ + "2024-07-04 4 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 122, + 0, + 0, + 3, + 87, + 0, + 0, + 0 + ], + "58": [ + "2024-07-04 4 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 110, + 0, + 0, + 3, + 148, + 0, + 0, + 0 + ], + "59": [ + "2024-07-04 4 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "60": [ + "2024-07-04 4 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 134, + 0, + 0, + 3, + 102, + 0, + 0, + 0 + ], + "61": [ + "2024-07-04 4 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 118, + 0, + 0, + 0 + ], + "62": [ + "2024-07-04 4 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "63": [ + "2024-07-04 4 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 132, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "64": [ + "2024-07-04 4 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 146, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "65": [ + "2024-07-04 4 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 111, + 0, + 0, + 3, + 132, + 0, + 0, + 0 + ], + "66": [ + "2024-07-04 4 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 86, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "67": [ + "2024-07-04 4 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 105, + 0, + 0, + 3, + 121, + 0, + 0, + 0 + ], + "68": [ + "2024-07-04 4 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 145, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "69": [ + "2024-07-04 4 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "70": [ + "2024-07-04 4 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 82, + 0, + 0, + 0 + ], + "71": [ + "2024-07-04 4 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 98, + 0, + 0, + 0 + ], + "72": [ + "2024-07-04 4 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 150, + 0, + 0, + 0 + ], + "73": [ + "2024-07-04 4 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 122, + 0, + 0, + 0 + ], + "74": [ + "2024-07-04 4 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 90, + 0, + 0, + 3, + 106, + 0, + 0, + 0 + ], + "75": [ + "2024-07-04 4 18:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 80, + 0, + 0, + 3, + 117, + 0, + 0, + 0 + ], + "76": [ + "2024-07-04 4 19:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 144, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "77": [ + "2024-07-04 4 19:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 142, + 0, + 0, + 0 + ], + "78": [ + "2024-07-04 4 19:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 138, + 0, + 0, + 3, + 124, + 0, + 0, + 0 + ], + "79": [ + "2024-07-04 4 19:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 147, + 0, + 0, + 3, + 128, + 0, + 0, + 0 + ], + "80": [ + "2024-07-04 4 20:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 140, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "81": [ + "2024-07-04 4 20:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 129, + 0, + 0, + 0 + ], + "82": [ + "2024-07-04 4 20:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 121, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "83": [ + "2024-07-04 4 20:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 98, + 0, + 0, + 3, + 86, + 0, + 0, + 0 + ], + "84": [ + "2024-07-04 4 21:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 104, + 0, + 0, + 3, + 134, + 0, + 0, + 0 + ], + "85": [ + "2024-07-04 4 21:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 112, + 0, + 0, + 0 + ], + "86": [ + "2024-07-04 4 21:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 118, + 0, + 0, + 3, + 116, + 0, + 0, + 0 + ], + "87": [ + "2024-07-04 4 21:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 107, + 0, + 0, + 3, + 113, + 0, + 0, + 0 + ], + "88": [ + "2024-07-04 4 22:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 131, + 0, + 0, + 3, + 145, + 0, + 0, + 0 + ], + "89": [ + "2024-07-04 4 22:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 128, + 0, + 0, + 3, + 111, + 0, + 0, + 0 + ], + "90": [ + "2024-07-04 4 22:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 109, + 0, + 0, + 3, + 93, + 0, + 0, + 0 + ], + "91": [ + "2024-07-04 4 22:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 148, + 0, + 0, + 3, + 89, + 0, + 0, + 0 + ], + "92": [ + "2024-07-04 4 23:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 99, + 0, + 0, + 3, + 105, + 0, + 0, + 0 + ], + "93": [ + "2024-07-04 4 23:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 108, + 0, + 0, + 3, + 127, + 0, + 0, + 0 + ], + "94": [ + "2024-07-04 4 23:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 136, + 0, + 0, + 3, + 133, + 0, + 0, + 0 + ], + "95": [ + "2024-07-04 4 23:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 8, + 91, + 0, + 0, + 3, + 141, + 0, + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,3#PowerQualityProfile1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.1.255,4#PowerQualityProfile1&capture_period": 900, + "7,1.0.99.1.1.255,5#PowerQualityProfile1&sort_method": 1, + "7,1.0.99.1.1.255,6#PowerQualityProfile1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.1.255,7#PowerQualityProfile1&entries_in_use": 960, + "7,1.0.99.1.1.255,8#PowerQualityProfile1&profile_entries": 960, + "7,1.0.99.1.2.255,2#Power Quality Profile2&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 8, + 220, + 0, + 220, + 0, + 220, + 0 + ] + }, + "7,1.0.99.1.2.255,3#Power Quality Profile2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ] + }, + "7,1.0.99.1.2.255,4#Power Quality Profile2&capture_period": 600, + "7,1.0.99.1.2.255,5#Power Quality Profile2&sort_method": 1, + "7,1.0.99.1.2.255,6#Power Quality Profile2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,1.0.99.1.2.255,7#Power Quality Profile2&entries_in_use": 1440, + "7,1.0.99.1.2.255,8#Power Quality Profile2&profile_entries": 1440, + "7,0.0.99.18.0.255,2#LTE Monitoring - profile&buffer": { + "0": [ + "2024-09-24 02 02:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "1": [ + "2024-09-24 02 06:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 42, + 8, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "2": [ + "2024-09-24 02 10:09:33 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 42, + 7, + 0 + ], + [ + 27447553, + 1, + 7, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "3": [ + "2024-09-24 02 14:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 29, + 43, + 11, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "4": [ + "2024-09-24 02 18:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 23, + 40, + 4, + 0 + ], + [ + 27447553, + 1, + 6, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ], + "5": [ + "2024-09-24 02 22:09:34 00,FF88,80", + [ + 720, + 1800, + 0, + 0, + 0, + 0, + -70, + 0, + 0 + ], + [ + 27, + 44, + 8, + 0 + ], + [ + 27447553, + 1, + 8, + 0, + 222, + 1, + 1250 + ], + [ + [ + 999, + 99 + ], + [ + 999, + 99 + ], + [ + 999, + 99 + ] + ], + [ + 10, + 222, + 1, + "2024-09-09 01 11:34:03 00,FF88,80" + ] + ] + }, + "7,0.0.99.18.0.255,3#LTE Monitoring - profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "7,0.0.99.18.0.255,4#LTE Monitoring - profile&capture_period": 14400, + "7,0.0.99.18.0.255,5#LTE Monitoring - profile&sort_method": 1, + "7,0.0.99.18.0.255,6#LTE Monitoring - profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.0.99.18.0.255,7#LTE Monitoring - profile&entries_in_use": 247, + "7,0.0.99.18.0.255,8#LTE Monitoring - profile&profile_entries": 960, + "7,0.1.99.2.0.255,2#Daily load profile values (G channel 1 )&buffer": {}, + "7,0.1.99.2.0.255,3#Daily load profile values (G channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.99.2.0.255,4#Daily load profile values (G channel 1)&capture_period": 86400, + "7,0.1.99.2.0.255,5#Daily load profile values (G channel 1)&sort_method": 1, + "7,0.1.99.2.0.255,6#Daily load profile values (G channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.99.2.0.255,7#Daily load profile values (G channel 1)&entries_in_use": 0, + "7,0.1.99.2.0.255,8#Daily load profile values (G channel 1)&profile_entries": 40, + "7,0.2.99.2.0.255,2#Daily load profile values (G channel 2 )&buffer": {}, + "7,0.2.99.2.0.255,3#Daily load profile values (G channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.99.2.0.255,4#Daily load profile values (G channel 2)&capture_period": 86400, + "7,0.2.99.2.0.255,5#Daily load profile values (G channel 2)&sort_method": 1, + "7,0.2.99.2.0.255,6#Daily load profile values (G channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.99.2.0.255,7#Daily load profile values (G channel 2)&entries_in_use": 0, + "7,0.2.99.2.0.255,8#Daily load profile values (G channel 2)&profile_entries": 40, + "7,0.3.99.2.0.255,2#Daily load profile values (G channel 3 )&buffer": {}, + "7,0.3.99.2.0.255,3#Daily load profile values (G channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.99.2.0.255,4#Daily load profile values (G channel 3)&capture_period": 86400, + "7,0.3.99.2.0.255,5#Daily load profile values (G channel 3)&sort_method": 1, + "7,0.3.99.2.0.255,6#Daily load profile values (G channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.99.2.0.255,7#Daily load profile values (G channel 3)&entries_in_use": 0, + "7,0.3.99.2.0.255,8#Daily load profile values (G channel 3)&profile_entries": 40, + "7,0.4.99.2.0.255,2#Daily load profile values (G channel 4 )&buffer": {}, + "7,0.4.99.2.0.255,3#Daily load profile values (G channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.99.2.0.255,4#Daily load profile values (G channel 4)&capture_period": 86400, + "7,0.4.99.2.0.255,5#Daily load profile values (G channel 4)&sort_method": 1, + "7,0.4.99.2.0.255,6#Daily load profile values (G channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.99.2.0.255,7#Daily load profile values (G channel 4)&entries_in_use": 0, + "7,0.4.99.2.0.255,8#Daily load profile values (G channel 4)&profile_entries": 40, + "7,0.1.98.1.0.255,2#Monthly billing values (G Channel 1)&buffer": {}, + "7,0.1.98.1.0.255,3#Monthly billing values (G Channel 1)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.98.1.0.255,4#Monthly billing values (G Channel 1)&capture_period": 0, + "7,0.1.98.1.0.255,5#Monthly billing values (G Channel 1)&sort_method": 1, + "7,0.1.98.1.0.255,6#Monthly billing values (G Channel 1)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.98.1.0.255,7#Monthly billing values (G Channel 1)&entries_in_use": 0, + "7,0.1.98.1.0.255,8#Monthly billing values (G Channel 1)&profile_entries": 13, + "7,0.2.98.1.0.255,2#Monthly billing values (G Channel 2)&buffer": {}, + "7,0.2.98.1.0.255,3#Monthly billing values (G Channel 2)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.98.1.0.255,4#Monthly billing values (G Channel 2)&capture_period": 0, + "7,0.2.98.1.0.255,5#Monthly billing values (G Channel 2)&sort_method": 1, + "7,0.2.98.1.0.255,6#Monthly billing values (G Channel 2)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.98.1.0.255,7#Monthly billing values (G Channel 2)&entries_in_use": 0, + "7,0.2.98.1.0.255,8#Monthly billing values (G Channel 2)&profile_entries": 13, + "7,0.3.98.1.0.255,2#Monthly billing values (G Channel 3)&buffer": {}, + "7,0.3.98.1.0.255,3#Monthly billing values (G Channel 3)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.98.1.0.255,4#Monthly billing values (G Channel 3)&capture_period": 0, + "7,0.3.98.1.0.255,5#Monthly billing values (G Channel 3)&sort_method": 1, + "7,0.3.98.1.0.255,6#Monthly billing values (G Channel 3)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.98.1.0.255,7#Monthly billing values (G Channel 3)&entries_in_use": 0, + "7,0.3.98.1.0.255,8#Monthly billing values (G Channel 3)&profile_entries": 13, + "7,0.4.98.1.0.255,2#Monthly billing values (G Channel 4)&buffer": {}, + "7,0.4.98.1.0.255,3#Monthly billing values (G Channel 4)&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.98.1.0.255,4#Monthly billing values (G Channel 4)&capture_period": 0, + "7,0.4.98.1.0.255,5#Monthly billing values (G Channel 4)&sort_method": 1, + "7,0.4.98.1.0.255,6#Monthly billing values (G Channel 4)&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.98.1.0.255,7#Monthly billing values (G Channel 4)&entries_in_use": 0, + "7,0.4.98.1.0.255,8#Monthly billing values (G Channel 4)&profile_entries": 13, + "7,0.1.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 1&buffer": {}, + "7,0.1.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 1&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "7,0.1.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 1&capture_period": 3600, + "7,0.1.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 1&sort_method": 1, + "7,0.1.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 1&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 1&entries_in_use": 0, + "7,0.1.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 1&profile_entries": 240, + "7,0.2.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 2&buffer": {}, + "7,0.2.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 2&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "7,0.2.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 2&capture_period": 3600, + "7,0.2.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 2&sort_method": 1, + "7,0.2.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 2&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.2.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 2&entries_in_use": 0, + "7,0.2.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 2&profile_entries": 240, + "7,0.3.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 3&buffer": {}, + "7,0.3.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 3&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "7,0.3.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 3&capture_period": 3600, + "7,0.3.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 3&sort_method": 1, + "7,0.3.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 3&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.3.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 3&entries_in_use": 0, + "7,0.3.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 3&profile_entries": 240, + "7,0.4.24.3.0.255,2#M-Bus Master Load profile with period 1 Channel 4&buffer": {}, + "7,0.4.24.3.0.255,3#M-Bus Master Load profile with period 1 Channel 4&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "7,0.4.24.3.0.255,4#M-Bus Master Load profile with period 1 Channel 4&capture_period": 3600, + "7,0.4.24.3.0.255,5#M-Bus Master Load profile with period 1 Channel 4&sort_method": 1, + "7,0.4.24.3.0.255,6#M-Bus Master Load profile with period 1 Channel 4&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.4.24.3.0.255,7#M-Bus Master Load profile with period 1 Channel 4&entries_in_use": 0, + "7,0.4.24.3.0.255,8#M-Bus Master Load profile with period 1 Channel 4&profile_entries": 240, + "7,0.1.94.31.6.255,2#Definable Load Profile&buffer": { + "0": [ + "2024-09-24 02 00:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "1": [ + "2024-09-24 02 00:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "2": [ + "2024-09-24 02 00:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "3": [ + "2024-09-24 02 00:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "4": [ + "2024-09-24 02 00:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "5": [ + "2024-09-24 02 00:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "6": [ + "2024-09-24 02 01:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "7": [ + "2024-09-24 02 01:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "8": [ + "2024-09-24 02 01:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "9": [ + "2024-09-24 02 01:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "10": [ + "2024-09-24 02 01:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "11": [ + "2024-09-24 02 01:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "12": [ + "2024-09-24 02 02:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "13": [ + "2024-09-24 02 02:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "14": [ + "2024-09-24 02 02:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "15": [ + "2024-09-24 02 02:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "16": [ + "2024-09-24 02 02:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "17": [ + "2024-09-24 02 02:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "18": [ + "2024-09-24 02 03:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "19": [ + "2024-09-24 02 03:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "20": [ + "2024-09-24 02 03:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "21": [ + "2024-09-24 02 03:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "22": [ + "2024-09-24 02 03:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "23": [ + "2024-09-24 02 03:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "24": [ + "2024-09-24 02 04:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "25": [ + "2024-09-24 02 04:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "26": [ + "2024-09-24 02 04:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "27": [ + "2024-09-24 02 04:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "28": [ + "2024-09-24 02 04:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "29": [ + "2024-09-24 02 04:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "30": [ + "2024-09-24 02 05:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "31": [ + "2024-09-24 02 05:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "32": [ + "2024-09-24 02 05:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "33": [ + "2024-09-24 02 05:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "34": [ + "2024-09-24 02 05:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "35": [ + "2024-09-24 02 05:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "36": [ + "2024-09-24 02 06:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "37": [ + "2024-09-24 02 06:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "38": [ + "2024-09-24 02 06:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "39": [ + "2024-09-24 02 06:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "40": [ + "2024-09-24 02 06:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "41": [ + "2024-09-24 02 06:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "42": [ + "2024-09-24 02 07:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "43": [ + "2024-09-24 02 07:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "44": [ + "2024-09-24 02 07:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "45": [ + "2024-09-24 02 07:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "46": [ + "2024-09-24 02 07:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "47": [ + "2024-09-24 02 07:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "48": [ + "2024-09-24 02 08:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "49": [ + "2024-09-24 02 08:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "50": [ + "2024-09-24 02 08:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "51": [ + "2024-09-24 02 08:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "52": [ + "2024-09-24 02 08:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "53": [ + "2024-09-24 02 08:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "54": [ + "2024-09-24 02 09:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "55": [ + "2024-09-24 02 09:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "56": [ + "2024-09-24 02 09:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "57": [ + "2024-09-24 02 09:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "58": [ + "2024-09-24 02 09:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "59": [ + "2024-09-24 02 09:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "60": [ + "2024-09-24 02 10:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "61": [ + "2024-09-24 02 10:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "62": [ + "2024-09-24 02 10:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "63": [ + "2024-09-24 02 10:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "64": [ + "2024-09-24 02 10:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "65": [ + "2024-09-24 02 10:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "66": [ + "2024-09-24 02 11:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "67": [ + "2024-09-24 02 11:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "68": [ + "2024-09-24 02 11:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "69": [ + "2024-09-24 02 11:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "70": [ + "2024-09-24 02 11:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "71": [ + "2024-09-24 02 11:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "72": [ + "2024-09-24 02 12:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "73": [ + "2024-09-24 02 12:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "74": [ + "2024-09-24 02 12:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "75": [ + "2024-09-24 02 12:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "76": [ + "2024-09-24 02 12:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "77": [ + "2024-09-24 02 12:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "78": [ + "2024-09-24 02 13:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "79": [ + "2024-09-24 02 13:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "80": [ + "2024-09-24 02 13:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "81": [ + "2024-09-24 02 13:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "82": [ + "2024-09-24 02 13:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "83": [ + "2024-09-24 02 13:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "84": [ + "2024-09-24 02 14:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "85": [ + "2024-09-24 02 14:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "86": [ + "2024-09-24 02 14:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "87": [ + "2024-09-24 02 14:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "88": [ + "2024-09-24 02 14:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "89": [ + "2024-09-24 02 14:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "90": [ + "2024-09-24 02 15:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "91": [ + "2024-09-24 02 15:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "92": [ + "2024-09-24 02 15:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "93": [ + "2024-09-24 02 15:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "94": [ + "2024-09-24 02 15:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "95": [ + "2024-09-24 02 15:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "96": [ + "2024-09-24 02 16:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "97": [ + "2024-09-24 02 16:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "98": [ + "2024-09-24 02 16:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "99": [ + "2024-09-24 02 16:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "100": [ + "2024-09-24 02 16:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "101": [ + "2024-09-24 02 16:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "102": [ + "2024-09-24 02 17:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "103": [ + "2024-09-24 02 17:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "104": [ + "2024-09-24 02 17:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "105": [ + "2024-09-24 02 17:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "106": [ + "2024-09-24 02 17:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "107": [ + "2024-09-24 02 17:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "108": [ + "2024-09-24 02 18:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "109": [ + "2024-09-24 02 18:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "110": [ + "2024-09-24 02 18:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "111": [ + "2024-09-24 02 18:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "112": [ + "2024-09-24 02 18:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "113": [ + "2024-09-24 02 18:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "114": [ + "2024-09-24 02 19:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "115": [ + "2024-09-24 02 19:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "116": [ + "2024-09-24 02 19:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "117": [ + "2024-09-24 02 19:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "118": [ + "2024-09-24 02 19:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "119": [ + "2024-09-24 02 19:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "120": [ + "2024-09-24 02 20:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "121": [ + "2024-09-24 02 20:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "122": [ + "2024-09-24 02 20:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "123": [ + "2024-09-24 02 20:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "124": [ + "2024-09-24 02 20:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "125": [ + "2024-09-24 02 20:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "126": [ + "2024-09-24 02 21:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "127": [ + "2024-09-24 02 21:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "128": [ + "2024-09-24 02 21:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "129": [ + "2024-09-24 02 21:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "130": [ + "2024-09-24 02 21:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "131": [ + "2024-09-24 02 21:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "132": [ + "2024-09-24 02 22:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "133": [ + "2024-09-24 02 22:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "134": [ + "2024-09-24 02 22:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "135": [ + "2024-09-24 02 22:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "136": [ + "2024-09-24 02 22:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "137": [ + "2024-09-24 02 22:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "138": [ + "2024-09-24 02 23:00:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "139": [ + "2024-09-24 02 23:10:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "140": [ + "2024-09-24 02 23:20:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "141": [ + "2024-09-24 02 23:30:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "142": [ + "2024-09-24 02 23:40:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ], + "143": [ + "2024-09-24 02 23:50:00 00,FF88,80", + 220, + 220, + 220, + 220, + 220, + 220 + ] + }, + "7,0.1.94.31.6.255,3#Definable Load Profile&capture_objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ] + }, + "7,0.1.94.31.6.255,4#Definable Load Profile&capture_period": 600, + "7,0.1.94.31.6.255,5#Definable Load Profile&sort_method": 1, + "7,0.1.94.31.6.255,6#Definable Load Profile&sort_object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "7,0.1.94.31.6.255,7#Definable Load Profile&entries_in_use": 960, + "7,0.1.94.31.6.255,8#Definable Load Profile&profile_entries": 960, + "3,1.0.1.8.0.255,2#Active energy import&value": 449048, + "3,1.0.1.8.0.255,3#Active energy import&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.1.255,2#Active energy import rate 1&value": 449048, + "3,1.0.1.8.1.255,3#Active energy import rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.1.8.2.255,2#Active energy import rate 2&value": 0, + "3,1.0.1.8.2.255,3#Active energy import rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.0.255,2#Active energy export&value": 0, + "3,1.0.2.8.0.255,3#Active energy export&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.1.255,2#Active energy export rate 1&value": 0, + "3,1.0.2.8.1.255,3#Active energy export rate 1&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.2.8.2.255,2#Active energy export rate 2&value": 0, + "3,1.0.2.8.2.255,3#Active energy export rate 2&scaler_unit": { + "0": [ + 0, + 30 + ] + }, + "3,1.0.31.7.0.255,2#Instantaneous current L1&value": 7, + "3,1.0.31.7.0.255,3#Instantaneous current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.7.0.255,2#Instantaneous current L2&value": 15, + "3,1.0.51.7.0.255,3#Instantaneous current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.7.0.255,2#Instantaneous current L3&value": 9, + "3,1.0.71.7.0.255,3#Instantaneous current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.32.7.0.255,2#Instantaneous voltage L1&value": 222, + "3,1.0.32.7.0.255,3#Instantaneous voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.7.0.255,2#Instantaneous voltage L2&value": 218, + "3,1.0.52.7.0.255,3#Instantaneous voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.7.0.255,2#Instantaneous voltage L3&value": 219, + "3,1.0.72.7.0.255,3#Instantaneous voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.1.7.0.255,2#Instantaneous active import power&value": 162, + "3,1.0.1.7.0.255,3#Instantaneous active import power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.21.7.0.255,2#Instantaneous active import power L1&value": 24, + "3,1.0.21.7.0.255,3#Instantaneous active import power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.41.7.0.255,2#Instantaneous active import power L2&value": 15, + "3,1.0.41.7.0.255,3#Instantaneous active import power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.61.7.0.255,2#Instantaneous active import power L3&value": 25, + "3,1.0.61.7.0.255,3#Instantaneous active import power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.2.7.0.255,2#Instantaneous active export power&value": 0, + "3,1.0.2.7.0.255,3#Instantaneous active export power&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.22.7.0.255,2#Instantaneous active export power L1&value": 0, + "3,1.0.22.7.0.255,3#Instantaneous active export power L1&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.42.7.0.255,2#Instantaneous active export power L2&value": 0, + "3,1.0.42.7.0.255,3#Instantaneous active export power L2&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.62.7.0.255,2#Instantaneous active export power L3&value": 0, + "3,1.0.62.7.0.255,3#Instantaneous active export power L3&scaler_unit": { + "0": [ + 0, + 27 + ] + }, + "3,1.0.3.7.0.255,2#Instantaneous reactive import power&value": 0, + "3,1.0.3.7.0.255,3#Instantaneous reactive import power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.23.7.0.255,2#Instantaneous reactive import power L1&value": 0, + "3,1.0.23.7.0.255,3#Instantaneous reactive import power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.43.7.0.255,2#Instantaneous reactive import power L2&value": 0, + "3,1.0.43.7.0.255,3#Instantaneous reactive import power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.63.7.0.255,2#Instantaneous reactive import power L3&value": 0, + "3,1.0.63.7.0.255,3#Instantaneous reactive import power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.4.7.0.255,2#Instantaneous reactive export power&value": 12, + "3,1.0.4.7.0.255,3#Instantaneous reactive export power&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.24.7.0.255,2#Instantaneous reactive export power L1&value": 8, + "3,1.0.24.7.0.255,3#Instantaneous reactive export power L1&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.44.7.0.255,2#Instantaneous reactive export power L2&value": 3, + "3,1.0.44.7.0.255,3#Instantaneous reactive export power L2&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.64.7.0.255,2#Instantaneous reactive export power L3&value": 0, + "3,1.0.64.7.0.255,3#Instantaneous reactive export power L3&scaler_unit": { + "0": [ + 0, + 29 + ] + }, + "3,1.0.9.7.0.255,2#Instantaneous apparent import power&value": 193, + "3,1.0.9.7.0.255,3#Instantaneous apparent import power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.10.7.0.255,2#Instantaneous apparent export power&value": 0, + "3,1.0.10.7.0.255,3#Instantaneous apparent export power&scaler_unit": { + "0": [ + 0, + 28 + ] + }, + "3,1.0.32.25.0.255,2#Current Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Current Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Current Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Current Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Current Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Current Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Current Average Current L1&value": 0, + "3,1.0.31.25.0.255,3#Current Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Current Average Current L2&value": 0, + "3,1.0.51.25.0.255,3#Current Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Current Average Current L3&value": 0, + "3,1.0.71.25.0.255,3#Current Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.14.24.0.255,2#Current Average Frequency&value": "ObjectUndefined", + "3,1.0.14.24.0.255,3#Current AverageFrequency&scaler_unit": "ObjectUndefined", + "3,1.0.32.25.0.255,2#Last Average Voltage L1&value": 220, + "3,1.0.32.25.0.255,3#Last Average Voltage L1&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.52.25.0.255,2#Last Average Voltage L2&value": 220, + "3,1.0.52.25.0.255,3#Last Average Voltage L2&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.72.25.0.255,2#Last Average Voltage L3&value": 220, + "3,1.0.72.25.0.255,3#Last Average Voltage L3&scaler_unit": { + "0": [ + 0, + 35 + ] + }, + "3,1.0.31.25.0.255,2#Last Average Current L1&value": 13, + "3,1.0.31.25.0.255,3#Last Average Current L1&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.51.25.0.255,2#Last Average Current L2&value": 16, + "3,1.0.51.25.0.255,3#Last Average Current L2&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "3,1.0.71.25.0.255,2#Last Average Current L3&value": 11, + "3,1.0.71.25.0.255,3#Last Average Current L3&scaler_unit": { + "0": [ + 0, + 33 + ] + }, + "1,0.0.97.97.0.255,2#Error register": 8196, + "1,0.0.97.98.0.255,2#Alarm register 1": 0, + "7,0.0.99.98.0.255,3#Standard Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "7,0.0.99.98.0.255,2#Standard Event Log&Buffer": {}, + "7,0.0.99.98.1.255,3#Fraud detection Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "7,0.0.99.98.1.255,2#Fraud detection Event Log&Buffer": {}, + "7,0.0.99.97.0.255,3#Power Failure Event Log&Capture Objects": "ObjectUndefined", + "7,0.0.99.97.0.255,2#Power Failure Event Log&Buffer": "ObjectUndefined", + "7,0.0.99.98.5.255,3#Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "7,0.0.99.98.5.255,2#Quality detection Event Log&Buffer": {}, + "7,0.0.99.98.7.255,3#Extended Power Quality Event Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "7,0.0.99.98.7.255,2#Extended Power Quality Event Log&Buffer": {}, + "7,0.0.99.98.4.255,3#Communication Session Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "7,0.0.99.98.4.255,2#Communication Session Log&Buffer": { + "0": [ + "2025-05-14 3 17:24:00 00,FF88,80", + 70, + 65 + ], + "1": [ + "2025-05-12 1 10:24:00 00,FF88,80", + 79, + 62 + ], + "2": [ + "2025-05-05 1 12:24:00 00,FF88,80", + 74, + 100 + ], + "3": [ + "2025-05-16 5 16:24:00 00,FF88,80", + 79, + 34 + ], + "4": [ + "2025-05-10 6 18:24:00 00,FF88,80", + 80, + 30 + ] + }, + "7,0.1.99.98.3.255,3#M-Bus event log channel 1 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "7,0.1.99.98.4.255,2#M-Bus event log channel 1 Log&Buffer": "ObjectUndefined", + "7,0.2.99.98.3.255,3#M-Bus event log channel 2 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "7,0.2.99.98.3.255,2#M-Bus event log channel 2 Log&Buffer": {}, + "7,0.3.99.98.3.255,3#M-Bus event log channel 3 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "7,0.3.99.98.3.255,2#M-Bus event log channel 3 Log&Buffer": {}, + "7,0.4.99.98.3.255,3#M-Bus event log channel 4 Log&Capture Objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "7,0.4.99.98.3.255,2#M-Bus event log channel 4 Log&Buffer": {} + } +] \ No newline at end of file diff --git a/docs/testdata/generate_testdata.py b/docs/testdata/generate_testdata.py new file mode 100644 index 0000000..ea0f95a --- /dev/null +++ b/docs/testdata/generate_testdata.py @@ -0,0 +1,233 @@ +#!/usr/bin/env python3 +"""Generate MiniHES test data: multiple projects, 8 KFM meters each, 1 year of data. + +Reads demo3.txt as template, produces one JSON file per project. +Each file is a JSON array of 8 complete DLMS meter records. + +IDIS meter number format: KFM + YYYYMMDDNNNNN (16 chars total) + - KFM: manufacturer code + - YYYYMMDD: manufacturing date + - NNNNN: 5-digit sequential serial number + +Usage: + cd docs/testdata && python3 generate_testdata.py +""" + +import json +import copy +import random +import re +import os +from datetime import datetime, timedelta + +random.seed(42) + +PROJECTS = [ + {"name": "Cusk-01_DCPP_DailyCheck", "serial_base": 2025030100001}, + {"name": "Andromeda-01_DailyCheck", "serial_base": 2025031500001}, + {"name": "Draco-01_DCPP_DailyCheck", "serial_base": 2025040100001}, +] + +METERS = 8 +DATA_START = datetime(2024, 6, 1) # 1 year: 2024-06-01 ~ 2025-05-31 +DATA_END = datetime(2025, 5, 31) +DAYS_IN_YEAR = 365 +COLLECT_BASE = datetime(2025, 6, 1, 3, 0, 0) + +HERE = os.path.dirname(os.path.abspath(__file__)) + + +def load_template(): + with open(os.path.join(HERE, "demo3.txt")) as f: + text = f.read() + text = re.sub(r',(\s*[}\]])', r'\1', text) + return json.loads(text) + + +def dlms_ts(dt): + """DLMS timestamp: YYYY-MM-DD W HH:MM:SS 00,FF88,80""" + return dt.strftime("%Y-%m-%d %w %H:%M:%S") + " 00,FF88,80" + + +def dlms_day(dt): + """DLMS date for billing: YYYY-MM-DD W 00:00:00 00,FF88,80""" + return dt.strftime("%Y-%m-%d %w") + " 00:00:00 00,FF88,80" + + +def ts_iso(dt): + return dt.strftime("%Y-%m-%d %H:%M:%S.") + f"{random.randint(100000, 999999)}" + + +def make_meter(tpl, serial, pos): + r = copy.deepcopy(tpl) + + dev_id = f"{serial:011d}" + meter_no = f"KFM{dev_id}" + + # Connection + cs = COLLECT_BASE + timedelta(minutes=random.randint(0, 60)) + dur = round(random.uniform(2, 6), 1) + ce = cs + timedelta(seconds=dur) + + r["_id"] = ts_iso(ce + timedelta(seconds=random.randint(0, 30))) + r["pos"] = pos + r["connection_start"] = cs.strftime("%Y-%m-%d %H:%M:%S") + r["connection_end"] = ce.strftime("%Y-%m-%d %H:%M:%S") + r["connection_consume"] = dur + + # Identity + r["1,0.0.96.1.0.255,2#Device ID&value"] = dev_id + r["1,0.0.42.0.0.255,2#LogicalName&value"] = meter_no + + # Clock + ct = ce + timedelta(seconds=random.randint(1, 8)) + r["actual_time"] = ts_iso(ct) + r["8,0.0.1.0.0.255,2#Clock&time"] = dlms_ts(ct) + r["currently_time"] = ct.strftime("%Y-%m-%d %H:%M:%S") + + # Profile / reading timing + gps = ct + timedelta(seconds=random.randint(1, 3)) + gpe = gps + timedelta(seconds=round(random.uniform(0.3, 0.6), 6)) + r["getProfile_start_time"] = ts_iso(gps) + r["getProfile_end_time"] = ts_iso(gpe) + + rs = gps + timedelta(seconds=random.randint(5, 15)) + rd = round(random.uniform(8, 18), 6) + r["reading_status"] = True + r["reading_start_time"] = ts_iso(rs) + r["reading_end_time"] = ts_iso(rs + timedelta(seconds=rd)) + r["reading_consume"] = rd + + # Energy parameters + base_e = random.randint(50000, 250000) + avg_d = random.randint(300, 900) + + # Daily Billing Profile (365 entries = 1 year) + db = {} + e = base_e + for d in range(DAYS_IN_YEAR): + dt = DATA_START + timedelta(days=d) + # Seasonal variation: summer/winter higher consumption + month = dt.month + if month in (6, 7, 8, 12, 1, 2): + season_factor = random.uniform(1.0, 1.8) + else: + season_factor = random.uniform(0.4, 1.0) + e += int(avg_d * season_factor) + db[str(d)] = [dlms_day(dt), 8, e, 0, 0, 0] + r["7,1.0.99.2.0.255,2#Daily Billing Profile&buffer"] = db + r["7,1.0.99.2.0.255,7#Daily Billing Profile&entries_in_use"] = DAYS_IN_YEAR + r["7,1.0.99.2.0.255,8#Daily Billing Profile&profile_entries"] = DAYS_IN_YEAR + + # Monthly Billing Profile (12 entries = 1 year) + mb = {} + monthly_e = base_e + for m in range(12): + month_start = DATA_START + timedelta(days=sum([31,28,31,30,31,30,31,31,30,31,30,31][:m])) + if month_start.month == 2: + days_in_month = 28 + else: + days_in_month = [31,28,31,30,31,30,31,31,30,31,30,31][month_start.month - 1] + month_end = month_start + timedelta(days=days_in_month - 1) + # Sum daily increments for this month + for _ in range(days_in_month): + mm = month_start.month + sf = random.uniform(1.0, 1.8) if mm in (6, 7, 8, 12, 1, 2) else random.uniform(0.4, 1.0) + monthly_e += int(avg_d * sf) + mb[str(m)] = [dlms_day(month_end), 8, monthly_e, 0, 0, 0] + r["7,1.0.98.1.0.255,2#Monthly Billing Profile&buffer"] = mb + r["7,1.0.98.1.0.255,7#Monthly Billing Profile&entries_in_use"] = 12 + r["7,1.0.98.1.0.255,8#Monthly Billing Profile&profile_entries"] = 13 + + # Load Profile (96 entries, 15-min intervals, 1 day) + lp = {} + ld = DATA_START + timedelta(days=random.randint(0, DAYS_IN_YEAR - 1)) + ev = base_e + for i in range(96): + ts = ld + timedelta(minutes=15 * i) + h = ts.hour + if 6 <= h <= 9 or 17 <= h <= 22: + factor = random.uniform(1.3, 2.5) + elif 0 <= h <= 5: + factor = random.uniform(0.1, 0.4) + else: + factor = random.uniform(0.5, 1.2) + ev += int(avg_d / 96 * factor) + lp[str(i)] = [dlms_ts(ts), 8, ev, 0] + r["7,1.0.99.1.0.255,2#Load profile with period 1&buffer"] = lp + + # Power Quality Profile (96 entries) + pq = {} + for i in range(96): + ts = ld + timedelta(minutes=15 * i) + pq[str(i)] = [ + dlms_ts(ts), 8, + 0, 0, 0, + 8, random.randint(80, 150), 0, + 0, 3, random.randint(80, 150), 0, + 0, 0 + ] + r["7,1.0.99.1.1.255,2#PowerQualityProfile1&buffer"] = pq + + # Register values + v = random.randint(218, 235) + i_ = random.randint(0, 30) + p = random.randint(50, 500) + + r["3,1.0.1.8.0.255,2#Active energy import&value"] = e + r["3,1.0.1.8.1.255,2#Active energy import rate 1&value"] = e + r["3,1.0.1.8.2.255,2#Active energy import rate 2&value"] = 0 + r["3,1.0.2.8.0.255,2#Active energy export&value"] = 0 + r["3,1.0.2.8.1.255,2#Active energy export rate 1&value"] = 0 + r["3,1.0.2.8.2.255,2#Active energy export rate 2&value"] = 0 + + for ph, ln in [(32, "L1"), (52, "L2"), (72, "L3")]: + r[f"3,1.0.{ph}.7.0.255,2#Instantaneous voltage {ln}&value"] = v + random.randint(-3, 3) + r[f"3,1.0.{ph - 1}.7.0.255,2#Instantaneous current {ln}&value"] = max(0, i_ + random.randint(-10, 10)) + r[f"3,1.0.{ph}.25.0.255,2#Last Average Voltage {ln}&value"] = v + random.randint(-2, 2) + r[f"3,1.0.{ph - 1}.25.0.255,2#Last Average Current {ln}&value"] = max(0, i_ + random.randint(-5, 5)) + + r["3,1.0.1.7.0.255,2#Instantaneous active import power&value"] = p + r["3,1.0.21.7.0.255,2#Instantaneous active import power L1&value"] = random.randint(0, p // 3) + r["3,1.0.41.7.0.255,2#Instantaneous active import power L2&value"] = random.randint(0, p // 3) + r["3,1.0.61.7.0.255,2#Instantaneous active import power L3&value"] = random.randint(0, p // 3) + + # Communication session log + csl = {} + for j in range(random.randint(2, 6)): + lt = cs - timedelta(days=random.randint(0, 30), hours=random.randint(0, 23)) + csl[str(j)] = [dlms_ts(lt), random.randint(70, 80), random.randint(0, 100)] + r["7,0.0.99.98.4.255,2#Communication Session Log&Buffer"] = csl + + return r + + +def main(): + print("Loading template...") + tpl = load_template() + print(f"Template: {len(tpl)} top-level keys\n") + + for proj in PROJECTS: + name = proj["name"] + base = proj["serial_base"] + print(f"Project: {name}") + + records = [] + for i in range(METERS): + serial = base + i + rec = make_meter(tpl, serial, i + 1) + records.append(rec) + print(f" [{i + 1}/8] KFM{serial:011d}") + + path = os.path.join(HERE, f"{name}.json") + with open(path, "w") as f: + json.dump(records, f, indent="\t", ensure_ascii=False) + + mb = os.path.getsize(path) / 1048576 + print(f" -> {name}.json ({mb:.1f} MB)\n") + + print("Done.") + + +if __name__ == "__main__": + main() diff --git a/docs/testdata/generate_testdata_mongo.py b/docs/testdata/generate_testdata_mongo.py new file mode 100644 index 0000000..7b5e37b --- /dev/null +++ b/docs/testdata/generate_testdata_mongo.py @@ -0,0 +1,239 @@ +#!/usr/bin/env python3 +"""Generate 1-year test data for MiniHES and import into MongoDB. + +Reads template_meter.json (exported from Puma-01_DCPP_DailyCheck), +generates 3 projects x 8 meters, inserts directly into MongoDB. + +Usage: + cd docs/testdata && python3 generate_testdata_mongo.py +""" + +import json +import copy +import random +import os +import subprocess +from datetime import datetime, timedelta + +random.seed(42) + +PROJECTS = [ + {"name": "Cusk-01_DCPP_DailyCheck", "serial_base": 2025030100001}, + {"name": "Andromeda-01_DailyCheck", "serial_base": 2025031500001}, + {"name": "Draco-01_DCPP_DailyCheck", "serial_base": 2025040100001}, +] + +METERS = 8 +DATA_START = datetime(2024, 6, 1) +DAYS_IN_YEAR = 365 +COLLECT_BASE = datetime(2025, 6, 1, 9, 0, 0) + +HERE = os.path.dirname(os.path.abspath(__file__)) +TEMPLATE_FILE = os.path.join(HERE, "template_meter.json") + + +def nint(v): + """Wrap integer as MongoDB canonical JSON numberInt.""" + return {"$numberInt": str(v)} + + +def dlms_ts(dt): + return dt.strftime("%Y-%m-%d %w %H:%M:%S") + " 00,FF88,80" + + +def dlms_day(dt): + return dt.strftime("%Y-%m-%d %w") + " 00:00:00 00,FF88,80" + + +def load_template(): + with open(TEMPLATE_FILE) as f: + data = json.load(f) + data.pop("_id", None) + return data + + +def set_val(sheets, kvp, sheet_name, control_name, attr_name, value): + """Set value in both sheets and key_value_pairs.""" + if sheet_name not in sheets: + return False + for obj in sheets[sheet_name]["objects"]: + if obj.get("controlName") == control_name and obj.get("attributeName") == attr_name: + obj["value"] = value + kvp[obj["key"]] = value + return True + return False + + +def season_factor(month): + if month in (6, 7, 8, 12, 1, 2): + return random.uniform(1.0, 1.8) + return random.uniform(0.4, 1.0) + + +def make_meter(template, serial, pos): + r = copy.deepcopy(template) + sheets = r["sheets"] + kvp = r["key_value_pairs"] + + dev_id = f"{serial:011d}" + meter_no = f"KFM{dev_id}" + + # Timestamp + ts = COLLECT_BASE + timedelta(minutes=random.randint(0, 180)) + ts_str = ts.strftime("%Y-%m-%dT%H:%M:%S.") + f"{ts.microsecond:06d}" + r["timestamp"] = ts_str + r["source_file"] = f"data/{meter_no}/XMLFunctionLists_Meter_PP.xlsx" + + # Basic Information + set_val(sheets, kvp, "Basic Information", "E-meter Logic device name", "E-meter Logic device name", meter_no) + set_val(sheets, kvp, "Basic Information", "E-meter Serial Number", "E-meter Serial Number", dev_id) + + # Energy parameters + base_e = random.randint(50000, 250000) + avg_d = random.randint(300, 900) + + # Calculate 1-year cumulative energy + total_e = base_e + for d in range(DAYS_IN_YEAR): + dt = DATA_START + timedelta(days=d) + total_e += int(avg_d * season_factor(dt.month)) + + e_r1 = int(total_e * 0.95) + e_r2 = total_e - e_r1 + e_neg = random.randint(0, 50) + + set_val(sheets, kvp, "Energy", "Cumulative A Positive", "Value", nint(total_e)) + set_val(sheets, kvp, "Energy", "Cumulative A Positive rate1", "Value", nint(e_r1)) + set_val(sheets, kvp, "Energy", "Cumulative A Positive rate2", "Value", nint(e_r2)) + set_val(sheets, kvp, "Energy", "Cumulative A Negative", "Value", nint(e_neg)) + set_val(sheets, kvp, "Energy", "Cumulative A Negative rate1", "Value", nint(e_neg)) + set_val(sheets, kvp, "Energy", "Cumulative A Negative rate2", "Value", nint(0)) + + # Daily Billing (365 entries) + db_buf = {} + e = base_e + for d in range(DAYS_IN_YEAR): + dt = DATA_START + timedelta(days=d) + e += int(avg_d * season_factor(dt.month)) + db_buf[str(d)] = [ + dlms_day(dt), nint(random.randint(30, 200)), + nint(e), nint(0), nint(0), nint(0) + ] + set_val(sheets, kvp, "Daily Billing", "E-meter Daily Billing", "Buffer", db_buf) + set_val(sheets, kvp, "Daily Billing", "E-meter Daily Billing", "Entries in use", nint(DAYS_IN_YEAR)) + set_val(sheets, kvp, "Daily Billing", "E-meter Daily Billing", "Profile entries", nint(DAYS_IN_YEAR)) + + # Monthly Billing (12 entries) + mb_buf = {} + monthly_e = base_e + dpm = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] + day_offset = 0 + for m in range(12): + month_start = DATA_START + timedelta(days=day_offset) + dim = dpm[m] + month_end = month_start + timedelta(days=dim - 1) + for _ in range(dim): + monthly_e += int(avg_d * season_factor(month_start.month)) + mb_buf[str(m)] = [ + dlms_day(month_end), nint(random.randint(30, 200)), + nint(monthly_e), nint(0), nint(0), nint(0) + ] + day_offset += dim + set_val(sheets, kvp, "Month Billing", "E-meter Monthly Billing", "Buffer", mb_buf) + set_val(sheets, kvp, "Month Billing", "E-meter Monthly Billing", "Entries in use", nint(12)) + set_val(sheets, kvp, "Month Billing", "E-meter Monthly Billing", "Profile entries", nint(13)) + + # Load Profile (96 entries, 1 day) + lp_buf = {} + ld = DATA_START + timedelta(days=random.randint(0, DAYS_IN_YEAR - 1)) + ev = base_e + for i in range(96): + t = ld + timedelta(minutes=15 * i) + h = t.hour + if 6 <= h <= 9 or 17 <= h <= 22: + f = random.uniform(1.3, 2.5) + elif 0 <= h <= 5: + f = random.uniform(0.1, 0.4) + else: + f = random.uniform(0.5, 1.2) + ev += int(avg_d / 96 * f) + lp_buf[str(i)] = [dlms_ts(t), nint(8), nint(ev), nint(0)] + set_val(sheets, kvp, "Load Profile", "Energy Profile", "Buffer", lp_buf) + + # Instantaneous Data + v = random.randint(218, 235) + i_ = random.randint(0, 30) + p_total = random.randint(50, 500) + p_l1 = random.randint(0, p_total // 3) + p_l2 = random.randint(0, p_total // 3) + p_l3 = max(0, p_total - p_l1 - p_l2) + + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous current (Sum of all phases)", "Value", nint(i_)) + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous Current L1", "Value", nint(max(0, i_ + random.randint(-5, 5)))) + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous Current L2", "Value", nint(max(0, i_ + random.randint(-5, 5)))) + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous Current L3", "Value", nint(max(0, i_ + random.randint(-5, 5)))) + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous Voltage L1", "Value", nint(v)) + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous Voltage L2", "Value", nint(v + random.randint(-3, 3))) + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous Voltage L3", "Value", nint(v + random.randint(-3, 3))) + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous active power (+P) Total", "Value", nint(p_total)) + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous active power (+P) L1", "Value", nint(p_l1)) + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous active power (+P) L2", "Value", nint(p_l2)) + set_val(sheets, kvp, "Instantaneous Data", "Instantaneous active power (+P) L3", "Value", nint(p_l3)) + + # Update all object timestamps + for sn, sd in sheets.items(): + if "objects" in sd: + for obj in sd["objects"]: + obj_ts = ts + timedelta(milliseconds=random.randint(100, 50000)) + obj["timestamp"] = obj_ts.strftime("%Y-%m-%dT%H:%M:%S.") + f"{obj_ts.microsecond:06d}" + + return r + + +def main(): + print("Loading template...") + tpl = load_template() + print(f"Template: {len(tpl['sheets'])} sheets\n") + + tmp_dir = os.path.join(HERE, "_tmp_import") + os.makedirs(tmp_dir, exist_ok=True) + + for proj in PROJECTS: + name = proj["name"] + base = proj["serial_base"] + + print(f"Project: {name}") + + for i in range(METERS): + serial = base + i + meter_no = f"KFM{serial:011d}" + + rec = make_meter(tpl, serial, i + 1) + + tmp_file = os.path.join(tmp_dir, f"{name}__{meter_no}.json") + with open(tmp_file, "w") as f: + json.dump(rec, f, ensure_ascii=False) + + result = subprocess.run( + ["mongoimport", "--db", name, "--collection", meter_no, + "--file", tmp_file, "--drop", "--quiet"], + capture_output=True, text=True + ) + if result.returncode == 0: + print(f" [{i + 1}/8] {meter_no} imported") + else: + print(f" [{i + 1}/8] {meter_no} FAILED: {result.stderr.strip()}") + + os.remove(tmp_file) + + print(f" -> Database '{name}' ready\n") + + # Cleanup + if os.path.isdir(tmp_dir) and not os.listdir(tmp_dir): + os.rmdir(tmp_dir) + + print("Done.") + + +if __name__ == "__main__": + main() diff --git a/docs/testdata/meter_data_20251101_094706.json b/docs/testdata/meter_data_20251101_094706.json new file mode 100644 index 0000000..d3881bb --- /dev/null +++ b/docs/testdata/meter_data_20251101_094706.json @@ -0,0 +1,68337 @@ +{ + "timestamp": "2025-11-01T09:33:56.512413", + "source_file": "E:\\code\\upgradeBATool\\project_entry-develop\\data\\andromeda\\XMLFunctionLists_Meter_PP.xlsx", + "sheets": { + "Clock": { + "sheet_name": "Clock", + "objects": [ + { + "key": "Clock.Clock.Time", + "classId": 8, + "obis": "0.0.1.0.0.255", + "obisFormatted": "0-0:1.0.0.255", + "attributeId": 2, + "attributeName": "Time", + "controlName": "Clock", + "value": "2025-11-10 01 15:38:38 00,FFC4,00", + "timestamp": "2025-11-01T09:33:57.071593", + "status": "success" + }, + { + "key": "Clock.Clock.Time zone", + "classId": 8, + "obis": "0.0.1.0.0.255", + "obisFormatted": "0-0:1.0.0.255", + "attributeId": 3, + "attributeName": "Time zone", + "controlName": "Clock", + "value": -60, + "timestamp": "2025-11-01T09:33:57.609006", + "status": "success" + }, + { + "key": "Clock.Clock.Status", + "classId": 8, + "obis": "0.0.1.0.0.255", + "obisFormatted": "0-0:1.0.0.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "Clock", + "value": 0, + "timestamp": "2025-11-01T09:33:58.164708", + "status": "success" + }, + { + "key": "Clock.Clock.Daylight savings begin", + "classId": 8, + "obis": "0.0.1.0.0.255", + "obisFormatted": "0-0:1.0.0.255", + "attributeId": 5, + "attributeName": "Daylight savings begin", + "controlName": "Clock", + "value": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "timestamp": "2025-11-01T09:33:58.738685", + "status": "success" + }, + { + "key": "Clock.Clock.Daylight savings end", + "classId": 8, + "obis": "0.0.1.0.0.255", + "obisFormatted": "0-0:1.0.0.255", + "attributeId": 6, + "attributeName": "Daylight savings end", + "controlName": "Clock", + "value": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "timestamp": "2025-11-01T09:33:59.364649", + "status": "success" + }, + { + "key": "Clock.Clock.Daylight savings deviation", + "classId": 8, + "obis": "0.0.1.0.0.255", + "obisFormatted": "0-0:1.0.0.255", + "attributeId": 7, + "attributeName": "Daylight savings deviation", + "controlName": "Clock", + "value": 60, + "timestamp": "2025-11-01T09:33:59.962606", + "status": "success" + }, + { + "key": "Clock.Clock.Daylight savings enabled", + "classId": 8, + "obis": "0.0.1.0.0.255", + "obisFormatted": "0-0:1.0.0.255", + "attributeId": 8, + "attributeName": "Daylight savings enabled", + "controlName": "Clock", + "value": 1, + "timestamp": "2025-11-01T09:34:00.579825", + "status": "success" + }, + { + "key": "Clock.Clock.Clock base", + "classId": 8, + "obis": "0.0.1.0.0.255", + "obisFormatted": "0-0:1.0.0.255", + "attributeId": 9, + "attributeName": "Clock base", + "controlName": "Clock", + "value": 1, + "timestamp": "2025-11-01T09:34:01.172594", + "status": "success" + }, + { + "key": "Clock.Clock time shift event limit: S.Value", + "classId": 3, + "obis": "1.0.0.9.11.255", + "obisFormatted": "1-0:0.9.11.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Clock time shift event limit: S", + "value": 60, + "timestamp": "2025-11-01T09:34:01.807270", + "status": "success" + } + ], + "summary": { + "total": 9, + "success": 9, + "failed": 0 + } + }, + "Basic Information": { + "sheet_name": "Basic Information", + "objects": [ + { + "key": "Basic Information.E-meter Logic device name.E-meter Logic device name", + "classId": 1, + "obis": "0.0.42.0.0.255", + "obisFormatted": "0-0:42.0.0.255", + "attributeId": 2, + "attributeName": "E-meter Logic device name", + "controlName": "E-meter Logic device name", + "value": "KFM7000000000000", + "timestamp": "2025-11-01T09:34:02.547032", + "status": "success" + }, + { + "key": "Basic Information.E-meter Serial Number.E-meter Serial Number", + "classId": 1, + "obis": "0.0.96.1.0.255", + "obisFormatted": "0-0:96.1.0.255", + "attributeId": 2, + "attributeName": "E-meter Serial Number", + "controlName": "E-meter Serial Number", + "value": "20000000000000000002", + "timestamp": "2025-11-01T09:34:03.236504", + "status": "success" + }, + { + "key": "Basic Information.E-meter equipment identifier.E-meter equipment identifier", + "classId": 1, + "obis": "0.0.96.1.1.255", + "obisFormatted": "0-0:96.1.1.255", + "attributeId": 2, + "attributeName": "E-meter equipment identifier", + "controlName": "E-meter equipment identifier", + "value": "E009700000000000000000000000000000000000000000000000", + "timestamp": "2025-11-01T09:34:04.048260", + "status": "success" + }, + { + "key": "Basic Information.Legal Firmware Identifier.Legal Firmware Identifier", + "classId": 1, + "obis": "1.0.0.2.0.255", + "obisFormatted": "1-0:0.2.0.255", + "attributeId": 2, + "attributeName": "Legal Firmware Identifier", + "controlName": "Legal Firmware Identifier", + "value": "1000FF22", + "timestamp": "2025-11-01T09:34:04.780701", + "status": "success" + }, + { + "key": "Basic Information.Legal Firmware Signature.Legal Firmware Signature", + "classId": 1, + "obis": "1.0.0.2.8.255", + "obisFormatted": "1-0:0.2.8.255", + "attributeId": 2, + "attributeName": "Legal Firmware Signature", + "controlName": "Legal Firmware Signature", + "value": "7E74BA05F40E05B0F6E39B050A03B3A9C9DBB513AD836AE4775A34404D94338BF426DCB6B2F6902F22DFF21AD38EA1C1F8B816F34679F676C63C54FE710EA6F9", + "timestamp": "2025-11-01T09:34:05.577790", + "status": "success" + }, + { + "key": "Basic Information.Application Firmware Identifier.Application Firmware Identifier", + "classId": 1, + "obis": "1.1.0.2.0.255", + "obisFormatted": "1-1:0.2.0.255", + "attributeId": 2, + "attributeName": "Application Firmware Identifier", + "controlName": "Application Firmware Identifier", + "value": "11000231", + "timestamp": "2025-11-01T09:34:06.352850", + "status": "success" + }, + { + "key": "Basic Information.Application Firmware Signature.Application Firmware Signature", + "classId": 1, + "obis": "1.1.0.2.8.255", + "obisFormatted": "1-1:0.2.8.255", + "attributeId": 2, + "attributeName": "Application Firmware Signature", + "controlName": "Application Firmware Signature", + "value": "6EB9F9C1ED26595272519C22EF43D353A785586B00763548CB0D5A55C13185240874C5FB9B637A55E1525CBB513D15F201B899D0E6E3E0C6747D1F78B44D73AE", + "timestamp": "2025-11-01T09:34:07.118965", + "status": "success" + }, + { + "key": "Basic Information.Module Active Firmware Identifier.Module Active Firmware Identifier", + "classId": 1, + "obis": "1.2.0.2.0.255", + "obisFormatted": "1-2:0.2.0.255", + "attributeId": 2, + "attributeName": "Module Active Firmware Identifier", + "controlName": "Module Active Firmware Identifier", + "value": "L710TK_V10.09.01.14_00000122", + "timestamp": "2025-11-01T09:34:07.840626", + "status": "success" + }, + { + "key": "Basic Information.Communication Module Firmware Signature.Communication Module Firmware Signature", + "classId": 1, + "obis": "1.2.0.2.8.255", + "obisFormatted": "1-2:0.2.8.255", + "attributeId": 2, + "attributeName": "Communication Module Firmware Signature", + "controlName": "Communication Module Firmware Signature", + "value": "E08AB330", + "timestamp": "2025-11-01T09:34:08.551957", + "status": "success" + }, + { + "key": "Basic Information.P1 port DSMR version.P1 port DSMR version", + "classId": 1, + "obis": "1.3.0.2.8.255", + "obisFormatted": "1-3:0.2.8.255", + "attributeId": 2, + "attributeName": "P1 port DSMR version", + "controlName": "P1 port DSMR version", + "value": "P", + "timestamp": "2025-11-01T09:34:09.285461", + "status": "success" + }, + { + "key": "Basic Information.M-Bus Driver Active Firmware Identifier.M-Bus Driver Active Firmware Identifier", + "classId": 1, + "obis": "1.4.0.2.0.255", + "obisFormatted": "1-4:0.2.0.255", + "attributeId": 2, + "attributeName": "M-Bus Driver Active Firmware Identifier", + "controlName": "M-Bus Driver Active Firmware Identifier", + "value": "SW00.68", + "timestamp": "2025-11-01T09:34:10.069954", + "status": "success" + }, + { + "key": "Basic Information.M-Bus Driver Active Firmware Signature.M-Bus Driver Active Firmware Signature", + "classId": 1, + "obis": "1.4.0.2.8.255", + "obisFormatted": "1-4:0.2.8.255", + "attributeId": 2, + "attributeName": "M-Bus Driver Active Firmware Signature", + "controlName": "M-Bus Driver Active Firmware Signature", + "value": "447B0E81", + "timestamp": "2025-11-01T09:34:10.884207", + "status": "success" + }, + { + "key": "Basic Information.Hardware Version.Hardware Version", + "classId": 1, + "obis": "0.0.96.1.4.255", + "obisFormatted": "0-0:96.1.4.255", + "attributeId": 2, + "attributeName": "Hardware Version", + "controlName": "Hardware Version", + "value": "V1.2", + "timestamp": "2025-11-01T09:34:11.609487", + "status": "success" + } + ], + "summary": { + "total": 13, + "success": 13, + "failed": 0 + } + }, + "Display": { + "sheet_name": "Display", + "objects": [ + { + "key": "Display.Scroll display mode.Buffer", + "classId": 7, + "obis": "0.0.21.0.3.255", + "obisFormatted": "0-0:21.0.3.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Scroll display mode", + "value": { + "0": [ + "2025-11-10 01 15:38:53 00,FFC4,00", + 40154, + 9, + 14, + 0, + 0, + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "1000FF22", + "7E74BA05F40E05B0F6E39B050A03B3A9C9DBB513AD836AE4775A34404D94338BF426DCB6B2F6902F22DFF21AD38EA1C1F8B816F34679F676C63C54FE710EA6F9", + "11000231", + "6EB9F9C1ED26595272519C22EF43D353A785586B00763548CB0D5A55C13185240874C5FB9B637A55E1525CBB513D15F201B899D0E6E3E0C6747D1F78B44D73AE", + 0, + 0, + 0, + 0, + 0, + 0, + [ + [ + "2025-11-10 01 15:38:35 00,FFC4,00", + 71 + ] + ], + 0 + ] + }, + "timestamp": "2025-11-01T09:34:13.211259", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Capture objects", + "classId": 7, + "obis": "0.0.21.0.3.255", + "obisFormatted": "0-0:21.0.3.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Scroll display mode", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:16.7.0.255", + 2, + 0 + ], + "6": [ + 72, + "0-1:24.1.0.255", + 9, + 0 + ], + "7": [ + 72, + "0-1:24.1.0.255", + 6, + 0 + ], + "8": [ + 4, + "0-1:24.2.1.255", + 2, + 0 + ], + "9": [ + 4, + "0-1:24.2.1.255", + 5, + 0 + ], + "10": [ + 72, + "0-2:24.1.0.255", + 9, + 0 + ], + "11": [ + 72, + "0-2:24.1.0.255", + 6, + 0 + ], + "12": [ + 4, + "0-2:24.2.1.255", + 2, + 0 + ], + "13": [ + 4, + "0-2:24.2.1.255", + 5, + 0 + ], + "14": [ + 72, + "0-3:24.1.0.255", + 9, + 0 + ], + "15": [ + 72, + "0-3:24.1.0.255", + 6, + 0 + ], + "16": [ + 4, + "0-3:24.2.1.255", + 2, + 0 + ], + "17": [ + 4, + "0-3:24.2.1.255", + 5, + 0 + ], + "18": [ + 72, + "0-4:24.1.0.255", + 9, + 0 + ], + "19": [ + 72, + "0-4:24.1.0.255", + 6, + 0 + ], + "20": [ + 4, + "0-4:24.2.1.255", + 2, + 0 + ], + "21": [ + 4, + "0-4:24.2.1.255", + 5, + 0 + ], + "22": [ + 1, + "1-0:0.2.0.255", + 2, + 0 + ], + "23": [ + 1, + "1-0:0.2.8.255", + 2, + 0 + ], + "24": [ + 1, + "1-1:0.2.0.255", + 2, + 0 + ], + "25": [ + 1, + "1-1:0.2.8.255", + 2, + 0 + ], + "26": [ + 3, + "1-0:21.7.0.255", + 2, + 0 + ], + "27": [ + 3, + "1-0:22.7.0.255", + 2, + 0 + ], + "28": [ + 3, + "1-0:41.7.0.255", + 2, + 0 + ], + "29": [ + 3, + "1-0:42.7.0.255", + 2, + 0 + ], + "30": [ + 3, + "1-0:61.7.0.255", + 2, + 0 + ], + "31": [ + 3, + "1-0:62.7.0.255", + 2, + 0 + ], + "32": [ + 7, + "0-0:99.98.4.255", + 2, + 0 + ], + "33": [ + 151, + "0-1:25.11.0.255", + 3, + 2 + ] + }, + "timestamp": "2025-11-01T09:34:15.550710", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Capture period", + "classId": 7, + "obis": "0.0.21.0.3.255", + "obisFormatted": "0-0:21.0.3.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Scroll display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:16.133467", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Sort method", + "classId": 7, + "obis": "0.0.21.0.3.255", + "obisFormatted": "0-0:21.0.3.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Scroll display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:16.724255", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Sort object", + "classId": 7, + "obis": "0.0.21.0.3.255", + "obisFormatted": "0-0:21.0.3.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Scroll display mode", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:34:17.330173", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Entries in use", + "classId": 7, + "obis": "0.0.21.0.3.255", + "obisFormatted": "0-0:21.0.3.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Scroll display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:17.956353", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Profile entries", + "classId": 7, + "obis": "0.0.21.0.3.255", + "obisFormatted": "0-0:21.0.3.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Scroll display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:18.531486", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Buffer", + "classId": 7, + "obis": "0.0.21.0.1.255", + "obisFormatted": "0-0:21.0.1.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Scroll display mode", + "value": { + "0": [ + 40154, + 9, + 14, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:34:19.139047", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Capture objects", + "classId": 7, + "obis": "0.0.21.0.1.255", + "obisFormatted": "0-0:21.0.1.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Scroll display mode", + "value": { + "0": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:16.7.0.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:34:19.868622", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Capture period", + "classId": 7, + "obis": "0.0.21.0.1.255", + "obisFormatted": "0-0:21.0.1.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Scroll display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:20.503741", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Sort method", + "classId": 7, + "obis": "0.0.21.0.1.255", + "obisFormatted": "0-0:21.0.1.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Scroll display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:21.069034", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Sort object", + "classId": 7, + "obis": "0.0.21.0.1.255", + "obisFormatted": "0-0:21.0.1.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Scroll display mode", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:34:21.670271", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Entries in use", + "classId": 7, + "obis": "0.0.21.0.1.255", + "obisFormatted": "0-0:21.0.1.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Scroll display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:22.253033", + "status": "success" + }, + { + "key": "Display.Scroll display mode.Profile entries", + "classId": 7, + "obis": "0.0.21.0.1.255", + "obisFormatted": "0-0:21.0.1.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Scroll display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:22.879268", + "status": "success" + }, + { + "key": "Display.Button display mode.Buffer", + "classId": 7, + "obis": "0.0.21.0.2.255", + "obisFormatted": "0-0:21.0.2.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Button display mode", + "value": { + "0": [ + "P", + 40154, + 9, + 14, + 0, + 0, + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + [ + [ + "2025-11-10 01 15:38:35 00,FFC4,00", + 71 + ] + ], + 0 + ] + }, + "timestamp": "2025-11-01T09:34:24.035172", + "status": "success" + }, + { + "key": "Display.Button display mode.Capture objects", + "classId": 7, + "obis": "0.0.21.0.2.255", + "obisFormatted": "0-0:21.0.2.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Button display mode", + "value": { + "0": [ + 1, + "1-3:0.2.8.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:16.7.0.255", + 2, + 0 + ], + "6": [ + 72, + "0-1:24.1.0.255", + 9, + 0 + ], + "7": [ + 72, + "0-1:24.1.0.255", + 6, + 0 + ], + "8": [ + 4, + "0-1:24.2.1.255", + 2, + 0 + ], + "9": [ + 4, + "0-1:24.2.1.255", + 5, + 0 + ], + "10": [ + 72, + "0-2:24.1.0.255", + 9, + 0 + ], + "11": [ + 72, + "0-2:24.1.0.255", + 6, + 0 + ], + "12": [ + 4, + "0-2:24.2.1.255", + 2, + 0 + ], + "13": [ + 4, + "0-2:24.2.1.255", + 5, + 0 + ], + "14": [ + 72, + "0-3:24.1.0.255", + 9, + 0 + ], + "15": [ + 72, + "0-3:24.1.0.255", + 6, + 0 + ], + "16": [ + 4, + "0-3:24.2.1.255", + 2, + 0 + ], + "17": [ + 4, + "0-3:24.2.1.255", + 5, + 0 + ], + "18": [ + 72, + "0-4:24.1.0.255", + 9, + 0 + ], + "19": [ + 72, + "0-4:24.1.0.255", + 6, + 0 + ], + "20": [ + 4, + "0-4:24.2.1.255", + 2, + 0 + ], + "21": [ + 4, + "0-4:24.2.1.255", + 5, + 0 + ], + "22": [ + 7, + "0-0:99.98.4.255", + 2, + 0 + ], + "23": [ + 151, + "0-1:25.11.0.255", + 3, + 2 + ] + }, + "timestamp": "2025-11-01T09:34:25.943847", + "status": "success" + }, + { + "key": "Display.Button display mode.Capture period", + "classId": 7, + "obis": "0.0.21.0.2.255", + "obisFormatted": "0-0:21.0.2.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Button display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:26.551988", + "status": "success" + }, + { + "key": "Display.Button display mode.Sort method", + "classId": 7, + "obis": "0.0.21.0.2.255", + "obisFormatted": "0-0:21.0.2.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Button display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:27.182202", + "status": "success" + }, + { + "key": "Display.Button display mode.Sort object", + "classId": 7, + "obis": "0.0.21.0.2.255", + "obisFormatted": "0-0:21.0.2.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Button display mode", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:34:27.740539", + "status": "success" + }, + { + "key": "Display.Button display mode.Entries in use", + "classId": 7, + "obis": "0.0.21.0.2.255", + "obisFormatted": "0-0:21.0.2.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Button display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:28.309604", + "status": "success" + }, + { + "key": "Display.Button display mode.Profile entries", + "classId": 7, + "obis": "0.0.21.0.2.255", + "obisFormatted": "0-0:21.0.2.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Button display mode", + "value": 1, + "timestamp": "2025-11-01T09:34:28.871598", + "status": "success" + } + ], + "summary": { + "total": 21, + "success": 21, + "failed": 0 + } + }, + "P1 output": { + "sheet_name": "P1 output", + "objects": [ + { + "key": "P1 output.Consumer Message Text.Consumer Message Text", + "classId": 1, + "obis": "0.0.96.13.0.255", + "obisFormatted": "0-0:96.13.0.255", + "attributeId": 2, + "attributeName": "Consumer Message Text", + "controlName": "Consumer Message Text", + "value": "", + "timestamp": "2025-11-01T09:34:29.473700", + "status": "success" + }, + { + "key": "P1 output.P1 Connected.P1 Connected", + "classId": 1, + "obis": "0.0.96.4.1.255", + "obisFormatted": "0-0:96.4.1.255", + "attributeId": 2, + "attributeName": "P1 Connected", + "controlName": "P1 Connected", + "value": 0, + "timestamp": "2025-11-01T09:34:30.222670", + "status": "success" + }, + { + "key": "P1 output.P1 output.Buffer", + "classId": 7, + "obis": "0.0.21.0.0.255", + "obisFormatted": "0-0:21.0.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "P1 output", + "value": { + "0": [ + "P", + "2025-11-10 01 15:39:12 00,FFC4,00", + "E009700000000000000000000000000000000000000000000000", + 40154, + 9, + 14, + 0, + "0002", + 0, + 0, + 2, + 13, + [ + [ + "2025-10-21 02 08:59:49 00,FF88,80", + 52439 + ], + [ + "2025-10-21 02 09:48:44 00,FF88,80", + 2563 + ], + [ + "2025-10-21 02 13:32:55 00,FF88,80", + 3471 + ], + [ + "2026-05-01 05 13:44:03 00,FF88,80", + 47553 + ], + [ + "2026-06-01 01 07:29:53 00,FF88,80", + 26662 + ], + [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 47891 + ], + [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 600348 + ], + [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 3549 + ], + [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 9793 + ], + [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 58764 + ] + ], + 0, + 0, + 0, + 0, + 0, + 0, + "", + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "", + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + "", + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + "", + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + "", + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0 + ] + }, + "timestamp": "2025-11-01T09:34:32.180512", + "status": "success" + }, + { + "key": "P1 output.P1 output.Capture objects", + "classId": 7, + "obis": "0.0.21.0.0.255", + "obisFormatted": "0-0:21.0.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "P1 output", + "value": { + "0": [ + 1, + "1-3:0.2.8.255", + 2, + 0 + ], + "1": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.1.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ], + "7": [ + 1, + "0-0:96.14.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:1.7.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:2.7.0.255", + 2, + 0 + ], + "10": [ + 1, + "0-0:96.7.21.255", + 2, + 0 + ], + "11": [ + 1, + "0-0:96.7.9.255", + 2, + 0 + ], + "12": [ + 7, + "1-0:99.97.0.255", + 2, + 0 + ], + "13": [ + 1, + "1-0:32.32.0.255", + 2, + 0 + ], + "14": [ + 1, + "1-0:52.32.0.255", + 2, + 0 + ], + "15": [ + 1, + "1-0:72.32.0.255", + 2, + 0 + ], + "16": [ + 1, + "1-0:32.36.0.255", + 2, + 0 + ], + "17": [ + 1, + "1-0:52.36.0.255", + 2, + 0 + ], + "18": [ + 1, + "1-0:72.36.0.255", + 2, + 0 + ], + "19": [ + 1, + "0-0:96.13.0.255", + 2, + 0 + ], + "20": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "21": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "22": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "23": [ + 3, + "1-0:31.7.0.255", + 2, + 0 + ], + "24": [ + 3, + "1-0:51.7.0.255", + 2, + 0 + ], + "25": [ + 3, + "1-0:71.7.0.255", + 2, + 0 + ], + "26": [ + 3, + "1-0:21.7.0.255", + 2, + 0 + ], + "27": [ + 3, + "1-0:41.7.0.255", + 2, + 0 + ], + "28": [ + 3, + "1-0:61.7.0.255", + 2, + 0 + ], + "29": [ + 3, + "1-0:22.7.0.255", + 2, + 0 + ], + "30": [ + 3, + "1-0:42.7.0.255", + 2, + 0 + ], + "31": [ + 3, + "1-0:62.7.0.255", + 2, + 0 + ], + "32": [ + 72, + "0-1:24.1.0.255", + 9, + 0 + ], + "33": [ + 1, + "0-1:96.1.0.255", + 2, + 0 + ], + "34": [ + 4, + "0-1:24.2.1.255", + 5, + 0 + ], + "35": [ + 4, + "0-1:24.2.1.255", + 2, + 0 + ], + "36": [ + 72, + "0-2:24.1.0.255", + 9, + 0 + ], + "37": [ + 1, + "0-2:96.1.0.255", + 2, + 0 + ], + "38": [ + 4, + "0-2:24.2.1.255", + 5, + 0 + ], + "39": [ + 4, + "0-2:24.2.1.255", + 2, + 0 + ], + "40": [ + 72, + "0-3:24.1.0.255", + 9, + 0 + ], + "41": [ + 1, + "0-3:96.1.0.255", + 2, + 0 + ], + "42": [ + 4, + "0-3:24.2.1.255", + 5, + 0 + ], + "43": [ + 4, + "0-3:24.2.1.255", + 2, + 0 + ], + "44": [ + 72, + "0-4:24.1.0.255", + 9, + 0 + ], + "45": [ + 1, + "0-4:96.1.0.255", + 2, + 0 + ], + "46": [ + 4, + "0-4:24.2.1.255", + 5, + 0 + ], + "47": [ + 4, + "0-4:24.2.1.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:34:35.395519", + "status": "success" + }, + { + "key": "P1 output.P1 output.Capture period", + "classId": 7, + "obis": "0.0.21.0.0.255", + "obisFormatted": "0-0:21.0.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "P1 output", + "value": 1, + "timestamp": "2025-11-01T09:34:35.996250", + "status": "success" + }, + { + "key": "P1 output.P1 output.Sort method", + "classId": 7, + "obis": "0.0.21.0.0.255", + "obisFormatted": "0-0:21.0.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "P1 output", + "value": 1, + "timestamp": "2025-11-01T09:34:36.543426", + "status": "success" + }, + { + "key": "P1 output.P1 output.Sort object", + "classId": 7, + "obis": "0.0.21.0.0.255", + "obisFormatted": "0-0:21.0.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "P1 output", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:34:37.134740", + "status": "success" + }, + { + "key": "P1 output.P1 output.Entries in use", + "classId": 7, + "obis": "0.0.21.0.0.255", + "obisFormatted": "0-0:21.0.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "P1 output", + "value": 1, + "timestamp": "2025-11-01T09:34:37.739021", + "status": "success" + }, + { + "key": "P1 output.P1 output.Profile entries", + "classId": 7, + "obis": "0.0.21.0.0.255", + "obisFormatted": "0-0:21.0.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "P1 output", + "value": 1, + "timestamp": "2025-11-01T09:34:38.321886", + "status": "success" + } + ], + "summary": { + "total": 9, + "success": 9, + "failed": 0 + } + }, + "Errors and alarms": { + "sheet_name": "Errors and alarms", + "objects": [ + { + "key": "Errors and alarms.Error 1.Error 1", + "classId": 1, + "obis": "0.0.97.97.0.255", + "obisFormatted": "0-0:97.97.0.255", + "attributeId": 2, + "attributeName": "Error 1", + "controlName": "Error 1", + "value": 1585267068834414596, + "timestamp": "2025-11-01T09:34:38.957179", + "status": "success" + }, + { + "key": "Errors and alarms.Filter 1.Filter 1", + "classId": 1, + "obis": "0.0.97.98.10.255", + "obisFormatted": "0-0:97.98.10.255", + "attributeId": 2, + "attributeName": "Filter 1", + "controlName": "Filter 1", + "value": 0, + "timestamp": "2025-11-01T09:34:39.550971", + "status": "success" + }, + { + "key": "Errors and alarms.Alarm 1.Alarm 1", + "classId": 1, + "obis": "0.0.97.98.0.255", + "obisFormatted": "0-0:97.98.0.255", + "attributeId": 2, + "attributeName": "Alarm 1", + "controlName": "Alarm 1", + "value": 0, + "timestamp": "2025-11-01T09:34:40.185903", + "status": "success" + }, + { + "key": "Errors and alarms.Lastgasp.Lastgasp", + "classId": 1, + "obis": "0.0.97.98.2.255", + "obisFormatted": "0-0:97.98.2.255", + "attributeId": 2, + "attributeName": "Lastgasp", + "controlName": "Lastgasp", + "value": "ObjectUndefined", + "timestamp": "2025-11-01T09:34:40.849792", + "status": "success" + } + ], + "summary": { + "total": 4, + "success": 4, + "failed": 0 + } + }, + "Instantaneous Data": { + "sheet_name": "Instantaneous Data", + "objects": [ + { + "key": "Instantaneous Data.Instantaneous current (Sum of all phases).Value", + "classId": 3, + "obis": "1.0.90.7.0.255", + "obisFormatted": "1-0:90.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous current (Sum of all phases)", + "value": 0, + "timestamp": "2025-11-01T09:34:41.593006", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous Current L1.Value", + "classId": 3, + "obis": "1.0.31.7.0.255", + "obisFormatted": "1-0:31.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous Current L1", + "value": 0, + "timestamp": "2025-11-01T09:34:42.336630", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous Current L2.Value", + "classId": 3, + "obis": "1.0.51.7.0.255", + "obisFormatted": "1-0:51.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous Current L2", + "value": 0, + "timestamp": "2025-11-01T09:34:43.053823", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous Current L3.Value", + "classId": 3, + "obis": "1.0.71.7.0.255", + "obisFormatted": "1-0:71.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous Current L3", + "value": 0, + "timestamp": "2025-11-01T09:34:43.758548", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous Voltage L1.Value", + "classId": 3, + "obis": "1.0.32.7.0.255", + "obisFormatted": "1-0:32.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous Voltage L1", + "value": 215, + "timestamp": "2025-11-01T09:34:44.444849", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous Voltage L2.Value", + "classId": 3, + "obis": "1.0.52.7.0.255", + "obisFormatted": "1-0:52.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous Voltage L2", + "value": 0, + "timestamp": "2025-11-01T09:34:45.130498", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous Voltage L3.Value", + "classId": 3, + "obis": "1.0.72.7.0.255", + "obisFormatted": "1-0:72.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous Voltage L3", + "value": 0, + "timestamp": "2025-11-01T09:34:45.855199", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (+P) Total.Value", + "classId": 3, + "obis": "1.0.1.7.0.255", + "obisFormatted": "1-0:1.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (+P) Total", + "value": 0, + "timestamp": "2025-11-01T09:34:46.568140", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (-P) Total.Value", + "classId": 3, + "obis": "1.0.2.7.0.255", + "obisFormatted": "1-0:2.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (-P) Total", + "value": 0, + "timestamp": "2025-11-01T09:34:47.299710", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (abs(QI+QIV)-abs(QII+QIII)).Value", + "classId": 3, + "obis": "1.0.16.7.0.255", + "obisFormatted": "1-0:16.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (abs(QI+QIV)-abs(QII+QIII))", + "value": 0, + "timestamp": "2025-11-01T09:34:48.007321", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (+P{QI}).Value", + "classId": 3, + "obis": "1.0.17.7.0.255", + "obisFormatted": "1-0:17.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (+P{QI})", + "value": 0, + "timestamp": "2025-11-01T09:34:48.760453", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (-P{QII}).Value", + "classId": 3, + "obis": "1.0.18.7.0.255", + "obisFormatted": "1-0:18.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (-P{QII})", + "value": 0, + "timestamp": "2025-11-01T09:34:49.480670", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (-P{QIII}).Value", + "classId": 3, + "obis": "1.0.19.7.0.255", + "obisFormatted": "1-0:19.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (-P{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:34:50.217937", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (+P{QIV}).Value", + "classId": 3, + "obis": "1.0.20.7.0.255", + "obisFormatted": "1-0:20.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (+P{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:34:50.965143", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (+P) L1.Value", + "classId": 3, + "obis": "1.0.21.7.0.255", + "obisFormatted": "1-0:21.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (+P) L1", + "value": 0, + "timestamp": "2025-11-01T09:34:51.689645", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (-P) L1.Value", + "classId": 3, + "obis": "1.0.22.7.0.255", + "obisFormatted": "1-0:22.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (-P) L1", + "value": 0, + "timestamp": "2025-11-01T09:34:52.361418", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L1 (+P{QI}).Value", + "classId": 3, + "obis": "1.0.37.7.0.255", + "obisFormatted": "1-0:37.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L1 (+P{QI})", + "value": 0, + "timestamp": "2025-11-01T09:34:53.071377", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L1 (-P{QII}).Value", + "classId": 3, + "obis": "1.0.38.7.0.255", + "obisFormatted": "1-0:38.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L1 (-P{QII})", + "value": 0, + "timestamp": "2025-11-01T09:34:53.811021", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L1 (-P{QIII}).Value", + "classId": 3, + "obis": "1.0.39.7.0.255", + "obisFormatted": "1-0:39.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L1 (-P{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:34:54.592417", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L1 (+P{QIV}).Value", + "classId": 3, + "obis": "1.0.40.7.0.255", + "obisFormatted": "1-0:40.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L1 (+P{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:34:55.262261", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (+P) L2.Value", + "classId": 3, + "obis": "1.0.41.7.0.255", + "obisFormatted": "1-0:41.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (+P) L2", + "value": 0, + "timestamp": "2025-11-01T09:34:56.019090", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (-P) L2.Value", + "classId": 3, + "obis": "1.0.42.7.0.255", + "obisFormatted": "1-0:42.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (-P) L2", + "value": 0, + "timestamp": "2025-11-01T09:34:56.766109", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L2 (+P{QI}).Value", + "classId": 3, + "obis": "1.0.57.7.0.255", + "obisFormatted": "1-0:57.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L2 (+P{QI})", + "value": 0, + "timestamp": "2025-11-01T09:34:57.487511", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L2 (-P{QII}).Value", + "classId": 3, + "obis": "1.0.58.7.0.255", + "obisFormatted": "1-0:58.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L2 (-P{QII})", + "value": 0, + "timestamp": "2025-11-01T09:34:58.204442", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L2 (-P{QIII}).Value", + "classId": 3, + "obis": "1.0.59.7.0.255", + "obisFormatted": "1-0:59.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L2 (-P{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:34:58.910138", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L2 (+P{QIV}).Value", + "classId": 3, + "obis": "1.0.60.7.0.255", + "obisFormatted": "1-0:60.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L2 (+P{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:34:59.627203", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (+P) L3.Value", + "classId": 3, + "obis": "1.0.61.7.0.255", + "obisFormatted": "1-0:61.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (+P) L3", + "value": 0, + "timestamp": "2025-11-01T09:35:00.374052", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power (-P) L3.Value", + "classId": 3, + "obis": "1.0.62.7.0.255", + "obisFormatted": "1-0:62.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power (-P) L3", + "value": 0, + "timestamp": "2025-11-01T09:35:01.122559", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L3 (+P{QI}).Value", + "classId": 3, + "obis": "1.0.77.7.0.255", + "obisFormatted": "1-0:77.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L3 (+P{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:01.867289", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L3 (-P{QII}).Value", + "classId": 3, + "obis": "1.0.78.7.0.255", + "obisFormatted": "1-0:78.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L3 (-P{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:02.583732", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L3 (-P{QIII}).Value", + "classId": 3, + "obis": "1.0.79.7.0.255", + "obisFormatted": "1-0:79.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L3 (-P{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:03.313652", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous active power L3 (+P{QIV}).Value", + "classId": 3, + "obis": "1.0.80.7.0.255", + "obisFormatted": "1-0:80.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous active power L3 (+P{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:04.038380", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power (+Q).Value", + "classId": 3, + "obis": "1.0.3.7.0.255", + "obisFormatted": "1-0:3.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power (+Q)", + "value": 0, + "timestamp": "2025-11-01T09:35:04.807185", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power (-Q).Value", + "classId": 3, + "obis": "1.0.4.7.0.255", + "obisFormatted": "1-0:4.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power (-Q)", + "value": 0, + "timestamp": "2025-11-01T09:35:05.556060", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power (+Q{QI}).Value", + "classId": 3, + "obis": "1.0.5.7.0.255", + "obisFormatted": "1-0:5.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power (+Q{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:06.325205", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power (+Q{QII}).Value", + "classId": 3, + "obis": "1.0.6.7.0.255", + "obisFormatted": "1-0:6.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power (+Q{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:07.051241", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power (-Q{QIII}).Value", + "classId": 3, + "obis": "1.0.7.7.0.255", + "obisFormatted": "1-0:7.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power (-Q{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:07.802699", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power (-Q{QIV}).Value", + "classId": 3, + "obis": "1.0.8.7.0.255", + "obisFormatted": "1-0:8.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power (-Q{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:08.558452", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantanous reactive power L1 (+Q).Value", + "classId": 3, + "obis": "1.0.23.7.0.255", + "obisFormatted": "1-0:23.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantanous reactive power L1 (+Q)", + "value": 0, + "timestamp": "2025-11-01T09:35:09.337492", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantanous reactive power L1 (-Q).Value", + "classId": 3, + "obis": "1.0.24.7.0.255", + "obisFormatted": "1-0:24.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantanous reactive power L1 (-Q)", + "value": 0, + "timestamp": "2025-11-01T09:35:10.073660", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L1 (+Q{QI}).Value", + "classId": 3, + "obis": "1.0.25.7.0.255", + "obisFormatted": "1-0:25.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L1 (+Q{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:10.790969", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L1 (+Q{QII}).Value", + "classId": 3, + "obis": "1.0.26.7.0.255", + "obisFormatted": "1-0:26.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L1 (+Q{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:11.495794", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L1 (-Q{QIII}).Value", + "classId": 3, + "obis": "1.0.27.7.0.255", + "obisFormatted": "1-0:27.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L1 (-Q{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:12.236236", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L1 (-Q{QIV}).Value", + "classId": 3, + "obis": "1.0.28.7.0.255", + "obisFormatted": "1-0:28.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L1 (-Q{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:12.959943", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantanous reactive power L2 (+Q).Value", + "classId": 3, + "obis": "1.0.43.7.0.255", + "obisFormatted": "1-0:43.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantanous reactive power L2 (+Q)", + "value": 0, + "timestamp": "2025-11-01T09:35:13.699095", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantanous reactive power L2 (-Q).Value", + "classId": 3, + "obis": "1.0.44.7.0.255", + "obisFormatted": "1-0:44.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantanous reactive power L2 (-Q)", + "value": 0, + "timestamp": "2025-11-01T09:35:14.395107", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L2 (+Q{QI}).Value", + "classId": 3, + "obis": "1.0.45.7.0.255", + "obisFormatted": "1-0:45.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L2 (+Q{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:15.177644", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L2 (+Q{QII}).Value", + "classId": 3, + "obis": "1.0.46.7.0.255", + "obisFormatted": "1-0:46.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L2 (+Q{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:15.911178", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L2 (-Q{QIII}).Value", + "classId": 3, + "obis": "1.0.47.7.0.255", + "obisFormatted": "1-0:47.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L2 (-Q{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:16.651917", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L2 (-Q{QIV}).Value", + "classId": 3, + "obis": "1.0.48.7.0.255", + "obisFormatted": "1-0:48.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L2 (-Q{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:17.326540", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantanous reactive power L3 (+Q).Value", + "classId": 3, + "obis": "1.0.63.7.0.255", + "obisFormatted": "1-0:63.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantanous reactive power L3 (+Q)", + "value": 0, + "timestamp": "2025-11-01T09:35:18.070196", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantanous reactive power L3 (-Q).Value", + "classId": 3, + "obis": "1.0.64.7.0.255", + "obisFormatted": "1-0:64.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantanous reactive power L3 (-Q)", + "value": 0, + "timestamp": "2025-11-01T09:35:18.808192", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L3 (+Q{QI}).Value", + "classId": 3, + "obis": "1.0.65.7.0.255", + "obisFormatted": "1-0:65.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L3 (+Q{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:19.537006", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L3 (+Q{QII}).Value", + "classId": 3, + "obis": "1.0.66.7.0.255", + "obisFormatted": "1-0:66.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L3 (+Q{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:20.202828", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L3 (-Q{QIII}).Value", + "classId": 3, + "obis": "1.0.67.7.0.255", + "obisFormatted": "1-0:67.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L3 (-Q{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:20.968687", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous reactive power L3 (-Q{QIV}).Value", + "classId": 3, + "obis": "1.0.68.7.0.255", + "obisFormatted": "1-0:68.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous reactive power L3 (-Q{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:21.701781", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous apparent power (+S).Value", + "classId": 3, + "obis": "1.0.9.7.0.255", + "obisFormatted": "1-0:9.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous apparent power (+S)", + "value": 0, + "timestamp": "2025-11-01T09:35:22.435116", + "status": "success" + }, + { + "key": "Instantaneous Data.Instantaneous apparent power (-S).Value", + "classId": 3, + "obis": "1.0.10.7.0.255", + "obisFormatted": "1-0:10.7.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Instantaneous apparent power (-S)", + "value": 0, + "timestamp": "2025-11-01T09:35:23.110573", + "status": "success" + }, + { + "key": "Instantaneous Data.Temperature.Value", + "classId": 3, + "obis": "0.0.96.9.0.255", + "obisFormatted": "0-0:96.9.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Temperature", + "value": 26, + "timestamp": "2025-11-01T09:35:23.758850", + "status": "success" + }, + { + "key": "Instantaneous Data.Safety Factor event 22.Value", + "classId": 3, + "obis": "0.0.96.50.0.255", + "obisFormatted": "0-0:96.50.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Safety Factor event 22", + "value": 110, + "timestamp": "2025-11-01T09:35:24.380635", + "status": "success" + } + ], + "summary": { + "total": 60, + "success": 60, + "failed": 0 + } + }, + "Energy": { + "sheet_name": "Energy", + "objects": [ + { + "key": "Energy.Cumulative A Positive.Value", + "classId": 3, + "obis": "1.0.1.8.0.255", + "obisFormatted": "1-0:1.8.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Cumulative A Positive", + "value": 40163, + "timestamp": "2025-11-01T09:35:24.998717", + "status": "success" + }, + { + "key": "Energy.Cumulative A Positive rate1.Value", + "classId": 3, + "obis": "1.0.1.8.1.255", + "obisFormatted": "1-0:1.8.1.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Cumulative A Positive rate1", + "value": 40154, + "timestamp": "2025-11-01T09:35:25.684168", + "status": "success" + }, + { + "key": "Energy.Cumulative A Positive rate2.Value", + "classId": 3, + "obis": "1.0.1.8.2.255", + "obisFormatted": "1-0:1.8.2.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Cumulative A Positive rate2", + "value": 9, + "timestamp": "2025-11-01T09:35:26.289278", + "status": "success" + }, + { + "key": "Energy.Cumulative A Negative.Value", + "classId": 3, + "obis": "1.0.2.8.0.255", + "obisFormatted": "1-0:2.8.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Cumulative A Negative", + "value": 14, + "timestamp": "2025-11-01T09:35:26.898320", + "status": "success" + }, + { + "key": "Energy.Cumulative A Negative rate1.Value", + "classId": 3, + "obis": "1.0.2.8.1.255", + "obisFormatted": "1-0:2.8.1.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Cumulative A Negative rate1", + "value": 14, + "timestamp": "2025-11-01T09:35:27.491838", + "status": "success" + }, + { + "key": "Energy.Cumulative A Negative rate2.Value", + "classId": 3, + "obis": "1.0.2.8.2.255", + "obisFormatted": "1-0:2.8.2.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Cumulative A Negative rate2", + "value": 0, + "timestamp": "2025-11-01T09:35:28.132712", + "status": "success" + } + ], + "summary": { + "total": 6, + "success": 6, + "failed": 0 + } + }, + "Average Measurement Data": { + "sheet_name": "Average Measurement Data", + "objects": [ + { + "key": "Average Measurement Data.Average voltage L1.Value", + "classId": 3, + "obis": "1.0.32.25.0.255", + "obisFormatted": "1-0:32.25.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average voltage L1", + "value": 216, + "timestamp": "2025-11-01T09:35:28.785741", + "status": "success" + }, + { + "key": "Average Measurement Data.Average current L1.Value", + "classId": 3, + "obis": "1.0.31.25.0.255", + "obisFormatted": "1-0:31.25.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average current L1", + "value": 0, + "timestamp": "2025-11-01T09:35:29.497671", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power (+P) L1.Value", + "classId": 3, + "obis": "1.0.21.5.0.255", + "obisFormatted": "1-0:21.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power (+P) L1", + "value": 0, + "timestamp": "2025-11-01T09:35:30.196228", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power (-P) L1.Value", + "classId": 3, + "obis": "1.0.22.5.0.255", + "obisFormatted": "1-0:22.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power (-P) L1", + "value": 0, + "timestamp": "2025-11-01T09:35:30.937980", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power (+Q) L1.Value", + "classId": 3, + "obis": "1.0.23.5.0.255", + "obisFormatted": "1-0:23.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power (+Q) L1", + "value": 0, + "timestamp": "2025-11-01T09:35:31.676787", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power (-Q) L1.Value", + "classId": 3, + "obis": "1.0.24.5.0.255", + "obisFormatted": "1-0:24.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power (-Q) L1", + "value": 0, + "timestamp": "2025-11-01T09:35:32.430763", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L1 {+Q{QI}).Value", + "classId": 3, + "obis": "1.0.25.5.0.255", + "obisFormatted": "1-0:25.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L1 {+Q{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:33.182490", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L1 {+Q{QII}).Value", + "classId": 3, + "obis": "1.0.26.5.0.255", + "obisFormatted": "1-0:26.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L1 {+Q{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:33.883634", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L1 {-Q{QIII}).Value", + "classId": 3, + "obis": "1.0.27.5.0.255", + "obisFormatted": "1-0:27.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L1 {-Q{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:34.589048", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L1 {-Q{QIV}).Value", + "classId": 3, + "obis": "1.0.28.5.0.255", + "obisFormatted": "1-0:28.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L1 {-Q{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:35.351696", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L1 (+P{QI}).Value", + "classId": 3, + "obis": "1.0.37.5.0.255", + "obisFormatted": "1-0:37.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L1 (+P{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:36.071360", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L1 (-P{QII}).Value", + "classId": 3, + "obis": "1.0.38.5.0.255", + "obisFormatted": "1-0:38.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L1 (-P{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:36.767488", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L1 (-P{QIII}).Value", + "classId": 3, + "obis": "1.0.39.5.0.255", + "obisFormatted": "1-0:39.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L1 (-P{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:37.472218", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L1 (+P{QIV}).Value", + "classId": 3, + "obis": "1.0.40.5.0.255", + "obisFormatted": "1-0:40.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L1 (+P{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:38.204750", + "status": "success" + }, + { + "key": "Average Measurement Data.Average voltage L2.Value", + "classId": 3, + "obis": "1.0.52.25.0.255", + "obisFormatted": "1-0:52.25.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average voltage L2", + "value": 0, + "timestamp": "2025-11-01T09:35:38.977027", + "status": "success" + }, + { + "key": "Average Measurement Data.Average current L2.Value", + "classId": 3, + "obis": "1.0.51.25.0.255", + "obisFormatted": "1-0:51.25.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average current L2", + "value": 0, + "timestamp": "2025-11-01T09:35:39.708499", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power (+P) L2.Value", + "classId": 3, + "obis": "1.0.41.5.0.255", + "obisFormatted": "1-0:41.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power (+P) L2", + "value": 0, + "timestamp": "2025-11-01T09:35:40.441801", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power (-P) L2.Value", + "classId": 3, + "obis": "1.0.42.5.0.255", + "obisFormatted": "1-0:42.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power (-P) L2", + "value": 0, + "timestamp": "2025-11-01T09:35:41.163947", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power (+Q) L2.Value", + "classId": 3, + "obis": "1.0.43.5.0.255", + "obisFormatted": "1-0:43.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power (+Q) L2", + "value": 0, + "timestamp": "2025-11-01T09:35:41.900538", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power (-Q) L2.Value", + "classId": 3, + "obis": "1.0.44.5.0.255", + "obisFormatted": "1-0:44.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power (-Q) L2", + "value": 0, + "timestamp": "2025-11-01T09:35:42.619155", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L2 {+Q{QI}).Value", + "classId": 3, + "obis": "1.0.45.5.0.255", + "obisFormatted": "1-0:45.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L2 {+Q{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:43.292708", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L2 {+Q{QII}).Value", + "classId": 3, + "obis": "1.0.46.5.0.255", + "obisFormatted": "1-0:46.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L2 {+Q{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:44.004366", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L2 {-Q{QIII}).Value", + "classId": 3, + "obis": "1.0.47.5.0.255", + "obisFormatted": "1-0:47.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L2 {-Q{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:44.695447", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L2 {-Q{QIV}).Value", + "classId": 3, + "obis": "1.0.48.5.0.255", + "obisFormatted": "1-0:48.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L2 {-Q{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:45.422565", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L2 (+P{QI}).Value", + "classId": 3, + "obis": "1.0.57.5.0.255", + "obisFormatted": "1-0:57.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L2 (+P{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:46.155468", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L2 (-P{QII}).Value", + "classId": 3, + "obis": "1.0.58.5.0.255", + "obisFormatted": "1-0:58.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L2 (-P{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:46.876330", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L2 (-P{QIII}).Value", + "classId": 3, + "obis": "1.0.59.5.0.255", + "obisFormatted": "1-0:59.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L2 (-P{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:47.639934", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L2 (+P{QIV}).Value", + "classId": 3, + "obis": "1.0.60.5.0.255", + "obisFormatted": "1-0:60.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L2 (+P{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:48.342927", + "status": "success" + }, + { + "key": "Average Measurement Data.Average voltage L3.Value", + "classId": 3, + "obis": "1.0.72.25.0.255", + "obisFormatted": "1-0:72.25.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average voltage L3", + "value": 0, + "timestamp": "2025-11-01T09:35:49.095358", + "status": "success" + }, + { + "key": "Average Measurement Data.Average current L3.Value", + "classId": 3, + "obis": "1.0.71.25.0.255", + "obisFormatted": "1-0:71.25.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average current L3", + "value": 0, + "timestamp": "2025-11-01T09:35:49.843345", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power (+P) L3.Value", + "classId": 3, + "obis": "1.0.61.5.0.255", + "obisFormatted": "1-0:61.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power (+P) L3", + "value": 0, + "timestamp": "2025-11-01T09:35:50.563170", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power (-P) L3.Value", + "classId": 3, + "obis": "1.0.62.5.0.255", + "obisFormatted": "1-0:62.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power (-P) L3", + "value": 0, + "timestamp": "2025-11-01T09:35:51.279028", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power (+Q) L3.Value", + "classId": 3, + "obis": "1.0.63.5.0.255", + "obisFormatted": "1-0:63.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power (+Q) L3", + "value": 0, + "timestamp": "2025-11-01T09:35:52.028887", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power (-Q) L3.Value", + "classId": 3, + "obis": "1.0.64.5.0.255", + "obisFormatted": "1-0:64.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power (-Q) L3", + "value": 0, + "timestamp": "2025-11-01T09:35:52.784988", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L3 {+Q{QI}).Value", + "classId": 3, + "obis": "1.0.65.5.0.255", + "obisFormatted": "1-0:65.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L3 {+Q{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:53.512221", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L3 {+Q{QII}).Value", + "classId": 3, + "obis": "1.0.66.5.0.255", + "obisFormatted": "1-0:66.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L3 {+Q{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:54.279858", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L3 {-Q{QIII}).Value", + "classId": 3, + "obis": "1.0.67.5.0.255", + "obisFormatted": "1-0:67.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L3 {-Q{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:55.034822", + "status": "success" + }, + { + "key": "Average Measurement Data.Average reactive power L3 {-Q{QIV}).Value", + "classId": 3, + "obis": "1.0.68.5.0.255", + "obisFormatted": "1-0:68.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average reactive power L3 {-Q{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:55.781530", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L3 (+P{QI}).Value", + "classId": 3, + "obis": "1.0.77.5.0.255", + "obisFormatted": "1-0:77.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L3 (+P{QI})", + "value": 0, + "timestamp": "2025-11-01T09:35:56.569994", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L3 (-P{QII}).Value", + "classId": 3, + "obis": "1.0.78.5.0.255", + "obisFormatted": "1-0:78.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L3 (-P{QII})", + "value": 0, + "timestamp": "2025-11-01T09:35:57.287714", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L3 (-P{QIII}).Value", + "classId": 3, + "obis": "1.0.79.5.0.255", + "obisFormatted": "1-0:79.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L3 (-P{QIII})", + "value": 0, + "timestamp": "2025-11-01T09:35:57.960490", + "status": "success" + }, + { + "key": "Average Measurement Data.Average active power L3 (+P{QIV}).Value", + "classId": 3, + "obis": "1.0.80.5.0.255", + "obisFormatted": "1-0:80.5.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Average active power L3 (+P{QIV})", + "value": 0, + "timestamp": "2025-11-01T09:35:58.655471", + "status": "success" + } + ], + "summary": { + "total": 42, + "success": 42, + "failed": 0 + } + }, + "Tariff": { + "sheet_name": "Tariff", + "objects": [ + { + "key": "Tariff.Current Rate.Current Rate", + "classId": 1, + "obis": "0.0.96.14.0.255", + "obisFormatted": "0-0:96.14.0.255", + "attributeId": 2, + "attributeName": "Current Rate", + "controlName": "Current Rate", + "value": "0002", + "timestamp": "2025-11-01T09:35:59.282888", + "status": "success" + }, + { + "key": "Tariff.Tariff Table.Calendar name", + "classId": 20, + "obis": "0.0.13.0.0.255", + "obisFormatted": "0-0:13.0.0.255", + "attributeId": 2, + "attributeName": "Calendar name", + "controlName": "Tariff Table", + "value": "3032", + "timestamp": "2025-11-01T09:35:59.911983", + "status": "success" + }, + { + "key": "Tariff.Tariff Table.Season profile active", + "classId": 20, + "obis": "0.0.13.0.0.255", + "obisFormatted": "0-0:13.0.0.255", + "attributeId": 3, + "attributeName": "Season profile active", + "controlName": "Tariff Table", + "value": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "timestamp": "2025-11-01T09:36:00.512634", + "status": "success" + }, + { + "key": "Tariff.Tariff Table.Week profile table active", + "classId": 20, + "obis": "0.0.13.0.0.255", + "obisFormatted": "0-0:13.0.0.255", + "attributeId": 4, + "attributeName": "Week profile table active", + "controlName": "Tariff Table", + "value": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:01.225043", + "status": "success" + }, + { + "key": "Tariff.Tariff Table.Day profile table active", + "classId": 20, + "obis": "0.0.13.0.0.255", + "obisFormatted": "0-0:13.0.0.255", + "attributeId": 5, + "attributeName": "Day profile table active", + "controlName": "Tariff Table", + "value": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "timestamp": "2025-11-01T09:36:02.341161", + "status": "success" + }, + { + "key": "Tariff.Tariff Table.Calendar name", + "classId": 20, + "obis": "0.0.13.0.0.255", + "obisFormatted": "0-0:13.0.0.255", + "attributeId": 6, + "attributeName": "Calendar name", + "controlName": "Tariff Table", + "value": "3032", + "timestamp": "2025-11-01T09:36:02.975279", + "status": "success" + }, + { + "key": "Tariff.Tariff Table.Season profile passive", + "classId": 20, + "obis": "0.0.13.0.0.255", + "obisFormatted": "0-0:13.0.0.255", + "attributeId": 7, + "attributeName": "Season profile passive", + "controlName": "Tariff Table", + "value": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "timestamp": "2025-11-01T09:36:03.636671", + "status": "success" + }, + { + "key": "Tariff.Tariff Table.Week profile table passive", + "classId": 20, + "obis": "0.0.13.0.0.255", + "obisFormatted": "0-0:13.0.0.255", + "attributeId": 8, + "attributeName": "Week profile table passive", + "controlName": "Tariff Table", + "value": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:04.336072", + "status": "success" + }, + { + "key": "Tariff.Tariff Table.Day profile table passive", + "classId": 20, + "obis": "0.0.13.0.0.255", + "obisFormatted": "0-0:13.0.0.255", + "attributeId": 9, + "attributeName": "Day profile table passive", + "controlName": "Tariff Table", + "value": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "timestamp": "2025-11-01T09:36:05.407037", + "status": "success" + }, + { + "key": "Tariff.Tariff Table.Activate passive calendar time", + "classId": 20, + "obis": "0.0.13.0.0.255", + "obisFormatted": "0-0:13.0.0.255", + "attributeId": 10, + "attributeName": "Activate passive calendar time", + "controlName": "Tariff Table", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:36:06.002521", + "status": "success" + }, + { + "key": "Tariff.Special Days.Special days table", + "classId": 11, + "obis": "0.0.11.0.0.255", + "obisFormatted": "0-0:11.0.0.255", + "attributeId": 2, + "attributeName": "Special days table", + "controlName": "Special Days", + "value": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "timestamp": "2025-11-01T09:36:08.821302", + "status": "success" + }, + { + "key": "Tariff.Tariffication.Scripts", + "classId": 9, + "obis": "0.0.10.0.100.255", + "obisFormatted": "0-0:10.0.100.255", + "attributeId": 2, + "attributeName": "Scripts", + "controlName": "Tariffication", + "value": { + "0": [ + 1, + [ + [ + 1, + 6, + "0-0:14.0.0.255", + 4, + "0001" + ] + ] + ], + "1": [ + 2, + [ + [ + 1, + 6, + "0-0:14.0.0.255", + 4, + "0002" + ] + ] + ] + }, + "timestamp": "2025-11-01T09:36:09.504411", + "status": "success" + }, + { + "key": "Tariff.Register Activation.Register assignment", + "classId": 6, + "obis": "0.0.14.0.0.255", + "obisFormatted": "0-0:14.0.0.255", + "attributeId": 2, + "attributeName": "Register assignment", + "controlName": "Register Activation", + "value": { + "0": [ + 3, + "1-0:1.8.1.255" + ], + "1": [ + 3, + "1-0:1.8.2.255" + ], + "2": [ + 3, + "1-0:2.8.1.255" + ], + "3": [ + 3, + "1-0:2.8.2.255" + ] + }, + "timestamp": "2025-11-01T09:36:10.137593", + "status": "success" + }, + { + "key": "Tariff.Register Activation.Mask list", + "classId": 6, + "obis": "0.0.14.0.0.255", + "obisFormatted": "0-0:14.0.0.255", + "attributeId": 3, + "attributeName": "Mask list", + "controlName": "Register Activation", + "value": { + "0": [ + "0001", + [ + 1, + 3 + ] + ], + "1": [ + "0002", + [ + 2, + 4 + ] + ] + }, + "timestamp": "2025-11-01T09:36:10.746216", + "status": "success" + }, + { + "key": "Tariff.Register Activation.Active mask", + "classId": 6, + "obis": "0.0.14.0.0.255", + "obisFormatted": "0-0:14.0.0.255", + "attributeId": 4, + "attributeName": "Active mask", + "controlName": "Register Activation", + "value": "0002", + "timestamp": "2025-11-01T09:36:11.359754", + "status": "success" + } + ], + "summary": { + "total": 15, + "success": 15, + "failed": 0 + } + }, + "Month Billing": { + "sheet_name": "Month Billing", + "objects": [ + { + "key": "Month Billing.AMR Profile Status Code E meter - Monthly.AMR Profile Status Code E meter - Monthly", + "classId": 1, + "obis": "0.0.96.10.6.255", + "obisFormatted": "0-0:96.10.6.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code E meter - Monthly", + "controlName": "AMR Profile Status Code E meter - Monthly", + "value": 165, + "timestamp": "2025-11-01T09:36:12.016362", + "status": "success" + }, + { + "key": "Month Billing.E-meter Monthly Billing.Buffer", + "classId": 7, + "obis": "1.0.98.1.0.255", + "obisFormatted": "1-0:98.1.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "E-meter Monthly Billing", + "value": { + "0": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 167, + 10273, + 0, + 0, + 0 + ], + "1": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 164, + 20907, + 0, + 0, + 0 + ], + "2": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 45, + 23095, + 0, + 0, + 0 + ], + "3": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 172, + 23145, + 0, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:13.050049", + "status": "success" + }, + { + "key": "Month Billing.E-meter Monthly Billing.Capture objects", + "classId": 7, + "obis": "1.0.98.1.0.255", + "obisFormatted": "1-0:98.1.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "E-meter Monthly Billing", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:14.042247", + "status": "success" + }, + { + "key": "Month Billing.E-meter Monthly Billing.Capture period", + "classId": 7, + "obis": "1.0.98.1.0.255", + "obisFormatted": "1-0:98.1.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "E-meter Monthly Billing", + "value": 0, + "timestamp": "2025-11-01T09:36:14.678447", + "status": "success" + }, + { + "key": "Month Billing.E-meter Monthly Billing.Sort method", + "classId": 7, + "obis": "1.0.98.1.0.255", + "obisFormatted": "1-0:98.1.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "E-meter Monthly Billing", + "value": 1, + "timestamp": "2025-11-01T09:36:15.282445", + "status": "success" + }, + { + "key": "Month Billing.E-meter Monthly Billing.Sort object", + "classId": 7, + "obis": "1.0.98.1.0.255", + "obisFormatted": "1-0:98.1.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "E-meter Monthly Billing", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:15.891849", + "status": "success" + }, + { + "key": "Month Billing.E-meter Monthly Billing.Entries in use", + "classId": 7, + "obis": "1.0.98.1.0.255", + "obisFormatted": "1-0:98.1.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "E-meter Monthly Billing", + "value": 4, + "timestamp": "2025-11-01T09:36:16.480897", + "status": "success" + }, + { + "key": "Month Billing.E-meter Monthly Billing.Profile entries", + "classId": 7, + "obis": "1.0.98.1.0.255", + "obisFormatted": "1-0:98.1.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "E-meter Monthly Billing", + "value": 13, + "timestamp": "2025-11-01T09:36:17.118246", + "status": "success" + }, + { + "key": "Month Billing.AMR Profile Status Code M-BUS - Monthly.AMR Profile Status Code M-BUS - Monthly", + "classId": 1, + "obis": "0.1.96.10.7.255", + "obisFormatted": "0-1:96.10.7.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Monthly", + "controlName": "AMR Profile Status Code M-BUS - Monthly", + "value": 6, + "timestamp": "2025-11-01T09:36:17.820539", + "status": "success" + }, + { + "key": "Month Billing.Channel 1.Buffer", + "classId": 7, + "obis": "0.1.98.1.0.255", + "obisFormatted": "0-1:98.1.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 1", + "value": {}, + "timestamp": "2025-11-01T09:36:18.387869", + "status": "success" + }, + { + "key": "Month Billing.Channel 1.Capture objects", + "classId": 7, + "obis": "0.1.98.1.0.255", + "obisFormatted": "0-1:98.1.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 1", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:19.062627", + "status": "success" + }, + { + "key": "Month Billing.Channel 1.Capture period", + "classId": 7, + "obis": "0.1.98.1.0.255", + "obisFormatted": "0-1:98.1.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:36:19.654833", + "status": "success" + }, + { + "key": "Month Billing.Channel 1.Sort method", + "classId": 7, + "obis": "0.1.98.1.0.255", + "obisFormatted": "0-1:98.1.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 1", + "value": 1, + "timestamp": "2025-11-01T09:36:20.258091", + "status": "success" + }, + { + "key": "Month Billing.Channel 1.Sort object", + "classId": 7, + "obis": "0.1.98.1.0.255", + "obisFormatted": "0-1:98.1.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 1", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:20.889182", + "status": "success" + }, + { + "key": "Month Billing.Channel 1.Entries in use", + "classId": 7, + "obis": "0.1.98.1.0.255", + "obisFormatted": "0-1:98.1.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:36:21.483676", + "status": "success" + }, + { + "key": "Month Billing.Channel 1.Profile entries", + "classId": 7, + "obis": "0.1.98.1.0.255", + "obisFormatted": "0-1:98.1.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 1", + "value": 13, + "timestamp": "2025-11-01T09:36:22.106903", + "status": "success" + }, + { + "key": "Month Billing.AMR Profile Status Code M-BUS - Monthly.AMR Profile Status Code M-BUS - Monthly", + "classId": 1, + "obis": "0.2.96.10.7.255", + "obisFormatted": "0-2:96.10.7.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Monthly", + "controlName": "AMR Profile Status Code M-BUS - Monthly", + "value": 6, + "timestamp": "2025-11-01T09:36:22.740033", + "status": "success" + }, + { + "key": "Month Billing.Channel 2.Buffer", + "classId": 7, + "obis": "0.2.98.1.0.255", + "obisFormatted": "0-2:98.1.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 2", + "value": {}, + "timestamp": "2025-11-01T09:36:23.342181", + "status": "success" + }, + { + "key": "Month Billing.Channel 2.Capture objects", + "classId": 7, + "obis": "0.2.98.1.0.255", + "obisFormatted": "0-2:98.1.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 2", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:24.012738", + "status": "success" + }, + { + "key": "Month Billing.Channel 2.Capture period", + "classId": 7, + "obis": "0.2.98.1.0.255", + "obisFormatted": "0-2:98.1.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:36:24.657799", + "status": "success" + }, + { + "key": "Month Billing.Channel 2.Sort method", + "classId": 7, + "obis": "0.2.98.1.0.255", + "obisFormatted": "0-2:98.1.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 2", + "value": 1, + "timestamp": "2025-11-01T09:36:25.202939", + "status": "success" + }, + { + "key": "Month Billing.Channel 2.Sort object", + "classId": 7, + "obis": "0.2.98.1.0.255", + "obisFormatted": "0-2:98.1.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 2", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:25.848946", + "status": "success" + }, + { + "key": "Month Billing.Channel 2.Entries in use", + "classId": 7, + "obis": "0.2.98.1.0.255", + "obisFormatted": "0-2:98.1.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:36:26.512260", + "status": "success" + }, + { + "key": "Month Billing.Channel 2.Profile entries", + "classId": 7, + "obis": "0.2.98.1.0.255", + "obisFormatted": "0-2:98.1.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 2", + "value": 13, + "timestamp": "2025-11-01T09:36:27.106727", + "status": "success" + }, + { + "key": "Month Billing.AMR Profile Status Code M-BUS - Monthly.AMR Profile Status Code M-BUS - Monthly", + "classId": 1, + "obis": "0.3.96.10.7.255", + "obisFormatted": "0-3:96.10.7.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Monthly", + "controlName": "AMR Profile Status Code M-BUS - Monthly", + "value": 6, + "timestamp": "2025-11-01T09:36:27.881764", + "status": "success" + }, + { + "key": "Month Billing.Channel 3.Buffer", + "classId": 7, + "obis": "0.3.98.1.0.255", + "obisFormatted": "0-3:98.1.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 3", + "value": {}, + "timestamp": "2025-11-01T09:36:28.480763", + "status": "success" + }, + { + "key": "Month Billing.Channel 3.Capture objects", + "classId": 7, + "obis": "0.3.98.1.0.255", + "obisFormatted": "0-3:98.1.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 3", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:29.191477", + "status": "success" + }, + { + "key": "Month Billing.Channel 3.Capture period", + "classId": 7, + "obis": "0.3.98.1.0.255", + "obisFormatted": "0-3:98.1.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:36:29.766359", + "status": "success" + }, + { + "key": "Month Billing.Channel 3.Sort method", + "classId": 7, + "obis": "0.3.98.1.0.255", + "obisFormatted": "0-3:98.1.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 3", + "value": 1, + "timestamp": "2025-11-01T09:36:30.357375", + "status": "success" + }, + { + "key": "Month Billing.Channel 3.Sort object", + "classId": 7, + "obis": "0.3.98.1.0.255", + "obisFormatted": "0-3:98.1.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 3", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:31.007208", + "status": "success" + }, + { + "key": "Month Billing.Channel 3.Entries in use", + "classId": 7, + "obis": "0.3.98.1.0.255", + "obisFormatted": "0-3:98.1.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:36:31.635017", + "status": "success" + }, + { + "key": "Month Billing.Channel 3.Profile entries", + "classId": 7, + "obis": "0.3.98.1.0.255", + "obisFormatted": "0-3:98.1.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 3", + "value": 13, + "timestamp": "2025-11-01T09:36:32.226481", + "status": "success" + }, + { + "key": "Month Billing.AMR Profile Status Code M-BUS - Monthly.AMR Profile Status Code M-BUS - Monthly", + "classId": 1, + "obis": "0.4.96.10.7.255", + "obisFormatted": "0-4:96.10.7.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Monthly", + "controlName": "AMR Profile Status Code M-BUS - Monthly", + "value": 6, + "timestamp": "2025-11-01T09:36:32.964328", + "status": "success" + }, + { + "key": "Month Billing.Channel 4.Buffer", + "classId": 7, + "obis": "0.4.98.1.0.255", + "obisFormatted": "0-4:98.1.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 4", + "value": {}, + "timestamp": "2025-11-01T09:36:33.512413", + "status": "success" + }, + { + "key": "Month Billing.Channel 4.Capture objects", + "classId": 7, + "obis": "0.4.98.1.0.255", + "obisFormatted": "0-4:98.1.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 4", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:34.152763", + "status": "success" + }, + { + "key": "Month Billing.Channel 4.Capture period", + "classId": 7, + "obis": "0.4.98.1.0.255", + "obisFormatted": "0-4:98.1.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:36:34.781295", + "status": "success" + }, + { + "key": "Month Billing.Channel 4.Sort method", + "classId": 7, + "obis": "0.4.98.1.0.255", + "obisFormatted": "0-4:98.1.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 4", + "value": 1, + "timestamp": "2025-11-01T09:36:35.407755", + "status": "success" + }, + { + "key": "Month Billing.Channel 4.Sort object", + "classId": 7, + "obis": "0.4.98.1.0.255", + "obisFormatted": "0-4:98.1.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 4", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:36.074939", + "status": "success" + }, + { + "key": "Month Billing.Channel 4.Entries in use", + "classId": 7, + "obis": "0.4.98.1.0.255", + "obisFormatted": "0-4:98.1.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:36:36.674264", + "status": "success" + }, + { + "key": "Month Billing.Channel 4.Profile entries", + "classId": 7, + "obis": "0.4.98.1.0.255", + "obisFormatted": "0-4:98.1.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 4", + "value": 13, + "timestamp": "2025-11-01T09:36:37.289894", + "status": "success" + } + ], + "summary": { + "total": 40, + "success": 40, + "failed": 0 + } + }, + "Daily Billing": { + "sheet_name": "Daily Billing", + "objects": [ + { + "key": "Daily Billing.AMR Profile Status Code E meter - Daily.AMR Profile Status Code E meter - Daily", + "classId": 1, + "obis": "0.0.96.10.4.255", + "obisFormatted": "0-0:96.10.4.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code E meter - Daily", + "controlName": "AMR Profile Status Code E meter - Daily", + "value": 165, + "timestamp": "2025-11-01T09:36:37.950198", + "status": "success" + }, + { + "key": "Daily Billing.E-meter Daily Billing.Buffer", + "classId": 7, + "obis": "1.0.99.2.0.255", + "obisFormatted": "1-0:99.2.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "E-meter Daily Billing", + "value": { + "0": [ + "2025-10-25 06 00:00:00 00,FF88,80", + 175, + 9263, + 0, + 0, + 0 + ], + "1": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 36, + 10273, + 0, + 0, + 0 + ], + "2": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 164, + 20907, + 0, + 0, + 0 + ], + "3": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 45, + 23095, + 0, + 0, + 0 + ], + "4": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 172, + 23145, + 0, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:39.049786", + "status": "success" + }, + { + "key": "Daily Billing.E-meter Daily Billing.Capture objects", + "classId": 7, + "obis": "1.0.99.2.0.255", + "obisFormatted": "1-0:99.2.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "E-meter Daily Billing", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:40.028555", + "status": "success" + }, + { + "key": "Daily Billing.E-meter Daily Billing.Capture period", + "classId": 7, + "obis": "1.0.99.2.0.255", + "obisFormatted": "1-0:99.2.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "E-meter Daily Billing", + "value": 86400, + "timestamp": "2025-11-01T09:36:40.650323", + "status": "success" + }, + { + "key": "Daily Billing.E-meter Daily Billing.Sort method", + "classId": 7, + "obis": "1.0.99.2.0.255", + "obisFormatted": "1-0:99.2.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "E-meter Daily Billing", + "value": 1, + "timestamp": "2025-11-01T09:36:41.268044", + "status": "success" + }, + { + "key": "Daily Billing.E-meter Daily Billing.Sort object", + "classId": 7, + "obis": "1.0.99.2.0.255", + "obisFormatted": "1-0:99.2.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "E-meter Daily Billing", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:41.875984", + "status": "success" + }, + { + "key": "Daily Billing.E-meter Daily Billing.Entries in use", + "classId": 7, + "obis": "1.0.99.2.0.255", + "obisFormatted": "1-0:99.2.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "E-meter Daily Billing", + "value": 5, + "timestamp": "2025-11-01T09:36:42.496826", + "status": "success" + }, + { + "key": "Daily Billing.E-meter Daily Billing.Profile entries", + "classId": 7, + "obis": "1.0.99.2.0.255", + "obisFormatted": "1-0:99.2.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "E-meter Daily Billing", + "value": 40, + "timestamp": "2025-11-01T09:36:43.115175", + "status": "success" + }, + { + "key": "Daily Billing.AMR Profile Status Code M-BUS - Daily.AMR Profile Status Code M-BUS - Daily", + "classId": 1, + "obis": "0.1.96.10.5.255", + "obisFormatted": "0-1:96.10.5.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Daily", + "controlName": "AMR Profile Status Code M-BUS - Daily", + "value": 6, + "timestamp": "2025-11-01T09:36:43.823023", + "status": "success" + }, + { + "key": "Daily Billing.Channel 1.Buffer", + "classId": 7, + "obis": "0.1.99.2.0.255", + "obisFormatted": "0-1:99.2.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 1", + "value": {}, + "timestamp": "2025-11-01T09:36:44.403631", + "status": "success" + }, + { + "key": "Daily Billing.Channel 1.Capture objects", + "classId": 7, + "obis": "0.1.99.2.0.255", + "obisFormatted": "0-1:99.2.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 1", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:45.070959", + "status": "success" + }, + { + "key": "Daily Billing.Channel 1.Capture period", + "classId": 7, + "obis": "0.1.99.2.0.255", + "obisFormatted": "0-1:99.2.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 1", + "value": 86400, + "timestamp": "2025-11-01T09:36:45.688697", + "status": "success" + }, + { + "key": "Daily Billing.Channel 1.Sort method", + "classId": 7, + "obis": "0.1.99.2.0.255", + "obisFormatted": "0-1:99.2.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 1", + "value": 1, + "timestamp": "2025-11-01T09:36:46.265194", + "status": "success" + }, + { + "key": "Daily Billing.Channel 1.Sort object", + "classId": 7, + "obis": "0.1.99.2.0.255", + "obisFormatted": "0-1:99.2.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 1", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:46.855364", + "status": "success" + }, + { + "key": "Daily Billing.Channel 1.Entries in use", + "classId": 7, + "obis": "0.1.99.2.0.255", + "obisFormatted": "0-1:99.2.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:36:47.490351", + "status": "success" + }, + { + "key": "Daily Billing.Channel 1.Profile entries", + "classId": 7, + "obis": "0.1.99.2.0.255", + "obisFormatted": "0-1:99.2.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 1", + "value": 40, + "timestamp": "2025-11-01T09:36:48.074019", + "status": "success" + }, + { + "key": "Daily Billing.AMR Profile Status Code M-BUS - Daily.AMR Profile Status Code M-BUS - Daily", + "classId": 1, + "obis": "0.2.96.10.5.255", + "obisFormatted": "0-2:96.10.5.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Daily", + "controlName": "AMR Profile Status Code M-BUS - Daily", + "value": 6, + "timestamp": "2025-11-01T09:36:48.748348", + "status": "success" + }, + { + "key": "Daily Billing.Channel 2.Buffer", + "classId": 7, + "obis": "0.2.99.2.0.255", + "obisFormatted": "0-2:99.2.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 2", + "value": {}, + "timestamp": "2025-11-01T09:36:49.332359", + "status": "success" + }, + { + "key": "Daily Billing.Channel 2.Capture objects", + "classId": 7, + "obis": "0.2.99.2.0.255", + "obisFormatted": "0-2:99.2.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 2", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:50.014806", + "status": "success" + }, + { + "key": "Daily Billing.Channel 2.Capture period", + "classId": 7, + "obis": "0.2.99.2.0.255", + "obisFormatted": "0-2:99.2.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 2", + "value": 86400, + "timestamp": "2025-11-01T09:36:50.661634", + "status": "success" + }, + { + "key": "Daily Billing.Channel 2.Sort method", + "classId": 7, + "obis": "0.2.99.2.0.255", + "obisFormatted": "0-2:99.2.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 2", + "value": 1, + "timestamp": "2025-11-01T09:36:51.273320", + "status": "success" + }, + { + "key": "Daily Billing.Channel 2.Sort object", + "classId": 7, + "obis": "0.2.99.2.0.255", + "obisFormatted": "0-2:99.2.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 2", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:51.885576", + "status": "success" + }, + { + "key": "Daily Billing.Channel 2.Entries in use", + "classId": 7, + "obis": "0.2.99.2.0.255", + "obisFormatted": "0-2:99.2.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:36:52.468609", + "status": "success" + }, + { + "key": "Daily Billing.Channel 2.Profile entries", + "classId": 7, + "obis": "0.2.99.2.0.255", + "obisFormatted": "0-2:99.2.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 2", + "value": 40, + "timestamp": "2025-11-01T09:36:53.057455", + "status": "success" + }, + { + "key": "Daily Billing.AMR Profile Status Code M-BUS - Daily.AMR Profile Status Code M-BUS - Daily", + "classId": 1, + "obis": "0.3.96.10.5.255", + "obisFormatted": "0-3:96.10.5.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Daily", + "controlName": "AMR Profile Status Code M-BUS - Daily", + "value": 6, + "timestamp": "2025-11-01T09:36:53.811988", + "status": "success" + }, + { + "key": "Daily Billing.Channel 3.Buffer", + "classId": 7, + "obis": "0.3.99.2.0.255", + "obisFormatted": "0-3:99.2.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 3", + "value": {}, + "timestamp": "2025-11-01T09:36:54.425567", + "status": "success" + }, + { + "key": "Daily Billing.Channel 3.Capture objects", + "classId": 7, + "obis": "0.3.99.2.0.255", + "obisFormatted": "0-3:99.2.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 3", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:55.084826", + "status": "success" + }, + { + "key": "Daily Billing.Channel 3.Capture period", + "classId": 7, + "obis": "0.3.99.2.0.255", + "obisFormatted": "0-3:99.2.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 3", + "value": 86400, + "timestamp": "2025-11-01T09:36:55.661098", + "status": "success" + }, + { + "key": "Daily Billing.Channel 3.Sort method", + "classId": 7, + "obis": "0.3.99.2.0.255", + "obisFormatted": "0-3:99.2.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 3", + "value": 1, + "timestamp": "2025-11-01T09:36:56.259547", + "status": "success" + }, + { + "key": "Daily Billing.Channel 3.Sort object", + "classId": 7, + "obis": "0.3.99.2.0.255", + "obisFormatted": "0-3:99.2.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 3", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:36:56.887536", + "status": "success" + }, + { + "key": "Daily Billing.Channel 3.Entries in use", + "classId": 7, + "obis": "0.3.99.2.0.255", + "obisFormatted": "0-3:99.2.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:36:57.477314", + "status": "success" + }, + { + "key": "Daily Billing.Channel 3.Profile entries", + "classId": 7, + "obis": "0.3.99.2.0.255", + "obisFormatted": "0-3:99.2.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 3", + "value": 40, + "timestamp": "2025-11-01T09:36:58.076392", + "status": "success" + }, + { + "key": "Daily Billing.AMR Profile Status Code M-BUS - Daily.AMR Profile Status Code M-BUS - Daily", + "classId": 1, + "obis": "0.4.96.10.5.255", + "obisFormatted": "0-4:96.10.5.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Daily", + "controlName": "AMR Profile Status Code M-BUS - Daily", + "value": 6, + "timestamp": "2025-11-01T09:36:58.829127", + "status": "success" + }, + { + "key": "Daily Billing.Channel 4.Buffer", + "classId": 7, + "obis": "0.4.99.2.0.255", + "obisFormatted": "0-4:99.2.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 4", + "value": {}, + "timestamp": "2025-11-01T09:36:59.421019", + "status": "success" + }, + { + "key": "Daily Billing.Channel 4.Capture objects", + "classId": 7, + "obis": "0.4.99.2.0.255", + "obisFormatted": "0-4:99.2.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 4", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:00.082021", + "status": "success" + }, + { + "key": "Daily Billing.Channel 4.Capture period", + "classId": 7, + "obis": "0.4.99.2.0.255", + "obisFormatted": "0-4:99.2.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 4", + "value": 86400, + "timestamp": "2025-11-01T09:37:00.690505", + "status": "success" + }, + { + "key": "Daily Billing.Channel 4.Sort method", + "classId": 7, + "obis": "0.4.99.2.0.255", + "obisFormatted": "0-4:99.2.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 4", + "value": 1, + "timestamp": "2025-11-01T09:37:01.280417", + "status": "success" + }, + { + "key": "Daily Billing.Channel 4.Sort object", + "classId": 7, + "obis": "0.4.99.2.0.255", + "obisFormatted": "0-4:99.2.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 4", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:01.911388", + "status": "success" + }, + { + "key": "Daily Billing.Channel 4.Entries in use", + "classId": 7, + "obis": "0.4.99.2.0.255", + "obisFormatted": "0-4:99.2.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:37:02.520243", + "status": "success" + }, + { + "key": "Daily Billing.Channel 4.Profile entries", + "classId": 7, + "obis": "0.4.99.2.0.255", + "obisFormatted": "0-4:99.2.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 4", + "value": 40, + "timestamp": "2025-11-01T09:37:03.128969", + "status": "success" + } + ], + "summary": { + "total": 40, + "success": 40, + "failed": 0 + } + }, + "Load Profile": { + "sheet_name": "Load Profile", + "objects": [ + { + "key": "Load Profile.AMR Profile Status Code E meter - 15min.AMR Profile Status Code E meter - 15min", + "classId": 1, + "obis": "0.0.96.10.2.255", + "obisFormatted": "0-0:96.10.2.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code E meter - 15min", + "controlName": "AMR Profile Status Code E meter - 15min", + "value": 128, + "timestamp": "2025-11-01T09:37:03.852981", + "status": "success" + }, + { + "key": "Load Profile.Energy Profile.Buffer", + "classId": 7, + "obis": "1.0.99.1.0.255", + "obisFormatted": "1-0:99.1.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Energy Profile", + "value": { + "0": [ + "2025-09-22 01 11:15:00 00,FF88,80", + 13, + 0, + 0 + ], + "1": [ + "2025-09-22 01 11:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "2": [ + "2025-09-22 01 11:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "3": [ + "2025-09-22 01 12:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "4": [ + "2025-09-22 01 12:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "5": [ + "2025-09-22 01 12:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "6": [ + "2025-09-22 01 15:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "7": [ + "2025-09-22 01 15:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "8": [ + "2025-09-22 01 15:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "9": [ + "2025-09-22 01 16:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "10": [ + "2025-09-22 01 16:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "11": [ + "2025-09-22 01 16:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "12": [ + "2025-09-22 01 16:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "13": [ + "2025-09-22 01 17:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "14": [ + "2025-09-22 01 17:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "15": [ + "2025-09-22 01 17:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "16": [ + "2025-09-22 01 17:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "17": [ + "2025-09-22 01 18:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "18": [ + "2025-09-22 01 18:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "19": [ + "2025-09-22 01 18:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "20": [ + "2025-09-22 01 21:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "21": [ + "2025-09-22 01 22:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "22": [ + "2025-09-22 01 22:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "23": [ + "2025-09-22 01 23:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "24": [ + "2025-09-22 01 23:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "25": [ + "2025-09-22 01 23:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "26": [ + "2025-09-23 02 00:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "27": [ + "2025-09-23 02 00:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "28": [ + "2025-09-23 02 01:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "29": [ + "2025-09-23 02 02:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "30": [ + "2025-09-23 02 02:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "31": [ + "2025-09-23 02 02:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "32": [ + "2025-09-23 02 03:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "33": [ + "2025-09-23 02 03:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "34": [ + "2025-09-23 02 04:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "35": [ + "2025-09-23 02 04:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "36": [ + "2025-09-23 02 04:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "37": [ + "2025-09-23 02 04:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "38": [ + "2025-09-23 02 05:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "39": [ + "2025-09-23 02 05:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "40": [ + "2025-09-23 02 06:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "41": [ + "2025-09-23 02 06:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "42": [ + "2025-09-23 02 07:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "43": [ + "2025-09-23 02 07:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "44": [ + "2025-09-23 02 08:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "45": [ + "2025-09-23 02 08:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "46": [ + "2025-09-23 02 08:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "47": [ + "2025-09-23 02 09:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "48": [ + "2025-09-23 02 09:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "49": [ + "2025-09-23 02 09:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "50": [ + "2025-09-23 02 10:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "51": [ + "2025-09-23 02 10:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "52": [ + "2025-09-23 02 11:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "53": [ + "2025-09-24 03 09:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "54": [ + "2025-09-24 03 09:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "55": [ + "2025-09-24 03 09:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "56": [ + "2025-09-24 03 10:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "57": [ + "2025-09-24 03 10:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "58": [ + "2025-09-24 03 10:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "59": [ + "2025-09-24 03 10:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "60": [ + "2025-09-24 03 11:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "61": [ + "2025-09-24 03 11:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "62": [ + "2025-09-24 03 11:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "63": [ + "2025-09-24 03 12:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "64": [ + "2025-09-24 03 12:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "65": [ + "2025-09-24 03 12:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "66": [ + "2025-09-24 03 13:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "67": [ + "2025-09-24 03 14:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "68": [ + "2025-09-24 03 15:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "69": [ + "2025-09-24 03 15:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "70": [ + "2025-09-24 03 16:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "71": [ + "2025-09-24 03 16:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "72": [ + "2025-09-24 03 16:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "73": [ + "2025-09-24 03 16:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "74": [ + "2025-09-24 03 17:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "75": [ + "2025-09-24 03 17:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "76": [ + "2025-09-24 03 17:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "77": [ + "2025-09-24 03 17:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "78": [ + "2025-09-24 03 18:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "79": [ + "2025-09-24 03 19:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "80": [ + "2025-09-24 03 19:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "81": [ + "2025-09-24 03 19:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "82": [ + "2025-09-24 03 19:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "83": [ + "2025-09-24 03 20:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "84": [ + "2025-09-24 03 20:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "85": [ + "2025-09-24 03 20:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "86": [ + "2025-09-25 04 08:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "87": [ + "2025-09-25 04 09:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "88": [ + "2025-09-25 04 09:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "89": [ + "2025-09-25 04 09:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "90": [ + "2025-09-25 04 09:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "91": [ + "2025-09-25 04 10:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "92": [ + "2025-09-25 04 10:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "93": [ + "2025-09-25 04 11:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "94": [ + "2025-09-25 04 11:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "95": [ + "2025-09-25 04 11:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "96": [ + "2025-09-25 04 12:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "97": [ + "2025-09-25 04 12:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "98": [ + "2025-09-25 04 12:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "99": [ + "2025-09-25 04 12:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "100": [ + "2025-09-25 04 13:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "101": [ + "2025-09-25 04 13:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "102": [ + "2025-09-25 04 13:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "103": [ + "2025-09-25 04 13:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "104": [ + "2025-09-25 04 14:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "105": [ + "2025-09-25 04 14:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "106": [ + "2025-09-25 04 14:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "107": [ + "2025-09-25 04 14:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "108": [ + "2025-09-25 04 15:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "109": [ + "2025-09-25 04 15:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "110": [ + "2025-09-25 04 23:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "111": [ + "2025-09-25 04 23:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "112": [ + "2025-09-26 05 02:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "113": [ + "2025-09-26 05 02:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "114": [ + "2025-09-26 05 02:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "115": [ + "2025-09-26 05 05:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "116": [ + "2025-09-26 05 05:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "117": [ + "2025-09-26 05 05:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "118": [ + "2025-09-26 05 05:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "119": [ + "2025-09-26 05 08:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "120": [ + "2025-09-26 05 08:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "121": [ + "2025-09-27 06 10:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "122": [ + "2025-09-27 06 11:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "123": [ + "2025-09-27 06 11:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "124": [ + "2025-09-27 06 11:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "125": [ + "2025-09-27 06 11:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "126": [ + "2025-09-27 06 12:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "127": [ + "2025-09-27 06 12:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "128": [ + "2025-09-27 06 12:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "129": [ + "2025-09-27 06 12:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "130": [ + "2025-09-27 06 13:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "131": [ + "2025-09-27 06 13:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "132": [ + "2025-09-27 06 13:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "133": [ + "2025-09-27 06 13:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "134": [ + "2025-09-27 06 14:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "135": [ + "2025-09-27 06 14:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "136": [ + "2025-09-27 06 14:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "137": [ + "2025-09-27 06 15:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "138": [ + "2025-09-27 06 15:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "139": [ + "2025-09-27 06 18:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "140": [ + "2025-09-27 06 18:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "141": [ + "2025-09-27 06 18:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "142": [ + "2025-09-27 06 19:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "143": [ + "2025-09-27 06 19:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "144": [ + "2025-09-27 06 19:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "145": [ + "2025-09-27 06 20:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "146": [ + "2025-09-27 06 21:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "147": [ + "2025-09-27 06 21:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "148": [ + "2025-09-27 06 21:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "149": [ + "2025-09-27 06 22:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "150": [ + "2025-09-27 06 22:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "151": [ + "2025-09-27 06 22:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "152": [ + "2025-09-27 06 22:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "153": [ + "2025-09-27 06 23:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "154": [ + "2025-09-27 06 23:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "155": [ + "2025-09-28 07 00:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "156": [ + "2025-09-28 07 00:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "157": [ + "2025-09-28 07 01:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "158": [ + "2025-09-28 07 01:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "159": [ + "2025-09-28 07 01:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "160": [ + "2025-09-28 07 02:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "161": [ + "2025-09-28 07 02:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "162": [ + "2025-09-28 07 03:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "163": [ + "2025-09-28 07 03:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "164": [ + "2025-09-28 07 04:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "165": [ + "2025-09-28 07 04:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "166": [ + "2025-09-28 07 04:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "167": [ + "2025-09-28 07 05:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "168": [ + "2025-09-28 07 05:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "169": [ + "2025-09-28 07 06:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "170": [ + "2025-09-28 07 06:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "171": [ + "2025-09-28 07 07:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "172": [ + "2025-09-28 07 07:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "173": [ + "2025-09-28 07 07:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "174": [ + "2025-09-28 07 08:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "175": [ + "2025-09-28 07 09:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "176": [ + "2025-09-28 07 09:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "177": [ + "2025-09-28 07 10:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "178": [ + "2025-09-28 07 10:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "179": [ + "2025-09-28 07 11:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "180": [ + "2025-09-28 07 11:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "181": [ + "2025-09-28 07 11:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "182": [ + "2025-09-28 07 11:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "183": [ + "2025-09-28 07 12:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "184": [ + "2025-09-28 07 12:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "185": [ + "2025-09-28 07 12:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "186": [ + "2025-09-28 07 12:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "187": [ + "2025-09-28 07 13:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "188": [ + "2025-09-28 07 13:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "189": [ + "2025-09-28 07 13:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "190": [ + "2025-09-28 07 15:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "191": [ + "2025-09-28 07 15:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "192": [ + "2025-09-28 07 15:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "193": [ + "2025-09-28 07 15:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "194": [ + "2025-09-28 07 16:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "195": [ + "2025-09-28 07 16:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "196": [ + "2025-09-28 07 16:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "197": [ + "2025-09-28 07 16:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "198": [ + "2025-09-28 07 17:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "199": [ + "2025-09-28 07 17:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "200": [ + "2025-09-28 07 17:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "201": [ + "2025-09-28 07 18:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "202": [ + "2025-09-28 07 18:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "203": [ + "2025-09-29 01 15:00:00 00,FF88,80", + 141, + 0, + 0 + ], + "204": [ + "2025-09-29 01 15:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "205": [ + "2025-09-29 01 15:30:00 00,FF88,80", + 8, + 373, + 0 + ], + "206": [ + "2025-09-29 01 16:15:00 00,FF88,80", + 141, + 1504, + 0 + ], + "207": [ + "2025-09-30 02 17:00:00 00,FF88,81", + 142, + 1504, + 0 + ], + "208": [ + "2025-09-30 02 17:15:00 00,FF88,81", + 14, + 1504, + 0 + ], + "209": [ + "2025-09-30 02 17:30:00 00,FF88,81", + 14, + 1504, + 0 + ], + "210": [ + "2025-09-30 02 17:45:00 00,FF88,81", + 14, + 1504, + 0 + ], + "211": [ + "2025-09-30 02 18:00:00 00,FF88,81", + 14, + 1504, + 0 + ], + "212": [ + "2025-09-30 02 18:15:00 00,FF88,81", + 14, + 1504, + 0 + ], + "213": [ + "2025-09-30 02 18:30:00 00,FF88,81", + 14, + 1504, + 0 + ], + "214": [ + "2025-09-30 02 18:45:00 00,FF88,81", + 14, + 1504, + 0 + ], + "215": [ + "2025-10-20 01 11:45:00 00,FF88,80", + 46, + 1504, + 0 + ], + "216": [ + "2025-10-20 01 12:00:00 00,FF88,80", + 8, + 1504, + 0 + ], + "217": [ + "2025-10-20 01 12:15:00 00,FF88,80", + 8, + 1504, + 0 + ], + "218": [ + "2025-10-20 01 12:30:00 00,FF88,80", + 8, + 1504, + 0 + ], + "219": [ + "2025-10-20 01 15:45:00 00,FF88,80", + 136, + 1504, + 0 + ], + "220": [ + "2025-10-20 01 16:00:00 00,FF88,80", + 13, + 2180, + 0 + ], + "221": [ + "2025-10-20 01 16:15:00 00,FF88,80", + 8, + 3042, + 0 + ], + "222": [ + "2025-10-20 01 16:30:00 00,FF88,80", + 8, + 3905, + 0 + ], + "223": [ + "2025-10-20 01 16:45:00 00,FF88,80", + 8, + 4767, + 0 + ], + "224": [ + "2025-10-20 01 17:00:00 00,FF88,80", + 8, + 5630, + 0 + ], + "225": [ + "2025-10-20 01 17:30:00 00,FF88,80", + 44, + 6931, + 0 + ], + "226": [ + "2025-10-20 01 17:45:00 00,FF88,80", + 44, + 7465, + 0 + ], + "227": [ + "2025-10-20 01 18:00:00 00,FF88,80", + 44, + 8140, + 0 + ], + "228": [ + "2025-10-21 02 09:00:00 00,FF88,80", + 172, + 9263, + 0 + ], + "229": [ + "2025-10-21 02 09:15:00 00,FF88,80", + 136, + 9263, + 0 + ], + "230": [ + "2025-10-21 02 09:30:00 00,FF88,80", + 8, + 9263, + 0 + ], + "231": [ + "2025-10-21 02 09:45:00 00,FF88,80", + 8, + 9263, + 0 + ], + "232": [ + "2025-10-21 02 10:00:00 00,FF88,80", + 136, + 9263, + 0 + ], + "233": [ + "2025-10-21 02 10:15:00 00,FF88,80", + 8, + 9263, + 0 + ], + "234": [ + "2025-10-21 02 10:30:00 00,FF88,80", + 8, + 9263, + 0 + ], + "235": [ + "2025-10-21 02 10:45:00 00,FF88,80", + 8, + 9263, + 0 + ], + "236": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 8, + 9263, + 0 + ], + "237": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 44, + 9263, + 0 + ], + "238": [ + "2025-10-25 06 00:00:00 00,FF88,80", + 44, + 9263, + 0 + ], + "239": [ + "2025-10-25 06 00:15:00 00,FF88,80", + 8, + 9263, + 0 + ], + "240": [ + "2025-10-25 06 00:30:00 00,FF88,80", + 8, + 9708, + 0 + ], + "241": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 36, + 10273, + 0 + ], + "242": [ + "2025-10-21 02 12:00:00 00,FF88,80", + 44, + 10906, + 0 + ], + "243": [ + "2025-10-21 02 12:15:00 00,FF88,80", + 8, + 10910, + 0 + ], + "244": [ + "2025-10-21 02 12:30:00 00,FF88,80", + 8, + 10910, + 0 + ], + "245": [ + "2025-10-21 02 13:45:00 00,FF88,80", + 136, + 10910, + 0 + ], + "246": [ + "2025-10-21 02 14:00:00 00,FF88,80", + 8, + 10910, + 0 + ], + "247": [ + "2025-10-21 02 14:15:00 00,FF88,80", + 8, + 10910, + 0 + ], + "248": [ + "2025-10-21 02 14:30:00 00,FF88,80", + 8, + 11031, + 0 + ], + "249": [ + "2025-11-01 06 00:15:00 00,FFC4,00", + 36, + 12711, + 0 + ], + "250": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 13574, + 0 + ], + "251": [ + "2025-11-01 06 00:45:00 00,FFC4,00", + 0, + 14436, + 0 + ], + "252": [ + "2025-12-01 01 00:15:00 00,FFC4,00", + 36, + 15635, + 0 + ], + "253": [ + "2025-12-01 01 00:30:00 00,FFC4,00", + 0, + 16498, + 0 + ], + "254": [ + "2025-12-01 01 00:45:00 00,FFC4,00", + 0, + 17360, + 0 + ], + "255": [ + "2025-12-01 01 01:00:00 00,FFC4,00", + 0, + 18223, + 0 + ], + "256": [ + "2026-01-01 04 00:15:00 00,FFC4,00", + 36, + 19204, + 0 + ], + "257": [ + "2026-02-01 07 00:15:00 00,FFC4,00", + 36, + 20566, + 0 + ], + "258": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 36, + 20907, + 0 + ], + "259": [ + "2026-03-01 07 00:15:00 00,FFC4,00", + 0, + 21769, + 0 + ], + "260": [ + "2026-03-01 07 00:30:00 00,FFC4,00", + 0, + 22632, + 0 + ], + "261": [ + "2026-03-01 07 00:45:00 00,FFC4,00", + 0, + 23095, + 0 + ], + "262": [ + "2026-03-01 07 01:00:00 00,FFC4,00", + 0, + 23095, + 0 + ], + "263": [ + "2026-03-01 07 01:15:00 00,FFC4,00", + 0, + 23095, + 0 + ], + "264": [ + "2026-03-01 07 01:30:00 00,FFC4,00", + 5, + 23095, + 0 + ], + "265": [ + "2026-04-01 03 00:15:00 00,FF88,80", + 44, + 23095, + 0 + ], + "266": [ + "2026-04-01 03 00:30:00 00,FF88,80", + 8, + 23095, + 0 + ], + "267": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 44, + 23095, + 0 + ], + "268": [ + "2026-05-01 05 00:15:00 00,FF88,80", + 8, + 23095, + 0 + ], + "269": [ + "2026-05-01 05 00:30:00 00,FF88,80", + 8, + 23095, + 0 + ], + "270": [ + "2026-05-01 05 13:45:00 00,FF88,80", + 136, + 23095, + 0 + ], + "271": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 44, + 23145, + 0 + ], + "272": [ + "2026-06-01 01 07:30:00 00,FF88,80", + 141, + 23462, + 0 + ], + "273": [ + "2025-10-22 03 17:15:00 00,FF88,80", + 44, + 23462, + 0 + ], + "274": [ + "2025-10-22 03 17:30:00 00,FF88,80", + 8, + 23471, + 0 + ], + "275": [ + "2025-10-22 03 17:45:00 00,FF88,80", + 8, + 23471, + 0 + ], + "276": [ + "2025-11-01 06 00:15:00 00,FFC4,00", + 36, + 23471, + 0 + ], + "277": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "278": [ + "2025-11-01 06 00:45:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "279": [ + "2025-11-01 06 01:00:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "280": [ + "2025-11-01 06 01:15:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "281": [ + "2025-11-01 06 01:30:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "282": [ + "2025-11-01 06 15:00:00 00,FFC4,00", + 128, + 23471, + 0 + ], + "283": [ + "2025-11-01 06 15:15:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "284": [ + "2025-11-01 06 15:30:00 00,FFC4,00", + 0, + 23562, + 0 + ], + "285": [ + "2025-11-01 06 15:45:00 00,FFC4,00", + 0, + 23646, + 0 + ], + "286": [ + "2025-11-01 06 16:00:00 00,FFC4,00", + 0, + 24744, + 0 + ], + "287": [ + "2025-11-01 06 16:15:00 00,FFC4,00", + 0, + 29722, + 0 + ], + "288": [ + "2025-11-01 06 16:30:00 00,FFC4,00", + 0, + 35653, + 6 + ], + "289": [ + "2025-11-08 06 15:30:00 00,FFC4,00", + 133, + 37829, + 14 + ], + "290": [ + "2025-11-08 06 15:45:00 00,FFC4,00", + 128, + 37829, + 14 + ], + "291": [ + "2025-11-08 06 16:00:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "292": [ + "2025-11-08 06 16:15:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "293": [ + "2025-11-08 06 16:45:00 00,FFC4,00", + 128, + 37829, + 14 + ], + "294": [ + "2025-11-08 06 17:00:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "295": [ + "2025-11-08 06 17:15:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "296": [ + "2025-11-08 06 17:30:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "297": [ + "2025-11-08 06 17:45:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "298": [ + "2025-11-08 06 18:00:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "299": [ + "2025-11-08 06 18:15:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "300": [ + "2025-11-08 06 18:30:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "301": [ + "2025-11-08 06 18:45:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "302": [ + "2025-11-08 06 19:00:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "303": [ + "2025-11-08 06 19:15:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "304": [ + "2025-11-08 06 19:30:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "305": [ + "2025-11-08 06 19:45:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "306": [ + "2025-11-08 06 20:00:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "307": [ + "2025-11-08 06 20:15:00 00,FFC4,00", + 128, + 37829, + 14 + ], + "308": [ + "2025-11-08 06 20:30:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "309": [ + "2025-11-08 06 20:45:00 00,FFC4,00", + 0, + 37883, + 14 + ], + "310": [ + "2025-11-08 06 21:00:00 00,FFC4,00", + 0, + 37883, + 14 + ], + "311": [ + "2025-11-08 06 21:15:00 00,FFC4,00", + 0, + 37883, + 14 + ], + "312": [ + "2025-11-08 06 21:30:00 00,FFC4,00", + 0, + 37883, + 14 + ], + "313": [ + "2025-11-08 06 21:45:00 00,FFC4,00", + 0, + 38495, + 14 + ], + "314": [ + "2025-11-08 06 22:00:00 00,FFC4,00", + 0, + 39356, + 14 + ], + "315": [ + "2025-11-08 06 22:15:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "316": [ + "2025-11-09 07 14:45:00 00,FFC4,00", + 128, + 40163, + 14 + ], + "317": [ + "2025-11-09 07 15:00:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "318": [ + "2025-11-09 07 20:15:00 00,FFC4,00", + 128, + 40163, + 14 + ], + "319": [ + "2025-11-09 07 20:30:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "320": [ + "2025-11-09 07 21:00:00 00,FFC4,00", + 128, + 40163, + 14 + ], + "321": [ + "2025-11-09 07 21:15:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "322": [ + "2025-11-09 07 21:30:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "323": [ + "2025-11-09 07 21:45:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "324": [ + "2025-11-09 07 22:00:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "325": [ + "2025-11-09 07 22:15:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "326": [ + "2025-11-09 07 22:30:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "327": [ + "2025-11-09 07 22:45:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "328": [ + "2025-11-09 07 23:00:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "329": [ + "2025-11-10 01 00:15:00 00,FFC4,00", + 128, + 40163, + 14 + ], + "330": [ + "2025-11-10 01 00:30:00 00,FFC4,00", + 0, + 40163, + 14 + ] + }, + "timestamp": "2025-11-01T09:37:38.440630", + "status": "success" + }, + { + "key": "Load Profile.Energy Profile.Capture objects", + "classId": 7, + "obis": "1.0.99.1.0.255", + "obisFormatted": "1-0:99.1.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Energy Profile", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:39.136217", + "status": "success" + }, + { + "key": "Load Profile.Energy Profile.Capture period", + "classId": 7, + "obis": "1.0.99.1.0.255", + "obisFormatted": "1-0:99.1.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Energy Profile", + "value": 900, + "timestamp": "2025-11-01T09:37:39.727264", + "status": "success" + }, + { + "key": "Load Profile.Energy Profile.Sort method", + "classId": 7, + "obis": "1.0.99.1.0.255", + "obisFormatted": "1-0:99.1.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Energy Profile", + "value": 1, + "timestamp": "2025-11-01T09:37:40.331016", + "status": "success" + }, + { + "key": "Load Profile.Energy Profile.Sort object", + "classId": 7, + "obis": "1.0.99.1.0.255", + "obisFormatted": "1-0:99.1.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Energy Profile", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:40.957623", + "status": "success" + }, + { + "key": "Load Profile.Energy Profile.Entries in use", + "classId": 7, + "obis": "1.0.99.1.0.255", + "obisFormatted": "1-0:99.1.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Energy Profile", + "value": 331, + "timestamp": "2025-11-01T09:37:41.547119", + "status": "success" + }, + { + "key": "Load Profile.Energy Profile.Profile entries", + "classId": 7, + "obis": "1.0.99.1.0.255", + "obisFormatted": "1-0:99.1.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Energy Profile", + "value": 960, + "timestamp": "2025-11-01T09:37:42.139752", + "status": "success" + }, + { + "key": "Load Profile.LTE Monitoring-profile.Buffer", + "classId": 7, + "obis": "0.0.99.18.0.255", + "obisFormatted": "0-0:99.18.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "LTE Monitoring-profile", + "value": {}, + "timestamp": "2025-11-01T09:37:42.739431", + "status": "success" + }, + { + "key": "Load Profile.LTE Monitoring-profile.Capture objects", + "classId": 7, + "obis": "0.0.99.18.0.255", + "obisFormatted": "0-0:99.18.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "LTE Monitoring-profile", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:43.687272", + "status": "success" + }, + { + "key": "Load Profile.LTE Monitoring-profile.Capture period", + "classId": 7, + "obis": "0.0.99.18.0.255", + "obisFormatted": "0-0:99.18.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "LTE Monitoring-profile", + "value": 14400, + "timestamp": "2025-11-01T09:37:44.302324", + "status": "success" + }, + { + "key": "Load Profile.LTE Monitoring-profile.Sort method", + "classId": 7, + "obis": "0.0.99.18.0.255", + "obisFormatted": "0-0:99.18.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "LTE Monitoring-profile", + "value": 1, + "timestamp": "2025-11-01T09:37:44.879574", + "status": "success" + }, + { + "key": "Load Profile.LTE Monitoring-profile.Sort object", + "classId": 7, + "obis": "0.0.99.18.0.255", + "obisFormatted": "0-0:99.18.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "LTE Monitoring-profile", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:45.479792", + "status": "success" + }, + { + "key": "Load Profile.LTE Monitoring-profile.Entries in use", + "classId": 7, + "obis": "0.0.99.18.0.255", + "obisFormatted": "0-0:99.18.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "LTE Monitoring-profile", + "value": 0, + "timestamp": "2025-11-01T09:37:46.092840", + "status": "success" + }, + { + "key": "Load Profile.LTE Monitoring-profile.Profile entries", + "classId": 7, + "obis": "0.0.99.18.0.255", + "obisFormatted": "0-0:99.18.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "LTE Monitoring-profile", + "value": 960, + "timestamp": "2025-11-01T09:37:46.701843", + "status": "success" + }, + { + "key": "Load Profile.AMR Profile Status Code M-BUS - Hourly.AMR Profile Status Code M-BUS - Hourly", + "classId": 1, + "obis": "0.1.96.10.3.255", + "obisFormatted": "0-1:96.10.3.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Hourly", + "controlName": "AMR Profile Status Code M-BUS - Hourly", + "value": 6, + "timestamp": "2025-11-01T09:37:47.435074", + "status": "success" + }, + { + "key": "Load Profile.Channel 1.Buffer", + "classId": 7, + "obis": "0.1.24.3.0.255", + "obisFormatted": "0-1:24.3.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 1", + "value": {}, + "timestamp": "2025-11-01T09:37:47.996653", + "status": "success" + }, + { + "key": "Load Profile.Channel 1.Capture objects", + "classId": 7, + "obis": "0.1.24.3.0.255", + "obisFormatted": "0-1:24.3.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 1", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:48.656361", + "status": "success" + }, + { + "key": "Load Profile.Channel 1.Capture period", + "classId": 7, + "obis": "0.1.24.3.0.255", + "obisFormatted": "0-1:24.3.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 1", + "value": 3600, + "timestamp": "2025-11-01T09:37:49.227461", + "status": "success" + }, + { + "key": "Load Profile.Channel 1.Sort method", + "classId": 7, + "obis": "0.1.24.3.0.255", + "obisFormatted": "0-1:24.3.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 1", + "value": 1, + "timestamp": "2025-11-01T09:37:49.838634", + "status": "success" + }, + { + "key": "Load Profile.Channel 1.Sort object", + "classId": 7, + "obis": "0.1.24.3.0.255", + "obisFormatted": "0-1:24.3.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 1", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:50.477475", + "status": "success" + }, + { + "key": "Load Profile.Channel 1.Entries in use", + "classId": 7, + "obis": "0.1.24.3.0.255", + "obisFormatted": "0-1:24.3.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:37:51.063961", + "status": "success" + }, + { + "key": "Load Profile.Channel 1.Profile entries", + "classId": 7, + "obis": "0.1.24.3.0.255", + "obisFormatted": "0-1:24.3.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 1", + "value": 240, + "timestamp": "2025-11-01T09:37:51.665405", + "status": "success" + }, + { + "key": "Load Profile.AMR Profile Status Code M-BUS - Hourly.AMR Profile Status Code M-BUS - Hourly", + "classId": 1, + "obis": "0.2.96.10.3.255", + "obisFormatted": "0-2:96.10.3.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Hourly", + "controlName": "AMR Profile Status Code M-BUS - Hourly", + "value": 6, + "timestamp": "2025-11-01T09:37:52.383414", + "status": "success" + }, + { + "key": "Load Profile.Channel 2.Buffer", + "classId": 7, + "obis": "0.2.24.3.0.255", + "obisFormatted": "0-2:24.3.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 2", + "value": {}, + "timestamp": "2025-11-01T09:37:52.967023", + "status": "success" + }, + { + "key": "Load Profile.Channel 2.Capture objects", + "classId": 7, + "obis": "0.2.24.3.0.255", + "obisFormatted": "0-2:24.3.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 2", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:53.663538", + "status": "success" + }, + { + "key": "Load Profile.Channel 2.Capture period", + "classId": 7, + "obis": "0.2.24.3.0.255", + "obisFormatted": "0-2:24.3.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 2", + "value": 3600, + "timestamp": "2025-11-01T09:37:54.285849", + "status": "success" + }, + { + "key": "Load Profile.Channel 2.Sort method", + "classId": 7, + "obis": "0.2.24.3.0.255", + "obisFormatted": "0-2:24.3.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 2", + "value": 1, + "timestamp": "2025-11-01T09:37:54.912821", + "status": "success" + }, + { + "key": "Load Profile.Channel 2.Sort object", + "classId": 7, + "obis": "0.2.24.3.0.255", + "obisFormatted": "0-2:24.3.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 2", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:55.522154", + "status": "success" + }, + { + "key": "Load Profile.Channel 2.Entries in use", + "classId": 7, + "obis": "0.2.24.3.0.255", + "obisFormatted": "0-2:24.3.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:37:56.104135", + "status": "success" + }, + { + "key": "Load Profile.Channel 2.Profile entries", + "classId": 7, + "obis": "0.2.24.3.0.255", + "obisFormatted": "0-2:24.3.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 2", + "value": 240, + "timestamp": "2025-11-01T09:37:56.747511", + "status": "success" + }, + { + "key": "Load Profile.AMR Profile Status Code M-BUS - Hourly.AMR Profile Status Code M-BUS - Hourly", + "classId": 1, + "obis": "0.3.96.10.3.255", + "obisFormatted": "0-3:96.10.3.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Hourly", + "controlName": "AMR Profile Status Code M-BUS - Hourly", + "value": 6, + "timestamp": "2025-11-01T09:37:57.446113", + "status": "success" + }, + { + "key": "Load Profile.Channel 3.Buffer", + "classId": 7, + "obis": "0.3.24.3.0.255", + "obisFormatted": "0-3:24.3.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 3", + "value": {}, + "timestamp": "2025-11-01T09:37:58.066407", + "status": "success" + }, + { + "key": "Load Profile.Channel 3.Capture objects", + "classId": 7, + "obis": "0.3.24.3.0.255", + "obisFormatted": "0-3:24.3.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 3", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:37:58.715628", + "status": "success" + }, + { + "key": "Load Profile.Channel 3.Capture period", + "classId": 7, + "obis": "0.3.24.3.0.255", + "obisFormatted": "0-3:24.3.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 3", + "value": 3600, + "timestamp": "2025-11-01T09:37:59.316155", + "status": "success" + }, + { + "key": "Load Profile.Channel 3.Sort method", + "classId": 7, + "obis": "0.3.24.3.0.255", + "obisFormatted": "0-3:24.3.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 3", + "value": 1, + "timestamp": "2025-11-01T09:37:59.927887", + "status": "success" + }, + { + "key": "Load Profile.Channel 3.Sort object", + "classId": 7, + "obis": "0.3.24.3.0.255", + "obisFormatted": "0-3:24.3.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 3", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:38:00.587828", + "status": "success" + }, + { + "key": "Load Profile.Channel 3.Entries in use", + "classId": 7, + "obis": "0.3.24.3.0.255", + "obisFormatted": "0-3:24.3.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:38:01.191832", + "status": "success" + }, + { + "key": "Load Profile.Channel 3.Profile entries", + "classId": 7, + "obis": "0.3.24.3.0.255", + "obisFormatted": "0-3:24.3.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 3", + "value": 240, + "timestamp": "2025-11-01T09:38:01.792820", + "status": "success" + }, + { + "key": "Load Profile.AMR Profile Status Code M-BUS - Hourly.AMR Profile Status Code M-BUS - Hourly", + "classId": 1, + "obis": "0.4.96.10.3.255", + "obisFormatted": "0-4:96.10.3.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code M-BUS - Hourly", + "controlName": "AMR Profile Status Code M-BUS - Hourly", + "value": 6, + "timestamp": "2025-11-01T09:38:02.477472", + "status": "success" + }, + { + "key": "Load Profile.Channel 4.Buffer", + "classId": 7, + "obis": "0.4.24.3.0.255", + "obisFormatted": "0-4:24.3.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Channel 4", + "value": {}, + "timestamp": "2025-11-01T09:38:03.078063", + "status": "success" + }, + { + "key": "Load Profile.Channel 4.Capture objects", + "classId": 7, + "obis": "0.4.24.3.0.255", + "obisFormatted": "0-4:24.3.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Channel 4", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "timestamp": "2025-11-01T09:38:03.731133", + "status": "success" + }, + { + "key": "Load Profile.Channel 4.Capture period", + "classId": 7, + "obis": "0.4.24.3.0.255", + "obisFormatted": "0-4:24.3.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 4", + "value": 3600, + "timestamp": "2025-11-01T09:38:04.317263", + "status": "success" + }, + { + "key": "Load Profile.Channel 4.Sort method", + "classId": 7, + "obis": "0.4.24.3.0.255", + "obisFormatted": "0-4:24.3.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Channel 4", + "value": 1, + "timestamp": "2025-11-01T09:38:04.933878", + "status": "success" + }, + { + "key": "Load Profile.Channel 4.Sort object", + "classId": 7, + "obis": "0.4.24.3.0.255", + "obisFormatted": "0-4:24.3.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Channel 4", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:38:05.582001", + "status": "success" + }, + { + "key": "Load Profile.Channel 4.Entries in use", + "classId": 7, + "obis": "0.4.24.3.0.255", + "obisFormatted": "0-4:24.3.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:38:06.208903", + "status": "success" + }, + { + "key": "Load Profile.Channel 4.Profile entries", + "classId": 7, + "obis": "0.4.24.3.0.255", + "obisFormatted": "0-4:24.3.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Channel 4", + "value": 240, + "timestamp": "2025-11-01T09:38:06.842396", + "status": "success" + } + ], + "summary": { + "total": 47, + "success": 47, + "failed": 0 + } + }, + "Definable Load Profile": { + "sheet_name": "Definable Load Profile", + "objects": [ + { + "key": "Definable Load Profile.Definable Load Profile-72.Buffer", + "classId": 7, + "obis": "0.1.94.31.6.255", + "obisFormatted": "0-1:94.31.6.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "Definable Load Profile-72", + "value": { + "0": [ + "2025-10-20 01 17:20:00 00,FF88,80", + 230, + 230, + 230, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "1": [ + "2025-10-20 01 17:30:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "2": [ + "2025-10-20 01 17:40:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "3": [ + "2025-10-20 01 17:50:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "4": [ + "2025-10-20 01 18:00:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "5": [ + "2025-10-20 01 18:10:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "6": [ + "2025-10-20 01 18:20:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "7": [ + "2025-10-21 02 09:00:00 00,FF88,80", + 230, + 230, + 229, + 230, + 229, + 230, + 0, + 0, + 0 + ], + "8": [ + "2025-10-21 02 09:10:00 00,FF88,80", + 230, + 230, + 0, + 141, + 0, + 141, + 0, + 0, + 0 + ], + "9": [ + "2025-10-21 02 09:20:00 00,FF88,80", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "10": [ + "2025-10-21 02 09:30:00 00,FF88,80", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "11": [ + "2025-10-21 02 09:40:00 00,FF88,80", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "12": [ + "2025-10-21 02 09:50:00 00,FF88,80", + 230, + 230, + 229, + 29, + 230, + 29, + 0, + 0, + 0 + ], + "13": [ + "2025-10-21 02 10:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "14": [ + "2025-10-21 02 10:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "15": [ + "2025-10-21 02 10:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "16": [ + "2025-10-21 02 10:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "17": [ + "2025-10-21 02 10:40:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "18": [ + "2025-10-21 02 10:50:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "19": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "20": [ + "2025-10-21 02 10:50:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "21": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "22": [ + "2025-10-25 06 00:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "23": [ + "2025-10-25 06 00:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "24": [ + "2025-10-25 06 00:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "25": [ + "2025-10-25 06 00:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 5, + 4, + 5 + ], + "26": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "27": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 5, + 4, + 5 + ], + "28": [ + "2025-10-21 02 12:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "29": [ + "2025-10-21 02 12:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "30": [ + "2025-10-21 02 12:20:00 00,FF88,80", + 230, + 230, + 230, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "31": [ + "2025-10-21 02 12:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "32": [ + "2025-10-21 02 13:40:00 00,FF88,80", + 230, + 230, + 229, + 229, + 229, + 230, + 0, + 0, + 0 + ], + "33": [ + "2025-10-21 02 13:50:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "34": [ + "2025-10-21 02 14:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "35": [ + "2025-10-21 02 14:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "36": [ + "2025-10-21 02 14:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "37": [ + "2025-10-21 02 14:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 4 + ], + "38": [ + "2025-10-21 02 14:40:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 5, + 4, + 5 + ], + "39": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "40": [ + "2025-11-01 06 00:20:00 00,FFC4,00", + 230, + 230, + 230, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "41": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 230, + 230, + 230, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "42": [ + "2025-11-01 06 00:40:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "43": [ + "2025-12-01 01 00:10:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "44": [ + "2025-12-01 01 00:20:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "45": [ + "2025-12-01 01 00:30:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "46": [ + "2025-12-01 01 00:40:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "47": [ + "2025-12-01 01 00:50:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "48": [ + "2025-12-01 01 01:00:00 00,FFC4,00", + 230, + 230, + 230, + 229, + 230, + 230, + 5, + 4, + 5 + ], + "49": [ + "2026-01-01 04 00:10:00 00,FFC4,00", + 230, + 230, + 230, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "50": [ + "2026-01-01 04 00:20:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "51": [ + "2026-02-01 07 00:10:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "52": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 230, + 230, + 229, + 230, + 230, + 230, + 4, + 4, + 4 + ], + "53": [ + "2026-03-01 07 00:10:00 00,FFC4,00", + 230, + 230, + 229, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "54": [ + "2026-03-01 07 00:20:00 00,FFC4,00", + 230, + 230, + 230, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "55": [ + "2026-03-01 07 00:30:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "56": [ + "2026-03-01 07 00:40:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 0, + 0, + 0 + ], + "57": [ + "2026-03-01 07 00:50:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 0, + 0, + 0 + ], + "58": [ + "2026-03-01 07 01:00:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 0, + 0, + 0 + ], + "59": [ + "2026-03-01 07 01:10:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 0, + 0, + 0 + ], + "60": [ + "2026-03-01 07 01:20:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "61": [ + "2026-03-01 07 01:30:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "62": [ + "2026-04-01 03 00:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "63": [ + "2026-04-01 03 00:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "64": [ + "2026-04-01 03 00:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "65": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "66": [ + "2026-05-01 05 00:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "67": [ + "2026-05-01 05 00:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "68": [ + "2026-05-01 05 00:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "69": [ + "2026-05-01 05 13:50:00 00,FF88,80", + 230, + 230, + 229, + 229, + 229, + 229, + 0, + 0, + 0 + ], + "70": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 229, + 229, + 5, + 4, + 5 + ], + "71": [ + "2026-06-01 01 07:30:00 00,FF88,80", + 230, + 226, + 229, + 173, + 229, + 174, + 0, + 0, + 0 + ], + "72": [ + "2025-10-22 03 17:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "73": [ + "2025-10-22 03 17:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "74": [ + "2025-10-22 03 17:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "75": [ + "2025-10-22 03 17:40:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "76": [ + "2025-10-22 03 17:50:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "77": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "78": [ + "2025-11-01 06 00:20:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "79": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "80": [ + "2025-11-01 06 00:40:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "81": [ + "2025-11-01 06 00:50:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "82": [ + "2025-11-01 06 01:00:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "83": [ + "2025-11-01 06 01:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "84": [ + "2025-11-01 06 01:20:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "85": [ + "2025-11-01 06 01:30:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "86": [ + "2025-11-01 06 15:00:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 229, + 230, + 0, + 0, + 0 + ], + "87": [ + "2025-11-01 06 15:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 229, + 229, + 0, + 0, + 0 + ], + "88": [ + "2025-11-01 06 15:20:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 229, + 0, + 0, + 0 + ], + "89": [ + "2025-11-01 06 15:30:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "90": [ + "2025-11-01 06 15:40:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "91": [ + "2025-11-01 06 15:50:00 00,FFC4,00", + 230, + 229, + 230, + 229, + 230, + 229, + 0, + 0, + 0 + ], + "92": [ + "2025-11-01 06 16:00:00 00,FFC4,00", + 230, + 230, + 229, + 210, + 230, + 207, + 0, + 0, + 0 + ], + "93": [ + "2025-11-01 06 16:10:00 00,FFC4,00", + 229, + 229, + 229, + 229, + 229, + 229, + 49, + 49, + 49 + ], + "94": [ + "2025-11-01 06 16:20:00 00,FFC4,00", + 229, + 229, + 229, + 229, + 229, + 230, + 49, + 49, + 49 + ], + "95": [ + "2025-11-01 06 16:30:00 00,FFC4,00", + 229, + 229, + 230, + 229, + 230, + 230, + 49, + 49, + 49 + ], + "96": [ + "2025-11-01 06 16:40:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 0, + 0, + 0 + ], + "97": [ + "2025-11-08 06 15:30:00 00,FFC4,00", + 230, + 230, + 229, + 230, + 229, + 230, + 0, + 0, + 0 + ], + "98": [ + "2025-11-08 06 15:40:00 00,FFC4,00", + 230, + 230, + 0, + 42, + 0, + 42, + 0, + 0, + 0 + ], + "99": [ + "2025-11-08 06 15:50:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "100": [ + "2025-11-08 06 16:00:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "101": [ + "2025-11-08 06 16:10:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "102": [ + "2025-11-08 06 16:20:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "103": [ + "2025-11-08 06 16:40:00 00,FFC4,00", + 230, + 230, + 229, + 110, + 230, + 110, + 0, + 0, + 0 + ], + "104": [ + "2025-11-08 06 16:50:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "105": [ + "2025-11-08 06 17:00:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "106": [ + "2025-11-08 06 17:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "107": [ + "2025-11-08 06 17:20:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "108": [ + "2025-11-08 06 17:30:00 00,FFC4,00", + 230, + 230, + 0, + 204, + 0, + 205, + 0, + 0, + 0 + ], + "109": [ + "2025-11-08 06 17:40:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "110": [ + "2025-11-08 06 17:50:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "111": [ + "2025-11-08 06 18:00:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "112": [ + "2025-11-08 06 18:10:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "113": [ + "2025-11-08 06 18:20:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "114": [ + "2025-11-08 06 18:30:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "115": [ + "2025-11-08 06 18:40:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "116": [ + "2025-11-08 06 18:50:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "117": [ + "2025-11-08 06 19:00:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "118": [ + "2025-11-08 06 19:10:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "119": [ + "2025-11-08 06 19:20:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "120": [ + "2025-11-08 06 19:30:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "121": [ + "2025-11-08 06 19:40:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "122": [ + "2025-11-08 06 19:50:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "123": [ + "2025-11-08 06 20:00:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "124": [ + "2025-11-08 06 20:10:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "125": [ + "2025-11-08 06 20:20:00 00,FFC4,00", + 230, + 230, + 229, + 177, + 230, + 177, + 0, + 0, + 0 + ], + "126": [ + "2025-11-08 06 20:30:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "127": [ + "2025-11-08 06 20:40:00 00,FFC4,00", + 230, + 230, + 229, + 228, + 230, + 229, + 0, + 0, + 0 + ], + "128": [ + "2025-11-08 06 20:50:00 00,FFC4,00", + 234, + 232, + 234, + 232, + 234, + 232, + 0, + 0, + 0 + ], + "129": [ + "2025-11-08 06 21:00:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 0, + 0, + 0 + ], + "130": [ + "2025-11-08 06 21:10:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 0, + 0, + 0 + ], + "131": [ + "2025-11-08 06 21:20:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 0, + 0, + 0 + ], + "132": [ + "2025-11-08 06 21:30:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 0, + 0, + 0 + ], + "133": [ + "2025-11-08 06 21:40:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 4, + 4, + 4 + ], + "134": [ + "2025-11-08 06 21:50:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 4, + 4, + 4 + ], + "135": [ + "2025-11-08 06 22:00:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 4, + 4, + 4 + ], + "136": [ + "2025-11-08 06 22:10:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 4, + 4, + 4 + ], + "137": [ + "2025-11-09 07 14:40:00 00,FFC4,00", + 230, + 231, + 229, + 231, + 229, + 231, + 0, + 0, + 0 + ], + "138": [ + "2025-11-09 07 14:50:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 229, + 229, + 0, + 0, + 0 + ], + "139": [ + "2025-11-09 07 15:00:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 229, + 0, + 0, + 0 + ], + "140": [ + "2025-11-09 07 15:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 229, + 0, + 0, + 0 + ], + "141": [ + "2025-11-09 07 20:10:00 00,FFC4,00", + 215, + 220, + 0, + 74, + 0, + 74, + 0, + 0, + 0 + ], + "142": [ + "2025-11-09 07 20:20:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "143": [ + "2025-11-09 07 20:30:00 00,FFC4,00", + 215, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "144": [ + "2025-11-09 07 20:50:00 00,FFC4,00", + 215, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "145": [ + "2025-11-09 07 21:00:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "146": [ + "2025-11-09 07 21:10:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "147": [ + "2025-11-09 07 21:20:00 00,FFC4,00", + 215, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "148": [ + "2025-11-09 07 21:30:00 00,FFC4,00", + 216, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "149": [ + "2025-11-09 07 21:40:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "150": [ + "2025-11-09 07 21:50:00 00,FFC4,00", + 215, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "151": [ + "2025-11-09 07 22:00:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "152": [ + "2025-11-09 07 22:10:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "153": [ + "2025-11-09 07 22:20:00 00,FFC4,00", + 215, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "154": [ + "2025-11-09 07 22:30:00 00,FFC4,00", + 215, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "155": [ + "2025-11-09 07 22:40:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "156": [ + "2025-11-09 07 22:50:00 00,FFC4,00", + 215, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "157": [ + "2025-11-09 07 23:00:00 00,FFC4,00", + 215, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "158": [ + "2025-11-09 07 23:10:00 00,FFC4,00", + 216, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "159": [ + "2025-11-10 01 00:10:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "160": [ + "2025-11-10 01 00:20:00 00,FFC4,00", + 217, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "161": [ + "2025-11-10 01 00:30:00 00,FFC4,00", + 217, + 217, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "162": [ + "2025-11-10 01 15:40:00 00,FFC4,00", + 215, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:38:32.936021", + "status": "success" + }, + { + "key": "Definable Load Profile.Definable Load Profile-72.Capture objects", + "classId": 7, + "obis": "0.1.94.31.6.255", + "obisFormatted": "0-1:94.31.6.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "Definable Load Profile-72", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:31.7.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:51.7.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:71.7.0.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:38:34.025312", + "status": "success" + }, + { + "key": "Definable Load Profile.Definable Load Profile-72.Capture period", + "classId": 7, + "obis": "0.1.94.31.6.255", + "obisFormatted": "0-1:94.31.6.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Definable Load Profile-72", + "value": 600, + "timestamp": "2025-11-01T09:38:34.635048", + "status": "success" + }, + { + "key": "Definable Load Profile.Definable Load Profile-72.Sort method", + "classId": 7, + "obis": "0.1.94.31.6.255", + "obisFormatted": "0-1:94.31.6.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "Definable Load Profile-72", + "value": 1, + "timestamp": "2025-11-01T09:38:35.217554", + "status": "success" + }, + { + "key": "Definable Load Profile.Definable Load Profile-72.Sort object", + "classId": 7, + "obis": "0.1.94.31.6.255", + "obisFormatted": "0-1:94.31.6.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "Definable Load Profile-72", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:38:35.843241", + "status": "success" + }, + { + "key": "Definable Load Profile.Definable Load Profile-72.Entries in use", + "classId": 7, + "obis": "0.1.94.31.6.255", + "obisFormatted": "0-1:94.31.6.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "Definable Load Profile-72", + "value": 163, + "timestamp": "2025-11-01T09:38:36.428558", + "status": "success" + }, + { + "key": "Definable Load Profile.Definable Load Profile-72.Profile entries", + "classId": 7, + "obis": "0.1.94.31.6.255", + "obisFormatted": "0-1:94.31.6.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "Definable Load Profile-72", + "value": 960, + "timestamp": "2025-11-01T09:38:37.058747", + "status": "success" + } + ], + "summary": { + "total": 7, + "success": 7, + "failed": 0 + } + }, + "Quality Profile": { + "sheet_name": "Quality Profile", + "objects": [ + { + "key": "Quality Profile.AMR Profile Status Code E meter - Power Quality profile 1 status.AMR Profile Status Code E meter - Power Quality profile 1 status", + "classId": 1, + "obis": "0.0.96.10.8.255", + "obisFormatted": "0-0:96.10.8.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code E meter - Power Quality profile 1 status", + "controlName": "AMR Profile Status Code E meter - Power Quality profile 1 status", + "value": 128, + "timestamp": "2025-11-01T09:38:37.838247", + "status": "success" + }, + { + "key": "Quality Profile.15 Minutes Power Quality Profile.Buffer", + "classId": 7, + "obis": "1.0.99.1.1.255", + "obisFormatted": "1-0:99.1.1.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "15 Minutes Power Quality Profile", + "value": { + "0": [ + "2025-09-22 01 11:15:00 00,FF88,80", + 13, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "2025-09-22 01 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "2": [ + "2025-09-22 01 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "3": [ + "2025-09-22 01 12:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "4": [ + "2025-09-22 01 12:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "5": [ + "2025-09-22 01 12:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "6": [ + "2025-09-22 01 15:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "7": [ + "2025-09-22 01 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "8": [ + "2025-09-22 01 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "9": [ + "2025-09-22 01 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "10": [ + "2025-09-22 01 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "11": [ + "2025-09-22 01 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "12": [ + "2025-09-22 01 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "13": [ + "2025-09-22 01 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "14": [ + "2025-09-22 01 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "15": [ + "2025-09-22 01 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "16": [ + "2025-09-22 01 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "17": [ + "2025-09-22 01 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "18": [ + "2025-09-22 01 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "19": [ + "2025-09-22 01 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "20": [ + "2025-09-22 01 21:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "21": [ + "2025-09-22 01 22:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "22": [ + "2025-09-22 01 22:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "23": [ + "2025-09-22 01 23:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "24": [ + "2025-09-22 01 23:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "25": [ + "2025-09-22 01 23:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "26": [ + "2025-09-23 02 00:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "27": [ + "2025-09-23 02 00:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "28": [ + "2025-09-23 02 01:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "29": [ + "2025-09-23 02 02:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "30": [ + "2025-09-23 02 02:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "31": [ + "2025-09-23 02 02:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "32": [ + "2025-09-23 02 03:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "33": [ + "2025-09-23 02 03:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "34": [ + "2025-09-23 02 04:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "35": [ + "2025-09-23 02 04:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "36": [ + "2025-09-23 02 04:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "37": [ + "2025-09-23 02 04:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "38": [ + "2025-09-23 02 05:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "39": [ + "2025-09-23 02 05:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "40": [ + "2025-09-23 02 06:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "41": [ + "2025-09-23 02 06:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "42": [ + "2025-09-23 02 07:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "43": [ + "2025-09-23 02 07:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "44": [ + "2025-09-23 02 08:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "45": [ + "2025-09-23 02 08:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "46": [ + "2025-09-23 02 08:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "47": [ + "2025-09-23 02 09:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "48": [ + "2025-09-23 02 09:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "49": [ + "2025-09-23 02 09:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "50": [ + "2025-09-23 02 10:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "51": [ + "2025-09-23 02 10:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "52": [ + "2025-09-23 02 11:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "53": [ + "2025-09-24 03 09:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "54": [ + "2025-09-24 03 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "55": [ + "2025-09-24 03 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "56": [ + "2025-09-24 03 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "57": [ + "2025-09-24 03 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "58": [ + "2025-09-24 03 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "59": [ + "2025-09-24 03 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "60": [ + "2025-09-24 03 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "61": [ + "2025-09-24 03 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "62": [ + "2025-09-24 03 11:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "63": [ + "2025-09-24 03 12:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "64": [ + "2025-09-24 03 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "65": [ + "2025-09-24 03 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "66": [ + "2025-09-24 03 13:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "67": [ + "2025-09-24 03 14:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "68": [ + "2025-09-24 03 15:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "69": [ + "2025-09-24 03 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "70": [ + "2025-09-24 03 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "71": [ + "2025-09-24 03 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "72": [ + "2025-09-24 03 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "73": [ + "2025-09-24 03 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "74": [ + "2025-09-24 03 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "75": [ + "2025-09-24 03 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "76": [ + "2025-09-24 03 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "77": [ + "2025-09-24 03 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "78": [ + "2025-09-24 03 18:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "79": [ + "2025-09-24 03 19:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "80": [ + "2025-09-24 03 19:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "81": [ + "2025-09-24 03 19:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "82": [ + "2025-09-24 03 19:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "83": [ + "2025-09-24 03 20:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "84": [ + "2025-09-24 03 20:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "85": [ + "2025-09-24 03 20:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "86": [ + "2025-09-25 04 08:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "87": [ + "2025-09-25 04 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "88": [ + "2025-09-25 04 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "89": [ + "2025-09-25 04 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "90": [ + "2025-09-25 04 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "91": [ + "2025-09-25 04 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "92": [ + "2025-09-25 04 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "93": [ + "2025-09-25 04 11:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "94": [ + "2025-09-25 04 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "95": [ + "2025-09-25 04 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "96": [ + "2025-09-25 04 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "97": [ + "2025-09-25 04 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "98": [ + "2025-09-25 04 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "99": [ + "2025-09-25 04 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "100": [ + "2025-09-25 04 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "101": [ + "2025-09-25 04 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "102": [ + "2025-09-25 04 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "103": [ + "2025-09-25 04 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "104": [ + "2025-09-25 04 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "105": [ + "2025-09-25 04 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "106": [ + "2025-09-25 04 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "107": [ + "2025-09-25 04 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "108": [ + "2025-09-25 04 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "109": [ + "2025-09-25 04 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "110": [ + "2025-09-25 04 23:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "111": [ + "2025-09-25 04 23:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "112": [ + "2025-09-26 05 02:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "113": [ + "2025-09-26 05 02:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "114": [ + "2025-09-26 05 02:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "115": [ + "2025-09-26 05 05:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "116": [ + "2025-09-26 05 05:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "117": [ + "2025-09-26 05 05:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "118": [ + "2025-09-26 05 05:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "119": [ + "2025-09-26 05 08:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "120": [ + "2025-09-26 05 08:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "121": [ + "2025-09-27 06 10:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "122": [ + "2025-09-27 06 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "123": [ + "2025-09-27 06 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "124": [ + "2025-09-27 06 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "125": [ + "2025-09-27 06 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "126": [ + "2025-09-27 06 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "127": [ + "2025-09-27 06 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "128": [ + "2025-09-27 06 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "129": [ + "2025-09-27 06 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "130": [ + "2025-09-27 06 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "131": [ + "2025-09-27 06 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "132": [ + "2025-09-27 06 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "133": [ + "2025-09-27 06 13:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "134": [ + "2025-09-27 06 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "135": [ + "2025-09-27 06 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "136": [ + "2025-09-27 06 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "137": [ + "2025-09-27 06 15:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "138": [ + "2025-09-27 06 15:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "139": [ + "2025-09-27 06 18:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "140": [ + "2025-09-27 06 18:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "141": [ + "2025-09-27 06 18:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "142": [ + "2025-09-27 06 19:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "143": [ + "2025-09-27 06 19:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "144": [ + "2025-09-27 06 19:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "145": [ + "2025-09-27 06 20:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "146": [ + "2025-09-27 06 21:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "147": [ + "2025-09-27 06 21:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "148": [ + "2025-09-27 06 21:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "149": [ + "2025-09-27 06 22:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "150": [ + "2025-09-27 06 22:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "151": [ + "2025-09-27 06 22:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "152": [ + "2025-09-27 06 22:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "153": [ + "2025-09-27 06 23:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "154": [ + "2025-09-27 06 23:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "155": [ + "2025-09-28 07 00:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "156": [ + "2025-09-28 07 00:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "157": [ + "2025-09-28 07 01:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "158": [ + "2025-09-28 07 01:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "159": [ + "2025-09-28 07 01:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "160": [ + "2025-09-28 07 02:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "161": [ + "2025-09-28 07 02:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "162": [ + "2025-09-28 07 03:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "163": [ + "2025-09-28 07 03:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "164": [ + "2025-09-28 07 04:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "165": [ + "2025-09-28 07 04:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "166": [ + "2025-09-28 07 04:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "167": [ + "2025-09-28 07 05:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "168": [ + "2025-09-28 07 05:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "169": [ + "2025-09-28 07 06:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "170": [ + "2025-09-28 07 06:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "171": [ + "2025-09-28 07 07:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "172": [ + "2025-09-28 07 07:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "173": [ + "2025-09-28 07 07:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "174": [ + "2025-09-28 07 08:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "175": [ + "2025-09-28 07 09:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "176": [ + "2025-09-28 07 09:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "177": [ + "2025-09-28 07 10:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "178": [ + "2025-09-28 07 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "179": [ + "2025-09-28 07 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "180": [ + "2025-09-28 07 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "181": [ + "2025-09-28 07 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "182": [ + "2025-09-28 07 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "183": [ + "2025-09-28 07 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "184": [ + "2025-09-28 07 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "185": [ + "2025-09-28 07 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "186": [ + "2025-09-28 07 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "187": [ + "2025-09-28 07 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "188": [ + "2025-09-28 07 13:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "189": [ + "2025-09-28 07 13:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "190": [ + "2025-09-28 07 15:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "191": [ + "2025-09-28 07 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "192": [ + "2025-09-28 07 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "193": [ + "2025-09-28 07 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "194": [ + "2025-09-28 07 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "195": [ + "2025-09-28 07 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "196": [ + "2025-09-28 07 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "197": [ + "2025-09-28 07 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "198": [ + "2025-09-28 07 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "199": [ + "2025-09-28 07 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "200": [ + "2025-09-28 07 17:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "201": [ + "2025-09-28 07 18:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "202": [ + "2025-09-28 07 18:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "203": [ + "2025-09-29 01 15:00:00 00,FF88,80", + 141, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "204": [ + "2025-09-29 01 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "205": [ + "2025-09-29 01 15:30:00 00,FF88,80", + 8, + 502, + 0, + 0, + 0, + 499, + 0, + 0, + 0, + 498, + 0, + 0, + 0 + ], + "206": [ + "2025-09-29 01 16:15:00 00,FF88,80", + 141, + 1083, + 112, + 1, + 0, + 1198, + 0, + 0, + 0, + 1205, + 0, + 0, + 0 + ], + "207": [ + "2025-09-30 02 17:00:00 00,FF88,81", + 142, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "208": [ + "2025-09-30 02 17:15:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "209": [ + "2025-09-30 02 17:30:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "210": [ + "2025-09-30 02 17:45:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "211": [ + "2025-09-30 02 18:00:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "212": [ + "2025-09-30 02 18:15:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "213": [ + "2025-09-30 02 18:30:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "214": [ + "2025-09-30 02 18:45:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "215": [ + "2025-10-20 01 11:45:00 00,FF88,80", + 46, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "216": [ + "2025-10-20 01 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "217": [ + "2025-10-20 01 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "218": [ + "2025-10-20 01 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "219": [ + "2025-10-20 01 15:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "220": [ + "2025-10-20 01 16:00:00 00,FF88,80", + 13, + 908, + 0, + 0, + 0, + 908, + 0, + 0, + 0, + 908, + 0, + 0, + 0 + ], + "221": [ + "2025-10-20 01 16:15:00 00,FF88,80", + 8, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "222": [ + "2025-10-20 01 16:30:00 00,FF88,80", + 8, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "223": [ + "2025-10-20 01 16:45:00 00,FF88,80", + 8, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "224": [ + "2025-10-20 01 17:00:00 00,FF88,80", + 8, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "225": [ + "2025-10-20 01 17:30:00 00,FF88,80", + 44, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "226": [ + "2025-10-20 01 17:45:00 00,FF88,80", + 44, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "227": [ + "2025-10-20 01 18:00:00 00,FF88,80", + 44, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "228": [ + "2025-10-21 02 09:00:00 00,FF88,80", + 172, + 1140, + 0, + 0, + 0, + 1139, + 0, + 0, + 0, + 1140, + 0, + 0, + 0 + ], + "229": [ + "2025-10-21 02 09:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "230": [ + "2025-10-21 02 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "231": [ + "2025-10-21 02 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "232": [ + "2025-10-21 02 10:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "233": [ + "2025-10-21 02 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "234": [ + "2025-10-21 02 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "235": [ + "2025-10-21 02 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "236": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "237": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 44, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "238": [ + "2025-10-25 06 00:00:00 00,FF88,80", + 44, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "239": [ + "2025-10-25 06 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "240": [ + "2025-10-25 06 00:30:00 00,FF88,80", + 8, + 593, + 0, + 0, + 0, + 593, + 0, + 0, + 0, + 593, + 0, + 0, + 0 + ], + "241": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "242": [ + "2025-10-21 02 12:00:00 00,FF88,80", + 44, + 1149, + 0, + 0, + 0, + 1148, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "243": [ + "2025-10-21 02 12:15:00 00,FF88,80", + 8, + 4, + 0, + 0, + 0, + 4, + 0, + 0, + 0, + 4, + 0, + 0, + 0 + ], + "244": [ + "2025-10-21 02 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "245": [ + "2025-10-21 02 13:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "246": [ + "2025-10-21 02 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "247": [ + "2025-10-21 02 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "248": [ + "2025-10-21 02 14:30:00 00,FF88,80", + 8, + 166, + 0, + 0, + 0, + 167, + 0, + 0, + 0, + 166, + 0, + 0, + 0 + ], + "249": [ + "2025-11-01 06 00:15:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1148, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "250": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "251": [ + "2025-11-01 06 00:45:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "252": [ + "2025-12-01 01 00:15:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "253": [ + "2025-12-01 01 00:30:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "254": [ + "2025-12-01 01 00:45:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "255": [ + "2025-12-01 01 01:00:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "256": [ + "2026-01-01 04 00:15:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "257": [ + "2026-02-01 07 00:15:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "258": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1150, + 0, + 0, + 0 + ], + "259": [ + "2026-03-01 07 00:15:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "260": [ + "2026-03-01 07 00:30:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1150, + 0, + 0, + 0 + ], + "261": [ + "2026-03-01 07 00:45:00 00,FFC4,00", + 0, + 615, + 0, + 0, + 0, + 615, + 0, + 0, + 0, + 615, + 0, + 0, + 0 + ], + "262": [ + "2026-03-01 07 01:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "263": [ + "2026-03-01 07 01:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "264": [ + "2026-03-01 07 01:30:00 00,FFC4,00", + 5, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "265": [ + "2026-04-01 03 00:15:00 00,FF88,80", + 44, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "266": [ + "2026-04-01 03 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "267": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 44, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "268": [ + "2026-05-01 05 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "269": [ + "2026-05-01 05 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "270": [ + "2026-05-01 05 13:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "271": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 44, + 77, + 0, + 0, + 0, + 77, + 0, + 0, + 0, + 77, + 0, + 0, + 0 + ], + "272": [ + "2026-06-01 01 07:30:00 00,FF88,80", + 141, + 854, + 0, + 0, + 0, + 853, + 0, + 0, + 0, + 853, + 0, + 0, + 0 + ], + "273": [ + "2025-10-22 03 17:15:00 00,FF88,80", + 44, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "274": [ + "2025-10-22 03 17:30:00 00,FF88,80", + 8, + 11, + 0, + 0, + 0, + 11, + 0, + 0, + 0, + 11, + 0, + 0, + 0 + ], + "275": [ + "2025-10-22 03 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "276": [ + "2025-11-01 06 00:15:00 00,FFC4,00", + 36, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "277": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "278": [ + "2025-11-01 06 00:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "279": [ + "2025-11-01 06 01:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "280": [ + "2025-11-01 06 01:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "281": [ + "2025-11-01 06 01:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "282": [ + "2025-11-01 06 15:00:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "283": [ + "2025-11-01 06 15:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "284": [ + "2025-11-01 06 15:30:00 00,FFC4,00", + 0, + 116, + 0, + 0, + 0, + 116, + 0, + 0, + 0, + 116, + 0, + 0, + 0 + ], + "285": [ + "2025-11-01 06 15:45:00 00,FFC4,00", + 0, + 123, + 0, + 0, + 0, + 127, + 0, + 0, + 0, + 130, + 0, + 0, + 0 + ], + "286": [ + "2025-11-01 06 16:00:00 00,FFC4,00", + 0, + 1480, + 0, + 0, + 1, + 1477, + 0, + 0, + 1, + 1476, + 0, + 0, + 2 + ], + "287": [ + "2025-11-01 06 16:15:00 00,FFC4,00", + 0, + 6849, + 0, + 0, + 9, + 6857, + 0, + 0, + 8, + 6912, + 0, + 0, + 5 + ], + "288": [ + "2025-11-01 06 16:30:00 00,FFC4,00", + 0, + 7963, + 0, + 1, + 11, + 7983, + 0, + 1, + 9, + 7953, + 0, + 1, + 6 + ], + "289": [ + "2025-11-08 06 15:30:00 00,FFC4,00", + 133, + 3113, + 0, + 0, + 5, + 3116, + 0, + 0, + 4, + 3119, + 0, + 0, + 3 + ], + "290": [ + "2025-11-08 06 15:45:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "291": [ + "2025-11-08 06 16:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "292": [ + "2025-11-08 06 16:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "293": [ + "2025-11-08 06 16:45:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "294": [ + "2025-11-08 06 17:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "295": [ + "2025-11-08 06 17:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "296": [ + "2025-11-08 06 17:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "297": [ + "2025-11-08 06 17:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "298": [ + "2025-11-08 06 18:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "299": [ + "2025-11-08 06 18:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "300": [ + "2025-11-08 06 18:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "301": [ + "2025-11-08 06 18:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "302": [ + "2025-11-08 06 19:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "303": [ + "2025-11-08 06 19:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "304": [ + "2025-11-08 06 19:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "305": [ + "2025-11-08 06 19:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "306": [ + "2025-11-08 06 20:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "307": [ + "2025-11-08 06 20:15:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "308": [ + "2025-11-08 06 20:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "309": [ + "2025-11-08 06 20:45:00 00,FFC4,00", + 0, + 77, + 0, + 0, + 0, + 68, + 0, + 0, + 0, + 72, + 0, + 0, + 0 + ], + "310": [ + "2025-11-08 06 21:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "311": [ + "2025-11-08 06 21:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "312": [ + "2025-11-08 06 21:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "313": [ + "2025-11-08 06 21:45:00 00,FFC4,00", + 0, + 816, + 0, + 0, + 0, + 816, + 0, + 0, + 0, + 817, + 0, + 0, + 0 + ], + "314": [ + "2025-11-08 06 22:00:00 00,FFC4,00", + 0, + 1147, + 0, + 0, + 0, + 1147, + 0, + 0, + 0, + 1148, + 0, + 0, + 0 + ], + "315": [ + "2025-11-08 06 22:15:00 00,FFC4,00", + 0, + 1073, + 0, + 0, + 0, + 1073, + 0, + 0, + 0, + 1073, + 0, + 0, + 0 + ], + "316": [ + "2025-11-09 07 14:45:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "317": [ + "2025-11-09 07 15:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "318": [ + "2025-11-09 07 20:15:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "319": [ + "2025-11-09 07 20:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "320": [ + "2025-11-09 07 21:00:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "321": [ + "2025-11-09 07 21:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "322": [ + "2025-11-09 07 21:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "323": [ + "2025-11-09 07 21:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "324": [ + "2025-11-09 07 22:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "325": [ + "2025-11-09 07 22:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "326": [ + "2025-11-09 07 22:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "327": [ + "2025-11-09 07 22:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "328": [ + "2025-11-09 07 23:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "329": [ + "2025-11-10 01 00:15:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "330": [ + "2025-11-10 01 00:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:39:43.317298", + "status": "success" + }, + { + "key": "Quality Profile.15 Minutes Power Quality Profile.Capture objects", + "classId": 7, + "obis": "1.0.99.1.1.255", + "obisFormatted": "1-0:99.1.1.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "15 Minutes Power Quality Profile", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:39:44.739756", + "status": "success" + }, + { + "key": "Quality Profile.15 Minutes Power Quality Profile.Capture period", + "classId": 7, + "obis": "1.0.99.1.1.255", + "obisFormatted": "1-0:99.1.1.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "15 Minutes Power Quality Profile", + "value": 900, + "timestamp": "2025-11-01T09:39:45.307076", + "status": "success" + }, + { + "key": "Quality Profile.15 Minutes Power Quality Profile.Sort method", + "classId": 7, + "obis": "1.0.99.1.1.255", + "obisFormatted": "1-0:99.1.1.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "15 Minutes Power Quality Profile", + "value": 1, + "timestamp": "2025-11-01T09:39:45.922024", + "status": "success" + }, + { + "key": "Quality Profile.15 Minutes Power Quality Profile.Sort object", + "classId": 7, + "obis": "1.0.99.1.1.255", + "obisFormatted": "1-0:99.1.1.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "15 Minutes Power Quality Profile", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:39:46.550510", + "status": "success" + }, + { + "key": "Quality Profile.15 Minutes Power Quality Profile.Entries in use", + "classId": 7, + "obis": "1.0.99.1.1.255", + "obisFormatted": "1-0:99.1.1.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "15 Minutes Power Quality Profile", + "value": 331, + "timestamp": "2025-11-01T09:39:47.161946", + "status": "success" + }, + { + "key": "Quality Profile.15 Minutes Power Quality Profile.Profile entries", + "classId": 7, + "obis": "1.0.99.1.1.255", + "obisFormatted": "1-0:99.1.1.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "15 Minutes Power Quality Profile", + "value": 960, + "timestamp": "2025-11-01T09:39:47.764142", + "status": "success" + }, + { + "key": "Quality Profile.AMR Profile Status Code E meter - Power Quality profile 2 status.AMR Profile Status Code E meter - Power Quality profile 2 status", + "classId": 1, + "obis": "0.0.96.10.9.255", + "obisFormatted": "0-0:96.10.9.255", + "attributeId": 2, + "attributeName": "AMR Profile Status Code E meter - Power Quality profile 2 status", + "controlName": "AMR Profile Status Code E meter - Power Quality profile 2 status", + "value": 0, + "timestamp": "2025-11-01T09:39:48.454851", + "status": "success" + }, + { + "key": "Quality Profile.10 Minutes Power Quality Profile.Buffer", + "classId": 7, + "obis": "1.0.99.1.2.255", + "obisFormatted": "1-0:99.1.2.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "10 Minutes Power Quality Profile", + "value": { + "0": [ + "2025-10-20 01 17:10:00 00,FF88,80", + 8, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "1": [ + "2025-10-20 01 17:20:00 00,FF88,80", + 44, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "2": [ + "2025-10-20 01 17:30:00 00,FF88,80", + 8, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "3": [ + "2025-10-20 01 17:40:00 00,FF88,80", + 44, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "4": [ + "2025-10-20 01 17:50:00 00,FF88,80", + 44, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "5": [ + "2025-10-20 01 18:00:00 00,FF88,80", + 8, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "6": [ + "2025-10-20 01 18:10:00 00,FF88,80", + 8, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "7": [ + "2025-10-20 01 18:20:00 00,FF88,80", + 44, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "8": [ + "2025-10-21 02 09:00:00 00,FF88,80", + 136, + 230, + 4, + 230, + 4, + 230, + 4, + 405, + 406, + 407, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "9": [ + "2025-10-21 02 09:10:00 00,FF88,80", + 136, + 230, + 0, + 141, + 0, + 141, + 0, + 586, + 497, + 586, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "10": [ + "2025-10-21 02 09:20:00 00,FF88,80", + 8, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "11": [ + "2025-10-21 02 09:30:00 00,FF88,80", + 8, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "12": [ + "2025-10-21 02 09:40:00 00,FF88,80", + 8, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "13": [ + "2025-10-21 02 09:50:00 00,FF88,80", + 136, + 230, + 0, + 29, + 0, + 29, + 0, + 166, + 621, + 166, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "14": [ + "2025-10-21 02 10:00:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "15": [ + "2025-10-21 02 10:10:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "16": [ + "2025-10-21 02 10:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "17": [ + "2025-10-21 02 10:30:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "18": [ + "2025-10-21 02 10:40:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "19": [ + "2025-10-21 02 10:50:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "20": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "21": [ + "2025-10-21 02 10:50:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "22": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "23": [ + "2025-10-25 06 00:00:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "24": [ + "2025-10-25 06 00:10:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "25": [ + "2025-10-25 06 00:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "26": [ + "2025-10-25 06 00:30:00 00,FF88,80", + 8, + 230, + 3, + 229, + 3, + 230, + 3, + 398, + 398, + 398, + 3449, + 0, + 5, + 230, + 4, + 229, + 5, + 230 + ], + "27": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 36, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3449, + 0, + 4, + 230, + 4, + 229, + 5, + 230 + ], + "28": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 402, + 402, + 402, + 3449, + 0, + 5, + 230, + 4, + 229, + 5, + 230 + ], + "29": [ + "2025-10-21 02 12:00:00 00,FF88,80", + 44, + 230, + 4, + 229, + 4, + 230, + 5, + 398, + 398, + 398, + 3449, + 0, + 4, + 230, + 4, + 229, + 5, + 230 + ], + "30": [ + "2025-10-21 02 12:10:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "31": [ + "2025-10-21 02 12:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "32": [ + "2025-10-21 02 12:30:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "33": [ + "2025-10-21 02 13:40:00 00,FF88,80", + 136, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 399, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "34": [ + "2025-10-21 02 13:50:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "35": [ + "2025-10-21 02 14:00:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "36": [ + "2025-10-21 02 14:10:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "37": [ + "2025-10-21 02 14:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "38": [ + "2025-10-21 02 14:30:00 00,FF88,80", + 8, + 230, + 1, + 229, + 1, + 230, + 1, + 402, + 402, + 402, + 3449, + 0, + 4, + 230, + 4, + 229, + 4, + 230 + ], + "39": [ + "2025-10-21 02 14:40:00 00,FF88,80", + 8, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3449, + 0, + 5, + 230, + 4, + 229, + 5, + 230 + ], + "40": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 36, + 230, + 4, + 229, + 4, + 230, + 4, + 401, + 401, + 401, + 3449, + 0, + 4, + 230, + 4, + 229, + 5, + 230 + ], + "41": [ + "2025-11-01 06 00:20:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "42": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "43": [ + "2025-11-01 06 00:40:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "44": [ + "2025-12-01 01 00:10:00 00,FFC4,00", + 36, + 230, + 4, + 230, + 4, + 230, + 4, + 400, + 400, + 400, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "45": [ + "2025-12-01 01 00:20:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "46": [ + "2025-12-01 01 00:30:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "47": [ + "2025-12-01 01 00:40:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3449, + 0, + 4, + 230, + 4, + 229, + 5, + 230 + ], + "48": [ + "2025-12-01 01 00:50:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3449, + 0, + 4, + 230, + 4, + 229, + 5, + 230 + ], + "49": [ + "2025-12-01 01 01:00:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3449, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "50": [ + "2026-01-01 04 00:10:00 00,FFC4,00", + 36, + 230, + 4, + 229, + 4, + 230, + 4, + 401, + 402, + 401, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "51": [ + "2026-01-01 04 00:20:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "52": [ + "2026-02-01 07 00:10:00 00,FFC4,00", + 36, + 230, + 4, + 230, + 4, + 230, + 4, + 401, + 401, + 401, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "53": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 36, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3445, + 0, + 4, + 230, + 4, + 229, + 4, + 230 + ], + "54": [ + "2026-03-01 07 00:10:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 402, + 402, + 403, + 3450, + 0, + 5, + 230, + 4, + 229, + 5, + 230 + ], + "55": [ + "2026-03-01 07 00:20:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 5, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "56": [ + "2026-03-01 07 00:30:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 5, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "57": [ + "2026-03-01 07 00:40:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "58": [ + "2026-03-01 07 00:50:00 00,FFC4,00", + 0, + 230, + 0, + 230, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "59": [ + "2026-03-01 07 01:00:00 00,FFC4,00", + 0, + 230, + 0, + 230, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "60": [ + "2026-03-01 07 01:10:00 00,FFC4,00", + 0, + 230, + 0, + 230, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "61": [ + "2026-03-01 07 01:20:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "62": [ + "2026-03-01 07 01:30:00 00,FFC4,00", + 5, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "63": [ + "2026-04-01 03 00:10:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 230, + 0, + 401, + 401, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "64": [ + "2026-04-01 03 00:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "65": [ + "2026-04-01 03 00:30:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "66": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "67": [ + "2026-05-01 05 00:10:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "68": [ + "2026-05-01 05 00:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "69": [ + "2026-05-01 05 00:30:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "70": [ + "2026-05-01 05 13:50:00 00,FF88,80", + 136, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "71": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 3448, + 0, + 5, + 230, + 4, + 229, + 5, + 229 + ], + "72": [ + "2026-06-01 01 07:30:00 00,FF88,80", + 141, + 226, + 3, + 173, + 3, + 174, + 3, + 513, + 460, + 514, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "73": [ + "2025-10-22 03 17:10:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 230, + 0, + 405, + 406, + 406, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "74": [ + "2025-10-22 03 17:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "75": [ + "2025-10-22 03 17:30:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 402, + 403, + 403, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "76": [ + "2025-10-22 03 17:40:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "77": [ + "2025-10-22 03 17:50:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "78": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 36, + 230, + 0, + 229, + 0, + 230, + 0, + 400, + 400, + 401, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "79": [ + "2025-11-01 06 00:20:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "80": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "81": [ + "2025-11-01 06 00:40:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "82": [ + "2025-11-01 06 00:50:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "83": [ + "2025-11-01 06 01:00:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "84": [ + "2025-11-01 06 01:10:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "85": [ + "2025-11-01 06 01:20:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "86": [ + "2025-11-01 06 01:30:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "87": [ + "2025-11-01 06 15:00:00 00,FFC4,00", + 128, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "88": [ + "2025-11-01 06 15:10:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "89": [ + "2025-11-01 06 15:20:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 229, + 0, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "90": [ + "2025-11-01 06 15:30:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "91": [ + "2025-11-01 06 15:40:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "92": [ + "2025-11-01 06 15:50:00 00,FFC4,00", + 0, + 229, + 10, + 229, + 10, + 229, + 10, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "93": [ + "2025-11-01 06 16:00:00 00,FFC4,00", + 0, + 230, + 0, + 210, + 0, + 207, + 0, + 439, + 426, + 446, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "94": [ + "2025-11-01 06 16:10:00 00,FFC4,00", + 0, + 229, + 20, + 229, + 20, + 229, + 20, + 406, + 406, + 405, + 34432, + 0, + 49, + 229, + 49, + 229, + 49, + 229 + ], + "95": [ + "2025-11-01 06 16:20:00 00,FFC4,00", + 0, + 229, + 30, + 229, + 29, + 230, + 29, + 410, + 410, + 410, + 34406, + 0, + 49, + 229, + 49, + 229, + 49, + 229 + ], + "96": [ + "2025-11-01 06 16:30:00 00,FFC4,00", + 0, + 229, + 46, + 229, + 46, + 230, + 46, + 402, + 402, + 403, + 34445, + 0, + 49, + 229, + 49, + 230, + 49, + 230 + ], + "97": [ + "2025-11-01 06 16:40:00 00,FFC4,00", + 0, + 230, + 19, + 230, + 19, + 230, + 19, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "98": [ + "2025-11-08 06 15:30:00 00,FFC4,00", + 133, + 230, + 0, + 230, + 0, + 230, + 0, + 402, + 402, + 404, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "99": [ + "2025-11-08 06 15:40:00 00,FFC4,00", + 128, + 230, + 0, + 42, + 0, + 42, + 0, + 139, + 607, + 139, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "100": [ + "2025-11-08 06 15:50:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "101": [ + "2025-11-08 06 16:00:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "102": [ + "2025-11-08 06 16:10:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "103": [ + "2025-11-08 06 16:20:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "104": [ + "2025-11-08 06 16:40:00 00,FFC4,00", + 128, + 230, + 0, + 110, + 0, + 110, + 0, + 651, + 532, + 651, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "105": [ + "2025-11-08 06 16:50:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "106": [ + "2025-11-08 06 17:00:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 399, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "107": [ + "2025-11-08 06 17:10:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 399, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "108": [ + "2025-11-08 06 17:20:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "109": [ + "2025-11-08 06 17:30:00 00,FFC4,00", + 0, + 230, + 0, + 204, + 0, + 205, + 0, + 452, + 428, + 450, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "110": [ + "2025-11-08 06 17:40:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "111": [ + "2025-11-08 06 17:50:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "112": [ + "2025-11-08 06 18:00:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "113": [ + "2025-11-08 06 18:10:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "114": [ + "2025-11-08 06 18:20:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "115": [ + "2025-11-08 06 18:30:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "116": [ + "2025-11-08 06 18:40:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "117": [ + "2025-11-08 06 18:50:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "118": [ + "2025-11-08 06 19:00:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "119": [ + "2025-11-08 06 19:10:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "120": [ + "2025-11-08 06 19:20:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "121": [ + "2025-11-08 06 19:30:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "122": [ + "2025-11-08 06 19:40:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "123": [ + "2025-11-08 06 19:50:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "124": [ + "2025-11-08 06 20:00:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "125": [ + "2025-11-08 06 20:10:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "126": [ + "2025-11-08 06 20:20:00 00,FFC4,00", + 128, + 230, + 0, + 177, + 0, + 177, + 0, + 509, + 457, + 509, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "127": [ + "2025-11-08 06 20:30:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "128": [ + "2025-11-08 06 20:40:00 00,FFC4,00", + 0, + 230, + 0, + 228, + 0, + 229, + 0, + 397, + 397, + 397, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "129": [ + "2025-11-08 06 20:50:00 00,FFC4,00", + 0, + 232, + 0, + 232, + 0, + 232, + 0, + 402, + 403, + 403, + 0, + 0, + 0, + 234, + 0, + 234, + 0, + 234 + ], + "130": [ + "2025-11-08 06 21:00:00 00,FFC4,00", + 0, + 234, + 0, + 234, + 0, + 234, + 0, + 406, + 406, + 406, + 0, + 0, + 0, + 234, + 0, + 234, + 0, + 234 + ], + "131": [ + "2025-11-08 06 21:10:00 00,FFC4,00", + 0, + 234, + 0, + 234, + 0, + 234, + 0, + 406, + 406, + 406, + 0, + 0, + 0, + 234, + 0, + 234, + 0, + 234 + ], + "132": [ + "2025-11-08 06 21:20:00 00,FFC4,00", + 0, + 234, + 0, + 234, + 0, + 234, + 0, + 406, + 406, + 406, + 0, + 0, + 0, + 234, + 0, + 234, + 0, + 234 + ], + "133": [ + "2025-11-08 06 21:30:00 00,FFC4,00", + 0, + 234, + 0, + 234, + 0, + 234, + 0, + 406, + 406, + 406, + 0, + 0, + 0, + 234, + 0, + 234, + 0, + 234 + ], + "134": [ + "2025-11-08 06 21:40:00 00,FFC4,00", + 0, + 234, + 2, + 234, + 2, + 234, + 2, + 405, + 405, + 405, + 3446, + 0, + 4, + 234, + 4, + 234, + 4, + 234 + ], + "135": [ + "2025-11-08 06 21:50:00 00,FFC4,00", + 0, + 234, + 4, + 234, + 4, + 234, + 4, + 406, + 406, + 406, + 3445, + 0, + 4, + 234, + 4, + 234, + 4, + 234 + ], + "136": [ + "2025-11-08 06 22:00:00 00,FFC4,00", + 0, + 234, + 4, + 234, + 4, + 234, + 4, + 406, + 406, + 406, + 3444, + 0, + 4, + 234, + 4, + 234, + 4, + 234 + ], + "137": [ + "2025-11-08 06 22:10:00 00,FFC4,00", + 0, + 234, + 4, + 234, + 4, + 234, + 4, + 406, + 406, + 406, + 3443, + 0, + 4, + 234, + 4, + 234, + 4, + 234 + ], + "138": [ + "2025-11-09 07 14:40:00 00,FFC4,00", + 128, + 231, + 1, + 231, + 1, + 231, + 1, + 401, + 401, + 401, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "139": [ + "2025-11-09 07 14:50:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "140": [ + "2025-11-09 07 15:00:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "141": [ + "2025-11-09 07 15:10:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "142": [ + "2025-11-09 07 20:10:00 00,FFC4,00", + 128, + 220, + 0, + 74, + 0, + 74, + 0, + 63, + 572, + 63, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "143": [ + "2025-11-09 07 20:20:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "144": [ + "2025-11-09 07 20:30:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "145": [ + "2025-11-09 07 20:50:00 00,FFC4,00", + 128, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "146": [ + "2025-11-09 07 21:00:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "147": [ + "2025-11-09 07 21:10:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "148": [ + "2025-11-09 07 21:20:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "149": [ + "2025-11-09 07 21:30:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "150": [ + "2025-11-09 07 21:40:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "151": [ + "2025-11-09 07 21:50:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "152": [ + "2025-11-09 07 22:00:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "153": [ + "2025-11-09 07 22:10:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "154": [ + "2025-11-09 07 22:20:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "155": [ + "2025-11-09 07 22:30:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "156": [ + "2025-11-09 07 22:40:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "157": [ + "2025-11-09 07 22:50:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "158": [ + "2025-11-09 07 23:00:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "159": [ + "2025-11-09 07 23:10:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "160": [ + "2025-11-10 01 00:10:00 00,FFC4,00", + 128, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "161": [ + "2025-11-10 01 00:20:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 217, + 0, + 0, + 0, + 0 + ], + "162": [ + "2025-11-10 01 00:30:00 00,FFC4,00", + 0, + 217, + 0, + 0, + 0, + 0, + 0, + 217, + 0, + 217, + 0, + 0, + 0, + 217, + 0, + 0, + 0, + 0 + ], + "163": [ + "2025-11-10 01 15:40:00 00,FFC4,00", + 128, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:40:31.656015", + "status": "success" + }, + { + "key": "Quality Profile.10 Minutes Power Quality Profile.Capture objects", + "classId": 7, + "obis": "1.0.99.1.2.255", + "obisFormatted": "1-0:99.1.2.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "10 Minutes Power Quality Profile", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:124.25.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:125.25.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:126.25.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:1.7.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:10.7.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:31.7.0.255", + 2, + 0 + ], + "14": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "15": [ + 3, + "1-0:51.7.0.255", + 2, + 0 + ], + "16": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "17": [ + 3, + "1-0:71.7.0.255", + 2, + 0 + ], + "18": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:40:33.206089", + "status": "success" + }, + { + "key": "Quality Profile.10 Minutes Power Quality Profile.Capture period", + "classId": 7, + "obis": "1.0.99.1.2.255", + "obisFormatted": "1-0:99.1.2.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "10 Minutes Power Quality Profile", + "value": 600, + "timestamp": "2025-11-01T09:40:33.833181", + "status": "success" + }, + { + "key": "Quality Profile.10 Minutes Power Quality Profile.Sort method", + "classId": 7, + "obis": "1.0.99.1.2.255", + "obisFormatted": "1-0:99.1.2.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "10 Minutes Power Quality Profile", + "value": 1, + "timestamp": "2025-11-01T09:40:34.455483", + "status": "success" + }, + { + "key": "Quality Profile.10 Minutes Power Quality Profile.Sort object", + "classId": 7, + "obis": "1.0.99.1.2.255", + "obisFormatted": "1-0:99.1.2.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "10 Minutes Power Quality Profile", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:40:35.080536", + "status": "success" + }, + { + "key": "Quality Profile.10 Minutes Power Quality Profile.Entries in use", + "classId": 7, + "obis": "1.0.99.1.2.255", + "obisFormatted": "1-0:99.1.2.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "10 Minutes Power Quality Profile", + "value": 164, + "timestamp": "2025-11-01T09:40:35.726765", + "status": "success" + }, + { + "key": "Quality Profile.10 Minutes Power Quality Profile.Profile entries", + "classId": 7, + "obis": "1.0.99.1.2.255", + "obisFormatted": "1-0:99.1.2.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "10 Minutes Power Quality Profile", + "value": 1440, + "timestamp": "2025-11-01T09:40:36.338522", + "status": "success" + } + ], + "summary": { + "total": 16, + "success": 16, + "failed": 0 + } + }, + "Power Quality": { + "sheet_name": "Power Quality", + "objects": [ + { + "key": "Power Quality.Time threshold for long power failure.Value", + "classId": 3, + "obis": "0.0.96.7.20.255", + "obisFormatted": "0-0:96.7.20.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Time threshold for long power failure", + "value": 180, + "timestamp": "2025-11-01T09:40:36.950007", + "status": "success" + }, + { + "key": "Power Quality.Value threshold for voltage sag.Value", + "classId": 3, + "obis": "1.0.12.31.0.255", + "obisFormatted": "1-0:12.31.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Value threshold for voltage sag", + "value": 207, + "timestamp": "2025-11-01T09:40:37.652723", + "status": "success" + }, + { + "key": "Power Quality.Time threshold for voltage sag.Value", + "classId": 3, + "obis": "1.0.12.43.0.255", + "obisFormatted": "1-0:12.43.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Time threshold for voltage sag", + "value": 30, + "timestamp": "2025-11-01T09:40:38.345061", + "status": "success" + }, + { + "key": "Power Quality.Value threshold for short voltage sag.Value", + "classId": 3, + "obis": "1.1.12.31.0.255", + "obisFormatted": "1-1:12.31.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Value threshold for short voltage sag", + "value": 207, + "timestamp": "2025-11-01T09:40:39.078429", + "status": "success" + }, + { + "key": "Power Quality.Time threshold for short voltage sag.Value", + "classId": 3, + "obis": "1.1.12.43.0.255", + "obisFormatted": "1-1:12.43.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Time threshold for short voltage sag", + "value": 1, + "timestamp": "2025-11-01T09:40:39.806536", + "status": "success" + }, + { + "key": "Power Quality.Value threshold for PV voltage sag.Value", + "classId": 3, + "obis": "1.2.12.31.0.255", + "obisFormatted": "1-2:12.31.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Value threshold for PV voltage sag", + "value": 212, + "timestamp": "2025-11-01T09:40:40.533748", + "status": "success" + }, + { + "key": "Power Quality.Time threshold for PV voltage sag.Value", + "classId": 3, + "obis": "1.2.12.43.0.255", + "obisFormatted": "1-2:12.43.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Time threshold for PV voltage sag", + "value": 2, + "timestamp": "2025-11-01T09:40:41.273292", + "status": "success" + }, + { + "key": "Power Quality.Value threshold for voltage swell.Value", + "classId": 3, + "obis": "1.0.12.35.0.255", + "obisFormatted": "1-0:12.35.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Value threshold for voltage swell", + "value": 253, + "timestamp": "2025-11-01T09:40:41.893023", + "status": "success" + }, + { + "key": "Power Quality.Time threshold for voltage swell.Value", + "classId": 3, + "obis": "1.0.12.44.0.255", + "obisFormatted": "1-0:12.44.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Time threshold for voltage swell", + "value": 30, + "timestamp": "2025-11-01T09:40:42.640737", + "status": "success" + }, + { + "key": "Power Quality.Value threshold for PV voltage swell.Value", + "classId": 3, + "obis": "1.2.12.35.0.255", + "obisFormatted": "1-2:12.35.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Value threshold for PV voltage swell", + "value": 248, + "timestamp": "2025-11-01T09:40:43.240640", + "status": "success" + }, + { + "key": "Power Quality.Time threshold for PV voltage swell.Value", + "classId": 3, + "obis": "1.2.12.44.0.255", + "obisFormatted": "1-2:12.44.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Time threshold for PV voltage swell", + "value": 2, + "timestamp": "2025-11-01T09:40:43.937108", + "status": "success" + }, + { + "key": "Power Quality.Number of voltage sags in phase L1.L1 sag number", + "classId": 1, + "obis": "1.0.32.32.0.255", + "obisFormatted": "1-0:32.32.0.255", + "attributeId": 2, + "attributeName": "L1 sag number", + "controlName": "Number of voltage sags in phase L1", + "value": 0, + "timestamp": "2025-11-01T09:40:44.594162", + "status": "success" + }, + { + "key": "Power Quality.Number of voltage sags in phase L2.L2 sag number", + "classId": 1, + "obis": "1.0.52.32.0.255", + "obisFormatted": "1-0:52.32.0.255", + "attributeId": 2, + "attributeName": "L2 sag number", + "controlName": "Number of voltage sags in phase L2", + "value": 0, + "timestamp": "2025-11-01T09:40:45.191307", + "status": "success" + }, + { + "key": "Power Quality.Number of voltage sags in phase L3.L3 sag number", + "classId": 1, + "obis": "1.0.72.32.0.255", + "obisFormatted": "1-0:72.32.0.255", + "attributeId": 2, + "attributeName": "L3 sag number", + "controlName": "Number of voltage sags in phase L3", + "value": 0, + "timestamp": "2025-11-01T09:40:45.802673", + "status": "success" + }, + { + "key": "Power Quality.Duration of last voltage sag in phase L1.L1 sag number", + "classId": 3, + "obis": "1.0.32.33.0.255", + "obisFormatted": "1-0:32.33.0.255", + "attributeId": 2, + "attributeName": "L1 sag number", + "controlName": "Duration of last voltage sag in phase L1", + "value": 0, + "timestamp": "2025-11-01T09:40:46.509254", + "status": "success" + }, + { + "key": "Power Quality.Duration of last voltage sag in phase L2.L2 sag number", + "classId": 3, + "obis": "1.0.52.33.0.255", + "obisFormatted": "1-0:52.33.0.255", + "attributeId": 2, + "attributeName": "L2 sag number", + "controlName": "Duration of last voltage sag in phase L2", + "value": 0, + "timestamp": "2025-11-01T09:40:47.175805", + "status": "success" + }, + { + "key": "Power Quality.Duration of last voltage sag in phase L3.L3 sag number", + "classId": 3, + "obis": "1.0.72.33.0.255", + "obisFormatted": "1-0:72.33.0.255", + "attributeId": 2, + "attributeName": "L3 sag number", + "controlName": "Duration of last voltage sag in phase L3", + "value": 0, + "timestamp": "2025-11-01T09:40:47.875422", + "status": "success" + }, + { + "key": "Power Quality.Magnitude of last voltage sag in phase L1.L1 sag number", + "classId": 3, + "obis": "1.0.32.34.0.255", + "obisFormatted": "1-0:32.34.0.255", + "attributeId": 2, + "attributeName": "L1 sag number", + "controlName": "Magnitude of last voltage sag in phase L1", + "value": 0, + "timestamp": "2025-11-01T09:40:48.570629", + "status": "success" + }, + { + "key": "Power Quality.Magnitude of last voltage sag in phase L2.L2 sag number", + "classId": 3, + "obis": "1.0.52.34.0.255", + "obisFormatted": "1-0:52.34.0.255", + "attributeId": 2, + "attributeName": "L2 sag number", + "controlName": "Magnitude of last voltage sag in phase L2", + "value": 0, + "timestamp": "2025-11-01T09:40:49.332737", + "status": "success" + }, + { + "key": "Power Quality.Magnitude of last voltage sag in phase L3.L3 sag number", + "classId": 3, + "obis": "1.0.72.34.0.255", + "obisFormatted": "1-0:72.34.0.255", + "attributeId": 2, + "attributeName": "L3 sag number", + "controlName": "Magnitude of last voltage sag in phase L3", + "value": 0, + "timestamp": "2025-11-01T09:40:50.076078", + "status": "success" + }, + { + "key": "Power Quality.L1 PV sag number.L1 sag number", + "classId": 1, + "obis": "1.2.32.32.0.255", + "obisFormatted": "1-2:32.32.0.255", + "attributeId": 2, + "attributeName": "L1 sag number", + "controlName": "L1 PV sag number", + "value": 1, + "timestamp": "2025-11-01T09:40:50.848070", + "status": "success" + }, + { + "key": "Power Quality.L2 PV sag number.L2 sag number", + "classId": 1, + "obis": "1.2.52.32.0.255", + "obisFormatted": "1-2:52.32.0.255", + "attributeId": 2, + "attributeName": "L2 sag number", + "controlName": "L2 PV sag number", + "value": 3, + "timestamp": "2025-11-01T09:40:51.612975", + "status": "success" + }, + { + "key": "Power Quality.L3 PV sag number.L3 sag number", + "classId": 1, + "obis": "1.2.72.32.0.255", + "obisFormatted": "1-2:72.32.0.255", + "attributeId": 2, + "attributeName": "L3 sag number", + "controlName": "L3 PV sag number", + "value": 1, + "timestamp": "2025-11-01T09:40:52.346422", + "status": "success" + }, + { + "key": "Power Quality.L1 Short sag number.L1 sag number", + "classId": 1, + "obis": "1.1.32.32.0.255", + "obisFormatted": "1-1:32.32.0.255", + "attributeId": 2, + "attributeName": "L1 sag number", + "controlName": "L1 Short sag number", + "value": 7958, + "timestamp": "2025-11-01T09:40:53.099398", + "status": "success" + }, + { + "key": "Power Quality.L2 Short sag number.L2 sag number", + "classId": 1, + "obis": "1.1.52.32.0.255", + "obisFormatted": "1-1:52.32.0.255", + "attributeId": 2, + "attributeName": "L2 sag number", + "controlName": "L2 Short sag number", + "value": 0, + "timestamp": "2025-11-01T09:40:53.866491", + "status": "success" + }, + { + "key": "Power Quality.L3 Short sag number.L3 sag number", + "classId": 1, + "obis": "1.1.72.32.0.255", + "obisFormatted": "1-1:72.32.0.255", + "attributeId": 2, + "attributeName": "L3 sag number", + "controlName": "L3 Short sag number", + "value": 0, + "timestamp": "2025-11-01T09:40:54.618322", + "status": "success" + }, + { + "key": "Power Quality.Number of voltage swells in phase L1.L1 swell number", + "classId": 1, + "obis": "1.0.32.36.0.255", + "obisFormatted": "1-0:32.36.0.255", + "attributeId": 2, + "attributeName": "L1 swell number", + "controlName": "Number of voltage swells in phase L1", + "value": 0, + "timestamp": "2025-11-01T09:40:55.242569", + "status": "success" + }, + { + "key": "Power Quality.Number of voltage swells in phase L2.L2 swell number", + "classId": 1, + "obis": "1.0.52.36.0.255", + "obisFormatted": "1-0:52.36.0.255", + "attributeId": 2, + "attributeName": "L2 swell number", + "controlName": "Number of voltage swells in phase L2", + "value": 0, + "timestamp": "2025-11-01T09:40:55.841682", + "status": "success" + }, + { + "key": "Power Quality.Number of voltage swells in phase L3.L3 swell number", + "classId": 1, + "obis": "1.0.72.36.0.255", + "obisFormatted": "1-0:72.36.0.255", + "attributeId": 2, + "attributeName": "L3 swell number", + "controlName": "Number of voltage swells in phase L3", + "value": 0, + "timestamp": "2025-11-01T09:40:56.429238", + "status": "success" + }, + { + "key": "Power Quality.Duration of last voltage swell in phase L1.L1 sag number", + "classId": 3, + "obis": "1.0.32.37.0.255", + "obisFormatted": "1-0:32.37.0.255", + "attributeId": 2, + "attributeName": "L1 sag number", + "controlName": "Duration of last voltage swell in phase L1", + "value": 0, + "timestamp": "2025-11-01T09:40:57.164325", + "status": "success" + }, + { + "key": "Power Quality.Duration of last voltage swell in phase L2.L2 sag number", + "classId": 3, + "obis": "1.0.52.37.0.255", + "obisFormatted": "1-0:52.37.0.255", + "attributeId": 2, + "attributeName": "L2 sag number", + "controlName": "Duration of last voltage swell in phase L2", + "value": 0, + "timestamp": "2025-11-01T09:40:57.911791", + "status": "success" + }, + { + "key": "Power Quality.Duration of last voltage swell in phase L3.L3 sag number", + "classId": 3, + "obis": "1.0.72.37.0.255", + "obisFormatted": "1-0:72.37.0.255", + "attributeId": 2, + "attributeName": "L3 sag number", + "controlName": "Duration of last voltage swell in phase L3", + "value": 0, + "timestamp": "2025-11-01T09:40:58.694911", + "status": "success" + }, + { + "key": "Power Quality.Magnitude of last voltage swell in phase L1.L1 sag number", + "classId": 3, + "obis": "1.0.32.38.0.255", + "obisFormatted": "1-0:32.38.0.255", + "attributeId": 2, + "attributeName": "L1 sag number", + "controlName": "Magnitude of last voltage swell in phase L1", + "value": 0, + "timestamp": "2025-11-01T09:40:59.431037", + "status": "success" + }, + { + "key": "Power Quality.Magnitude of last voltage swell in phase L2.L2 sag number", + "classId": 3, + "obis": "1.0.52.38.0.255", + "obisFormatted": "1-0:52.38.0.255", + "attributeId": 2, + "attributeName": "L2 sag number", + "controlName": "Magnitude of last voltage swell in phase L2", + "value": 0, + "timestamp": "2025-11-01T09:41:00.113918", + "status": "success" + }, + { + "key": "Power Quality.Magnitude of last voltage swell in phase L3.L3 sag number", + "classId": 3, + "obis": "1.0.72.38.0.255", + "obisFormatted": "1-0:72.38.0.255", + "attributeId": 2, + "attributeName": "L3 sag number", + "controlName": "Magnitude of last voltage swell in phase L3", + "value": 0, + "timestamp": "2025-11-01T09:41:00.848928", + "status": "success" + }, + { + "key": "Power Quality.L1 PV swell number.L1 swell number", + "classId": 1, + "obis": "1.2.32.36.0.255", + "obisFormatted": "1-2:32.36.0.255", + "attributeId": 2, + "attributeName": "L1 swell number", + "controlName": "L1 PV swell number", + "value": 0, + "timestamp": "2025-11-01T09:41:01.579922", + "status": "success" + }, + { + "key": "Power Quality.L2 PV swell number.L2 swell number", + "classId": 1, + "obis": "1.2.52.36.0.255", + "obisFormatted": "1-2:52.36.0.255", + "attributeId": 2, + "attributeName": "L2 swell number", + "controlName": "L2 PV swell number", + "value": 0, + "timestamp": "2025-11-01T09:41:02.330177", + "status": "success" + }, + { + "key": "Power Quality.L3 PV swell number.L3 swell number", + "classId": 1, + "obis": "1.2.72.36.0.255", + "obisFormatted": "1-2:72.36.0.255", + "attributeId": 2, + "attributeName": "L3 swell number", + "controlName": "L3 PV swell number", + "value": 0, + "timestamp": "2025-11-01T09:41:03.014628", + "status": "success" + }, + { + "key": "Power Quality.Number of power failures in any phases.Number of power failures in any phases", + "classId": 1, + "obis": "0.0.96.7.21.255", + "obisFormatted": "0-0:96.7.21.255", + "attributeId": 2, + "attributeName": "Number of power failures in any phases", + "controlName": "Number of power failures in any phases", + "value": 2, + "timestamp": "2025-11-01T09:41:03.642534", + "status": "success" + }, + { + "key": "Power Quality.Number of long power failures in any phases.Number of long power failures in any phases", + "classId": 1, + "obis": "0.0.96.7.9.255", + "obisFormatted": "0-0:96.7.9.255", + "attributeId": 2, + "attributeName": "Number of long power failures in any phases", + "controlName": "Number of long power failures in any phases", + "value": 13, + "timestamp": "2025-11-01T09:41:04.271329", + "status": "success" + } + ], + "summary": { + "total": 40, + "success": 40, + "failed": 0 + } + }, + "Event Record": { + "sheet_name": "Event Record", + "objects": [ + { + "key": "Event Record.Standard event log code.Standard event log code", + "classId": 1, + "obis": "0.0.96.11.0.255", + "obisFormatted": "0-0:96.11.0.255", + "attributeId": 2, + "attributeName": "Standard event log code", + "controlName": "Standard event log code", + "value": 1, + "timestamp": "2025-11-01T09:41:04.972256", + "status": "success" + }, + { + "key": "Event Record.0-Standard.Buffer", + "classId": 7, + "obis": "0.0.99.98.0.255", + "obisFormatted": "0-0:99.98.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "0-Standard", + "value": { + "0": [ + "2026-03-31 02 23:58:24 00,FF88,80", + 5 + ], + "1": [ + "2026-04-01 03 00:00:04 00,FF88,80", + 18 + ], + "2": [ + "2026-04-01 03 00:00:04 00,FF88,80", + 20 + ], + "3": [ + "2026-04-01 03 00:17:59 00,FF88,80", + 17 + ], + "4": [ + "2026-04-01 03 00:35:01 00,FF88,80", + 4 + ], + "5": [ + "2026-04-30 04 23:59:25 00,FF88,80", + 5 + ], + "6": [ + "2026-05-01 05 00:01:04 00,FF88,80", + 18 + ], + "7": [ + "2026-05-01 05 00:01:04 00,FF88,80", + 20 + ], + "8": [ + "2026-05-01 05 00:19:16 00,FF88,80", + 17 + ], + "9": [ + "2026-05-01 05 00:31:29 00,FF88,80", + 1 + ], + "10": [ + "2026-05-01 05 13:44:03 00,FF88,80", + 2 + ], + "11": [ + "2026-05-01 05 13:57:22 00,FF88,80", + 4 + ], + "12": [ + "2026-05-31 07 23:59:00 00,FF88,80", + 5 + ], + "13": [ + "2026-06-01 01 00:05:30 00,FF88,80", + 1 + ], + "14": [ + "2026-06-01 01 07:29:53 00,FF88,80", + 2 + ], + "15": [ + "2026-06-01 01 07:31:28 00,FF88,80", + 4 + ], + "16": [ + "2025-10-22 03 17:00:28 00,FF88,80", + 5 + ], + "17": [ + "2025-10-22 03 17:02:22 00,FF88,80", + 17 + ], + "18": [ + "2025-10-22 03 17:03:07 00,FF88,80", + 18 + ], + "19": [ + "2025-10-22 03 17:03:07 00,FF88,80", + 20 + ], + "20": [ + "2025-10-22 03 17:03:08 00,FF88,80", + 2 + ], + "21": [ + "2025-10-22 03 17:05:36 00,FF88,80", + 17 + ], + "22": [ + "2025-10-22 03 17:05:54 00,FF88,80", + 18 + ], + "23": [ + "2025-10-22 03 17:05:54 00,FF88,80", + 20 + ], + "24": [ + "2025-10-22 03 17:05:55 00,FF88,80", + 2 + ], + "25": [ + "2025-10-22 03 17:20:45 00,FF88,80", + 17 + ], + "26": [ + "2025-10-22 03 17:22:40 00,FF88,80", + 18 + ], + "27": [ + "2025-10-22 03 17:22:40 00,FF88,80", + 20 + ], + "28": [ + "2025-10-22 03 17:22:41 00,FF88,80", + 2 + ], + "29": [ + "2025-10-22 03 17:50:38 00,FF88,80", + 17 + ], + "30": [ + "2025-10-22 03 17:53:45 00,FF88,80", + 4 + ], + "31": [ + "2025-10-31 05 23:58:25 00,FFC4,00", + 5 + ], + "32": [ + "2025-11-01 06 00:00:05 00,FFC4,00", + 18 + ], + "33": [ + "2025-11-01 06 00:00:05 00,FFC4,00", + 20 + ], + "34": [ + "2025-11-01 06 00:00:06 00,FFC4,00", + 2 + ], + "35": [ + "2025-11-01 06 01:36:49 00,FFC4,00", + 1 + ], + "36": [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 2 + ], + "37": [ + "2025-11-01 06 15:12:33 00,FFC4,00", + 17 + ], + "38": [ + "2025-11-01 06 15:17:14 00,FFC4,00", + 18 + ], + "39": [ + "2025-11-01 06 15:17:14 00,FFC4,00", + 20 + ], + "40": [ + "2025-11-01 06 15:38:52 00,FFC4,00", + 17 + ], + "41": [ + "2025-11-01 06 15:46:23 00,FFC4,00", + 18 + ], + "42": [ + "2025-11-01 06 15:46:23 00,FFC4,00", + 20 + ], + "43": [ + "2025-11-01 06 15:56:56 00,FFC4,00", + 1 + ], + "44": [ + "2025-11-01 06 15:57:55 00,FFC4,00", + 2 + ], + "45": [ + "2025-11-01 06 16:01:36 00,FFC4,00", + 17 + ], + "46": [ + "2025-11-01 06 16:01:51 00,FFC4,00", + 18 + ], + "47": [ + "2025-11-01 06 16:01:51 00,FFC4,00", + 20 + ], + "48": [ + "2025-11-01 06 16:07:14 00,FFC4,00", + 17 + ], + "49": [ + "2025-11-01 06 16:07:30 00,FFC4,00", + 18 + ], + "50": [ + "2025-11-01 06 16:07:30 00,FFC4,00", + 20 + ], + "51": [ + "2025-11-01 06 16:09:50 00,FFC4,00", + 17 + ], + "52": [ + "2025-11-01 06 16:10:15 00,FFC4,00", + 18 + ], + "53": [ + "2025-11-01 06 16:10:15 00,FFC4,00", + 20 + ], + "54": [ + "2025-11-01 06 16:11:56 00,FFC4,00", + 17 + ], + "55": [ + "2025-11-01 06 16:12:10 00,FFC4,00", + 18 + ], + "56": [ + "2025-11-01 06 16:12:10 00,FFC4,00", + 20 + ], + "57": [ + "2025-11-01 06 16:14:19 00,FFC4,00", + 17 + ], + "58": [ + "2025-11-01 06 16:14:33 00,FFC4,00", + 18 + ], + "59": [ + "2025-11-01 06 16:14:33 00,FFC4,00", + 20 + ], + "60": [ + "2025-11-01 06 16:19:44 00,FFC4,00", + 17 + ], + "61": [ + "2025-11-01 06 16:19:58 00,FFC4,00", + 18 + ], + "62": [ + "2025-11-01 06 16:19:58 00,FFC4,00", + 20 + ], + "63": [ + "2025-11-01 06 16:37:35 00,FFC4,00", + 17 + ], + "64": [ + "2025-11-01 06 16:37:48 00,FFC4,00", + 18 + ], + "65": [ + "2025-11-01 06 16:37:48 00,FFC4,00", + 20 + ], + "66": [ + "2025-11-01 06 16:42:08 00,FFC4,00", + 17 + ], + "67": [ + "2025-11-01 06 16:42:22 00,FFC4,00", + 18 + ], + "68": [ + "2025-11-01 06 16:42:22 00,FFC4,00", + 20 + ], + "69": [ + "2025-11-01 06 16:42:28 00,FFC4,00", + 1 + ], + "70": [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 2 + ], + "71": [ + "2025-11-08 06 15:31:48 00,FFC4,00", + 1 + ], + "72": [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 2 + ], + "73": [ + "2025-11-08 06 16:47:04 00,FFC4,00", + 17 + ], + "74": [ + "2025-11-08 06 16:59:12 00,FFC4,00", + 18 + ], + "75": [ + "2025-11-08 06 16:59:12 00,FFC4,00", + 20 + ], + "76": [ + "2025-11-08 06 16:59:13 00,FFC4,00", + 2 + ], + "77": [ + "2025-11-08 06 17:02:51 00,FFC4,00", + 17 + ], + "78": [ + "2025-11-08 06 17:03:05 00,FFC4,00", + 18 + ], + "79": [ + "2025-11-08 06 17:03:05 00,FFC4,00", + 20 + ], + "80": [ + "2025-11-08 06 17:03:06 00,FFC4,00", + 2 + ], + "81": [ + "2025-11-08 06 17:03:29 00,FFC4,00", + 17 + ], + "82": [ + "2025-11-08 06 17:03:44 00,FFC4,00", + 18 + ], + "83": [ + "2025-11-08 06 17:03:44 00,FFC4,00", + 20 + ], + "84": [ + "2025-11-08 06 17:03:45 00,FFC4,00", + 2 + ], + "85": [ + "2025-11-08 06 17:04:05 00,FFC4,00", + 17 + ], + "86": [ + "2025-11-08 06 17:04:20 00,FFC4,00", + 18 + ], + "87": [ + "2025-11-08 06 17:04:20 00,FFC4,00", + 20 + ], + "88": [ + "2025-11-08 06 17:04:21 00,FFC4,00", + 2 + ], + "89": [ + "2025-11-08 06 17:28:54 00,FFC4,00", + 1 + ], + "90": [ + "2025-11-08 06 17:29:49 00,FFC4,00", + 17 + ], + "91": [ + "2025-11-08 06 17:30:04 00,FFC4,00", + 18 + ], + "92": [ + "2025-11-08 06 17:30:04 00,FFC4,00", + 20 + ], + "93": [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 2 + ], + "94": [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 1 + ], + "95": [ + "2025-11-08 06 20:12:40 00,FFC4,00", + 2 + ], + "96": [ + "2025-11-08 06 21:37:53 00,FFC4,00", + 10 + ], + "97": [ + "2025-11-08 06 22:19:46 00,FFC4,00", + 1 + ], + "98": [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 2 + ], + "99": [ + "2025-11-09 07 15:14:43 00,FFC4,00", + 1 + ] + }, + "timestamp": "2025-11-01T09:41:11.872750", + "status": "success" + }, + { + "key": "Event Record.0-Standard.Capture objects", + "classId": 7, + "obis": "0.0.99.98.0.255", + "obisFormatted": "0-0:99.98.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "0-Standard", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:41:12.480162", + "status": "success" + }, + { + "key": "Event Record.0-Standard.Capture period", + "classId": 7, + "obis": "0.0.99.98.0.255", + "obisFormatted": "0-0:99.98.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "0-Standard", + "value": 0, + "timestamp": "2025-11-01T09:41:13.093294", + "status": "success" + }, + { + "key": "Event Record.0-Standard.Sort method", + "classId": 7, + "obis": "0.0.99.98.0.255", + "obisFormatted": "0-0:99.98.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "0-Standard", + "value": 1, + "timestamp": "2025-11-01T09:41:13.707915", + "status": "success" + }, + { + "key": "Event Record.0-Standard.Sort object", + "classId": 7, + "obis": "0.0.99.98.0.255", + "obisFormatted": "0-0:99.98.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "0-Standard", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:41:14.348023", + "status": "success" + }, + { + "key": "Event Record.0-Standard.Entries in use", + "classId": 7, + "obis": "0.0.99.98.0.255", + "obisFormatted": "0-0:99.98.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "0-Standard", + "value": 100, + "timestamp": "2025-11-01T09:41:14.973016", + "status": "success" + }, + { + "key": "Event Record.0-Standard.Profile entries", + "classId": 7, + "obis": "0.0.99.98.0.255", + "obisFormatted": "0-0:99.98.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "0-Standard", + "value": 100, + "timestamp": "2025-11-01T09:41:15.566153", + "status": "success" + }, + { + "key": "Event Record.Fraud event log code.Fraud event log code", + "classId": 1, + "obis": "0.0.96.11.1.255", + "obisFormatted": "0-0:96.11.1.255", + "attributeId": 2, + "attributeName": "Fraud event log code", + "controlName": "Fraud event log code", + "value": 47, + "timestamp": "2025-11-01T09:41:16.269400", + "status": "success" + }, + { + "key": "Event Record.1-Fraud detect.Buffer", + "classId": 7, + "obis": "0.0.99.98.1.255", + "obisFormatted": "0-0:99.98.1.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "1-Fraud detect", + "value": { + "0": [ + "2025-09-22 01 11:10:01 00,FF88,80", + 40 + ], + "1": [ + "2025-09-29 01 14:54:25 00,FF88,80", + 47 + ], + "2": [ + "2025-09-29 01 14:55:12 00,FF88,80", + 46 + ], + "3": [ + "2025-09-29 01 16:09:53 00,FF88,80", + 46 + ], + "4": [ + "2025-09-30 02 13:56:08 00,FF88,80", + 44 + ], + "5": [ + "2025-09-30 02 14:52:40 00,FF88,80", + 45 + ], + "6": [ + "2025-09-30 02 16:18:25 00,FF88,81", + 44 + ], + "7": [ + "2025-09-30 02 16:48:22 00,FF88,81", + 45 + ], + "8": [ + "2025-10-20 01 15:44:59 00,FF88,80", + 41 + ], + "9": [ + "2025-10-20 01 15:45:02 00,FF88,80", + 40 + ], + "10": [ + "2025-10-20 01 15:45:19 00,FF88,80", + 41 + ], + "11": [ + "2025-10-20 01 15:46:10 00,FF88,80", + 40 + ], + "12": [ + "2025-10-20 01 15:46:30 00,FF88,80", + 41 + ], + "13": [ + "2025-10-20 01 17:06:22 00,FF88,80", + 47 + ], + "14": [ + "2025-10-20 01 17:12:00 00,FF88,80", + 47 + ], + "15": [ + "2025-10-20 01 17:57:50 00,FF88,80", + 47 + ], + "16": [ + "2025-10-20 01 17:59:25 00,FF88,80", + 47 + ], + "17": [ + "2026-03-01 07 01:28:18 00,FFC4,00", + 46 + ], + "18": [ + "2026-06-01 01 00:06:33 00,FF88,80", + 40 + ], + "19": [ + "2025-10-22 03 17:11:25 00,FF88,80", + 41 + ], + "20": [ + "2025-11-01 06 20:00:05 00,FFC4,00", + 40 + ], + "21": [ + "2025-11-08 06 19:51:43 00,FFC4,00", + 47 + ], + "22": [ + "2025-11-08 06 20:15:18 00,FFC4,00", + 47 + ] + }, + "timestamp": "2025-11-01T09:41:18.204584", + "status": "success" + }, + { + "key": "Event Record.1-Fraud detect.Capture objects", + "classId": 7, + "obis": "0.0.99.98.1.255", + "obisFormatted": "0-0:99.98.1.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "1-Fraud detect", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:41:18.845240", + "status": "success" + }, + { + "key": "Event Record.1-Fraud detect.Capture period", + "classId": 7, + "obis": "0.0.99.98.1.255", + "obisFormatted": "0-0:99.98.1.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "1-Fraud detect", + "value": 0, + "timestamp": "2025-11-01T09:41:19.485112", + "status": "success" + }, + { + "key": "Event Record.1-Fraud detect.Sort method", + "classId": 7, + "obis": "0.0.99.98.1.255", + "obisFormatted": "0-0:99.98.1.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "1-Fraud detect", + "value": 1, + "timestamp": "2025-11-01T09:41:20.123523", + "status": "success" + }, + { + "key": "Event Record.1-Fraud detect.Sort object", + "classId": 7, + "obis": "0.0.99.98.1.255", + "obisFormatted": "0-0:99.98.1.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "1-Fraud detect", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:41:20.764725", + "status": "success" + }, + { + "key": "Event Record.1-Fraud detect.Entries in use", + "classId": 7, + "obis": "0.0.99.98.1.255", + "obisFormatted": "0-0:99.98.1.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "1-Fraud detect", + "value": 23, + "timestamp": "2025-11-01T09:41:21.375552", + "status": "success" + }, + { + "key": "Event Record.1-Fraud detect.Profile entries", + "classId": 7, + "obis": "0.0.99.98.1.255", + "obisFormatted": "0-0:99.98.1.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "1-Fraud detect", + "value": 30, + "timestamp": "2025-11-01T09:41:21.981220", + "status": "success" + }, + { + "key": "Event Record.Event Counter Meter Readings E(73).E-meter Logic device name", + "classId": 1, + "obis": "0.0.96.15.11.255", + "obisFormatted": "0-0:96.15.11.255", + "attributeId": 2, + "attributeName": "E-meter Logic device name", + "controlName": "Event Counter Meter Readings E(73)", + "value": 6, + "timestamp": "2025-11-01T09:41:22.713440", + "status": "success" + }, + { + "key": "Event Record.Event Counter Meter Readings G(74).E-meter Logic device name", + "classId": 1, + "obis": "0.0.96.15.12.255", + "obisFormatted": "0-0:96.15.12.255", + "attributeId": 2, + "attributeName": "E-meter Logic device name", + "controlName": "Event Counter Meter Readings G(74)", + "value": 0, + "timestamp": "2025-11-01T09:41:23.445622", + "status": "success" + }, + { + "key": "Event Record.Event Counter Interval Data E(75).E-meter Logic device name", + "classId": 1, + "obis": "0.0.96.15.13.255", + "obisFormatted": "0-0:96.15.13.255", + "attributeId": 2, + "attributeName": "E-meter Logic device name", + "controlName": "Event Counter Interval Data E(75)", + "value": 331, + "timestamp": "2025-11-01T09:41:24.177381", + "status": "success" + }, + { + "key": "Event Record.Event Counter Interval Data G(76).E-meter Logic device name", + "classId": 1, + "obis": "0.0.96.15.14.255", + "obisFormatted": "0-0:96.15.14.255", + "attributeId": 2, + "attributeName": "E-meter Logic device name", + "controlName": "Event Counter Interval Data G(76)", + "value": 0, + "timestamp": "2025-11-01T09:41:24.929911", + "status": "success" + }, + { + "key": "Event Record.Event Counter Communication Sessions Log.E-meter Logic device name", + "classId": 1, + "obis": "0.0.96.15.4.255", + "obisFormatted": "0-0:96.15.4.255", + "attributeId": 2, + "attributeName": "E-meter Logic device name", + "controlName": "Event Counter Communication Sessions Log", + "value": 0, + "timestamp": "2025-11-01T09:41:25.663109", + "status": "success" + }, + { + "key": "Event Record.Communication event log code.Communication event log code", + "classId": 1, + "obis": "0.0.96.11.4.255", + "obisFormatted": "0-0:96.11.4.255", + "attributeId": 2, + "attributeName": "Communication event log code", + "controlName": "Communication event log code", + "value": 71, + "timestamp": "2025-11-01T09:41:26.367349", + "status": "success" + }, + { + "key": "Event Record.2-Com log.Buffer", + "classId": 7, + "obis": "0.0.99.98.4.255", + "obisFormatted": "0-0:99.98.4.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "2-Com log", + "value": { + "0": [ + "2025-09-22 01 11:10:26 00,FF88,80", + 71, + 0 + ], + "1": [ + "2025-09-22 01 11:11:10 00,FF88,80", + 71, + 0 + ], + "2": [ + "2025-09-22 01 11:12:31 00,FF88,80", + 71, + 0 + ], + "3": [ + "2025-09-22 01 11:13:58 00,FF88,80", + 71, + 0 + ], + "4": [ + "2025-09-22 01 11:13:58 00,FF88,80", + 72, + 0 + ], + "5": [ + "2025-09-24 03 11:02:58 00,FF88,80", + 71, + 0 + ], + "6": [ + "2025-09-24 03 11:22:08 00,FF88,80", + 71, + 0 + ], + "7": [ + "2025-09-24 03 11:22:08 00,FF88,80", + 72, + 0 + ], + "8": [ + "2025-09-24 03 11:22:08 00,FF88,80", + 73, + 1 + ], + "9": [ + "2025-09-24 03 11:22:08 00,FF88,80", + 75, + 61 + ], + "10": [ + "2025-09-24 03 13:42:53 00,FF88,80", + 71, + 0 + ], + "11": [ + "2025-09-24 03 13:56:47 00,FF88,80", + 71, + 0 + ], + "12": [ + "2025-09-24 03 13:56:47 00,FF88,80", + 72, + 0 + ], + "13": [ + "2025-09-24 03 13:56:47 00,FF88,80", + 73, + 1 + ], + "14": [ + "2025-09-24 03 13:56:47 00,FF88,80", + 75, + 67 + ], + "15": [ + "2025-09-24 03 15:26:06 00,FF88,80", + 71, + 0 + ], + "16": [ + "2025-09-25 04 08:33:13 00,FF88,80", + 71, + 0 + ], + "17": [ + "2025-09-25 04 13:43:01 00,FF88,80", + 71, + 0 + ], + "18": [ + "2025-09-27 06 11:43:13 00,FF88,80", + 71, + 0 + ], + "19": [ + "2025-09-27 06 11:51:22 00,FF88,80", + 71, + 0 + ], + "20": [ + "2025-09-27 06 11:51:22 00,FF88,80", + 72, + 0 + ], + "21": [ + "2025-09-27 06 11:51:22 00,FF88,80", + 73, + 1 + ], + "22": [ + "2025-09-27 06 11:51:22 00,FF88,80", + 75, + 126 + ], + "23": [ + "2025-09-28 07 12:01:00 00,FF88,80", + 71, + 0 + ], + "24": [ + "2025-09-28 07 12:38:25 00,FF88,80", + 71, + 0 + ], + "25": [ + "2025-09-28 07 12:38:25 00,FF88,80", + 72, + 0 + ], + "26": [ + "2025-09-28 07 12:38:25 00,FF88,80", + 73, + 1 + ], + "27": [ + "2025-09-28 07 12:38:25 00,FF88,80", + 75, + 184 + ], + "28": [ + "2025-09-28 07 17:01:47 00,FF88,80", + 71, + 0 + ], + "29": [ + "2025-09-28 07 17:19:33 00,FF88,80", + 71, + 0 + ], + "30": [ + "2025-09-29 01 14:51:28 00,FF88,80", + 71, + 0 + ], + "31": [ + "2025-09-29 01 14:52:16 00,FF88,80", + 71, + 0 + ], + "32": [ + "2025-09-29 01 14:54:31 00,FF88,80", + 71, + 0 + ], + "33": [ + "2025-09-29 01 14:59:37 00,FF88,80", + 71, + 0 + ], + "34": [ + "2025-09-29 01 15:39:57 00,FF88,80", + 71, + 0 + ], + "35": [ + "2025-09-29 01 15:39:57 00,FF88,80", + 72, + 0 + ], + "36": [ + "2025-09-29 01 15:39:57 00,FF88,80", + 73, + 1 + ], + "37": [ + "2025-09-29 01 15:39:57 00,FF88,80", + 75, + 314 + ], + "38": [ + "2025-09-29 01 16:15:59 00,FF88,80", + 71, + 0 + ], + "39": [ + "2025-09-30 02 17:12:31 00,FF88,81", + 71, + 0 + ], + "40": [ + "2025-09-30 02 17:22:25 00,FF88,81", + 71, + 0 + ], + "41": [ + "2025-09-30 02 17:23:09 00,FF88,81", + 71, + 0 + ], + "42": [ + "2025-09-30 02 17:42:58 00,FF88,81", + 71, + 0 + ], + "43": [ + "2025-09-30 02 17:49:06 00,FF88,81", + 71, + 0 + ], + "44": [ + "2025-09-30 02 17:49:26 00,FF88,81", + 71, + 0 + ], + "45": [ + "2025-09-30 02 18:58:56 00,FF88,81", + 71, + 0 + ], + "46": [ + "2025-10-20 01 15:36:15 00,FF88,80", + 71, + 0 + ], + "47": [ + "2025-10-20 01 15:41:33 00,FF88,80", + 71, + 0 + ], + "48": [ + "2025-10-20 01 15:45:22 00,FF88,80", + 71, + 0 + ], + "49": [ + "2025-10-20 01 18:20:19 00,FF88,80", + 71, + 0 + ], + "50": [ + "2025-10-20 01 18:25:44 00,FF88,80", + 71, + 0 + ], + "51": [ + "2025-10-20 01 18:25:44 00,FF88,80", + 72, + 0 + ], + "52": [ + "2025-10-21 02 08:59:59 00,FF88,80", + 71, + 0 + ], + "53": [ + "2025-10-21 02 09:06:22 00,FF88,80", + 71, + 0 + ], + "54": [ + "2025-10-21 02 09:48:16 00,FF88,80", + 71, + 0 + ], + "55": [ + "2025-10-21 02 09:49:44 00,FF88,80", + 71, + 0 + ], + "56": [ + "2025-10-21 02 10:50:11 00,FF88,80", + 71, + 0 + ], + "57": [ + "2025-10-21 02 11:06:27 00,FF88,80", + 71, + 0 + ], + "58": [ + "2025-10-21 02 10:45:35 00,FF88,80", + 71, + 0 + ], + "59": [ + "2025-10-21 02 10:45:43 00,FF88,80", + 71, + 0 + ], + "60": [ + "2025-10-21 02 10:45:58 00,FF88,80", + 71, + 0 + ], + "61": [ + "2025-10-21 02 10:46:05 00,FF88,80", + 71, + 0 + ], + "62": [ + "2025-10-21 02 10:46:14 00,FF88,80", + 71, + 0 + ], + "63": [ + "2025-10-21 02 10:46:38 00,FF88,80", + 71, + 0 + ], + "64": [ + "2025-10-21 02 10:46:54 00,FF88,80", + 71, + 0 + ], + "65": [ + "2025-10-21 02 10:47:11 00,FF88,80", + 71, + 0 + ], + "66": [ + "2025-10-21 02 10:49:11 00,FF88,80", + 71, + 0 + ], + "67": [ + "2025-10-21 02 10:49:11 00,FF88,80", + 72, + 0 + ], + "68": [ + "2025-10-21 02 10:49:17 00,FF88,80", + 71, + 0 + ], + "69": [ + "2025-10-21 02 10:49:47 00,FF88,80", + 72, + 0 + ], + "70": [ + "2025-10-21 02 11:00:54 00,FF88,80", + 71, + 0 + ], + "71": [ + "2025-10-25 06 00:00:12 00,FF88,80", + 71, + 0 + ], + "72": [ + "2025-11-01 06 00:00:02 00,FFC4,00", + 71, + 0 + ], + "73": [ + "2025-11-01 06 00:00:02 00,FFC4,00", + 72, + 0 + ], + "74": [ + "2025-11-01 06 00:00:03 00,FFC4,00", + 71, + 0 + ], + "75": [ + "2025-11-01 06 00:00:15 00,FFC4,00", + 71, + 0 + ], + "76": [ + "2025-10-21 02 12:31:27 00,FF88,80", + 71, + 0 + ], + "77": [ + "2025-10-21 02 12:31:27 00,FF88,80", + 72, + 0 + ], + "78": [ + "2025-10-21 02 12:31:27 00,FF88,80", + 73, + 2 + ], + "79": [ + "2025-10-21 02 13:33:05 00,FF88,80", + 71, + 0 + ], + "80": [ + "2025-10-21 02 13:43:33 00,FF88,80", + 71, + 0 + ], + "81": [ + "2025-10-21 02 14:05:45 00,FF88,80", + 71, + 0 + ], + "82": [ + "2025-10-21 02 14:05:56 00,FF88,80", + 71, + 0 + ], + "83": [ + "2025-10-21 02 14:06:35 00,FF88,80", + 71, + 0 + ], + "84": [ + "2025-10-21 02 14:25:59 00,FF88,80", + 71, + 0 + ], + "85": [ + "2025-11-01 06 00:06:46 00,FFC4,00", + 71, + 0 + ], + "86": [ + "2025-11-01 06 00:21:17 00,FFC4,00", + 71, + 0 + ], + "87": [ + "2025-11-01 06 00:21:17 00,FFC4,00", + 72, + 0 + ], + "88": [ + "2025-11-01 06 00:21:17 00,FFC4,00", + 73, + 2 + ], + "89": [ + "2025-11-01 06 00:21:17 00,FFC4,00", + 75, + 249 + ], + "90": [ + "2025-11-01 06 00:27:07 00,FFC4,00", + 71, + 0 + ], + "91": [ + "2025-11-01 06 00:29:28 00,FFC4,00", + 71, + 0 + ], + "92": [ + "2025-12-01 01 00:00:26 00,FFC4,00", + 71, + 0 + ], + "93": [ + "2026-01-01 04 00:00:13 00,FFC4,00", + 71, + 0 + ], + "94": [ + "2026-02-01 07 00:00:25 00,FFC4,00", + 71, + 0 + ], + "95": [ + "2026-03-01 07 00:00:10 00,FFC4,00", + 71, + 0 + ], + "96": [ + "2026-03-01 07 01:06:35 00,FFC4,00", + 71, + 0 + ], + "97": [ + "2026-03-01 07 01:06:35 00,FFC4,00", + 72, + 0 + ], + "98": [ + "2026-03-01 07 01:06:35 00,FFC4,00", + 73, + 3 + ], + "99": [ + "2026-03-01 07 01:06:35 00,FFC4,00", + 75, + 424 + ], + "100": [ + "2026-03-01 07 01:28:40 00,FFC4,00", + 71, + 0 + ], + "101": [ + "2026-04-01 03 00:00:58 00,FF88,80", + 71, + 0 + ], + "102": [ + "2026-04-01 03 00:01:08 00,FF88,80", + 71, + 0 + ], + "103": [ + "2026-04-01 03 00:01:37 00,FF88,80", + 71, + 0 + ], + "104": [ + "2026-05-01 05 00:03:03 00,FF88,80", + 71, + 0 + ], + "105": [ + "2026-05-01 05 13:44:09 00,FF88,80", + 71, + 0 + ], + "106": [ + "2026-06-01 01 00:05:25 00,FF88,80", + 71, + 0 + ], + "107": [ + "2026-06-01 01 00:05:25 00,FF88,80", + 72, + 0 + ], + "108": [ + "2026-06-01 01 00:05:25 00,FF88,80", + 73, + 4 + ], + "109": [ + "2026-06-01 01 07:23:35 00,FF88,80", + 71, + 0 + ], + "110": [ + "2026-06-01 01 07:24:17 00,FF88,80", + 71, + 0 + ], + "111": [ + "2026-06-01 01 07:30:00 00,FF88,80", + 71, + 0 + ], + "112": [ + "2025-10-22 03 17:03:14 00,FF88,80", + 71, + 0 + ], + "113": [ + "2025-10-22 03 17:05:58 00,FF88,80", + 71, + 0 + ], + "114": [ + "2025-10-22 03 17:23:50 00,FF88,80", + 71, + 0 + ], + "115": [ + "2025-11-01 06 00:00:13 00,FFC4,00", + 71, + 0 + ], + "116": [ + "2025-11-01 06 14:56:17 00,FFC4,00", + 71, + 0 + ], + "117": [ + "2025-11-01 06 15:18:41 00,FFC4,00", + 71, + 0 + ], + "118": [ + "2025-11-01 06 15:47:41 00,FFC4,00", + 71, + 0 + ], + "119": [ + "2025-11-01 06 16:04:33 00,FFC4,00", + 71, + 0 + ], + "120": [ + "2025-11-01 06 16:08:02 00,FFC4,00", + 71, + 0 + ], + "121": [ + "2025-11-01 06 16:10:06 00,FFC4,00", + 71, + 0 + ], + "122": [ + "2025-11-01 06 16:10:29 00,FFC4,00", + 71, + 0 + ], + "123": [ + "2025-11-01 06 16:12:00 00,FFC4,00", + 71, + 0 + ], + "124": [ + "2025-11-01 06 16:12:34 00,FFC4,00", + 71, + 0 + ], + "125": [ + "2025-11-01 06 16:14:24 00,FFC4,00", + 71, + 0 + ], + "126": [ + "2025-11-01 06 16:15:21 00,FFC4,00", + 71, + 0 + ], + "127": [ + "2025-11-01 06 16:19:49 00,FFC4,00", + 71, + 0 + ], + "128": [ + "2025-11-01 06 16:19:49 00,FFC4,00", + 73, + 1 + ], + "129": [ + "2025-11-01 06 16:20:33 00,FFC4,00", + 71, + 0 + ], + "130": [ + "2025-11-01 06 16:37:39 00,FFC4,00", + 71, + 0 + ], + "131": [ + "2025-11-01 06 16:37:39 00,FFC4,00", + 73, + 1 + ], + "132": [ + "2025-11-01 06 16:38:35 00,FFC4,00", + 71, + 0 + ], + "133": [ + "2025-11-01 06 16:42:12 00,FFC4,00", + 71, + 0 + ], + "134": [ + "2025-11-01 06 16:42:12 00,FFC4,00", + 73, + 1 + ], + "135": [ + "2025-11-08 06 15:28:28 00,FFC4,00", + 71, + 0 + ], + "136": [ + "2025-11-08 06 15:31:30 00,FFC4,00", + 71, + 0 + ], + "137": [ + "2025-11-08 06 15:31:43 00,FFC4,00", + 71, + 0 + ], + "138": [ + "2025-11-08 06 15:32:02 00,FFC4,00", + 71, + 0 + ], + "139": [ + "2025-11-08 06 15:32:22 00,FFC4,00", + 71, + 0 + ], + "140": [ + "2025-11-08 06 15:32:34 00,FFC4,00", + 71, + 0 + ], + "141": [ + "2025-11-08 06 15:35:18 00,FFC4,00", + 71, + 0 + ], + "142": [ + "2025-11-08 06 16:29:39 00,FFC4,00", + 71, + 0 + ], + "143": [ + "2025-11-08 06 16:31:04 00,FFC4,00", + 71, + 0 + ], + "144": [ + "2025-11-08 06 16:57:37 00,FFC4,00", + 71, + 0 + ], + "145": [ + "2025-11-08 06 16:59:16 00,FFC4,00", + 71, + 0 + ], + "146": [ + "2025-11-08 06 17:02:56 00,FFC4,00", + 71, + 0 + ], + "147": [ + "2025-11-08 06 17:03:09 00,FFC4,00", + 71, + 0 + ], + "148": [ + "2025-11-08 06 17:03:35 00,FFC4,00", + 71, + 0 + ], + "149": [ + "2025-11-08 06 17:03:50 00,FFC4,00", + 71, + 0 + ], + "150": [ + "2025-11-08 06 17:04:10 00,FFC4,00", + 71, + 0 + ], + "151": [ + "2025-11-08 06 17:04:23 00,FFC4,00", + 71, + 0 + ], + "152": [ + "2025-11-08 06 17:29:55 00,FFC4,00", + 71, + 0 + ], + "153": [ + "2025-11-08 06 17:29:55 00,FFC4,00", + 72, + 0 + ], + "154": [ + "2025-11-08 06 17:30:11 00,FFC4,00", + 71, + 0 + ], + "155": [ + "2025-11-08 06 17:43:47 00,FFC4,00", + 71, + 0 + ], + "156": [ + "2025-11-08 06 17:48:22 00,FFC4,00", + 71, + 0 + ], + "157": [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 71, + 0 + ], + "158": [ + "2025-11-08 06 20:13:05 00,FFC4,00", + 71, + 0 + ], + "159": [ + "2025-11-08 06 20:20:35 00,FFC4,00", + 71, + 0 + ], + "160": [ + "2025-11-08 06 20:21:12 00,FFC4,00", + 71, + 0 + ], + "161": [ + "2025-11-08 06 20:38:04 00,FFC4,00", + 71, + 0 + ], + "162": [ + "2025-11-08 06 20:38:12 00,FFC4,00", + 71, + 0 + ], + "163": [ + "2025-11-08 06 21:37:29 00,FFC4,00", + 71, + 0 + ], + "164": [ + "2025-11-08 06 21:37:29 00,FFC4,00", + 72, + 0 + ], + "165": [ + "2025-11-08 06 21:37:31 00,FFC4,00", + 71, + 0 + ], + "166": [ + "2025-11-08 06 21:40:32 00,FFC4,00", + 71, + 0 + ], + "167": [ + "2025-11-08 06 21:40:32 00,FFC4,00", + 72, + 0 + ], + "168": [ + "2025-11-09 07 14:42:59 00,FFC4,00", + 71, + 0 + ], + "169": [ + "2025-11-09 07 15:14:40 00,FFC4,00", + 71, + 0 + ], + "170": [ + "2025-11-10 01 00:13:22 00,FFC4,00", + 71, + 0 + ], + "171": [ + "2025-11-10 01 00:16:14 00,FFC4,00", + 71, + 0 + ], + "172": [ + "2025-11-10 01 00:17:09 00,FFC4,00", + 71, + 0 + ], + "173": [ + "2025-11-10 01 00:22:55 00,FFC4,00", + 71, + 0 + ], + "174": [ + "2025-11-10 01 00:34:55 00,FFC4,00", + 71, + 0 + ], + "175": [ + "2025-11-10 01 00:34:55 00,FFC4,00", + 72, + 0 + ], + "176": [ + "2025-11-10 01 00:34:55 00,FFC4,00", + 73, + 6 + ], + "177": [ + "2025-11-10 01 00:34:55 00,FFC4,00", + 75, + 330 + ], + "178": [ + "2025-11-10 01 15:35:32 00,FFC4,00", + 71, + 0 + ], + "179": [ + "2025-11-10 01 15:37:25 00,FFC4,00", + 71, + 0 + ], + "180": [ + "2025-11-10 01 15:37:25 00,FFC4,00", + 72, + 0 + ], + "181": [ + "2025-11-10 01 15:38:35 00,FFC4,00", + 71, + 0 + ] + }, + "timestamp": "2025-11-01T09:41:40.557343", + "status": "success" + }, + { + "key": "Event Record.2-Com log.Capture objects", + "classId": 7, + "obis": "0.0.99.98.4.255", + "obisFormatted": "0-0:99.98.4.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "2-Com log", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:41:41.158333", + "status": "success" + }, + { + "key": "Event Record.2-Com log.Capture period", + "classId": 7, + "obis": "0.0.99.98.4.255", + "obisFormatted": "0-0:99.98.4.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "2-Com log", + "value": 0, + "timestamp": "2025-11-01T09:41:41.727152", + "status": "success" + }, + { + "key": "Event Record.2-Com log.Sort method", + "classId": 7, + "obis": "0.0.99.98.4.255", + "obisFormatted": "0-0:99.98.4.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "2-Com log", + "value": 1, + "timestamp": "2025-11-01T09:41:42.293475", + "status": "success" + }, + { + "key": "Event Record.2-Com log.Sort object", + "classId": 7, + "obis": "0.0.99.98.4.255", + "obisFormatted": "0-0:99.98.4.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "2-Com log", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:41:42.861702", + "status": "success" + }, + { + "key": "Event Record.2-Com log.Entries in use", + "classId": 7, + "obis": "0.0.99.98.4.255", + "obisFormatted": "0-0:99.98.4.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "2-Com log", + "value": 182, + "timestamp": "2025-11-01T09:41:43.482964", + "status": "success" + }, + { + "key": "Event Record.2-Com log.Profile entries", + "classId": 7, + "obis": "0.0.99.98.4.255", + "obisFormatted": "0-0:99.98.4.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "2-Com log", + "value": 2190, + "timestamp": "2025-11-01T09:41:44.124826", + "status": "success" + }, + { + "key": "Event Record.Power quality event log code.Power quality event log code", + "classId": 1, + "obis": "0.0.96.11.5.255", + "obisFormatted": "0-0:96.11.5.255", + "attributeId": 2, + "attributeName": "Power quality event log code", + "controlName": "Power quality event log code", + "value": 90, + "timestamp": "2025-11-01T09:41:44.813053", + "status": "success" + }, + { + "key": "Event Record.3-Power quality.Buffer", + "classId": 7, + "obis": "0.0.99.98.5.255", + "obisFormatted": "0-0:99.98.5.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "3-Power quality", + "value": { + "0": [ + "2025-09-30 02 16:18:25 00,FF88,80", + 86 + ], + "1": [ + "2025-09-30 02 16:19:48 00,FF88,81", + 90 + ], + "2": [ + "2025-09-30 02 16:20:37 00,FF88,81", + 86 + ], + "3": [ + "2025-09-30 02 16:45:27 00,FF88,81", + 90 + ], + "4": [ + "2025-09-30 02 16:48:22 00,FF88,81", + 86 + ], + "5": [ + "2025-09-30 02 16:48:22 00,FF88,81", + 90 + ], + "6": [ + "2025-09-30 02 16:48:22 00,FF88,81", + 91 + ], + "7": [ + "2025-09-30 02 16:48:22 00,FF88,81", + 92 + ], + "8": [ + "2025-10-20 01 12:38:43 00,FF88,80", + 86 + ], + "9": [ + "2025-10-20 01 12:38:43 00,FF88,80", + 87 + ], + "10": [ + "2025-10-20 01 12:38:43 00,FF88,80", + 88 + ], + "11": [ + "2025-10-20 01 15:30:04 00,FF88,80", + 90 + ], + "12": [ + "2025-10-20 01 15:30:04 00,FF88,80", + 91 + ], + "13": [ + "2025-10-20 01 15:30:04 00,FF88,80", + 92 + ], + "14": [ + "2025-10-20 01 18:25:49 00,FF88,80", + 86 + ], + "15": [ + "2025-10-20 01 18:25:49 00,FF88,80", + 87 + ], + "16": [ + "2025-10-20 01 18:25:49 00,FF88,80", + 88 + ], + "17": [ + "2025-10-21 02 08:59:49 00,FF88,80", + 90 + ], + "18": [ + "2025-10-21 02 08:59:49 00,FF88,80", + 91 + ], + "19": [ + "2025-10-21 02 08:59:49 00,FF88,80", + 92 + ], + "20": [ + "2025-10-21 02 09:06:00 00,FF88,80", + 86 + ], + "21": [ + "2025-10-21 02 09:06:00 00,FF88,80", + 87 + ], + "22": [ + "2025-10-21 02 09:06:00 00,FF88,80", + 88 + ], + "23": [ + "2025-10-21 02 09:06:13 00,FF88,80", + 90 + ], + "24": [ + "2025-10-21 02 09:48:21 00,FF88,80", + 86 + ], + "25": [ + "2025-10-21 02 09:48:44 00,FF88,80", + 90 + ], + "26": [ + "2025-10-21 02 09:48:44 00,FF88,80", + 91 + ], + "27": [ + "2025-10-21 02 09:48:44 00,FF88,80", + 92 + ], + "28": [ + "2025-10-21 02 12:35:03 00,FF88,80", + 86 + ], + "29": [ + "2025-10-21 02 12:35:03 00,FF88,80", + 87 + ], + "30": [ + "2025-10-21 02 12:35:03 00,FF88,80", + 88 + ], + "31": [ + "2025-10-21 02 13:32:55 00,FF88,80", + 90 + ], + "32": [ + "2025-10-21 02 13:32:55 00,FF88,80", + 91 + ], + "33": [ + "2025-10-21 02 13:32:55 00,FF88,80", + 92 + ], + "34": [ + "2026-05-01 05 00:31:29 00,FF88,80", + 86 + ], + "35": [ + "2026-05-01 05 00:31:29 00,FF88,80", + 87 + ], + "36": [ + "2026-05-01 05 00:31:29 00,FF88,80", + 88 + ], + "37": [ + "2026-05-01 05 13:44:03 00,FF88,80", + 90 + ], + "38": [ + "2026-05-01 05 13:44:03 00,FF88,80", + 91 + ], + "39": [ + "2026-05-01 05 13:44:03 00,FF88,80", + 92 + ], + "40": [ + "2026-06-01 01 00:05:30 00,FF88,80", + 86 + ], + "41": [ + "2026-06-01 01 00:05:30 00,FF88,80", + 87 + ], + "42": [ + "2026-06-01 01 00:05:30 00,FF88,80", + 88 + ], + "43": [ + "2026-06-01 01 07:22:30 00,FF88,80", + 90 + ], + "44": [ + "2026-06-01 01 07:24:19 00,FF88,80", + 86 + ], + "45": [ + "2026-06-01 01 07:29:53 00,FF88,80", + 90 + ], + "46": [ + "2026-06-01 01 07:29:53 00,FF88,80", + 91 + ], + "47": [ + "2026-06-01 01 07:29:53 00,FF88,80", + 92 + ], + "48": [ + "2025-11-01 06 01:36:49 00,FFC4,00", + 86 + ], + "49": [ + "2025-11-01 06 01:36:49 00,FFC4,00", + 87 + ], + "50": [ + "2025-11-01 06 01:36:49 00,FFC4,00", + 88 + ], + "51": [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 90 + ], + "52": [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 91 + ], + "53": [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 92 + ], + "54": [ + "2025-11-01 06 15:56:58 00,FFC4,00", + 88 + ], + "55": [ + "2025-11-01 06 15:57:04 00,FFC4,00", + 87 + ], + "56": [ + "2025-11-01 06 15:57:53 00,FFC4,00", + 91 + ], + "57": [ + "2025-11-01 06 15:57:55 00,FFC4,00", + 92 + ], + "58": [ + "2025-11-01 06 16:42:28 00,FFC4,00", + 86 + ], + "59": [ + "2025-11-01 06 16:42:28 00,FFC4,00", + 87 + ], + "60": [ + "2025-11-01 06 16:42:28 00,FFC4,00", + 88 + ], + "61": [ + "2025-11-01 06 16:47:20 00,FFC4,00", + 81 + ], + "62": [ + "2025-11-01 06 16:47:20 00,FFC4,00", + 82 + ], + "63": [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 90 + ], + "64": [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 91 + ], + "65": [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 92 + ], + "66": [ + "2025-11-08 06 15:31:48 00,FFC4,00", + 86 + ], + "67": [ + "2025-11-08 06 15:31:48 00,FFC4,00", + 87 + ], + "68": [ + "2025-11-08 06 15:31:48 00,FFC4,00", + 88 + ], + "69": [ + "2025-11-08 06 15:32:00 00,FFC4,00", + 90 + ], + "70": [ + "2025-11-08 06 15:32:24 00,FFC4,00", + 86 + ], + "71": [ + "2025-11-08 06 15:32:32 00,FFC4,00", + 90 + ], + "72": [ + "2025-11-08 06 16:29:47 00,FFC4,00", + 86 + ], + "73": [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 90 + ], + "74": [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 91 + ], + "75": [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 92 + ], + "76": [ + "2025-11-08 06 17:28:56 00,FFC4,00", + 87 + ], + "77": [ + "2025-11-08 06 17:28:59 00,FFC4,00", + 88 + ], + "78": [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 86 + ], + "79": [ + "2025-11-08 06 20:12:40 00,FFC4,00", + 90 + ], + "80": [ + "2025-11-08 06 20:12:40 00,FFC4,00", + 91 + ], + "81": [ + "2025-11-08 06 20:12:40 00,FFC4,00", + 92 + ], + "82": [ + "2025-11-08 06 20:39:01 00,FFC4,00", + 81 + ], + "83": [ + "2025-11-08 06 20:39:41 00,FFC4,00", + 81 + ], + "84": [ + "2025-11-08 06 22:19:46 00,FFC4,00", + 86 + ], + "85": [ + "2025-11-08 06 22:19:46 00,FFC4,00", + 87 + ], + "86": [ + "2025-11-08 06 22:19:46 00,FFC4,00", + 88 + ], + "87": [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 90 + ], + "88": [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 91 + ], + "89": [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 92 + ], + "90": [ + "2025-11-09 07 15:14:43 00,FFC4,00", + 86 + ], + "91": [ + "2025-11-09 07 15:14:43 00,FFC4,00", + 87 + ], + "92": [ + "2025-11-09 07 15:14:43 00,FFC4,00", + 88 + ], + "93": [ + "2025-11-09 07 20:00:04 00,FFC4,00", + 90 + ], + "94": [ + "2025-11-09 07 20:34:00 00,FFC4,00", + 86 + ], + "95": [ + "2025-11-09 07 20:47:21 00,FFC4,00", + 90 + ], + "96": [ + "2025-11-09 07 23:10:14 00,FFC4,00", + 86 + ], + "97": [ + "2025-11-10 01 00:00:58 00,FFC4,00", + 90 + ], + "98": [ + "2025-11-10 01 00:35:00 00,FFC4,00", + 86 + ], + "99": [ + "2025-11-10 01 15:34:07 00,FFC4,00", + 90 + ] + }, + "timestamp": "2025-11-01T09:41:51.616248", + "status": "success" + }, + { + "key": "Event Record.3-Power quality.Capture objects", + "classId": 7, + "obis": "0.0.99.98.5.255", + "obisFormatted": "0-0:99.98.5.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "3-Power quality", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:41:52.252993", + "status": "success" + }, + { + "key": "Event Record.3-Power quality.Capture period", + "classId": 7, + "obis": "0.0.99.98.5.255", + "obisFormatted": "0-0:99.98.5.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "3-Power quality", + "value": 0, + "timestamp": "2025-11-01T09:41:52.869656", + "status": "success" + }, + { + "key": "Event Record.3-Power quality.Sort method", + "classId": 7, + "obis": "0.0.99.98.5.255", + "obisFormatted": "0-0:99.98.5.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "3-Power quality", + "value": 1, + "timestamp": "2025-11-01T09:41:53.502902", + "status": "success" + }, + { + "key": "Event Record.3-Power quality.Sort object", + "classId": 7, + "obis": "0.0.99.98.5.255", + "obisFormatted": "0-0:99.98.5.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "3-Power quality", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:41:54.087797", + "status": "success" + }, + { + "key": "Event Record.3-Power quality.Entries in use", + "classId": 7, + "obis": "0.0.99.98.5.255", + "obisFormatted": "0-0:99.98.5.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "3-Power quality", + "value": 100, + "timestamp": "2025-11-01T09:41:54.677746", + "status": "success" + }, + { + "key": "Event Record.3-Power quality.Profile entries", + "classId": 7, + "obis": "0.0.99.98.5.255", + "obisFormatted": "0-0:99.98.5.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "3-Power quality", + "value": 100, + "timestamp": "2025-11-01T09:41:55.297597", + "status": "success" + }, + { + "key": "Event Record.Power quality extended event log code.Power quality extended event log code", + "classId": 1, + "obis": "0.0.96.11.7.255", + "obisFormatted": "0-0:96.11.7.255", + "attributeId": 2, + "attributeName": "Power quality extended event log code", + "controlName": "Power quality extended event log code", + "value": 0, + "timestamp": "2025-11-01T09:41:56.015116", + "status": "success" + }, + { + "key": "Event Record.Power quality extended magnitude.Power quality extended magnitude", + "classId": 1, + "obis": "0.0.96.11.20.255", + "obisFormatted": "0-0:96.11.20.255", + "attributeId": 2, + "attributeName": "Power quality extended magnitude", + "controlName": "Power quality extended magnitude", + "value": 0, + "timestamp": "2025-11-01T09:41:56.784940", + "status": "success" + }, + { + "key": "Event Record.Power quality extended duration.Power quality extended duration", + "classId": 1, + "obis": "0.0.96.11.21.255", + "obisFormatted": "0-0:96.11.21.255", + "attributeId": 2, + "attributeName": "Power quality extended duration", + "controlName": "Power quality extended duration", + "value": 0, + "timestamp": "2025-11-01T09:41:57.509722", + "status": "success" + }, + { + "key": "Event Record.4-Power quality extended.Buffer", + "classId": 7, + "obis": "0.0.99.98.7.255", + "obisFormatted": "0-0:99.98.7.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "4-Power quality extended", + "value": {}, + "timestamp": "2025-11-01T09:41:58.090218", + "status": "success" + }, + { + "key": "Event Record.4-Power quality extended.Capture objects", + "classId": 7, + "obis": "0.0.99.98.7.255", + "obisFormatted": "0-0:99.98.7.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "4-Power quality extended", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:41:58.741258", + "status": "success" + }, + { + "key": "Event Record.4-Power quality extended.Capture period", + "classId": 7, + "obis": "0.0.99.98.7.255", + "obisFormatted": "0-0:99.98.7.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "4-Power quality extended", + "value": 0, + "timestamp": "2025-11-01T09:41:59.362065", + "status": "success" + }, + { + "key": "Event Record.4-Power quality extended.Sort method", + "classId": 7, + "obis": "0.0.99.98.7.255", + "obisFormatted": "0-0:99.98.7.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "4-Power quality extended", + "value": 1, + "timestamp": "2025-11-01T09:42:00.014648", + "status": "success" + }, + { + "key": "Event Record.4-Power quality extended.Sort object", + "classId": 7, + "obis": "0.0.99.98.7.255", + "obisFormatted": "0-0:99.98.7.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "4-Power quality extended", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:00.630616", + "status": "success" + }, + { + "key": "Event Record.4-Power quality extended.Entries in use", + "classId": 7, + "obis": "0.0.99.98.7.255", + "obisFormatted": "0-0:99.98.7.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "4-Power quality extended", + "value": 0, + "timestamp": "2025-11-01T09:42:01.220937", + "status": "success" + }, + { + "key": "Event Record.4-Power quality extended.Profile entries", + "classId": 7, + "obis": "0.0.99.98.7.255", + "obisFormatted": "0-0:99.98.7.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "4-Power quality extended", + "value": 100, + "timestamp": "2025-11-01T09:42:01.832861", + "status": "success" + }, + { + "key": "Event Record.M-BUS event log code.M-BUS event log code", + "classId": 1, + "obis": "0.1.96.11.3.255", + "obisFormatted": "0-1:96.11.3.255", + "attributeId": 2, + "attributeName": "M-BUS event log code", + "controlName": "M-BUS event log code", + "value": 0, + "timestamp": "2025-11-01T09:42:02.559287", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Buffer", + "classId": 7, + "obis": "0.1.99.98.3.255", + "obisFormatted": "0-1:99.98.3.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "5-MBus", + "value": {}, + "timestamp": "2025-11-01T09:42:03.142811", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Capture objects", + "classId": 7, + "obis": "0.1.99.98.3.255", + "obisFormatted": "0-1:99.98.3.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "5-MBus", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.11.3.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:03.762685", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Capture period", + "classId": 7, + "obis": "0.1.99.98.3.255", + "obisFormatted": "0-1:99.98.3.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "5-MBus", + "value": 0, + "timestamp": "2025-11-01T09:42:04.356356", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Sort method", + "classId": 7, + "obis": "0.1.99.98.3.255", + "obisFormatted": "0-1:99.98.3.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "5-MBus", + "value": 1, + "timestamp": "2025-11-01T09:42:04.989652", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Sort object", + "classId": 7, + "obis": "0.1.99.98.3.255", + "obisFormatted": "0-1:99.98.3.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "5-MBus", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:05.579594", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Entries in use", + "classId": 7, + "obis": "0.1.99.98.3.255", + "obisFormatted": "0-1:99.98.3.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "5-MBus", + "value": 0, + "timestamp": "2025-11-01T09:42:06.179629", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Profile entries", + "classId": 7, + "obis": "0.1.99.98.3.255", + "obisFormatted": "0-1:99.98.3.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "5-MBus", + "value": 60, + "timestamp": "2025-11-01T09:42:06.780369", + "status": "success" + }, + { + "key": "Event Record.M-BUS event log code.M-BUS event log code", + "classId": 1, + "obis": "0.2.96.11.3.255", + "obisFormatted": "0-2:96.11.3.255", + "attributeId": 2, + "attributeName": "M-BUS event log code", + "controlName": "M-BUS event log code", + "value": 0, + "timestamp": "2025-11-01T09:42:07.472031", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Buffer", + "classId": 7, + "obis": "0.2.99.98.3.255", + "obisFormatted": "0-2:99.98.3.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "5-MBus", + "value": {}, + "timestamp": "2025-11-01T09:42:08.064873", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Capture objects", + "classId": 7, + "obis": "0.2.99.98.3.255", + "obisFormatted": "0-2:99.98.3.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "5-MBus", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.11.3.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:08.721891", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Capture period", + "classId": 7, + "obis": "0.2.99.98.3.255", + "obisFormatted": "0-2:99.98.3.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "5-MBus", + "value": 0, + "timestamp": "2025-11-01T09:42:09.340442", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Sort method", + "classId": 7, + "obis": "0.2.99.98.3.255", + "obisFormatted": "0-2:99.98.3.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "5-MBus", + "value": 1, + "timestamp": "2025-11-01T09:42:09.950070", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Sort object", + "classId": 7, + "obis": "0.2.99.98.3.255", + "obisFormatted": "0-2:99.98.3.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "5-MBus", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:10.577373", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Entries in use", + "classId": 7, + "obis": "0.2.99.98.3.255", + "obisFormatted": "0-2:99.98.3.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "5-MBus", + "value": 0, + "timestamp": "2025-11-01T09:42:11.227171", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Profile entries", + "classId": 7, + "obis": "0.2.99.98.3.255", + "obisFormatted": "0-2:99.98.3.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "5-MBus", + "value": 60, + "timestamp": "2025-11-01T09:42:11.852291", + "status": "success" + }, + { + "key": "Event Record.M-BUS event log code.M-BUS event log code", + "classId": 1, + "obis": "0.3.96.11.3.255", + "obisFormatted": "0-3:96.11.3.255", + "attributeId": 2, + "attributeName": "M-BUS event log code", + "controlName": "M-BUS event log code", + "value": 0, + "timestamp": "2025-11-01T09:42:12.593373", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Buffer", + "classId": 7, + "obis": "0.3.99.98.3.255", + "obisFormatted": "0-3:99.98.3.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "5-MBus", + "value": {}, + "timestamp": "2025-11-01T09:42:13.180538", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Capture objects", + "classId": 7, + "obis": "0.3.99.98.3.255", + "obisFormatted": "0-3:99.98.3.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "5-MBus", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.11.3.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:13.803717", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Capture period", + "classId": 7, + "obis": "0.3.99.98.3.255", + "obisFormatted": "0-3:99.98.3.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "5-MBus", + "value": 0, + "timestamp": "2025-11-01T09:42:14.424344", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Sort method", + "classId": 7, + "obis": "0.3.99.98.3.255", + "obisFormatted": "0-3:99.98.3.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "5-MBus", + "value": 1, + "timestamp": "2025-11-01T09:42:15.033031", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Sort object", + "classId": 7, + "obis": "0.3.99.98.3.255", + "obisFormatted": "0-3:99.98.3.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "5-MBus", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:15.658305", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Entries in use", + "classId": 7, + "obis": "0.3.99.98.3.255", + "obisFormatted": "0-3:99.98.3.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "5-MBus", + "value": 0, + "timestamp": "2025-11-01T09:42:16.266098", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Profile entries", + "classId": 7, + "obis": "0.3.99.98.3.255", + "obisFormatted": "0-3:99.98.3.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "5-MBus", + "value": 60, + "timestamp": "2025-11-01T09:42:16.862659", + "status": "success" + }, + { + "key": "Event Record.M-BUS event log code.M-BUS event log code", + "classId": 1, + "obis": "0.4.96.11.3.255", + "obisFormatted": "0-4:96.11.3.255", + "attributeId": 2, + "attributeName": "M-BUS event log code", + "controlName": "M-BUS event log code", + "value": 0, + "timestamp": "2025-11-01T09:42:17.552346", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Buffer", + "classId": 7, + "obis": "0.4.99.98.3.255", + "obisFormatted": "0-4:99.98.3.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "5-MBus", + "value": {}, + "timestamp": "2025-11-01T09:42:18.135236", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Capture objects", + "classId": 7, + "obis": "0.4.99.98.3.255", + "obisFormatted": "0-4:99.98.3.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "5-MBus", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:18.766500", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Capture period", + "classId": 7, + "obis": "0.4.99.98.3.255", + "obisFormatted": "0-4:99.98.3.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "5-MBus", + "value": 0, + "timestamp": "2025-11-01T09:42:19.367253", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Sort method", + "classId": 7, + "obis": "0.4.99.98.3.255", + "obisFormatted": "0-4:99.98.3.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "5-MBus", + "value": 1, + "timestamp": "2025-11-01T09:42:19.973058", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Sort object", + "classId": 7, + "obis": "0.4.99.98.3.255", + "obisFormatted": "0-4:99.98.3.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "5-MBus", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:20.575614", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Entries in use", + "classId": 7, + "obis": "0.4.99.98.3.255", + "obisFormatted": "0-4:99.98.3.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "5-MBus", + "value": 0, + "timestamp": "2025-11-01T09:42:21.180642", + "status": "success" + }, + { + "key": "Event Record.5-MBus.Profile entries", + "classId": 7, + "obis": "0.4.99.98.3.255", + "obisFormatted": "0-4:99.98.3.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "5-MBus", + "value": 60, + "timestamp": "2025-11-01T09:42:21.770875", + "status": "success" + }, + { + "key": "Event Record.6-Power failure.Buffer", + "classId": 7, + "obis": "1.0.99.97.0.255", + "obisFormatted": "1-0:99.97.0.255", + "attributeId": 2, + "attributeName": "Buffer", + "controlName": "6-Power failure", + "value": { + "0": [ + "2025-10-21 02 08:59:49 00,FF88,80", + 52439 + ], + "1": [ + "2025-10-21 02 09:48:44 00,FF88,80", + 2563 + ], + "2": [ + "2025-10-21 02 13:32:55 00,FF88,80", + 3471 + ], + "3": [ + "2026-05-01 05 13:44:03 00,FF88,80", + 47553 + ], + "4": [ + "2026-06-01 01 07:29:53 00,FF88,80", + 26662 + ], + "5": [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 47891 + ], + "6": [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 600348 + ], + "7": [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 3549 + ], + "8": [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 9793 + ], + "9": [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 58764 + ] + }, + "timestamp": "2025-11-01T09:42:22.842324", + "status": "success" + }, + { + "key": "Event Record.6-Power failure.Capture objects", + "classId": 7, + "obis": "1.0.99.97.0.255", + "obisFormatted": "1-0:99.97.0.255", + "attributeId": 3, + "attributeName": "Capture objects", + "controlName": "6-Power failure", + "value": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "0-0:96.7.19.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:23.452209", + "status": "success" + }, + { + "key": "Event Record.6-Power failure.Capture period", + "classId": 7, + "obis": "1.0.99.97.0.255", + "obisFormatted": "1-0:99.97.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "6-Power failure", + "value": 0, + "timestamp": "2025-11-01T09:42:24.122971", + "status": "success" + }, + { + "key": "Event Record.6-Power failure.Sort method", + "classId": 7, + "obis": "1.0.99.97.0.255", + "obisFormatted": "1-0:99.97.0.255", + "attributeId": 5, + "attributeName": "Sort method", + "controlName": "6-Power failure", + "value": 1, + "timestamp": "2025-11-01T09:42:24.716929", + "status": "success" + }, + { + "key": "Event Record.6-Power failure.Sort object", + "classId": 7, + "obis": "1.0.99.97.0.255", + "obisFormatted": "1-0:99.97.0.255", + "attributeId": 6, + "attributeName": "Sort object", + "controlName": "6-Power failure", + "value": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:42:25.317782", + "status": "success" + }, + { + "key": "Event Record.6-Power failure.Entries in use", + "classId": 7, + "obis": "1.0.99.97.0.255", + "obisFormatted": "1-0:99.97.0.255", + "attributeId": 7, + "attributeName": "Entries in use", + "controlName": "6-Power failure", + "value": 10, + "timestamp": "2025-11-01T09:42:25.929475", + "status": "success" + }, + { + "key": "Event Record.6-Power failure.Profile entries", + "classId": 7, + "obis": "1.0.99.97.0.255", + "obisFormatted": "1-0:99.97.0.255", + "attributeId": 8, + "attributeName": "Profile entries", + "controlName": "6-Power failure", + "value": 10, + "timestamp": "2025-11-01T09:42:26.536348", + "status": "success" + } + ], + "summary": { + "total": 86, + "success": 86, + "failed": 0 + } + }, + "Single Action Schedule": { + "sheet_name": "Single Action Schedule", + "objects": [ + { + "key": "Single Action Schedule.Phase Outage scheduler.Executed script", + "classId": 22, + "obis": "0.0.15.1.4.255", + "obisFormatted": "0-0:15.1.4.255", + "attributeId": 2, + "attributeName": "Executed script", + "controlName": "Phase Outage scheduler", + "value": { + "0": [ + "0-0:10.1.108.255", + 1 + ] + }, + "timestamp": "2025-11-01T09:42:27.185233", + "status": "success" + }, + { + "key": "Single Action Schedule.Phase Outage scheduler.Type", + "classId": 22, + "obis": "0.0.15.1.4.255", + "obisFormatted": "0-0:15.1.4.255", + "attributeId": 3, + "attributeName": "Type", + "controlName": "Phase Outage scheduler", + "value": 1, + "timestamp": "2025-11-01T09:42:27.824555", + "status": "success" + }, + { + "key": "Single Action Schedule.Phase Outage scheduler.Execution time", + "classId": 22, + "obis": "0.0.15.1.4.255", + "obisFormatted": "0-0:15.1.4.255", + "attributeId": 4, + "attributeName": "Execution time", + "controlName": "Phase Outage scheduler", + "value": {}, + "timestamp": "2025-11-01T09:42:28.449911", + "status": "success" + } + ], + "summary": { + "total": 3, + "success": 3, + "failed": 0 + } + }, + "Image Transfer": { + "sheet_name": "Image Transfer", + "objects": [ + { + "key": "Image Transfer.Image Transfer.Image block size", + "classId": 18, + "obis": "0.0.44.0.0.255", + "obisFormatted": "0-0:44.0.0.255", + "attributeId": 2, + "attributeName": "Image block size", + "controlName": "Image Transfer", + "value": 1152, + "timestamp": "2025-11-01T09:42:29.246480", + "status": "success" + }, + { + "key": "Image Transfer.Image Transfer.Image transferred blocks status", + "classId": 18, + "obis": "0.0.44.0.0.255", + "obisFormatted": "0-0:44.0.0.255", + "attributeId": 3, + "attributeName": "Image transferred blocks status", + "controlName": "Image Transfer", + "value": "1111111111111111111111111111111", + "timestamp": "2025-11-01T09:42:29.999003", + "status": "success" + }, + { + "key": "Image Transfer.Image Transfer.Image first not transferred block number", + "classId": 18, + "obis": "0.0.44.0.0.255", + "obisFormatted": "0-0:44.0.0.255", + "attributeId": 4, + "attributeName": "Image first not transferred block number", + "controlName": "Image Transfer", + "value": 31, + "timestamp": "2025-11-01T09:42:30.724657", + "status": "success" + }, + { + "key": "Image Transfer.Image Transfer.Image transfer enabled", + "classId": 18, + "obis": "0.0.44.0.0.255", + "obisFormatted": "0-0:44.0.0.255", + "attributeId": 5, + "attributeName": "Image transfer enabled", + "controlName": "Image Transfer", + "value": 1, + "timestamp": "2025-11-01T09:42:31.488650", + "status": "success" + }, + { + "key": "Image Transfer.Image Transfer.Image transfer status", + "classId": 18, + "obis": "0.0.44.0.0.255", + "obisFormatted": "0-0:44.0.0.255", + "attributeId": 6, + "attributeName": "Image transfer status", + "controlName": "Image Transfer", + "value": 6, + "timestamp": "2025-11-01T09:42:32.179984", + "status": "success" + }, + { + "key": "Image Transfer.Image Transfer.Image to activate info", + "classId": 18, + "obis": "0.0.44.0.0.255", + "obisFormatted": "0-0:44.0.0.255", + "attributeId": 7, + "attributeName": "Image to activate info", + "controlName": "Image Transfer", + "value": { + "0": [ + 34576, + "KFM-03", + "7E74BA05F40E05B0F6E39B050A03B3A9C9DBB513AD836AE4775A34404D94338BF426DCB6B2F6902F22DFF21AD38EA1C1F8B816F34679F676C63C54FE710EA6F9" + ] + }, + "timestamp": "2025-11-01T09:42:32.956144", + "status": "success" + }, + { + "key": "Image Transfer.LTE Image Transfer.Image block size", + "classId": 18, + "obis": "0.5.44.0.0.255", + "obisFormatted": "0-5:44.0.0.255", + "attributeId": 2, + "attributeName": "Image block size", + "controlName": "LTE Image Transfer", + "value": 1152, + "timestamp": "2025-11-01T09:42:33.682498", + "status": "success" + }, + { + "key": "Image Transfer.LTE Image Transfer.Image transferred blocks status", + "classId": 18, + "obis": "0.5.44.0.0.255", + "obisFormatted": "0-5:44.0.0.255", + "attributeId": 3, + "attributeName": "Image transferred blocks status", + "controlName": "LTE Image Transfer", + "value": "", + "timestamp": "2025-11-01T09:42:34.393395", + "status": "success" + }, + { + "key": "Image Transfer.LTE Image Transfer.Image first not transferred block number", + "classId": 18, + "obis": "0.5.44.0.0.255", + "obisFormatted": "0-5:44.0.0.255", + "attributeId": 4, + "attributeName": "Image first not transferred block number", + "controlName": "LTE Image Transfer", + "value": 0, + "timestamp": "2025-11-01T09:42:35.153497", + "status": "success" + }, + { + "key": "Image Transfer.LTE Image Transfer.Image transfer enabled", + "classId": 18, + "obis": "0.5.44.0.0.255", + "obisFormatted": "0-5:44.0.0.255", + "attributeId": 5, + "attributeName": "Image transfer enabled", + "controlName": "LTE Image Transfer", + "value": 0, + "timestamp": "2025-11-01T09:42:35.829495", + "status": "success" + }, + { + "key": "Image Transfer.LTE Image Transfer.Image transfer status", + "classId": 18, + "obis": "0.5.44.0.0.255", + "obisFormatted": "0-5:44.0.0.255", + "attributeId": 6, + "attributeName": "Image transfer status", + "controlName": "LTE Image Transfer", + "value": 0, + "timestamp": "2025-11-01T09:42:36.566412", + "status": "success" + }, + { + "key": "Image Transfer.LTE Image Transfer.Image to activate info", + "classId": 18, + "obis": "0.5.44.0.0.255", + "obisFormatted": "0-5:44.0.0.255", + "attributeId": 7, + "attributeName": "Image to activate info", + "controlName": "LTE Image Transfer", + "value": {}, + "timestamp": "2025-11-01T09:42:37.264652", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 1.Image block size", + "classId": 18, + "obis": "0.1.44.0.0.255", + "obisFormatted": "0-1:44.0.0.255", + "attributeId": 2, + "attributeName": "Image block size", + "controlName": "MBUS Image Transfer channel 1", + "value": 1152, + "timestamp": "2025-11-01T09:42:37.993547", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 1.Image transferred blocks status", + "classId": 18, + "obis": "0.1.44.0.0.255", + "obisFormatted": "0-1:44.0.0.255", + "attributeId": 3, + "attributeName": "Image transferred blocks status", + "controlName": "MBUS Image Transfer channel 1", + "value": "", + "timestamp": "2025-11-01T09:42:38.673460", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 1.Image first not transferred block number", + "classId": 18, + "obis": "0.1.44.0.0.255", + "obisFormatted": "0-1:44.0.0.255", + "attributeId": 4, + "attributeName": "Image first not transferred block number", + "controlName": "MBUS Image Transfer channel 1", + "value": 0, + "timestamp": "2025-11-01T09:42:39.397093", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 1.Image transfer enabled", + "classId": 18, + "obis": "0.1.44.0.0.255", + "obisFormatted": "0-1:44.0.0.255", + "attributeId": 5, + "attributeName": "Image transfer enabled", + "controlName": "MBUS Image Transfer channel 1", + "value": 0, + "timestamp": "2025-11-01T09:42:40.151596", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 1.Image transfer status", + "classId": 18, + "obis": "0.1.44.0.0.255", + "obisFormatted": "0-1:44.0.0.255", + "attributeId": 6, + "attributeName": "Image transfer status", + "controlName": "MBUS Image Transfer channel 1", + "value": 0, + "timestamp": "2025-11-01T09:42:40.833700", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 1.Image to activate info", + "classId": 18, + "obis": "0.1.44.0.0.255", + "obisFormatted": "0-1:44.0.0.255", + "attributeId": 7, + "attributeName": "Image to activate info", + "controlName": "MBUS Image Transfer channel 1", + "value": {}, + "timestamp": "2025-11-01T09:42:41.538197", + "status": "success" + }, + { + "key": "Image Transfer.Firmware upgrade status on MBus level.nan", + "classId": 18, + "obis": "0.1.44.0.0.255", + "obisFormatted": "0-1:44.0.0.255", + "attributeId": -1, + "attributeName": "", + "controlName": "Firmware upgrade status on MBus level", + "value": "ScopeOfAccessViolated", + "timestamp": "2025-11-01T09:42:42.219676", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 2.Image block size", + "classId": 18, + "obis": "0.2.44.0.0.255", + "obisFormatted": "0-2:44.0.0.255", + "attributeId": 2, + "attributeName": "Image block size", + "controlName": "MBUS Image Transfer channel 2", + "value": 1152, + "timestamp": "2025-11-01T09:42:42.904899", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 2.Image transferred blocks status", + "classId": 18, + "obis": "0.2.44.0.0.255", + "obisFormatted": "0-2:44.0.0.255", + "attributeId": 3, + "attributeName": "Image transferred blocks status", + "controlName": "MBUS Image Transfer channel 2", + "value": "", + "timestamp": "2025-11-01T09:42:43.597579", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 2.Image first not transferred block number", + "classId": 18, + "obis": "0.2.44.0.0.255", + "obisFormatted": "0-2:44.0.0.255", + "attributeId": 4, + "attributeName": "Image first not transferred block number", + "controlName": "MBUS Image Transfer channel 2", + "value": 0, + "timestamp": "2025-11-01T09:42:44.309920", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 2.Image transfer enabled", + "classId": 18, + "obis": "0.2.44.0.0.255", + "obisFormatted": "0-2:44.0.0.255", + "attributeId": 5, + "attributeName": "Image transfer enabled", + "controlName": "MBUS Image Transfer channel 2", + "value": 0, + "timestamp": "2025-11-01T09:42:45.030127", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 2.Image transfer status", + "classId": 18, + "obis": "0.2.44.0.0.255", + "obisFormatted": "0-2:44.0.0.255", + "attributeId": 6, + "attributeName": "Image transfer status", + "controlName": "MBUS Image Transfer channel 2", + "value": 0, + "timestamp": "2025-11-01T09:42:45.815156", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 2.Image to activate info", + "classId": 18, + "obis": "0.2.44.0.0.255", + "obisFormatted": "0-2:44.0.0.255", + "attributeId": 7, + "attributeName": "Image to activate info", + "controlName": "MBUS Image Transfer channel 2", + "value": {}, + "timestamp": "2025-11-01T09:42:46.534806", + "status": "success" + }, + { + "key": "Image Transfer.Firmware upgrade status on MBus level.nan", + "classId": 18, + "obis": "0.2.44.0.0.255", + "obisFormatted": "0-2:44.0.0.255", + "attributeId": -1, + "attributeName": "", + "controlName": "Firmware upgrade status on MBus level", + "value": "ScopeOfAccessViolated", + "timestamp": "2025-11-01T09:42:47.197134", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 3.Image block size", + "classId": 18, + "obis": "0.3.44.0.0.255", + "obisFormatted": "0-3:44.0.0.255", + "attributeId": 2, + "attributeName": "Image block size", + "controlName": "MBUS Image Transfer channel 3", + "value": 1152, + "timestamp": "2025-11-01T09:42:47.930918", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 3.Image transferred blocks status", + "classId": 18, + "obis": "0.3.44.0.0.255", + "obisFormatted": "0-3:44.0.0.255", + "attributeId": 3, + "attributeName": "Image transferred blocks status", + "controlName": "MBUS Image Transfer channel 3", + "value": "", + "timestamp": "2025-11-01T09:42:48.616881", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 3.Image first not transferred block number", + "classId": 18, + "obis": "0.3.44.0.0.255", + "obisFormatted": "0-3:44.0.0.255", + "attributeId": 4, + "attributeName": "Image first not transferred block number", + "controlName": "MBUS Image Transfer channel 3", + "value": 0, + "timestamp": "2025-11-01T09:42:49.316171", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 3.Image transfer enabled", + "classId": 18, + "obis": "0.3.44.0.0.255", + "obisFormatted": "0-3:44.0.0.255", + "attributeId": 5, + "attributeName": "Image transfer enabled", + "controlName": "MBUS Image Transfer channel 3", + "value": 0, + "timestamp": "2025-11-01T09:42:50.085477", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 3.Image transfer status", + "classId": 18, + "obis": "0.3.44.0.0.255", + "obisFormatted": "0-3:44.0.0.255", + "attributeId": 6, + "attributeName": "Image transfer status", + "controlName": "MBUS Image Transfer channel 3", + "value": 0, + "timestamp": "2025-11-01T09:42:50.766508", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 3.Image to activate info", + "classId": 18, + "obis": "0.3.44.0.0.255", + "obisFormatted": "0-3:44.0.0.255", + "attributeId": 7, + "attributeName": "Image to activate info", + "controlName": "MBUS Image Transfer channel 3", + "value": {}, + "timestamp": "2025-11-01T09:42:51.440317", + "status": "success" + }, + { + "key": "Image Transfer.Firmware upgrade status on MBus level.nan", + "classId": 18, + "obis": "0.3.44.0.0.255", + "obisFormatted": "0-3:44.0.0.255", + "attributeId": -1, + "attributeName": "", + "controlName": "Firmware upgrade status on MBus level", + "value": "ScopeOfAccessViolated", + "timestamp": "2025-11-01T09:42:52.142696", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 4.Image block size", + "classId": 18, + "obis": "0.4.44.0.0.255", + "obisFormatted": "0-4:44.0.0.255", + "attributeId": 2, + "attributeName": "Image block size", + "controlName": "MBUS Image Transfer channel 4", + "value": 1152, + "timestamp": "2025-11-01T09:42:52.853183", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 4.Image transferred blocks status", + "classId": 18, + "obis": "0.4.44.0.0.255", + "obisFormatted": "0-4:44.0.0.255", + "attributeId": 3, + "attributeName": "Image transferred blocks status", + "controlName": "MBUS Image Transfer channel 4", + "value": "", + "timestamp": "2025-11-01T09:42:53.509298", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 4.Image first not transferred block number", + "classId": 18, + "obis": "0.4.44.0.0.255", + "obisFormatted": "0-4:44.0.0.255", + "attributeId": 4, + "attributeName": "Image first not transferred block number", + "controlName": "MBUS Image Transfer channel 4", + "value": 0, + "timestamp": "2025-11-01T09:42:54.195647", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 4.Image transfer enabled", + "classId": 18, + "obis": "0.4.44.0.0.255", + "obisFormatted": "0-4:44.0.0.255", + "attributeId": 5, + "attributeName": "Image transfer enabled", + "controlName": "MBUS Image Transfer channel 4", + "value": 0, + "timestamp": "2025-11-01T09:42:54.885649", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 4.Image transfer status", + "classId": 18, + "obis": "0.4.44.0.0.255", + "obisFormatted": "0-4:44.0.0.255", + "attributeId": 6, + "attributeName": "Image transfer status", + "controlName": "MBUS Image Transfer channel 4", + "value": 0, + "timestamp": "2025-11-01T09:42:55.565801", + "status": "success" + }, + { + "key": "Image Transfer.MBUS Image Transfer channel 4.Image to activate info", + "classId": 18, + "obis": "0.4.44.0.0.255", + "obisFormatted": "0-4:44.0.0.255", + "attributeId": 7, + "attributeName": "Image to activate info", + "controlName": "MBUS Image Transfer channel 4", + "value": {}, + "timestamp": "2025-11-01T09:42:56.275997", + "status": "success" + }, + { + "key": "Image Transfer.Firmware upgrade status on MBus level.nan", + "classId": 18, + "obis": "0.4.44.0.0.255", + "obisFormatted": "0-4:44.0.0.255", + "attributeId": -1, + "attributeName": "", + "controlName": "Firmware upgrade status on MBus level", + "value": "ScopeOfAccessViolated", + "timestamp": "2025-11-01T09:42:56.992487", + "status": "success" + } + ], + "summary": { + "total": 40, + "success": 40, + "failed": 0 + } + }, + "Communication port configuratio": { + "sheet_name": "Communication port configuratio", + "objects": [ + { + "key": "Communication port configuratio.Configuration object.nan", + "classId": 1, + "obis": "0.1.94.31.3.255", + "obisFormatted": "0-1:94.31.3.255", + "attributeId": 2, + "attributeName": "", + "controlName": "Configuration object", + "value": { + "0": [ + "0000001000000000" + ] + }, + "timestamp": "2025-11-01T09:42:57.703084", + "status": "success" + }, + { + "key": "Communication port configuratio.Local Port.Default mode", + "classId": 19, + "obis": "0.0.20.0.0.255", + "obisFormatted": "0-0:20.0.0.255", + "attributeId": 2, + "attributeName": "Default mode", + "controlName": "Local Port", + "value": 0, + "timestamp": "2025-11-01T09:42:58.325048", + "status": "success" + }, + { + "key": "Communication port configuratio.Local Port.Default baud (", + "classId": 19, + "obis": "0.0.20.0.0.255", + "obisFormatted": "0-0:20.0.0.255", + "attributeId": 3, + "attributeName": "Default baud (", + "controlName": "Local Port", + "value": 5, + "timestamp": "2025-11-01T09:42:58.919420", + "status": "success" + }, + { + "key": "Communication port configuratio.Local Port.Prop baud", + "classId": 19, + "obis": "0.0.20.0.0.255", + "obisFormatted": "0-0:20.0.0.255", + "attributeId": 4, + "attributeName": "Prop baud", + "controlName": "Local Port", + "value": 5, + "timestamp": "2025-11-01T09:42:59.526569", + "status": "success" + }, + { + "key": "Communication port configuratio.Local Port.Response_time", + "classId": 19, + "obis": "0.0.20.0.0.255", + "obisFormatted": "0-0:20.0.0.255", + "attributeId": 5, + "attributeName": "Response_time", + "controlName": "Local Port", + "value": 1, + "timestamp": "2025-11-01T09:43:00.149128", + "status": "success" + }, + { + "key": "Communication port configuratio.Local Port.Device addr", + "classId": 19, + "obis": "0.0.20.0.0.255", + "obisFormatted": "0-0:20.0.0.255", + "attributeId": 6, + "attributeName": "Device addr", + "controlName": "Local Port", + "value": "17", + "timestamp": "2025-11-01T09:43:00.778474", + "status": "success" + }, + { + "key": "Communication port configuratio.Optical Setup.Comm speed", + "classId": 23, + "obis": "0.0.22.0.0.255", + "obisFormatted": "0-0:22.0.0.255", + "attributeId": 2, + "attributeName": "Comm speed", + "controlName": "Optical Setup", + "value": 5, + "timestamp": "2025-11-01T09:43:01.375372", + "status": "success" + }, + { + "key": "Communication port configuratio.Optical Setup.Window size transmit", + "classId": 23, + "obis": "0.0.22.0.0.255", + "obisFormatted": "0-0:22.0.0.255", + "attributeId": 3, + "attributeName": "Window size transmit", + "controlName": "Optical Setup", + "value": 1, + "timestamp": "2025-11-01T09:43:01.999466", + "status": "success" + }, + { + "key": "Communication port configuratio.Optical Setup.Window size receive", + "classId": 23, + "obis": "0.0.22.0.0.255", + "obisFormatted": "0-0:22.0.0.255", + "attributeId": 4, + "attributeName": "Window size receive", + "controlName": "Optical Setup", + "value": 1, + "timestamp": "2025-11-01T09:43:02.544446", + "status": "success" + }, + { + "key": "Communication port configuratio.Optical Setup.Max info field length transmit", + "classId": 23, + "obis": "0.0.22.0.0.255", + "obisFormatted": "0-0:22.0.0.255", + "attributeId": 5, + "attributeName": "Max info field length transmit", + "controlName": "Optical Setup", + "value": 128, + "timestamp": "2025-11-01T09:43:03.160615", + "status": "success" + }, + { + "key": "Communication port configuratio.Optical Setup.Max info field length receive", + "classId": 23, + "obis": "0.0.22.0.0.255", + "obisFormatted": "0-0:22.0.0.255", + "attributeId": 6, + "attributeName": "Max info field length receive", + "controlName": "Optical Setup", + "value": 128, + "timestamp": "2025-11-01T09:43:03.762768", + "status": "success" + }, + { + "key": "Communication port configuratio.Optical Setup.Inter octet time out", + "classId": 23, + "obis": "0.0.22.0.0.255", + "obisFormatted": "0-0:22.0.0.255", + "attributeId": 7, + "attributeName": "Inter octet time out", + "controlName": "Optical Setup", + "value": 25, + "timestamp": "2025-11-01T09:43:04.375077", + "status": "success" + }, + { + "key": "Communication port configuratio.Optical Setup.Inactivity time out", + "classId": 23, + "obis": "0.0.22.0.0.255", + "obisFormatted": "0-0:22.0.0.255", + "attributeId": 8, + "attributeName": "Inactivity time out", + "controlName": "Optical Setup", + "value": 120, + "timestamp": "2025-11-01T09:43:04.946820", + "status": "success" + }, + { + "key": "Communication port configuratio.Optical Setup.Device address", + "classId": 23, + "obis": "0.0.22.0.0.255", + "obisFormatted": "0-0:22.0.0.255", + "attributeId": 9, + "attributeName": "Device address", + "controlName": "Optical Setup", + "value": 17, + "timestamp": "2025-11-01T09:43:05.557169", + "status": "success" + } + ], + "summary": { + "total": 14, + "success": 14, + "failed": 0 + } + }, + "M-Bus": { + "sheet_name": "M-Bus", + "objects": [ + { + "key": "M-Bus.Channel 1.M-Bus port reference", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 2, + "attributeName": "M-Bus port reference", + "controlName": "Channel 1", + "value": "0-0:24.6.0.255", + "timestamp": "2025-11-01T09:43:06.198052", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Capture definition", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 3, + "attributeName": "Capture definition", + "controlName": "Channel 1", + "value": {}, + "timestamp": "2025-11-01T09:43:06.820384", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Capture period", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:07.420352", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Primary address", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 5, + "attributeName": "Primary address", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:08.047833", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Identification number", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 6, + "attributeName": "Identification number", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:08.679885", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Manufacturer id", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 7, + "attributeName": "Manufacturer id", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:09.268775", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Version", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 8, + "attributeName": "Version", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:09.867870", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Device type", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 9, + "attributeName": "Device type", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:10.469635", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Access number", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 10, + "attributeName": "Access number", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:11.088873", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Status", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 11, + "attributeName": "Status", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:11.736742", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Alarm", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 12, + "attributeName": "Alarm", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:12.358246", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Configuration", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 13, + "attributeName": "Configuration", + "controlName": "Channel 1", + "value": 99, + "timestamp": "2025-11-01T09:43:12.962443", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.Encryption key status", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": 14, + "attributeName": "Encryption key status", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:13.576514", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.FUAK status", + "classId": 72, + "obis": "0.1.24.1.0.255", + "obisFormatted": "0-1:24.1.0.255", + "attributeId": -1, + "attributeName": "FUAK status", + "controlName": "Channel 1", + "value": "ScopeOfAccessViolated", + "timestamp": "2025-11-01T09:43:14.173491", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.M-Bus port reference", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 2, + "attributeName": "M-Bus port reference", + "controlName": "Channel 2", + "value": "0-0:24.6.0.255", + "timestamp": "2025-11-01T09:43:14.807533", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Capture definition", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 3, + "attributeName": "Capture definition", + "controlName": "Channel 2", + "value": {}, + "timestamp": "2025-11-01T09:43:15.367061", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Capture period", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:43:15.972950", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Primary address", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 5, + "attributeName": "Primary address", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:43:16.632251", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Identification number", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 6, + "attributeName": "Identification number", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:43:17.246084", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Manufacturer id", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 7, + "attributeName": "Manufacturer id", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:43:17.860602", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Version", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 8, + "attributeName": "Version", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:43:18.475567", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Device type", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 9, + "attributeName": "Device type", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:43:19.067760", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Access number", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 10, + "attributeName": "Access number", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:43:19.695492", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Status", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 11, + "attributeName": "Status", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:43:20.278389", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Alarm", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 12, + "attributeName": "Alarm", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:43:20.883264", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Configuration", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 13, + "attributeName": "Configuration", + "controlName": "Channel 2", + "value": 99, + "timestamp": "2025-11-01T09:43:21.510318", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.Encryption key status", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": 14, + "attributeName": "Encryption key status", + "controlName": "Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:43:22.119694", + "status": "success" + }, + { + "key": "M-Bus.Channel 2.FUAK status", + "classId": 72, + "obis": "0.2.24.1.0.255", + "obisFormatted": "0-2:24.1.0.255", + "attributeId": -1, + "attributeName": "FUAK status", + "controlName": "Channel 2", + "value": "ScopeOfAccessViolated", + "timestamp": "2025-11-01T09:43:22.699194", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.M-Bus port reference", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 2, + "attributeName": "M-Bus port reference", + "controlName": "Channel 3", + "value": "0-0:24.6.0.255", + "timestamp": "2025-11-01T09:43:23.331396", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Capture definition", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 3, + "attributeName": "Capture definition", + "controlName": "Channel 3", + "value": {}, + "timestamp": "2025-11-01T09:43:23.984661", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Capture period", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:43:24.599784", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Primary address", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 5, + "attributeName": "Primary address", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:43:25.219488", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Identification number", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 6, + "attributeName": "Identification number", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:43:25.829600", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Manufacturer id", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 7, + "attributeName": "Manufacturer id", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:43:26.471280", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Version", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 8, + "attributeName": "Version", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:43:27.074407", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Device type", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 9, + "attributeName": "Device type", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:43:27.704553", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Access number", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 10, + "attributeName": "Access number", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:43:28.324237", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Status", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 11, + "attributeName": "Status", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:43:28.939670", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Alarm", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 12, + "attributeName": "Alarm", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:43:29.576951", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Configuration", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 13, + "attributeName": "Configuration", + "controlName": "Channel 3", + "value": 99, + "timestamp": "2025-11-01T09:43:30.186770", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.Encryption key status", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": 14, + "attributeName": "Encryption key status", + "controlName": "Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:43:30.776081", + "status": "success" + }, + { + "key": "M-Bus.Channel 3.FUAK status", + "classId": 72, + "obis": "0.3.24.1.0.255", + "obisFormatted": "0-3:24.1.0.255", + "attributeId": -1, + "attributeName": "FUAK status", + "controlName": "Channel 3", + "value": "ScopeOfAccessViolated", + "timestamp": "2025-11-01T09:43:31.355925", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.M-Bus port reference", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 2, + "attributeName": "M-Bus port reference", + "controlName": "Channel 4", + "value": "0-0:24.6.0.255", + "timestamp": "2025-11-01T09:43:31.979448", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Capture definition", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 3, + "attributeName": "Capture definition", + "controlName": "Channel 4", + "value": {}, + "timestamp": "2025-11-01T09:43:32.631764", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Capture period", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 4, + "attributeName": "Capture period", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:43:33.205506", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Primary address", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 5, + "attributeName": "Primary address", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:43:33.773284", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Identification number", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 6, + "attributeName": "Identification number", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:43:34.390310", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Manufacturer id", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 7, + "attributeName": "Manufacturer id", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:43:34.980257", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Version", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 8, + "attributeName": "Version", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:43:35.596268", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Device type", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 9, + "attributeName": "Device type", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:43:36.224244", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Access number", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 10, + "attributeName": "Access number", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:43:36.791172", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Status", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 11, + "attributeName": "Status", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:43:37.389387", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Alarm", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 12, + "attributeName": "Alarm", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:43:37.973412", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Configuration", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 13, + "attributeName": "Configuration", + "controlName": "Channel 4", + "value": 99, + "timestamp": "2025-11-01T09:43:38.572333", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.Encryption key status", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": 14, + "attributeName": "Encryption key status", + "controlName": "Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:43:39.211473", + "status": "success" + }, + { + "key": "M-Bus.Channel 4.FUAK status", + "classId": 72, + "obis": "0.4.24.1.0.255", + "obisFormatted": "0-4:24.1.0.255", + "attributeId": -1, + "attributeName": "FUAK status", + "controlName": "Channel 4", + "value": "ScopeOfAccessViolated", + "timestamp": "2025-11-01T09:43:39.789400", + "status": "success" + }, + { + "key": "M-Bus.Device ID 1.Device ID 1", + "classId": 1, + "obis": "0.1.96.1.0.255", + "obisFormatted": "0-1:96.1.0.255", + "attributeId": 2, + "attributeName": "Device ID 1", + "controlName": "Device ID 1", + "value": "", + "timestamp": "2025-11-01T09:43:40.523851", + "status": "success" + }, + { + "key": "M-Bus.Device ID 2.Device ID 2", + "classId": 1, + "obis": "0.2.96.1.0.255", + "obisFormatted": "0-2:96.1.0.255", + "attributeId": 2, + "attributeName": "Device ID 2", + "controlName": "Device ID 2", + "value": "", + "timestamp": "2025-11-01T09:43:41.183884", + "status": "success" + }, + { + "key": "M-Bus.Device ID 3.Device ID 3", + "classId": 1, + "obis": "0.3.96.1.0.255", + "obisFormatted": "0-3:96.1.0.255", + "attributeId": 2, + "attributeName": "Device ID 3", + "controlName": "Device ID 3", + "value": "", + "timestamp": "2025-11-01T09:43:41.918134", + "status": "success" + }, + { + "key": "M-Bus.Device ID 4.Device ID 4", + "classId": 1, + "obis": "0.4.96.1.0.255", + "obisFormatted": "0-4:96.1.0.255", + "attributeId": 2, + "attributeName": "Device ID 4", + "controlName": "Device ID 4", + "value": "", + "timestamp": "2025-11-01T09:43:42.578039", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 1.Status", + "classId": 4, + "obis": "0.1.24.2.1.255", + "obisFormatted": "0-1:24.2.1.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master Channel 1", + "value": "00", + "timestamp": "2025-11-01T09:43:43.219538", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 1.Capture time", + "classId": 4, + "obis": "0.1.24.2.1.255", + "obisFormatted": "0-1:24.2.1.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master Channel 1", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:43.793753", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 2.Status", + "classId": 4, + "obis": "0.2.24.2.1.255", + "obisFormatted": "0-2:24.2.1.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master Channel 2", + "value": "00", + "timestamp": "2025-11-01T09:43:44.364327", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 2.Capture time", + "classId": 4, + "obis": "0.2.24.2.1.255", + "obisFormatted": "0-2:24.2.1.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master Channel 2", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:44.972435", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 3.Status", + "classId": 4, + "obis": "0.3.24.2.1.255", + "obisFormatted": "0-3:24.2.1.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master Channel 3", + "value": "00", + "timestamp": "2025-11-01T09:43:45.591825", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 3.Capture time", + "classId": 4, + "obis": "0.3.24.2.1.255", + "obisFormatted": "0-3:24.2.1.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master Channel 3", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:46.189526", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 4.Status", + "classId": 4, + "obis": "0.4.24.2.1.255", + "obisFormatted": "0-4:24.2.1.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master Channel 4", + "value": "00", + "timestamp": "2025-11-01T09:43:46.738502", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 4.Capture time", + "classId": 4, + "obis": "0.4.24.2.1.255", + "obisFormatted": "0-4:24.2.1.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master Channel 4", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:47.377569", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 1.Status", + "classId": 4, + "obis": "0.1.24.2.3.255", + "obisFormatted": "0-1:24.2.3.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master Channel 1", + "value": "00", + "timestamp": "2025-11-01T09:43:47.985516", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 1.Capture time", + "classId": 4, + "obis": "0.1.24.2.3.255", + "obisFormatted": "0-1:24.2.3.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master Channel 1", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:48.573067", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 2.Status", + "classId": 4, + "obis": "0.2.24.2.3.255", + "obisFormatted": "0-2:24.2.3.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master Channel 2", + "value": "00", + "timestamp": "2025-11-01T09:43:49.155016", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 2.Capture time", + "classId": 4, + "obis": "0.2.24.2.3.255", + "obisFormatted": "0-2:24.2.3.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master Channel 2", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:49.779908", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 3.Status", + "classId": 4, + "obis": "0.3.24.2.3.255", + "obisFormatted": "0-3:24.2.3.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master Channel 3", + "value": "00", + "timestamp": "2025-11-01T09:43:50.373310", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 3.Capture time", + "classId": 4, + "obis": "0.3.24.2.3.255", + "obisFormatted": "0-3:24.2.3.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master Channel 3", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:50.965848", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 4.Status", + "classId": 4, + "obis": "0.4.24.2.3.255", + "obisFormatted": "0-4:24.2.3.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master Channel 4", + "value": "00", + "timestamp": "2025-11-01T09:43:51.555280", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master Channel 4.Capture time", + "classId": 4, + "obis": "0.4.24.2.3.255", + "obisFormatted": "0-4:24.2.3.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master Channel 4", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:52.198583", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 1.Value", + "classId": 4, + "obis": "0.1.24.2.2.255", + "obisFormatted": "0-1:24.2.2.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "M-Bus Master 1", + "value": "00", + "timestamp": "2025-11-01T09:43:52.753332", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 1.Status", + "classId": 4, + "obis": "0.1.24.2.2.255", + "obisFormatted": "0-1:24.2.2.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master 1", + "value": "00", + "timestamp": "2025-11-01T09:43:53.388997", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 1.Capture time", + "classId": 4, + "obis": "0.1.24.2.2.255", + "obisFormatted": "0-1:24.2.2.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master 1", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:54.005547", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 2.Value", + "classId": 4, + "obis": "0.2.24.2.2.255", + "obisFormatted": "0-2:24.2.2.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "M-Bus Master 2", + "value": "00", + "timestamp": "2025-11-01T09:43:54.598391", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 2.Status", + "classId": 4, + "obis": "0.2.24.2.2.255", + "obisFormatted": "0-2:24.2.2.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master 2", + "value": "00", + "timestamp": "2025-11-01T09:43:55.203991", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 2.Capture time", + "classId": 4, + "obis": "0.2.24.2.2.255", + "obisFormatted": "0-2:24.2.2.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master 2", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:55.847945", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 3.Value", + "classId": 4, + "obis": "0.3.24.2.2.255", + "obisFormatted": "0-3:24.2.2.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "M-Bus Master 3", + "value": "00", + "timestamp": "2025-11-01T09:43:56.437884", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 3.Status", + "classId": 4, + "obis": "0.3.24.2.2.255", + "obisFormatted": "0-3:24.2.2.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master 3", + "value": "00", + "timestamp": "2025-11-01T09:43:57.025718", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 3.Capture time", + "classId": 4, + "obis": "0.3.24.2.2.255", + "obisFormatted": "0-3:24.2.2.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master 3", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:57.625550", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 4.Value", + "classId": 4, + "obis": "0.4.24.2.2.255", + "obisFormatted": "0-4:24.2.2.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "M-Bus Master 4", + "value": "00", + "timestamp": "2025-11-01T09:43:58.236311", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 4.Status", + "classId": 4, + "obis": "0.4.24.2.2.255", + "obisFormatted": "0-4:24.2.2.255", + "attributeId": 4, + "attributeName": "Status", + "controlName": "M-Bus Master 4", + "value": "00", + "timestamp": "2025-11-01T09:43:58.807372", + "status": "success" + }, + { + "key": "M-Bus.M-Bus Master 4.Capture time", + "classId": 4, + "obis": "0.4.24.2.2.255", + "obisFormatted": "0-4:24.2.2.255", + "attributeId": 5, + "attributeName": "Capture time", + "controlName": "M-Bus Master 4", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:43:59.387388", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.received-signal-strength", + "classId": 77, + "obis": "0.1.24.9.1.255", + "obisFormatted": "0-1:24.9.1.255", + "attributeId": 2, + "attributeName": "received-signal-strength", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:43:59.994841", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.channel_Id", + "classId": 77, + "obis": "0.1.24.9.1.255", + "obisFormatted": "0-1:24.9.1.255", + "attributeId": 3, + "attributeName": "channel_Id", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:00.521501", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.link_status", + "classId": 77, + "obis": "0.1.24.9.1.255", + "obisFormatted": "0-1:24.9.1.255", + "attributeId": 4, + "attributeName": "link_status", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:01.105614", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.broadcast_frames_counter", + "classId": 77, + "obis": "0.1.24.9.1.255", + "obisFormatted": "0-1:24.9.1.255", + "attributeId": 5, + "attributeName": "broadcast_frames_counter", + "controlName": "Channel 1", + "value": {}, + "timestamp": "2025-11-01T09:44:01.706229", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.transmissions_counter", + "classId": 77, + "obis": "0.1.24.9.1.255", + "obisFormatted": "0-1:24.9.1.255", + "attributeId": 6, + "attributeName": "transmissions_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:02.282233", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.FCS_OK_frames_counter", + "classId": 77, + "obis": "0.1.24.9.1.255", + "obisFormatted": "0-1:24.9.1.255", + "attributeId": 7, + "attributeName": "FCS_OK_frames_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:02.884499", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.FCS_NOK_frames_counter", + "classId": 77, + "obis": "0.1.24.9.1.255", + "obisFormatted": "0-1:24.9.1.255", + "attributeId": 8, + "attributeName": "FCS_NOK_frames_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:03.464130", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.capture_time", + "classId": 77, + "obis": "0.1.24.9.1.255", + "obisFormatted": "0-1:24.9.1.255", + "attributeId": 9, + "attributeName": "capture_time", + "controlName": "Channel 1", + "value": { + "0": [ + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF" + ] + }, + "timestamp": "2025-11-01T09:44:04.077553", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.received-signal-strength", + "classId": 77, + "obis": "0.2.24.9.1.255", + "obisFormatted": "0-2:24.9.1.255", + "attributeId": 2, + "attributeName": "received-signal-strength", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:04.673830", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.channel_Id", + "classId": 77, + "obis": "0.2.24.9.1.255", + "obisFormatted": "0-2:24.9.1.255", + "attributeId": 3, + "attributeName": "channel_Id", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:05.304653", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.link_status", + "classId": 77, + "obis": "0.2.24.9.1.255", + "obisFormatted": "0-2:24.9.1.255", + "attributeId": 4, + "attributeName": "link_status", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:05.901043", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.broadcast_frames_counter", + "classId": 77, + "obis": "0.2.24.9.1.255", + "obisFormatted": "0-2:24.9.1.255", + "attributeId": 5, + "attributeName": "broadcast_frames_counter", + "controlName": "Channel 1", + "value": {}, + "timestamp": "2025-11-01T09:44:06.504122", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.transmissions_counter", + "classId": 77, + "obis": "0.2.24.9.1.255", + "obisFormatted": "0-2:24.9.1.255", + "attributeId": 6, + "attributeName": "transmissions_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:07.109544", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.FCS_OK_frames_counter", + "classId": 77, + "obis": "0.2.24.9.1.255", + "obisFormatted": "0-2:24.9.1.255", + "attributeId": 7, + "attributeName": "FCS_OK_frames_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:07.716282", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.FCS_NOK_frames_counter", + "classId": 77, + "obis": "0.2.24.9.1.255", + "obisFormatted": "0-2:24.9.1.255", + "attributeId": 8, + "attributeName": "FCS_NOK_frames_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:08.321223", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.capture_time", + "classId": 77, + "obis": "0.2.24.9.1.255", + "obisFormatted": "0-2:24.9.1.255", + "attributeId": 9, + "attributeName": "capture_time", + "controlName": "Channel 1", + "value": { + "0": [ + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF" + ] + }, + "timestamp": "2025-11-01T09:44:08.885500", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.received-signal-strength", + "classId": 77, + "obis": "0.3.24.9.1.255", + "obisFormatted": "0-3:24.9.1.255", + "attributeId": 2, + "attributeName": "received-signal-strength", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:09.482565", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.channel_Id", + "classId": 77, + "obis": "0.3.24.9.1.255", + "obisFormatted": "0-3:24.9.1.255", + "attributeId": 3, + "attributeName": "channel_Id", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:10.074161", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.link_status", + "classId": 77, + "obis": "0.3.24.9.1.255", + "obisFormatted": "0-3:24.9.1.255", + "attributeId": 4, + "attributeName": "link_status", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:10.678733", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.broadcast_frames_counter", + "classId": 77, + "obis": "0.3.24.9.1.255", + "obisFormatted": "0-3:24.9.1.255", + "attributeId": 5, + "attributeName": "broadcast_frames_counter", + "controlName": "Channel 1", + "value": {}, + "timestamp": "2025-11-01T09:44:11.298916", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.transmissions_counter", + "classId": 77, + "obis": "0.3.24.9.1.255", + "obisFormatted": "0-3:24.9.1.255", + "attributeId": 6, + "attributeName": "transmissions_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:11.878826", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.FCS_OK_frames_counter", + "classId": 77, + "obis": "0.3.24.9.1.255", + "obisFormatted": "0-3:24.9.1.255", + "attributeId": 7, + "attributeName": "FCS_OK_frames_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:12.473391", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.FCS_NOK_frames_counter", + "classId": 77, + "obis": "0.3.24.9.1.255", + "obisFormatted": "0-3:24.9.1.255", + "attributeId": 8, + "attributeName": "FCS_NOK_frames_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:13.089295", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.capture_time", + "classId": 77, + "obis": "0.3.24.9.1.255", + "obisFormatted": "0-3:24.9.1.255", + "attributeId": 9, + "attributeName": "capture_time", + "controlName": "Channel 1", + "value": { + "0": [ + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF" + ] + }, + "timestamp": "2025-11-01T09:44:13.680102", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.received-signal-strength", + "classId": 77, + "obis": "0.4.24.9.1.255", + "obisFormatted": "0-4:24.9.1.255", + "attributeId": 2, + "attributeName": "received-signal-strength", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:14.300120", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.channel_Id", + "classId": 77, + "obis": "0.4.24.9.1.255", + "obisFormatted": "0-4:24.9.1.255", + "attributeId": 3, + "attributeName": "channel_Id", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:14.898348", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.link_status", + "classId": 77, + "obis": "0.4.24.9.1.255", + "obisFormatted": "0-4:24.9.1.255", + "attributeId": 4, + "attributeName": "link_status", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:15.491663", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.broadcast_frames_counter", + "classId": 77, + "obis": "0.4.24.9.1.255", + "obisFormatted": "0-4:24.9.1.255", + "attributeId": 5, + "attributeName": "broadcast_frames_counter", + "controlName": "Channel 1", + "value": {}, + "timestamp": "2025-11-01T09:44:16.062162", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.transmissions_counter", + "classId": 77, + "obis": "0.4.24.9.1.255", + "obisFormatted": "0-4:24.9.1.255", + "attributeId": 6, + "attributeName": "transmissions_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:16.658499", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.FCS_OK_frames_counter", + "classId": 77, + "obis": "0.4.24.9.1.255", + "obisFormatted": "0-4:24.9.1.255", + "attributeId": 7, + "attributeName": "FCS_OK_frames_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:17.256492", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.FCS_NOK_frames_counter", + "classId": 77, + "obis": "0.4.24.9.1.255", + "obisFormatted": "0-4:24.9.1.255", + "attributeId": 8, + "attributeName": "FCS_NOK_frames_counter", + "controlName": "Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:17.888246", + "status": "success" + }, + { + "key": "M-Bus.Channel 1.capture_time", + "classId": 77, + "obis": "0.4.24.9.1.255", + "obisFormatted": "0-4:24.9.1.255", + "attributeId": 9, + "attributeName": "capture_time", + "controlName": "Channel 1", + "value": { + "0": [ + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF" + ] + }, + "timestamp": "2025-11-01T09:44:18.532585", + "status": "success" + }, + { + "key": "M-Bus.Number of missed C Message Channel 1.Value", + "classId": 3, + "obis": "0.1.128.1.0.255", + "obisFormatted": "0-1:128.1.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Number of missed C Message Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:19.179921", + "status": "success" + }, + { + "key": "M-Bus.Number of missed C Message Channel 2.Value", + "classId": 3, + "obis": "0.2.128.1.0.255", + "obisFormatted": "0-2:128.1.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Number of missed C Message Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:44:19.813464", + "status": "success" + }, + { + "key": "M-Bus.Number of missed C Message Channel 3.Value", + "classId": 3, + "obis": "0.3.128.1.0.255", + "obisFormatted": "0-3:128.1.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Number of missed C Message Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:44:20.412844", + "status": "success" + }, + { + "key": "M-Bus.Number of missed C Message Channel 4.Value", + "classId": 3, + "obis": "0.4.128.1.0.255", + "obisFormatted": "0-4:128.1.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Number of missed C Message Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:44:21.018933", + "status": "success" + }, + { + "key": "M-Bus.Number of missed T Message Channel 1.Value", + "classId": 3, + "obis": "0.1.128.2.0.255", + "obisFormatted": "0-1:128.2.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Number of missed T Message Channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:21.616064", + "status": "success" + }, + { + "key": "M-Bus.Number of missed T Message Channel 2.Value", + "classId": 3, + "obis": "0.2.128.2.0.255", + "obisFormatted": "0-2:128.2.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Number of missed T Message Channel 2", + "value": 0, + "timestamp": "2025-11-01T09:44:22.194098", + "status": "success" + }, + { + "key": "M-Bus.Number of missed T Message Channel 3.Value", + "classId": 3, + "obis": "0.3.128.2.0.255", + "obisFormatted": "0-3:128.2.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Number of missed T Message Channel 3", + "value": 0, + "timestamp": "2025-11-01T09:44:22.803893", + "status": "success" + }, + { + "key": "M-Bus.Number of missed T Message Channel 4.Value", + "classId": 3, + "obis": "0.4.128.2.0.255", + "obisFormatted": "0-4:128.2.0.255", + "attributeId": 2, + "attributeName": "Value", + "controlName": "Number of missed T Message Channel 4", + "value": 0, + "timestamp": "2025-11-01T09:44:23.422895", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 1.Current average value", + "classId": 5, + "obis": "0.1.129.1.0.255", + "obisFormatted": "0-1:129.1.0.255", + "attributeId": 2, + "attributeName": "Current average value", + "controlName": "Average number of missed C message channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:24.033653", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 1.Last average value", + "classId": 5, + "obis": "0.1.129.1.0.255", + "obisFormatted": "0-1:129.1.0.255", + "attributeId": 3, + "attributeName": "Last average value", + "controlName": "Average number of missed C message channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:24.675699", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 1.Scaler unit", + "classId": 5, + "obis": "0.1.129.1.0.255", + "obisFormatted": "0-1:129.1.0.255", + "attributeId": 4, + "attributeName": "Scaler unit", + "controlName": "Average number of missed C message channel 1", + "value": { + "0": [ + 0, + 255 + ] + }, + "timestamp": "2025-11-01T09:44:25.265683", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 1.Status", + "classId": 5, + "obis": "0.1.129.1.0.255", + "obisFormatted": "0-1:129.1.0.255", + "attributeId": 5, + "attributeName": "Status", + "controlName": "Average number of missed C message channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:25.875491", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 1.Capture time", + "classId": 5, + "obis": "0.1.129.1.0.255", + "obisFormatted": "0-1:129.1.0.255", + "attributeId": 6, + "attributeName": "Capture time", + "controlName": "Average number of missed C message channel 1", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:26.505661", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 1.Start time current", + "classId": 5, + "obis": "0.1.129.1.0.255", + "obisFormatted": "0-1:129.1.0.255", + "attributeId": 7, + "attributeName": "Start time current", + "controlName": "Average number of missed C message channel 1", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:27.115952", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 1.Period", + "classId": 5, + "obis": "0.1.129.1.0.255", + "obisFormatted": "0-1:129.1.0.255", + "attributeId": 8, + "attributeName": "Period", + "controlName": "Average number of missed C message channel 1", + "value": 10, + "timestamp": "2025-11-01T09:44:27.734231", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 1.Number of periods", + "classId": 5, + "obis": "0.1.129.1.0.255", + "obisFormatted": "0-1:129.1.0.255", + "attributeId": 9, + "attributeName": "Number of periods", + "controlName": "Average number of missed C message channel 1", + "value": 1, + "timestamp": "2025-11-01T09:44:28.330919", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 2.Current average value", + "classId": 5, + "obis": "0.2.129.1.0.255", + "obisFormatted": "0-2:129.1.0.255", + "attributeId": 2, + "attributeName": "Current average value", + "controlName": "Average number of missed C message channel 2", + "value": 0, + "timestamp": "2025-11-01T09:44:28.991916", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 2.Last average value", + "classId": 5, + "obis": "0.2.129.1.0.255", + "obisFormatted": "0-2:129.1.0.255", + "attributeId": 3, + "attributeName": "Last average value", + "controlName": "Average number of missed C message channel 2", + "value": 0, + "timestamp": "2025-11-01T09:44:29.608003", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 2.Scaler unit", + "classId": 5, + "obis": "0.2.129.1.0.255", + "obisFormatted": "0-2:129.1.0.255", + "attributeId": 4, + "attributeName": "Scaler unit", + "controlName": "Average number of missed C message channel 2", + "value": { + "0": [ + 0, + 255 + ] + }, + "timestamp": "2025-11-01T09:44:30.227901", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 2.Status", + "classId": 5, + "obis": "0.2.129.1.0.255", + "obisFormatted": "0-2:129.1.0.255", + "attributeId": 5, + "attributeName": "Status", + "controlName": "Average number of missed C message channel 2", + "value": 0, + "timestamp": "2025-11-01T09:44:30.836184", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 2.Capture time", + "classId": 5, + "obis": "0.2.129.1.0.255", + "obisFormatted": "0-2:129.1.0.255", + "attributeId": 6, + "attributeName": "Capture time", + "controlName": "Average number of missed C message channel 2", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:31.461061", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 2.Start time current", + "classId": 5, + "obis": "0.2.129.1.0.255", + "obisFormatted": "0-2:129.1.0.255", + "attributeId": 7, + "attributeName": "Start time current", + "controlName": "Average number of missed C message channel 2", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:32.062510", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 2.Period", + "classId": 5, + "obis": "0.2.129.1.0.255", + "obisFormatted": "0-2:129.1.0.255", + "attributeId": 8, + "attributeName": "Period", + "controlName": "Average number of missed C message channel 2", + "value": 10, + "timestamp": "2025-11-01T09:44:32.689465", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 2.Number of periods", + "classId": 5, + "obis": "0.2.129.1.0.255", + "obisFormatted": "0-2:129.1.0.255", + "attributeId": 9, + "attributeName": "Number of periods", + "controlName": "Average number of missed C message channel 2", + "value": 1, + "timestamp": "2025-11-01T09:44:33.295378", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 3.Current average value", + "classId": 5, + "obis": "0.3.129.1.0.255", + "obisFormatted": "0-3:129.1.0.255", + "attributeId": 2, + "attributeName": "Current average value", + "controlName": "Average number of missed C message channel 3", + "value": 0, + "timestamp": "2025-11-01T09:44:33.899601", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 3.Last average value", + "classId": 5, + "obis": "0.3.129.1.0.255", + "obisFormatted": "0-3:129.1.0.255", + "attributeId": 3, + "attributeName": "Last average value", + "controlName": "Average number of missed C message channel 3", + "value": 0, + "timestamp": "2025-11-01T09:44:34.463174", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 3.Scaler unit", + "classId": 5, + "obis": "0.3.129.1.0.255", + "obisFormatted": "0-3:129.1.0.255", + "attributeId": 4, + "attributeName": "Scaler unit", + "controlName": "Average number of missed C message channel 3", + "value": { + "0": [ + 0, + 255 + ] + }, + "timestamp": "2025-11-01T09:44:35.088182", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 3.Status", + "classId": 5, + "obis": "0.3.129.1.0.255", + "obisFormatted": "0-3:129.1.0.255", + "attributeId": 5, + "attributeName": "Status", + "controlName": "Average number of missed C message channel 3", + "value": 0, + "timestamp": "2025-11-01T09:44:35.748995", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 3.Capture time", + "classId": 5, + "obis": "0.3.129.1.0.255", + "obisFormatted": "0-3:129.1.0.255", + "attributeId": 6, + "attributeName": "Capture time", + "controlName": "Average number of missed C message channel 3", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:36.362668", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 3.Start time current", + "classId": 5, + "obis": "0.3.129.1.0.255", + "obisFormatted": "0-3:129.1.0.255", + "attributeId": 7, + "attributeName": "Start time current", + "controlName": "Average number of missed C message channel 3", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:37.018614", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 3.Period", + "classId": 5, + "obis": "0.3.129.1.0.255", + "obisFormatted": "0-3:129.1.0.255", + "attributeId": 8, + "attributeName": "Period", + "controlName": "Average number of missed C message channel 3", + "value": 10, + "timestamp": "2025-11-01T09:44:37.615315", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 3.Number of periods", + "classId": 5, + "obis": "0.3.129.1.0.255", + "obisFormatted": "0-3:129.1.0.255", + "attributeId": 9, + "attributeName": "Number of periods", + "controlName": "Average number of missed C message channel 3", + "value": 1, + "timestamp": "2025-11-01T09:44:38.211155", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 4.Current average value", + "classId": 5, + "obis": "0.4.129.1.0.255", + "obisFormatted": "0-4:129.1.0.255", + "attributeId": 2, + "attributeName": "Current average value", + "controlName": "Average number of missed C message channel 4", + "value": 0, + "timestamp": "2025-11-01T09:44:38.814049", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 4.Last average value", + "classId": 5, + "obis": "0.4.129.1.0.255", + "obisFormatted": "0-4:129.1.0.255", + "attributeId": 3, + "attributeName": "Last average value", + "controlName": "Average number of missed C message channel 4", + "value": 0, + "timestamp": "2025-11-01T09:44:39.436449", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 4.Scaler unit", + "classId": 5, + "obis": "0.4.129.1.0.255", + "obisFormatted": "0-4:129.1.0.255", + "attributeId": 4, + "attributeName": "Scaler unit", + "controlName": "Average number of missed C message channel 4", + "value": { + "0": [ + 0, + 255 + ] + }, + "timestamp": "2025-11-01T09:44:40.095214", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 4.Status", + "classId": 5, + "obis": "0.4.129.1.0.255", + "obisFormatted": "0-4:129.1.0.255", + "attributeId": 5, + "attributeName": "Status", + "controlName": "Average number of missed C message channel 4", + "value": 0, + "timestamp": "2025-11-01T09:44:40.718904", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 4.Capture time", + "classId": 5, + "obis": "0.4.129.1.0.255", + "obisFormatted": "0-4:129.1.0.255", + "attributeId": 6, + "attributeName": "Capture time", + "controlName": "Average number of missed C message channel 4", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:41.394391", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 4.Start time current", + "classId": 5, + "obis": "0.4.129.1.0.255", + "obisFormatted": "0-4:129.1.0.255", + "attributeId": 7, + "attributeName": "Start time current", + "controlName": "Average number of missed C message channel 4", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:41.985670", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 4.Period", + "classId": 5, + "obis": "0.4.129.1.0.255", + "obisFormatted": "0-4:129.1.0.255", + "attributeId": 8, + "attributeName": "Period", + "controlName": "Average number of missed C message channel 4", + "value": 10, + "timestamp": "2025-11-01T09:44:42.613767", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed C message channel 4.Number of periods", + "classId": 5, + "obis": "0.4.129.1.0.255", + "obisFormatted": "0-4:129.1.0.255", + "attributeId": 9, + "attributeName": "Number of periods", + "controlName": "Average number of missed C message channel 4", + "value": 1, + "timestamp": "2025-11-01T09:44:43.240685", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 1.Current average value", + "classId": 5, + "obis": "0.1.129.2.0.255", + "obisFormatted": "0-1:129.2.0.255", + "attributeId": 2, + "attributeName": "Current average value", + "controlName": "Average number of missed T message channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:43.857282", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 1.Last average value", + "classId": 5, + "obis": "0.1.129.2.0.255", + "obisFormatted": "0-1:129.2.0.255", + "attributeId": 3, + "attributeName": "Last average value", + "controlName": "Average number of missed T message channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:44.452535", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 1.Scaler unit", + "classId": 5, + "obis": "0.1.129.2.0.255", + "obisFormatted": "0-1:129.2.0.255", + "attributeId": 4, + "attributeName": "Scaler unit", + "controlName": "Average number of missed T message channel 1", + "value": { + "0": [ + 0, + 255 + ] + }, + "timestamp": "2025-11-01T09:44:45.052224", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 1.Status", + "classId": 5, + "obis": "0.1.129.2.0.255", + "obisFormatted": "0-1:129.2.0.255", + "attributeId": 5, + "attributeName": "Status", + "controlName": "Average number of missed T message channel 1", + "value": 0, + "timestamp": "2025-11-01T09:44:45.661791", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 1.Capture time", + "classId": 5, + "obis": "0.1.129.2.0.255", + "obisFormatted": "0-1:129.2.0.255", + "attributeId": 6, + "attributeName": "Capture time", + "controlName": "Average number of missed T message channel 1", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:46.260284", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 1.Start time current", + "classId": 5, + "obis": "0.1.129.2.0.255", + "obisFormatted": "0-1:129.2.0.255", + "attributeId": 7, + "attributeName": "Start time current", + "controlName": "Average number of missed T message channel 1", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:46.862281", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 1.Period", + "classId": 5, + "obis": "0.1.129.2.0.255", + "obisFormatted": "0-1:129.2.0.255", + "attributeId": 8, + "attributeName": "Period", + "controlName": "Average number of missed T message channel 1", + "value": 10, + "timestamp": "2025-11-01T09:44:47.461956", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 1.Number of periods", + "classId": 5, + "obis": "0.1.129.2.0.255", + "obisFormatted": "0-1:129.2.0.255", + "attributeId": 9, + "attributeName": "Number of periods", + "controlName": "Average number of missed T message channel 1", + "value": 1, + "timestamp": "2025-11-01T09:44:48.055087", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 2.Current average value", + "classId": 5, + "obis": "0.2.129.2.0.255", + "obisFormatted": "0-2:129.2.0.255", + "attributeId": 2, + "attributeName": "Current average value", + "controlName": "Average number of missed T message channel 2", + "value": 0, + "timestamp": "2025-11-01T09:44:48.684655", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 2.Last average value", + "classId": 5, + "obis": "0.2.129.2.0.255", + "obisFormatted": "0-2:129.2.0.255", + "attributeId": 3, + "attributeName": "Last average value", + "controlName": "Average number of missed T message channel 2", + "value": 0, + "timestamp": "2025-11-01T09:44:49.248591", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 2.Scaler unit", + "classId": 5, + "obis": "0.2.129.2.0.255", + "obisFormatted": "0-2:129.2.0.255", + "attributeId": 4, + "attributeName": "Scaler unit", + "controlName": "Average number of missed T message channel 2", + "value": { + "0": [ + 0, + 255 + ] + }, + "timestamp": "2025-11-01T09:44:49.856087", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 2.Status", + "classId": 5, + "obis": "0.2.129.2.0.255", + "obisFormatted": "0-2:129.2.0.255", + "attributeId": 5, + "attributeName": "Status", + "controlName": "Average number of missed T message channel 2", + "value": 0, + "timestamp": "2025-11-01T09:44:50.467595", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 2.Capture time", + "classId": 5, + "obis": "0.2.129.2.0.255", + "obisFormatted": "0-2:129.2.0.255", + "attributeId": 6, + "attributeName": "Capture time", + "controlName": "Average number of missed T message channel 2", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:51.059337", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 2.Start time current", + "classId": 5, + "obis": "0.2.129.2.0.255", + "obisFormatted": "0-2:129.2.0.255", + "attributeId": 7, + "attributeName": "Start time current", + "controlName": "Average number of missed T message channel 2", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:51.680262", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 2.Period", + "classId": 5, + "obis": "0.2.129.2.0.255", + "obisFormatted": "0-2:129.2.0.255", + "attributeId": 8, + "attributeName": "Period", + "controlName": "Average number of missed T message channel 2", + "value": 10, + "timestamp": "2025-11-01T09:44:52.273157", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 2.Number of periods", + "classId": 5, + "obis": "0.2.129.2.0.255", + "obisFormatted": "0-2:129.2.0.255", + "attributeId": 9, + "attributeName": "Number of periods", + "controlName": "Average number of missed T message channel 2", + "value": 1, + "timestamp": "2025-11-01T09:44:52.872053", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 3.Current average value", + "classId": 5, + "obis": "0.3.129.2.0.255", + "obisFormatted": "0-3:129.2.0.255", + "attributeId": 2, + "attributeName": "Current average value", + "controlName": "Average number of missed T message channel 3", + "value": 0, + "timestamp": "2025-11-01T09:44:53.475738", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 3.Last average value", + "classId": 5, + "obis": "0.3.129.2.0.255", + "obisFormatted": "0-3:129.2.0.255", + "attributeId": 3, + "attributeName": "Last average value", + "controlName": "Average number of missed T message channel 3", + "value": 0, + "timestamp": "2025-11-01T09:44:54.084477", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 3.Scaler unit", + "classId": 5, + "obis": "0.3.129.2.0.255", + "obisFormatted": "0-3:129.2.0.255", + "attributeId": 4, + "attributeName": "Scaler unit", + "controlName": "Average number of missed T message channel 3", + "value": { + "0": [ + 0, + 255 + ] + }, + "timestamp": "2025-11-01T09:44:54.700321", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 3.Status", + "classId": 5, + "obis": "0.3.129.2.0.255", + "obisFormatted": "0-3:129.2.0.255", + "attributeId": 5, + "attributeName": "Status", + "controlName": "Average number of missed T message channel 3", + "value": 0, + "timestamp": "2025-11-01T09:44:55.321106", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 3.Capture time", + "classId": 5, + "obis": "0.3.129.2.0.255", + "obisFormatted": "0-3:129.2.0.255", + "attributeId": 6, + "attributeName": "Capture time", + "controlName": "Average number of missed T message channel 3", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:55.943104", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 3.Start time current", + "classId": 5, + "obis": "0.3.129.2.0.255", + "obisFormatted": "0-3:129.2.0.255", + "attributeId": 7, + "attributeName": "Start time current", + "controlName": "Average number of missed T message channel 3", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:44:56.554955", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 3.Period", + "classId": 5, + "obis": "0.3.129.2.0.255", + "obisFormatted": "0-3:129.2.0.255", + "attributeId": 8, + "attributeName": "Period", + "controlName": "Average number of missed T message channel 3", + "value": 10, + "timestamp": "2025-11-01T09:44:57.155999", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 3.Number of periods", + "classId": 5, + "obis": "0.3.129.2.0.255", + "obisFormatted": "0-3:129.2.0.255", + "attributeId": 9, + "attributeName": "Number of periods", + "controlName": "Average number of missed T message channel 3", + "value": 1, + "timestamp": "2025-11-01T09:44:57.770231", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 4.Current average value", + "classId": 5, + "obis": "0.4.129.2.0.255", + "obisFormatted": "0-4:129.2.0.255", + "attributeId": 2, + "attributeName": "Current average value", + "controlName": "Average number of missed T message channel 4", + "value": 0, + "timestamp": "2025-11-01T09:44:58.363931", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 4.Last average value", + "classId": 5, + "obis": "0.4.129.2.0.255", + "obisFormatted": "0-4:129.2.0.255", + "attributeId": 3, + "attributeName": "Last average value", + "controlName": "Average number of missed T message channel 4", + "value": 0, + "timestamp": "2025-11-01T09:44:58.975662", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 4.Scaler unit", + "classId": 5, + "obis": "0.4.129.2.0.255", + "obisFormatted": "0-4:129.2.0.255", + "attributeId": 4, + "attributeName": "Scaler unit", + "controlName": "Average number of missed T message channel 4", + "value": { + "0": [ + 0, + 255 + ] + }, + "timestamp": "2025-11-01T09:44:59.575347", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 4.Status", + "classId": 5, + "obis": "0.4.129.2.0.255", + "obisFormatted": "0-4:129.2.0.255", + "attributeId": 5, + "attributeName": "Status", + "controlName": "Average number of missed T message channel 4", + "value": 0, + "timestamp": "2025-11-01T09:45:00.180002", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 4.Capture time", + "classId": 5, + "obis": "0.4.129.2.0.255", + "obisFormatted": "0-4:129.2.0.255", + "attributeId": 6, + "attributeName": "Capture time", + "controlName": "Average number of missed T message channel 4", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:45:00.777205", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 4.Start time current", + "classId": 5, + "obis": "0.4.129.2.0.255", + "obisFormatted": "0-4:129.2.0.255", + "attributeId": 7, + "attributeName": "Start time current", + "controlName": "Average number of missed T message channel 4", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:45:01.401137", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 4.Period", + "classId": 5, + "obis": "0.4.129.2.0.255", + "obisFormatted": "0-4:129.2.0.255", + "attributeId": 8, + "attributeName": "Period", + "controlName": "Average number of missed T message channel 4", + "value": 10, + "timestamp": "2025-11-01T09:45:01.944992", + "status": "success" + }, + { + "key": "M-Bus.Average number of missed T message channel 4.Number of periods", + "classId": 5, + "obis": "0.4.129.2.0.255", + "obisFormatted": "0-4:129.2.0.255", + "attributeId": 9, + "attributeName": "Number of periods", + "controlName": "Average number of missed T message channel 4", + "value": 1, + "timestamp": "2025-11-01T09:45:02.534072", + "status": "success" + } + ], + "summary": { + "total": 192, + "success": 192, + "failed": 0 + } + }, + "LTE Communication Setup": { + "sheet_name": "LTE Communication Setup", + "objects": [ + { + "key": "LTE Communication Setup.eUICCID.eUICCID", + "classId": 1, + "obis": "0.1.94.31.19.255", + "obisFormatted": "0-1:94.31.19.255", + "attributeId": 2, + "attributeName": "eUICCID", + "controlName": "eUICCID", + "value": "3335303630303030303030303030303030303234303030303331333031373237", + "timestamp": "2025-11-01T09:45:03.218339", + "status": "success" + }, + { + "key": "LTE Communication Setup.ICCID.ICCID", + "classId": 1, + "obis": "0.1.94.31.20.255", + "obisFormatted": "0-1:94.31.20.255", + "attributeId": 2, + "attributeName": "ICCID", + "controlName": "ICCID", + "value": "89860110611108096225", + "timestamp": "2025-11-01T09:45:03.847222", + "status": "success" + }, + { + "key": "LTE Communication Setup.Administrative in/out P3.nan", + "classId": 1, + "obis": "0.1.94.31.0.255", + "obisFormatted": "0-1:94.31.0.255", + "attributeId": 2, + "attributeName": "", + "controlName": "Administrative in/out P3", + "value": 0, + "timestamp": "2025-11-01T09:45:04.578543", + "status": "success" + }, + { + "key": "LTE Communication Setup.connection watchdog timer P3.nan", + "classId": 1, + "obis": "0.1.94.31.2.255", + "obisFormatted": "0-1:94.31.2.255", + "attributeId": 2, + "attributeName": "", + "controlName": "connection watchdog timer P3", + "value": 36, + "timestamp": "2025-11-01T09:45:05.185793", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE FW Location.nan", + "classId": 1, + "obis": "0.65.44.0.0.255", + "obisFormatted": "0-65:44.0.0.255", + "attributeId": 2, + "attributeName": "", + "controlName": "LTE FW Location", + "value": "35.181.240.196:8080", + "timestamp": "2025-11-01T09:45:05.861557", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE FW Download time.nan", + "classId": 1, + "obis": "0.65.44.0.1.255", + "obisFormatted": "0-65:44.0.1.255", + "attributeId": 2, + "attributeName": "", + "controlName": "LTE FW Download time", + "value": 600, + "timestamp": "2025-11-01T09:45:06.550905", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Frequency configuration.LTE Frequency configuration", + "classId": 1, + "obis": "0.1.94.31.8.255", + "obisFormatted": "0-1:94.31.8.255", + "attributeId": 2, + "attributeName": "LTE Frequency configuration", + "controlName": "LTE Frequency configuration", + "value": "00111100", + "timestamp": "2025-11-01T09:45:07.305721", + "status": "success" + }, + { + "key": "LTE Communication Setup.Ping address.nan", + "classId": 1, + "obis": "0.65.44.0.2.255", + "obisFormatted": "0-65:44.0.2.255", + "attributeId": 2, + "attributeName": "", + "controlName": "Ping address", + "value": { + "0": [ + "10.254.253.4", + "8082" + ] + }, + "timestamp": "2025-11-01T09:45:08.096397", + "status": "success" + }, + { + "key": "LTE Communication Setup.PHY Randomisation.nan", + "classId": 1, + "obis": "0.1.94.31.12.255", + "obisFormatted": "0-1:94.31.12.255", + "attributeId": 2, + "attributeName": "", + "controlName": "PHY Randomisation", + "value": { + "0": [ + 0, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:45:08.836565", + "status": "success" + }, + { + "key": "LTE Communication Setup.PPP Setup.PHY reference", + "classId": 44, + "obis": "0.0.25.3.0.255", + "obisFormatted": "0-0:25.3.0.255", + "attributeId": 2, + "attributeName": "PHY reference", + "controlName": "PPP Setup", + "value": "0-1:25.4.0.255", + "timestamp": "2025-11-01T09:45:09.537027", + "status": "success" + }, + { + "key": "LTE Communication Setup.PPP Setup.LCP options", + "classId": 44, + "obis": "0.0.25.3.0.255", + "obisFormatted": "0-0:25.3.0.255", + "attributeId": 3, + "attributeName": "LCP options", + "controlName": "PPP Setup", + "value": { + "0": [ + 1, + 2, + 1500 + ], + "1": [ + 3, + 2, + 49187 + ] + }, + "timestamp": "2025-11-01T09:45:10.177073", + "status": "success" + }, + { + "key": "LTE Communication Setup.PPP Setup.IPCP options", + "classId": 44, + "obis": "0.0.25.3.0.255", + "obisFormatted": "0-0:25.3.0.255", + "attributeId": 4, + "attributeName": "IPCP options", + "controlName": "PPP Setup", + "value": {}, + "timestamp": "2025-11-01T09:45:10.743882", + "status": "success" + }, + { + "key": "LTE Communication Setup.PPP Setup.PPP authentication", + "classId": 44, + "obis": "0.0.25.3.0.255", + "obisFormatted": "0-0:25.3.0.255", + "attributeId": 5, + "attributeName": "PPP authentication", + "controlName": "PPP Setup", + "value": { + "0": [ + "kaifa", + "123123" + ] + }, + "timestamp": "2025-11-01T09:45:11.459470", + "status": "success" + }, + { + "key": "LTE Communication Setup.TCP-UDP Setup.TCP-UDP port", + "classId": 41, + "obis": "0.0.25.0.0.255", + "obisFormatted": "0-0:25.0.0.255", + "attributeId": 2, + "attributeName": "TCP-UDP port", + "controlName": "TCP-UDP Setup", + "value": 4059, + "timestamp": "2025-11-01T09:45:12.069606", + "status": "success" + }, + { + "key": "LTE Communication Setup.TCP-UDP Setup.IP reference", + "classId": 41, + "obis": "0.0.25.0.0.255", + "obisFormatted": "0-0:25.0.0.255", + "attributeId": 3, + "attributeName": "IP reference", + "controlName": "TCP-UDP Setup", + "value": "0-0:25.1.0.255", + "timestamp": "2025-11-01T09:45:12.696821", + "status": "success" + }, + { + "key": "LTE Communication Setup.TCP-UDP Setup.MSS", + "classId": 41, + "obis": "0.0.25.0.0.255", + "obisFormatted": "0-0:25.0.0.255", + "attributeId": 4, + "attributeName": "MSS", + "controlName": "TCP-UDP Setup", + "value": 576, + "timestamp": "2025-11-01T09:45:13.303026", + "status": "success" + }, + { + "key": "LTE Communication Setup.TCP-UDP Setup.Nb of sim conn", + "classId": 41, + "obis": "0.0.25.0.0.255", + "obisFormatted": "0-0:25.0.0.255", + "attributeId": 5, + "attributeName": "Nb of sim conn", + "controlName": "TCP-UDP Setup", + "value": 1, + "timestamp": "2025-11-01T09:45:13.913908", + "status": "success" + }, + { + "key": "LTE Communication Setup.TCP-UDP Setup.Inactivity time out", + "classId": 41, + "obis": "0.0.25.0.0.255", + "obisFormatted": "0-0:25.0.0.255", + "attributeId": 6, + "attributeName": "Inactivity time out", + "controlName": "TCP-UDP Setup", + "value": 300, + "timestamp": "2025-11-01T09:45:14.541862", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv4 Setup.DL reference", + "classId": 42, + "obis": "0.0.25.1.0.255", + "obisFormatted": "0-0:25.1.0.255", + "attributeId": 2, + "attributeName": "DL reference", + "controlName": "IPv4 Setup", + "value": "0-0:25.3.0.255", + "timestamp": "2025-11-01T09:45:15.177757", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv4 Setup.IP address", + "classId": 42, + "obis": "0.0.25.1.0.255", + "obisFormatted": "0-0:25.1.0.255", + "attributeId": 3, + "attributeName": "IP address", + "controlName": "IPv4 Setup", + "value": "0.0.0.0", + "timestamp": "2025-11-01T09:45:15.808694", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv4 Setup.Multicast IP address", + "classId": 42, + "obis": "0.0.25.1.0.255", + "obisFormatted": "0-0:25.1.0.255", + "attributeId": 4, + "attributeName": "Multicast IP address", + "controlName": "IPv4 Setup", + "value": {}, + "timestamp": "2025-11-01T09:45:16.414230", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv4 Setup.IP options", + "classId": 42, + "obis": "0.0.25.1.0.255", + "obisFormatted": "0-0:25.1.0.255", + "attributeId": 5, + "attributeName": "IP options", + "controlName": "IPv4 Setup", + "value": {}, + "timestamp": "2025-11-01T09:45:17.010939", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv4 Setup.Subnet mask", + "classId": 42, + "obis": "0.0.25.1.0.255", + "obisFormatted": "0-0:25.1.0.255", + "attributeId": 6, + "attributeName": "Subnet mask", + "controlName": "IPv4 Setup", + "value": 0, + "timestamp": "2025-11-01T09:45:17.634048", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv4 Setup.Gateway IP address", + "classId": 42, + "obis": "0.0.25.1.0.255", + "obisFormatted": "0-0:25.1.0.255", + "attributeId": 7, + "attributeName": "Gateway IP address", + "controlName": "IPv4 Setup", + "value": "0.0.0.0", + "timestamp": "2025-11-01T09:45:18.214159", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv4 Setup.Use DHCP flag", + "classId": 42, + "obis": "0.0.25.1.0.255", + "obisFormatted": "0-0:25.1.0.255", + "attributeId": 8, + "attributeName": "Use DHCP flag", + "controlName": "IPv4 Setup", + "value": 1, + "timestamp": "2025-11-01T09:45:18.813176", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv4 Setup.Primary DNS address", + "classId": 42, + "obis": "0.0.25.1.0.255", + "obisFormatted": "0-0:25.1.0.255", + "attributeId": 9, + "attributeName": "Primary DNS address", + "controlName": "IPv4 Setup", + "value": 0, + "timestamp": "2025-11-01T09:45:19.437397", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv4 Setup.Secondary DNS address", + "classId": 42, + "obis": "0.0.25.1.0.255", + "obisFormatted": "0-0:25.1.0.255", + "attributeId": 10, + "attributeName": "Secondary DNS address", + "controlName": "IPv4 Setup", + "value": 0, + "timestamp": "2025-11-01T09:45:20.054959", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv6 setup -GPRS.DL reference", + "classId": 48, + "obis": "0.0.25.7.0.255", + "obisFormatted": "0-0:25.7.0.255", + "attributeId": 2, + "attributeName": "DL reference", + "controlName": "IPv6 setup -GPRS", + "value": "0-0:25.3.0.255", + "timestamp": "2025-11-01T09:45:20.687939", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv6 setup -GPRS.Address config mode", + "classId": 48, + "obis": "0.0.25.7.0.255", + "obisFormatted": "0-0:25.7.0.255", + "attributeId": 3, + "attributeName": "Address config mode", + "controlName": "IPv6 setup -GPRS", + "value": 0, + "timestamp": "2025-11-01T09:45:21.311072", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv6 setup -GPRS.Unicast IPv6 addresses", + "classId": 48, + "obis": "0.0.25.7.0.255", + "obisFormatted": "0-0:25.7.0.255", + "attributeId": 4, + "attributeName": "Unicast IPv6 addresses", + "controlName": "IPv6 setup -GPRS", + "value": {}, + "timestamp": "2025-11-01T09:45:21.904951", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv6 setup -GPRS.Multicast IPv6 addresses", + "classId": 48, + "obis": "0.0.25.7.0.255", + "obisFormatted": "0-0:25.7.0.255", + "attributeId": 5, + "attributeName": "Multicast IPv6 addresses", + "controlName": "IPv6 setup -GPRS", + "value": {}, + "timestamp": "2025-11-01T09:45:22.511911", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv6 setup -GPRS.Gateway IPv6 addresses", + "classId": 48, + "obis": "0.0.25.7.0.255", + "obisFormatted": "0-0:25.7.0.255", + "attributeId": 6, + "attributeName": "Gateway IPv6 addresses", + "controlName": "IPv6 setup -GPRS", + "value": {}, + "timestamp": "2025-11-01T09:45:23.123186", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv6 setup -GPRS.Primary DNS address", + "classId": 48, + "obis": "0.0.25.7.0.255", + "obisFormatted": "0-0:25.7.0.255", + "attributeId": 7, + "attributeName": "Primary DNS address", + "controlName": "IPv6 setup -GPRS", + "value": "", + "timestamp": "2025-11-01T09:45:23.761180", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv6 setup -GPRS.Secondary DNS address", + "classId": 48, + "obis": "0.0.25.7.0.255", + "obisFormatted": "0-0:25.7.0.255", + "attributeId": 8, + "attributeName": "Secondary DNS address", + "controlName": "IPv6 setup -GPRS", + "value": "", + "timestamp": "2025-11-01T09:45:24.357118", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv6 setup -GPRS.Traffic class", + "classId": 48, + "obis": "0.0.25.7.0.255", + "obisFormatted": "0-0:25.7.0.255", + "attributeId": 9, + "attributeName": "Traffic class", + "controlName": "IPv6 setup -GPRS", + "value": 0, + "timestamp": "2025-11-01T09:45:24.964309", + "status": "success" + }, + { + "key": "LTE Communication Setup.IPv6 setup -GPRS.Neighbor discovery setup", + "classId": 48, + "obis": "0.0.25.7.0.255", + "obisFormatted": "0-0:25.7.0.255", + "attributeId": 10, + "attributeName": "Neighbor discovery setup", + "controlName": "IPv6 setup -GPRS", + "value": {}, + "timestamp": "2025-11-01T09:45:25.588149", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Modem setup.APN", + "classId": 45, + "obis": "0.1.25.4.0.255", + "obisFormatted": "0-1:25.4.0.255", + "attributeId": 2, + "attributeName": "APN", + "controlName": "LTE Modem setup", + "value": "internet", + "timestamp": "2025-11-01T09:45:26.240681", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Modem setup.PIN code", + "classId": 45, + "obis": "0.1.25.4.0.255", + "obisFormatted": "0-1:25.4.0.255", + "attributeId": 3, + "attributeName": "PIN code", + "controlName": "LTE Modem setup", + "value": 0, + "timestamp": "2025-11-01T09:45:26.859922", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Modem setup.Quality of service", + "classId": 45, + "obis": "0.1.25.4.0.255", + "obisFormatted": "0-1:25.4.0.255", + "attributeId": 4, + "attributeName": "Quality of service", + "controlName": "LTE Modem setup", + "value": { + "0": [ + [ + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0 + ] + ] + }, + "timestamp": "2025-11-01T09:45:27.533063", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Diagnostic.Operator", + "classId": 47, + "obis": "0.1.25.6.0.255", + "obisFormatted": "0-1:25.6.0.255", + "attributeId": 2, + "attributeName": "Operator", + "controlName": "LTE Diagnostic", + "value": "", + "timestamp": "2025-11-01T09:45:28.164344", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Diagnostic.Status", + "classId": 47, + "obis": "0.1.25.6.0.255", + "obisFormatted": "0-1:25.6.0.255", + "attributeId": 3, + "attributeName": "Status", + "controlName": "LTE Diagnostic", + "value": 0, + "timestamp": "2025-11-01T09:45:28.756960", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Diagnostic.Cs attachment", + "classId": 47, + "obis": "0.1.25.6.0.255", + "obisFormatted": "0-1:25.6.0.255", + "attributeId": 4, + "attributeName": "Cs attachment", + "controlName": "LTE Diagnostic", + "value": 0, + "timestamp": "2025-11-01T09:45:29.397140", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Diagnostic.Ps status", + "classId": 47, + "obis": "0.1.25.6.0.255", + "obisFormatted": "0-1:25.6.0.255", + "attributeId": 5, + "attributeName": "Ps status", + "controlName": "LTE Diagnostic", + "value": 0, + "timestamp": "2025-11-01T09:45:30.013852", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Diagnostic.Cell info", + "classId": 47, + "obis": "0.1.25.6.0.255", + "obisFormatted": "0-1:25.6.0.255", + "attributeId": 6, + "attributeName": "Cell info", + "controlName": "LTE Diagnostic", + "value": { + "0": [ + 0, + 0, + 99, + 0, + 0, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:45:30.645424", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Diagnostic.Adjacent cells", + "classId": 47, + "obis": "0.1.25.6.0.255", + "obisFormatted": "0-1:25.6.0.255", + "attributeId": 7, + "attributeName": "Adjacent cells", + "controlName": "LTE Diagnostic", + "value": { + "0": [ + 999, + 99 + ], + "1": [ + 999, + 99 + ], + "2": [ + 999, + 99 + ] + }, + "timestamp": "2025-11-01T09:45:31.263641", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Diagnostic.Capture time", + "classId": 47, + "obis": "0.1.25.6.0.255", + "obisFormatted": "0-1:25.6.0.255", + "attributeId": 8, + "attributeName": "Capture time", + "controlName": "LTE Diagnostic", + "value": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "timestamp": "2025-11-01T09:45:31.921576", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Monitoring.LTE network parameters", + "classId": 151, + "obis": "0.1.25.11.0.255", + "obisFormatted": "0-1:25.11.0.255", + "attributeId": 2, + "attributeName": "LTE network parameters", + "controlName": "LTE Monitoring", + "value": { + "0": [ + 720, + 3240, + 0, + 0, + 0, + 0, + -99, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:45:32.537766", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE Monitoring.LTE quality of service", + "classId": 151, + "obis": "0.1.25.11.0.255", + "obisFormatted": "0-1:25.11.0.255", + "attributeId": 3, + "attributeName": "LTE quality of service", + "controlName": "LTE Monitoring", + "value": { + "0": [ + 0, + -99, + 0, + 0 + ] + }, + "timestamp": "2025-11-01T09:45:33.166562", + "status": "success" + }, + { + "key": "LTE Communication Setup.LTE connection rejection.LTE connection rejection", + "classId": 1, + "obis": "0.1.94.31.7.255", + "obisFormatted": "0-1:94.31.7.255", + "attributeId": 2, + "attributeName": "LTE connection rejection", + "controlName": "LTE connection rejection", + "value": { + "0": [ + 8, + 222, + 3, + "2025-11-10 01 15:48:50 00,FFC4,00" + ] + }, + "timestamp": "2025-11-01T09:45:33.884184", + "status": "success" + }, + { + "key": "LTE Communication Setup.GPS lattitude.GPS lattitude", + "classId": 3, + "obis": "0.1.94.31.9.255", + "obisFormatted": "0-1:94.31.9.255", + "attributeId": 2, + "attributeName": "GPS lattitude", + "controlName": "GPS lattitude", + "value": 0, + "timestamp": "2025-11-01T09:45:34.666725", + "status": "success" + }, + { + "key": "LTE Communication Setup.GPS longitude.GPS longitude", + "classId": 3, + "obis": "0.1.94.31.10.255", + "obisFormatted": "0-1:94.31.10.255", + "attributeId": 2, + "attributeName": "GPS longitude", + "controlName": "GPS longitude", + "value": 0, + "timestamp": "2025-11-01T09:45:35.392980", + "status": "success" + } + ], + "summary": { + "total": 51, + "success": 51, + "failed": 0 + } + }, + "Push setup": { + "sheet_name": "Push setup", + "objects": [ + { + "key": "Push setup.Single action scheduler.Executed script", + "classId": 22, + "obis": "0.0.15.0.4.255", + "obisFormatted": "0-0:15.0.4.255", + "attributeId": 2, + "attributeName": "Executed script", + "controlName": "Single action scheduler", + "value": { + "0": [ + "0-0:10.0.108.255", + 1 + ] + }, + "timestamp": "2025-11-01T09:45:35.990646", + "status": "success" + }, + { + "key": "Push setup.Single action scheduler.Type", + "classId": 22, + "obis": "0.0.15.0.4.255", + "obisFormatted": "0-0:15.0.4.255", + "attributeId": 3, + "attributeName": "Type", + "controlName": "Single action scheduler", + "value": 1, + "timestamp": "2025-11-01T09:45:36.635298", + "status": "success" + }, + { + "key": "Push setup.Single action scheduler.Execution time", + "classId": 22, + "obis": "0.0.15.0.4.255", + "obisFormatted": "0-0:15.0.4.255", + "attributeId": 4, + "attributeName": "Execution time", + "controlName": "Single action scheduler", + "value": {}, + "timestamp": "2025-11-01T09:45:37.216928", + "status": "success" + }, + { + "key": "Push setup.Register monitor.Thresholds", + "classId": 21, + "obis": "0.0.16.1.0.255", + "obisFormatted": "0-0:16.1.0.255", + "attributeId": 2, + "attributeName": "Thresholds", + "controlName": "Register monitor", + "value": { + "0": [ + 0 + ] + }, + "timestamp": "2025-11-01T09:45:37.826807", + "status": "success" + }, + { + "key": "Push setup.Register monitor.Monitored value", + "classId": 21, + "obis": "0.0.16.1.0.255", + "obisFormatted": "0-0:16.1.0.255", + "attributeId": 3, + "attributeName": "Monitored value", + "controlName": "Register monitor", + "value": { + "0": [ + 1, + "0-0:97.98.0.255", + 2 + ] + }, + "timestamp": "2025-11-01T09:45:38.448294", + "status": "success" + }, + { + "key": "Push setup.Register monitor.Actions", + "classId": 21, + "obis": "0.0.16.1.0.255", + "obisFormatted": "0-0:16.1.0.255", + "attributeId": 4, + "attributeName": "Actions", + "controlName": "Register monitor", + "value": { + "0": [ + [ + "", + 0 + ], + [ + "", + 0 + ] + ] + }, + "timestamp": "2025-11-01T09:45:39.064960", + "status": "success" + }, + { + "key": "Push setup.Register monitor lastgasp.Thresholds", + "classId": 21, + "obis": "0.0.16.1.2.255", + "obisFormatted": "0-0:16.1.2.255", + "attributeId": 2, + "attributeName": "Thresholds", + "controlName": "Register monitor lastgasp", + "value": "ObjectUndefined", + "timestamp": "2025-11-01T09:45:39.666868", + "status": "success" + }, + { + "key": "Push setup.Register monitor lastgasp.Monitored value", + "classId": 21, + "obis": "0.0.16.1.2.255", + "obisFormatted": "0-0:16.1.2.255", + "attributeId": 3, + "attributeName": "Monitored value", + "controlName": "Register monitor lastgasp", + "value": "ObjectUndefined", + "timestamp": "2025-11-01T09:45:40.279264", + "status": "success" + }, + { + "key": "Push setup.Register monitor lastgasp.Actions", + "classId": 21, + "obis": "0.0.16.1.2.255", + "obisFormatted": "0-0:16.1.2.255", + "attributeId": 4, + "attributeName": "Actions", + "controlName": "Register monitor lastgasp", + "value": "ObjectUndefined", + "timestamp": "2025-11-01T09:45:40.907925", + "status": "success" + }, + { + "key": "Push setup.Push script table.Scripts", + "classId": 9, + "obis": "0.0.10.0.108.255", + "obisFormatted": "0-0:10.0.108.255", + "attributeId": 2, + "attributeName": "Scripts", + "controlName": "Push script table", + "value": { + "0": [ + 1, + [ + [ + 2, + 40, + "0-0:25.9.0.255", + 1, + 0 + ] + ] + ], + "1": [ + 2, + [ + [ + 2, + 40, + "0-1:25.9.0.255", + 1, + 0 + ] + ] + ] + }, + "timestamp": "2025-11-01T09:45:41.575616", + "status": "success" + }, + { + "key": "Push setup.Phase Outage Test.Scripts", + "classId": 9, + "obis": "0.0.10.1.108.255", + "obisFormatted": "0-0:10.1.108.255", + "attributeId": 2, + "attributeName": "Scripts", + "controlName": "Phase Outage Test", + "value": { + "0": [ + 1, + [ + [ + 1, + 1, + "0-0:97.98.0.255", + 2, + 576460752303423488 + ] + ] + ] + }, + "timestamp": "2025-11-01T09:45:42.219363", + "status": "success" + }, + { + "key": "Push setup.Push Setup Scheduler.Push object list", + "classId": 40, + "obis": "0.0.25.9.0.255", + "obisFormatted": "0-0:25.9.0.255", + "attributeId": 2, + "attributeName": "Push object list", + "controlName": "Push Setup Scheduler", + "value": {}, + "timestamp": "2025-11-01T09:45:42.810088", + "status": "success" + }, + { + "key": "Push setup.Push Setup Scheduler.Send destination and method", + "classId": 40, + "obis": "0.0.25.9.0.255", + "obisFormatted": "0-0:25.9.0.255", + "attributeId": 3, + "attributeName": "Send destination and method", + "controlName": "Push Setup Scheduler", + "value": { + "0": [ + 0, + "", + 0 + ] + }, + "timestamp": "2025-11-01T09:45:43.428853", + "status": "success" + }, + { + "key": "Push setup.Push Setup Scheduler.Communication window", + "classId": 40, + "obis": "0.0.25.9.0.255", + "obisFormatted": "0-0:25.9.0.255", + "attributeId": 4, + "attributeName": "Communication window", + "controlName": "Push Setup Scheduler", + "value": { + "0": [ + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "FFFF-FF-FF FF 23:59:59 99,8000,FF" + ] + }, + "timestamp": "2025-11-01T09:45:44.072194", + "status": "success" + }, + { + "key": "Push setup.Push Setup Scheduler.Randomisation start interval", + "classId": 40, + "obis": "0.0.25.9.0.255", + "obisFormatted": "0-0:25.9.0.255", + "attributeId": 5, + "attributeName": "Randomisation start interval", + "controlName": "Push Setup Scheduler", + "value": 0, + "timestamp": "2025-11-01T09:45:44.684372", + "status": "success" + }, + { + "key": "Push setup.Push Setup Scheduler.Number of retries", + "classId": 40, + "obis": "0.0.25.9.0.255", + "obisFormatted": "0-0:25.9.0.255", + "attributeId": 6, + "attributeName": "Number of retries", + "controlName": "Push Setup Scheduler", + "value": 0, + "timestamp": "2025-11-01T09:45:45.280648", + "status": "success" + }, + { + "key": "Push setup.Push Setup Scheduler.Repetition delay", + "classId": 40, + "obis": "0.0.25.9.0.255", + "obisFormatted": "0-0:25.9.0.255", + "attributeId": 7, + "attributeName": "Repetition delay", + "controlName": "Push Setup Scheduler", + "value": "0000", + "timestamp": "2025-11-01T09:45:45.874634", + "status": "success" + }, + { + "key": "Push setup.Push Setup Alarm.Push object list", + "classId": 40, + "obis": "0.1.25.9.0.255", + "obisFormatted": "0-1:25.9.0.255", + "attributeId": 2, + "attributeName": "Push object list", + "controlName": "Push Setup Alarm", + "value": { + "0": [ + 1, + "0-0:96.1.1.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:97.98.0.255", + 2, + 0 + ] + }, + "timestamp": "2025-11-01T09:45:46.559199", + "status": "success" + }, + { + "key": "Push setup.Push Setup Alarm.Send destination and method", + "classId": 40, + "obis": "0.1.25.9.0.255", + "obisFormatted": "0-1:25.9.0.255", + "attributeId": 3, + "attributeName": "Send destination and method", + "controlName": "Push Setup Alarm", + "value": { + "0": [ + 0, + "", + 0 + ] + }, + "timestamp": "2025-11-01T09:45:47.125952", + "status": "success" + }, + { + "key": "Push setup.Push Setup Alarm.Communication window", + "classId": 40, + "obis": "0.1.25.9.0.255", + "obisFormatted": "0-1:25.9.0.255", + "attributeId": 4, + "attributeName": "Communication window", + "controlName": "Push Setup Alarm", + "value": { + "0": [ + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "FFFF-FF-FF FF 23:59:59 99,8000,FF" + ] + }, + "timestamp": "2025-11-01T09:45:47.777545", + "status": "success" + }, + { + "key": "Push setup.Push Setup Alarm.Randomisation start interval", + "classId": 40, + "obis": "0.1.25.9.0.255", + "obisFormatted": "0-1:25.9.0.255", + "attributeId": 5, + "attributeName": "Randomisation start interval", + "controlName": "Push Setup Alarm", + "value": 0, + "timestamp": "2025-11-01T09:45:48.316967", + "status": "success" + }, + { + "key": "Push setup.Push Setup Alarm.Number of retries", + "classId": 40, + "obis": "0.1.25.9.0.255", + "obisFormatted": "0-1:25.9.0.255", + "attributeId": 6, + "attributeName": "Number of retries", + "controlName": "Push Setup Alarm", + "value": 0, + "timestamp": "2025-11-01T09:45:48.906090", + "status": "success" + }, + { + "key": "Push setup.Push Setup Alarm.Repetition delay", + "classId": 40, + "obis": "0.1.25.9.0.255", + "obisFormatted": "0-1:25.9.0.255", + "attributeId": 7, + "attributeName": "Repetition delay", + "controlName": "Push Setup Alarm", + "value": "0000", + "timestamp": "2025-11-01T09:45:49.506134", + "status": "success" + } + ], + "summary": { + "total": 23, + "success": 23, + "failed": 0 + } + }, + "Association related parameters": { + "sheet_name": "Association related parameters", + "objects": [ + { + "key": "Association related parameters.SAP Assignment.SAP assignment list", + "classId": 17, + "obis": "0.0.41.0.0.255", + "obisFormatted": "0-0:41.0.0.255", + "attributeId": 2, + "attributeName": "SAP assignment list", + "controlName": "SAP Assignment", + "value": { + "0": [ + 1, + "KFM7000000000000" + ] + }, + "timestamp": "2025-11-01T09:45:50.177667", + "status": "success" + }, + { + "key": "Association related parameters.Association LN.Object list", + "classId": 15, + "obis": "0.0.40.0.0.255", + "obisFormatted": "0-0:40.0.0.255", + "attributeId": 2, + "attributeName": "Object list", + "controlName": "Association LN", + "value": { + "0": [ + 1, + 0, + "0-0:42.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "1": [ + 1, + 0, + "0-0:96.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "2": [ + 1, + 0, + "0-0:96.1.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "3": [ + 1, + 0, + "0-0:96.1.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "4": [ + 1, + 0, + "0-0:96.4.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "5": [ + 1, + 0, + "0-0:96.7.9.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "6": [ + 1, + 0, + "0-0:96.7.21.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "7": [ + 1, + 0, + "0-0:96.10.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "8": [ + 1, + 0, + "0-0:96.10.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "9": [ + 1, + 0, + "0-0:96.10.6.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "10": [ + 1, + 0, + "0-0:96.10.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "11": [ + 1, + 0, + "0-0:96.10.9.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "12": [ + 1, + 0, + "0-0:96.11.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "13": [ + 1, + 0, + "0-0:96.11.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "14": [ + 1, + 0, + "0-0:96.11.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "15": [ + 1, + 0, + "0-0:96.11.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "16": [ + 1, + 0, + "0-0:96.11.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "17": [ + 1, + 0, + "0-0:96.11.20.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "18": [ + 1, + 0, + "0-0:96.11.21.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "19": [ + 1, + 0, + "0-0:96.13.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "20": [ + 1, + 0, + "0-0:96.14.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "21": [ + 1, + 0, + "0-0:96.15.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "22": [ + 1, + 0, + "0-0:96.15.11.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "23": [ + 1, + 0, + "0-0:96.15.12.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "24": [ + 1, + 0, + "0-0:96.15.13.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "25": [ + 1, + 0, + "0-0:96.15.14.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "26": [ + 1, + 0, + "0-0:97.97.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "27": [ + 1, + 0, + "0-0:97.98.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "28": [ + 1, + 0, + "0-0:97.98.10.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "29": [ + 1, + 0, + "0-1:94.31.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "30": [ + 1, + 0, + "0-1:94.31.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [ + [ + -1, + 1 + ] + ] + ] + ], + "31": [ + 1, + 0, + "0-1:94.31.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "32": [ + 1, + 0, + "0-1:94.31.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "33": [ + 1, + 0, + "0-1:94.31.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "34": [ + 1, + 0, + "0-1:94.31.12.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "35": [ + 1, + 0, + "0-1:94.31.19.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "36": [ + 1, + 0, + "0-1:94.31.20.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "37": [ + 1, + 0, + "0-1:96.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "38": [ + 1, + 0, + "0-1:96.10.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "39": [ + 1, + 0, + "0-1:96.10.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "40": [ + 1, + 0, + "0-1:96.10.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "41": [ + 1, + 0, + "0-1:96.11.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "42": [ + 1, + 0, + "0-2:96.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "43": [ + 1, + 0, + "0-2:96.10.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "44": [ + 1, + 0, + "0-2:96.10.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "45": [ + 1, + 0, + "0-2:96.10.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "46": [ + 1, + 0, + "0-2:96.11.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "47": [ + 1, + 0, + "0-3:96.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "48": [ + 1, + 0, + "0-3:96.10.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "49": [ + 1, + 0, + "0-3:96.10.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "50": [ + 1, + 0, + "0-3:96.10.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "51": [ + 1, + 0, + "0-3:96.11.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "52": [ + 1, + 0, + "0-4:96.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "53": [ + 1, + 0, + "0-4:96.10.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "54": [ + 1, + 0, + "0-4:96.10.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "55": [ + 1, + 0, + "0-4:96.10.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "56": [ + 1, + 0, + "0-4:96.11.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "57": [ + 1, + 0, + "0-65:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "58": [ + 1, + 0, + "0-65:44.0.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "59": [ + 1, + 0, + "0-65:44.0.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "60": [ + 1, + 0, + "1-0:0.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "61": [ + 1, + 0, + "1-0:0.2.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "62": [ + 1, + 0, + "1-0:32.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "63": [ + 1, + 0, + "1-0:32.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "64": [ + 1, + 0, + "1-0:52.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "65": [ + 1, + 0, + "1-0:52.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "66": [ + 1, + 0, + "1-0:72.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "67": [ + 1, + 0, + "1-0:72.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "68": [ + 1, + 0, + "1-1:0.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "69": [ + 1, + 0, + "1-1:0.2.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "70": [ + 1, + 0, + "1-1:32.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "71": [ + 1, + 0, + "1-1:52.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "72": [ + 1, + 0, + "1-1:72.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "73": [ + 1, + 0, + "1-2:0.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "74": [ + 1, + 0, + "1-2:0.2.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "75": [ + 1, + 0, + "1-2:32.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "76": [ + 1, + 0, + "1-2:32.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "77": [ + 1, + 0, + "1-2:52.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "78": [ + 1, + 0, + "1-2:52.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "79": [ + 1, + 0, + "1-2:72.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "80": [ + 1, + 0, + "1-2:72.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "81": [ + 1, + 0, + "1-3:0.2.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "82": [ + 1, + 0, + "1-4:0.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "83": [ + 1, + 0, + "1-4:0.2.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "84": [ + 3, + 0, + "0-0:96.7.19.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "85": [ + 3, + 0, + "0-0:96.7.20.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "86": [ + 3, + 0, + "0-0:96.9.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "87": [ + 3, + 0, + "0-0:96.50.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "88": [ + 3, + 0, + "0-1:94.31.9.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + -1, + 1 + ] + ] + ] + ], + "89": [ + 3, + 0, + "0-1:94.31.10.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "90": [ + 3, + 0, + "0-1:128.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "91": [ + 3, + 0, + "0-1:128.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "92": [ + 3, + 0, + "0-2:128.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "93": [ + 3, + 0, + "0-2:128.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "94": [ + 3, + 0, + "0-3:128.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "95": [ + 3, + 0, + "0-3:128.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "96": [ + 3, + 0, + "0-4:128.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "97": [ + 3, + 0, + "0-4:128.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "98": [ + 3, + 0, + "1-0:0.9.11.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "99": [ + 3, + 0, + "1-0:1.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "100": [ + 3, + 0, + "1-0:1.8.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "101": [ + 3, + 0, + "1-0:1.8.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "102": [ + 3, + 0, + "1-0:1.8.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "103": [ + 3, + 0, + "1-0:2.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "104": [ + 3, + 0, + "1-0:2.8.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "105": [ + 3, + 0, + "1-0:2.8.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "106": [ + 3, + 0, + "1-0:2.8.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "107": [ + 3, + 0, + "1-0:3.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "108": [ + 3, + 0, + "1-0:4.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "109": [ + 3, + 0, + "1-0:5.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "110": [ + 3, + 0, + "1-0:6.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "111": [ + 3, + 0, + "1-0:7.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "112": [ + 3, + 0, + "1-0:8.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "113": [ + 3, + 0, + "1-0:9.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "114": [ + 3, + 0, + "1-0:10.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "115": [ + 3, + 0, + "1-0:12.31.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "116": [ + 3, + 0, + "1-0:12.35.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "117": [ + 3, + 0, + "1-0:12.43.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "118": [ + 3, + 0, + "1-0:12.44.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "119": [ + 3, + 0, + "1-0:16.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "120": [ + 3, + 0, + "1-0:17.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "121": [ + 3, + 0, + "1-0:18.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "122": [ + 3, + 0, + "1-0:19.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "123": [ + 3, + 0, + "1-0:20.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "124": [ + 3, + 0, + "1-0:21.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "125": [ + 3, + 0, + "1-0:21.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "126": [ + 3, + 0, + "1-0:22.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "127": [ + 3, + 0, + "1-0:22.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "128": [ + 3, + 0, + "1-0:23.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "129": [ + 3, + 0, + "1-0:23.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "130": [ + 3, + 0, + "1-0:24.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "131": [ + 3, + 0, + "1-0:24.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "132": [ + 3, + 0, + "1-0:25.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "133": [ + 3, + 0, + "1-0:25.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "134": [ + 3, + 0, + "1-0:26.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "135": [ + 3, + 0, + "1-0:26.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "136": [ + 3, + 0, + "1-0:27.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "137": [ + 3, + 0, + "1-0:27.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "138": [ + 3, + 0, + "1-0:28.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "139": [ + 3, + 0, + "1-0:28.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "140": [ + 3, + 0, + "1-0:31.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "141": [ + 3, + 0, + "1-0:31.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "142": [ + 3, + 0, + "1-0:32.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "143": [ + 3, + 0, + "1-0:32.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "144": [ + 3, + 0, + "1-0:32.33.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "145": [ + 3, + 0, + "1-0:32.34.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "146": [ + 3, + 0, + "1-0:32.37.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "147": [ + 3, + 0, + "1-0:32.38.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "148": [ + 3, + 0, + "1-0:37.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "149": [ + 3, + 0, + "1-0:37.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "150": [ + 3, + 0, + "1-0:38.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "151": [ + 3, + 0, + "1-0:38.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "152": [ + 3, + 0, + "1-0:39.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "153": [ + 3, + 0, + "1-0:39.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "154": [ + 3, + 0, + "1-0:40.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "155": [ + 3, + 0, + "1-0:40.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "156": [ + 3, + 0, + "1-0:41.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "157": [ + 3, + 0, + "1-0:41.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "158": [ + 3, + 0, + "1-0:42.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "159": [ + 3, + 0, + "1-0:42.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "160": [ + 3, + 0, + "1-0:43.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "161": [ + 3, + 0, + "1-0:43.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "162": [ + 3, + 0, + "1-0:44.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "163": [ + 3, + 0, + "1-0:44.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "164": [ + 3, + 0, + "1-0:45.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "165": [ + 3, + 0, + "1-0:45.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "166": [ + 3, + 0, + "1-0:46.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "167": [ + 3, + 0, + "1-0:46.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "168": [ + 3, + 0, + "1-0:47.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "169": [ + 3, + 0, + "1-0:47.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "170": [ + 3, + 0, + "1-0:48.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "171": [ + 3, + 0, + "1-0:48.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "172": [ + 3, + 0, + "1-0:51.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "173": [ + 3, + 0, + "1-0:51.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "174": [ + 3, + 0, + "1-0:52.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "175": [ + 3, + 0, + "1-0:52.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "176": [ + 3, + 0, + "1-0:52.33.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "177": [ + 3, + 0, + "1-0:52.34.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "178": [ + 3, + 0, + "1-0:52.37.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "179": [ + 3, + 0, + "1-0:52.38.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "180": [ + 3, + 0, + "1-0:57.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "181": [ + 3, + 0, + "1-0:57.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "182": [ + 3, + 0, + "1-0:58.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "183": [ + 3, + 0, + "1-0:58.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "184": [ + 3, + 0, + "1-0:59.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "185": [ + 3, + 0, + "1-0:59.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "186": [ + 3, + 0, + "1-0:60.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "187": [ + 3, + 0, + "1-0:60.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "188": [ + 3, + 0, + "1-0:61.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "189": [ + 3, + 0, + "1-0:61.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "190": [ + 3, + 0, + "1-0:62.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "191": [ + 3, + 0, + "1-0:62.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "192": [ + 3, + 0, + "1-0:63.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "193": [ + 3, + 0, + "1-0:63.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "194": [ + 3, + 0, + "1-0:64.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "195": [ + 3, + 0, + "1-0:64.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "196": [ + 3, + 0, + "1-0:65.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "197": [ + 3, + 0, + "1-0:65.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "198": [ + 3, + 0, + "1-0:66.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "199": [ + 3, + 0, + "1-0:66.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "200": [ + 3, + 0, + "1-0:67.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "201": [ + 3, + 0, + "1-0:67.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "202": [ + 3, + 0, + "1-0:68.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "203": [ + 3, + 0, + "1-0:68.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "204": [ + 3, + 0, + "1-0:71.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "205": [ + 3, + 0, + "1-0:71.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "206": [ + 3, + 0, + "1-0:72.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "207": [ + 3, + 0, + "1-0:72.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "208": [ + 3, + 0, + "1-0:72.33.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "209": [ + 3, + 0, + "1-0:72.34.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "210": [ + 3, + 0, + "1-0:72.37.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "211": [ + 3, + 0, + "1-0:72.38.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "212": [ + 3, + 0, + "1-0:77.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "213": [ + 3, + 0, + "1-0:77.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "214": [ + 3, + 0, + "1-0:78.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "215": [ + 3, + 0, + "1-0:78.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "216": [ + 3, + 0, + "1-0:79.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "217": [ + 3, + 0, + "1-0:79.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "218": [ + 3, + 0, + "1-0:80.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "219": [ + 3, + 0, + "1-0:80.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "220": [ + 3, + 0, + "1-0:90.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "221": [ + 3, + 0, + "1-0:124.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "222": [ + 3, + 0, + "1-0:124.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "223": [ + 3, + 0, + "1-0:125.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "224": [ + 3, + 0, + "1-0:125.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "225": [ + 3, + 0, + "1-0:126.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "226": [ + 3, + 0, + "1-0:126.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "227": [ + 3, + 0, + "1-1:12.31.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "228": [ + 3, + 0, + "1-1:12.43.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "229": [ + 3, + 0, + "1-2:12.31.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "230": [ + 3, + 0, + "1-2:12.35.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "231": [ + 3, + 0, + "1-2:12.43.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "232": [ + 3, + 0, + "1-2:12.44.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "233": [ + 4, + 0, + "0-1:24.2.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "234": [ + 4, + 0, + "0-1:24.2.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "235": [ + 4, + 0, + "0-1:24.2.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "236": [ + 4, + 0, + "0-2:24.2.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "237": [ + 4, + 0, + "0-2:24.2.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "238": [ + 4, + 0, + "0-2:24.2.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "239": [ + 4, + 0, + "0-3:24.2.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "240": [ + 4, + 0, + "0-3:24.2.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "241": [ + 4, + 0, + "0-3:24.2.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "242": [ + 4, + 0, + "0-4:24.2.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "243": [ + 4, + 0, + "0-4:24.2.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "244": [ + 4, + 0, + "0-4:24.2.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "245": [ + 5, + 0, + "0-1:129.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "246": [ + 5, + 0, + "0-1:129.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "247": [ + 5, + 0, + "0-2:129.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "248": [ + 5, + 0, + "0-2:129.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "249": [ + 5, + 0, + "0-3:129.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "250": [ + 5, + 0, + "0-3:129.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "251": [ + 5, + 0, + "0-4:129.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "252": [ + 5, + 0, + "0-4:129.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "253": [ + 6, + 0, + "0-0:14.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] + ] + ] + ], + "254": [ + 7, + 1, + "0-0:21.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "255": [ + 7, + 1, + "0-0:21.0.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "256": [ + 7, + 1, + "0-0:21.0.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "257": [ + 7, + 1, + "0-0:21.0.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "258": [ + 7, + 1, + "0-0:99.18.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "259": [ + 7, + 1, + "0-0:99.98.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "260": [ + 7, + 1, + "0-0:99.98.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "261": [ + 7, + 1, + "0-0:99.98.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "262": [ + 7, + 1, + "0-0:99.98.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "263": [ + 7, + 1, + "0-0:99.98.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "264": [ + 7, + 1, + "0-1:24.3.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "265": [ + 7, + 1, + "0-1:94.31.6.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "266": [ + 7, + 1, + "0-1:98.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "267": [ + 7, + 1, + "0-1:99.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "268": [ + 7, + 1, + "0-1:99.98.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "269": [ + 7, + 1, + "0-2:24.3.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "270": [ + 7, + 1, + "0-2:98.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "271": [ + 7, + 1, + "0-2:99.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "272": [ + 7, + 1, + "0-2:99.98.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "273": [ + 7, + 1, + "0-3:24.3.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "274": [ + 7, + 1, + "0-3:98.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "275": [ + 7, + 1, + "0-3:99.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "276": [ + 7, + 1, + "0-3:99.98.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "277": [ + 7, + 1, + "0-4:24.3.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "278": [ + 7, + 1, + "0-4:98.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "279": [ + 7, + 1, + "0-4:99.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "280": [ + 7, + 1, + "0-4:99.98.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "281": [ + 7, + 1, + "1-0:98.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "282": [ + 7, + 1, + "1-0:99.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "283": [ + 7, + 1, + "1-0:99.1.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "284": [ + 7, + 1, + "1-0:99.1.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "285": [ + 7, + 1, + "1-0:99.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "286": [ + 7, + 1, + "1-0:99.97.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "287": [ + 8, + 0, + "0-0:1.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ] + ] + ] + ], + "288": [ + 9, + 0, + "0-0:10.0.100.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "289": [ + 9, + 0, + "0-0:10.0.108.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "290": [ + 9, + 0, + "0-0:10.1.108.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "291": [ + 9, + 0, + "0-1:94.31.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "292": [ + 11, + 0, + "0-0:11.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ] + ] + ] + ], + "293": [ + 15, + 3, + "0-0:40.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 0, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ], + [ + 10, + 1, + "NullData" + ], + [ + 11, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ], + [ + 5, + 1 + ], + [ + 6, + 1 + ] + ] + ] + ], + "294": [ + 17, + 0, + "0-0:41.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "295": [ + 18, + 0, + "0-0:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ] + ] + ] + ], + "296": [ + 18, + 0, + "0-1:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ] + ] + ] + ], + "297": [ + 18, + 0, + "0-2:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ] + ] + ] + ], + "298": [ + 18, + 0, + "0-3:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ] + ] + ] + ], + "299": [ + 18, + 0, + "0-4:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ] + ] + ] + ], + "300": [ + 18, + 0, + "0-5:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 1 + ] + ] + ] + ], + "301": [ + 19, + 1, + "0-0:20.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [] + ] + ], + "302": [ + 20, + 0, + "0-0:13.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "303": [ + 21, + 0, + "0-0:16.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ] + ], + [] + ] + ], + "304": [ + 22, + 0, + "0-0:15.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ] + ], + [] + ] + ], + "305": [ + 22, + 0, + "0-0:15.0.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ] + ], + [] + ] + ], + "306": [ + 22, + 0, + "0-0:15.1.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ] + ], + [] + ] + ], + "307": [ + 23, + 1, + "0-0:22.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [] + ] + ], + "308": [ + 28, + 2, + "0-0:2.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 3, + "NullData" + ] + ], + [] + ] + ], + "309": [ + 29, + 2, + "0-0:2.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "310": [ + 40, + 0, + "0-0:25.9.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "311": [ + 40, + 0, + "0-1:25.9.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "312": [ + 41, + 0, + "0-0:25.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 3, + "NullData" + ] + ], + [] + ] + ], + "313": [ + 42, + 0, + "0-0:25.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ], + [ + 10, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] + ] + ] + ], + "314": [ + 44, + 0, + "0-0:25.3.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ] + ], + [] + ] + ], + "315": [ + 45, + 0, + "0-1:25.4.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ] + ], + [] + ] + ], + "316": [ + 47, + 2, + "0-1:25.6.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [] + ] + ], + "317": [ + 48, + 0, + "0-0:25.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 0 + ] + ] + ] + ], + "318": [ + 64, + 1, + "0-0:43.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ], + [ + 5, + 1 + ], + [ + 6, + 1 + ], + [ + 7, + 1 + ], + [ + 8, + 1 + ] + ] + ] + ], + "319": [ + 72, + 1, + "0-1:24.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 1, + "NullData" + ], + [ + 11, + 1, + "NullData" + ], + [ + 12, + 1, + "NullData" + ], + [ + 13, + 1, + "NullData" + ], + [ + 14, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 1 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 1 + ], + [ + 8, + 1 + ], + [ + -1, + 1 + ], + [ + -2, + 1 + ] + ] + ] + ], + "320": [ + 72, + 1, + "0-2:24.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 1, + "NullData" + ], + [ + 11, + 1, + "NullData" + ], + [ + 12, + 1, + "NullData" + ], + [ + 13, + 1, + "NullData" + ], + [ + 14, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 1 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 1 + ], + [ + 8, + 1 + ], + [ + -1, + 1 + ], + [ + -2, + 1 + ] + ] + ] + ], + "321": [ + 72, + 1, + "0-3:24.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 1, + "NullData" + ], + [ + 11, + 1, + "NullData" + ], + [ + 12, + 1, + "NullData" + ], + [ + 13, + 1, + "NullData" + ], + [ + 14, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 1 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 1 + ], + [ + 8, + 1 + ], + [ + -1, + 1 + ], + [ + -2, + 1 + ] + ] + ] + ], + "322": [ + 72, + 1, + "0-4:24.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 1, + "NullData" + ], + [ + 11, + 1, + "NullData" + ], + [ + 12, + 1, + "NullData" + ], + [ + 13, + 1, + "NullData" + ], + [ + 14, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 1 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 1 + ], + [ + 8, + 1 + ], + [ + -1, + 1 + ], + [ + -2, + 1 + ] + ] + ] + ], + "323": [ + 77, + 0, + "0-1:24.9.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "324": [ + 77, + 0, + "0-2:24.9.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "325": [ + 77, + 0, + "0-3:24.9.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "326": [ + 77, + 0, + "0-4:24.9.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "327": [ + 151, + 1, + "0-1:25.11.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [] + ] + ] + }, + "timestamp": "2025-11-01T09:46:56.448837", + "status": "success" + }, + { + "key": "Association related parameters.Association LN.Associated partners id", + "classId": 15, + "obis": "0.0.40.0.0.255", + "obisFormatted": "0-0:40.0.0.255", + "attributeId": 3, + "attributeName": "Associated partners id", + "controlName": "Association LN", + "value": { + "0": [ + 1, + 1 + ] + }, + "timestamp": "2025-11-01T09:46:57.081468", + "status": "success" + }, + { + "key": "Association related parameters.Association LN.Application context name", + "classId": 15, + "obis": "0.0.40.0.0.255", + "obisFormatted": "0-0:40.0.0.255", + "attributeId": 4, + "attributeName": "Application context name", + "controlName": "Association LN", + "value": "60857405080103", + "timestamp": "2025-11-01T09:46:57.706869", + "status": "success" + }, + { + "key": "Association related parameters.Association LN.xDLMS context info", + "classId": 15, + "obis": "0.0.40.0.0.255", + "obisFormatted": "0-0:40.0.0.255", + "attributeId": 5, + "attributeName": "xDLMS context info", + "controlName": "Association LN", + "value": { + "0": [ + "011000000001101000011101", + 1300, + 1300, + 6, + 0, + "" + ] + }, + "timestamp": "2025-11-01T09:46:58.303944", + "status": "success" + }, + { + "key": "Association related parameters.Association LN.Authentication mechanism name", + "classId": 15, + "obis": "0.0.40.0.0.255", + "obisFormatted": "0-0:40.0.0.255", + "attributeId": 6, + "attributeName": "Authentication mechanism name", + "controlName": "Association LN", + "value": "60857405080205", + "timestamp": "2025-11-01T09:46:58.931736", + "status": "success" + }, + { + "key": "Association related parameters.Association LN.Secret", + "classId": 15, + "obis": "0.0.40.0.0.255", + "obisFormatted": "0-0:40.0.0.255", + "attributeId": 7, + "attributeName": "Secret", + "controlName": "Association LN", + "value": "ReadWriteDenied", + "timestamp": "2025-11-01T09:46:59.528824", + "status": "success" + }, + { + "key": "Association related parameters.Association LN.Association status", + "classId": 15, + "obis": "0.0.40.0.0.255", + "obisFormatted": "0-0:40.0.0.255", + "attributeId": 8, + "attributeName": "Association status", + "controlName": "Association LN", + "value": 2, + "timestamp": "2025-11-01T09:47:00.082529", + "status": "success" + }, + { + "key": "Association related parameters.Association LN.Security setup reference", + "classId": 15, + "obis": "0.0.40.0.0.255", + "obisFormatted": "0-0:40.0.0.255", + "attributeId": 9, + "attributeName": "Security setup reference", + "controlName": "Association LN", + "value": "0-0:43.0.0.255", + "timestamp": "2025-11-01T09:47:00.715296", + "status": "success" + }, + { + "key": "Association related parameters.Association LN.User list", + "classId": 15, + "obis": "0.0.40.0.0.255", + "obisFormatted": "0-0:40.0.0.255", + "attributeId": 10, + "attributeName": "User list", + "controlName": "Association LN", + "value": {}, + "timestamp": "2025-11-01T09:47:01.323321", + "status": "success" + }, + { + "key": "Association related parameters.Association LN.Current user", + "classId": 15, + "obis": "0.0.40.0.0.255", + "obisFormatted": "0-0:40.0.0.255", + "attributeId": 11, + "attributeName": "Current user", + "controlName": "Association LN", + "value": { + "0": [ + 0, + "" + ] + }, + "timestamp": "2025-11-01T09:47:01.938367", + "status": "success" + }, + { + "key": "Association related parameters.Security Setup.Security policy", + "classId": 64, + "obis": "0.0.43.0.0.255", + "obisFormatted": "0-0:43.0.0.255", + "attributeId": 2, + "attributeName": "Security policy", + "controlName": "Security Setup", + "value": 108, + "timestamp": "2025-11-01T09:47:02.531831", + "status": "success" + }, + { + "key": "Association related parameters.Security Setup.Security suite", + "classId": 64, + "obis": "0.0.43.0.0.255", + "obisFormatted": "0-0:43.0.0.255", + "attributeId": 3, + "attributeName": "Security suite", + "controlName": "Security Setup", + "value": 1, + "timestamp": "2025-11-01T09:47:03.129544", + "status": "success" + }, + { + "key": "Association related parameters.Security Setup.Client system title", + "classId": 64, + "obis": "0.0.43.0.0.255", + "obisFormatted": "0-0:43.0.0.255", + "attributeId": 4, + "attributeName": "Client system title", + "controlName": "Security Setup", + "value": "0000000000009800", + "timestamp": "2025-11-01T09:47:03.738205", + "status": "success" + }, + { + "key": "Association related parameters.Security Setup.Server system title", + "classId": 64, + "obis": "0.0.43.0.0.255", + "obisFormatted": "0-0:43.0.0.255", + "attributeId": 5, + "attributeName": "Server system title", + "controlName": "Security Setup", + "value": "4B464D0000000001", + "timestamp": "2025-11-01T09:47:04.356062", + "status": "success" + }, + { + "key": "Association related parameters.Security Setup.Certificates", + "classId": 64, + "obis": "0.0.43.0.0.255", + "obisFormatted": "0-0:43.0.0.255", + "attributeId": 6, + "attributeName": "Certificates", + "controlName": "Security Setup", + "value": {}, + "timestamp": "2025-11-01T09:47:04.964577", + "status": "success" + }, + { + "key": "Association related parameters.Invocation Counter for authenticated decryption (IC Rx).Invocation Counter for authenticated decryption (IC Rx)", + "classId": 1, + "obis": "0.0.43.1.0.255", + "obisFormatted": "0-0:43.1.0.255", + "attributeId": 2, + "attributeName": "Invocation Counter for authenticated decryption (IC Rx)", + "controlName": "Invocation Counter for authenticated decryption (IC Rx)", + "value": "ReadWriteDenied", + "timestamp": "2025-11-01T09:47:05.583603", + "status": "success" + } + ], + "summary": { + "total": 17, + "success": 17, + "failed": 0 + } + }, + "Meter Reset to Factory Setting": { + "sheet_name": "Meter Reset to Factory Setting", + "objects": [ + { + "key": "Meter Reset to Factory Setting.Tariffication.Scripts", + "classId": 9, + "obis": "0.1.94.31.5.255", + "obisFormatted": "0-1:94.31.5.255", + "attributeId": 2, + "attributeName": "Scripts", + "controlName": "Tariffication", + "value": { + "0": [ + 1, + [ + [ + 2, + 9, + "0-1:94.31.5.255", + 1, + "0001" + ] + ] + ] + }, + "timestamp": "2025-11-01T09:47:06.209760", + "status": "success" + } + ], + "summary": { + "total": 1, + "success": 1, + "failed": 0 + } + } + }, + "key_value_pairs": { + "Clock.Clock.Time": "2025-11-10 01 15:38:38 00,FFC4,00", + "Clock.Clock.Time zone": -60, + "Clock.Clock.Status": 0, + "Clock.Clock.Daylight savings begin": "FFFF-03-FE 07 02:00:00 00,8000,FF", + "Clock.Clock.Daylight savings end": "FFFF-10-FE 07 03:00:00 00,8000,FF", + "Clock.Clock.Daylight savings deviation": 60, + "Clock.Clock.Daylight savings enabled": 1, + "Clock.Clock.Clock base": 1, + "Clock.Clock time shift event limit: S.Value": 60, + "Basic Information.E-meter Logic device name.E-meter Logic device name": "KFM7000000000000", + "Basic Information.E-meter Serial Number.E-meter Serial Number": "20000000000000000002", + "Basic Information.E-meter equipment identifier.E-meter equipment identifier": "E009700000000000000000000000000000000000000000000000", + "Basic Information.Legal Firmware Identifier.Legal Firmware Identifier": "1000FF22", + "Basic Information.Legal Firmware Signature.Legal Firmware Signature": "7E74BA05F40E05B0F6E39B050A03B3A9C9DBB513AD836AE4775A34404D94338BF426DCB6B2F6902F22DFF21AD38EA1C1F8B816F34679F676C63C54FE710EA6F9", + "Basic Information.Application Firmware Identifier.Application Firmware Identifier": "11000231", + "Basic Information.Application Firmware Signature.Application Firmware Signature": "6EB9F9C1ED26595272519C22EF43D353A785586B00763548CB0D5A55C13185240874C5FB9B637A55E1525CBB513D15F201B899D0E6E3E0C6747D1F78B44D73AE", + "Basic Information.Module Active Firmware Identifier.Module Active Firmware Identifier": "L710TK_V10.09.01.14_00000122", + "Basic Information.Communication Module Firmware Signature.Communication Module Firmware Signature": "E08AB330", + "Basic Information.P1 port DSMR version.P1 port DSMR version": "P", + "Basic Information.M-Bus Driver Active Firmware Identifier.M-Bus Driver Active Firmware Identifier": "SW00.68", + "Basic Information.M-Bus Driver Active Firmware Signature.M-Bus Driver Active Firmware Signature": "447B0E81", + "Basic Information.Hardware Version.Hardware Version": "V1.2", + "Display.Scroll display mode.Buffer": { + "0": [ + 40154, + 9, + 14, + 0, + 0 + ] + }, + "Display.Scroll display mode.Capture objects": { + "0": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:16.7.0.255", + 2, + 0 + ] + }, + "Display.Scroll display mode.Capture period": 1, + "Display.Scroll display mode.Sort method": 1, + "Display.Scroll display mode.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Display.Scroll display mode.Entries in use": 1, + "Display.Scroll display mode.Profile entries": 1, + "Display.Button display mode.Buffer": { + "0": [ + "P", + 40154, + 9, + 14, + 0, + 0, + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + [ + [ + "2025-11-10 01 15:38:35 00,FFC4,00", + 71 + ] + ], + 0 + ] + }, + "Display.Button display mode.Capture objects": { + "0": [ + 1, + "1-3:0.2.8.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:16.7.0.255", + 2, + 0 + ], + "6": [ + 72, + "0-1:24.1.0.255", + 9, + 0 + ], + "7": [ + 72, + "0-1:24.1.0.255", + 6, + 0 + ], + "8": [ + 4, + "0-1:24.2.1.255", + 2, + 0 + ], + "9": [ + 4, + "0-1:24.2.1.255", + 5, + 0 + ], + "10": [ + 72, + "0-2:24.1.0.255", + 9, + 0 + ], + "11": [ + 72, + "0-2:24.1.0.255", + 6, + 0 + ], + "12": [ + 4, + "0-2:24.2.1.255", + 2, + 0 + ], + "13": [ + 4, + "0-2:24.2.1.255", + 5, + 0 + ], + "14": [ + 72, + "0-3:24.1.0.255", + 9, + 0 + ], + "15": [ + 72, + "0-3:24.1.0.255", + 6, + 0 + ], + "16": [ + 4, + "0-3:24.2.1.255", + 2, + 0 + ], + "17": [ + 4, + "0-3:24.2.1.255", + 5, + 0 + ], + "18": [ + 72, + "0-4:24.1.0.255", + 9, + 0 + ], + "19": [ + 72, + "0-4:24.1.0.255", + 6, + 0 + ], + "20": [ + 4, + "0-4:24.2.1.255", + 2, + 0 + ], + "21": [ + 4, + "0-4:24.2.1.255", + 5, + 0 + ], + "22": [ + 7, + "0-0:99.98.4.255", + 2, + 0 + ], + "23": [ + 151, + "0-1:25.11.0.255", + 3, + 2 + ] + }, + "Display.Button display mode.Capture period": 1, + "Display.Button display mode.Sort method": 1, + "Display.Button display mode.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Display.Button display mode.Entries in use": 1, + "Display.Button display mode.Profile entries": 1, + "P1 output.Consumer Message Text.Consumer Message Text": "", + "P1 output.P1 Connected.P1 Connected": 0, + "P1 output.P1 output.Buffer": { + "0": [ + "P", + "2025-11-10 01 15:39:12 00,FFC4,00", + "E009700000000000000000000000000000000000000000000000", + 40154, + 9, + 14, + 0, + "0002", + 0, + 0, + 2, + 13, + [ + [ + "2025-10-21 02 08:59:49 00,FF88,80", + 52439 + ], + [ + "2025-10-21 02 09:48:44 00,FF88,80", + 2563 + ], + [ + "2025-10-21 02 13:32:55 00,FF88,80", + 3471 + ], + [ + "2026-05-01 05 13:44:03 00,FF88,80", + 47553 + ], + [ + "2026-06-01 01 07:29:53 00,FF88,80", + 26662 + ], + [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 47891 + ], + [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 600348 + ], + [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 3549 + ], + [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 9793 + ], + [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 58764 + ] + ], + 0, + 0, + 0, + 0, + 0, + 0, + "", + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + "", + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + "", + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + "", + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0, + 0, + "", + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + 0 + ] + }, + "P1 output.P1 output.Capture objects": { + "0": [ + 1, + "1-3:0.2.8.255", + 2, + 0 + ], + "1": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.1.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ], + "7": [ + 1, + "0-0:96.14.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:1.7.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:2.7.0.255", + 2, + 0 + ], + "10": [ + 1, + "0-0:96.7.21.255", + 2, + 0 + ], + "11": [ + 1, + "0-0:96.7.9.255", + 2, + 0 + ], + "12": [ + 7, + "1-0:99.97.0.255", + 2, + 0 + ], + "13": [ + 1, + "1-0:32.32.0.255", + 2, + 0 + ], + "14": [ + 1, + "1-0:52.32.0.255", + 2, + 0 + ], + "15": [ + 1, + "1-0:72.32.0.255", + 2, + 0 + ], + "16": [ + 1, + "1-0:32.36.0.255", + 2, + 0 + ], + "17": [ + 1, + "1-0:52.36.0.255", + 2, + 0 + ], + "18": [ + 1, + "1-0:72.36.0.255", + 2, + 0 + ], + "19": [ + 1, + "0-0:96.13.0.255", + 2, + 0 + ], + "20": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "21": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "22": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "23": [ + 3, + "1-0:31.7.0.255", + 2, + 0 + ], + "24": [ + 3, + "1-0:51.7.0.255", + 2, + 0 + ], + "25": [ + 3, + "1-0:71.7.0.255", + 2, + 0 + ], + "26": [ + 3, + "1-0:21.7.0.255", + 2, + 0 + ], + "27": [ + 3, + "1-0:41.7.0.255", + 2, + 0 + ], + "28": [ + 3, + "1-0:61.7.0.255", + 2, + 0 + ], + "29": [ + 3, + "1-0:22.7.0.255", + 2, + 0 + ], + "30": [ + 3, + "1-0:42.7.0.255", + 2, + 0 + ], + "31": [ + 3, + "1-0:62.7.0.255", + 2, + 0 + ], + "32": [ + 72, + "0-1:24.1.0.255", + 9, + 0 + ], + "33": [ + 1, + "0-1:96.1.0.255", + 2, + 0 + ], + "34": [ + 4, + "0-1:24.2.1.255", + 5, + 0 + ], + "35": [ + 4, + "0-1:24.2.1.255", + 2, + 0 + ], + "36": [ + 72, + "0-2:24.1.0.255", + 9, + 0 + ], + "37": [ + 1, + "0-2:96.1.0.255", + 2, + 0 + ], + "38": [ + 4, + "0-2:24.2.1.255", + 5, + 0 + ], + "39": [ + 4, + "0-2:24.2.1.255", + 2, + 0 + ], + "40": [ + 72, + "0-3:24.1.0.255", + 9, + 0 + ], + "41": [ + 1, + "0-3:96.1.0.255", + 2, + 0 + ], + "42": [ + 4, + "0-3:24.2.1.255", + 5, + 0 + ], + "43": [ + 4, + "0-3:24.2.1.255", + 2, + 0 + ], + "44": [ + 72, + "0-4:24.1.0.255", + 9, + 0 + ], + "45": [ + 1, + "0-4:96.1.0.255", + 2, + 0 + ], + "46": [ + 4, + "0-4:24.2.1.255", + 5, + 0 + ], + "47": [ + 4, + "0-4:24.2.1.255", + 2, + 0 + ] + }, + "P1 output.P1 output.Capture period": 1, + "P1 output.P1 output.Sort method": 1, + "P1 output.P1 output.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "P1 output.P1 output.Entries in use": 1, + "P1 output.P1 output.Profile entries": 1, + "Errors and alarms.Error 1.Error 1": 1585267068834414596, + "Errors and alarms.Filter 1.Filter 1": 0, + "Errors and alarms.Alarm 1.Alarm 1": 0, + "Errors and alarms.Lastgasp.Lastgasp": "ObjectUndefined", + "Instantaneous Data.Instantaneous current (Sum of all phases).Value": 0, + "Instantaneous Data.Instantaneous Current L1.Value": 0, + "Instantaneous Data.Instantaneous Current L2.Value": 0, + "Instantaneous Data.Instantaneous Current L3.Value": 0, + "Instantaneous Data.Instantaneous Voltage L1.Value": 215, + "Instantaneous Data.Instantaneous Voltage L2.Value": 0, + "Instantaneous Data.Instantaneous Voltage L3.Value": 0, + "Instantaneous Data.Instantaneous active power (+P) Total.Value": 0, + "Instantaneous Data.Instantaneous active power (-P) Total.Value": 0, + "Instantaneous Data.Instantaneous active power (abs(QI+QIV)-abs(QII+QIII)).Value": 0, + "Instantaneous Data.Instantaneous active power (+P{QI}).Value": 0, + "Instantaneous Data.Instantaneous active power (-P{QII}).Value": 0, + "Instantaneous Data.Instantaneous active power (-P{QIII}).Value": 0, + "Instantaneous Data.Instantaneous active power (+P{QIV}).Value": 0, + "Instantaneous Data.Instantaneous active power (+P) L1.Value": 0, + "Instantaneous Data.Instantaneous active power (-P) L1.Value": 0, + "Instantaneous Data.Instantaneous active power L1 (+P{QI}).Value": 0, + "Instantaneous Data.Instantaneous active power L1 (-P{QII}).Value": 0, + "Instantaneous Data.Instantaneous active power L1 (-P{QIII}).Value": 0, + "Instantaneous Data.Instantaneous active power L1 (+P{QIV}).Value": 0, + "Instantaneous Data.Instantaneous active power (+P) L2.Value": 0, + "Instantaneous Data.Instantaneous active power (-P) L2.Value": 0, + "Instantaneous Data.Instantaneous active power L2 (+P{QI}).Value": 0, + "Instantaneous Data.Instantaneous active power L2 (-P{QII}).Value": 0, + "Instantaneous Data.Instantaneous active power L2 (-P{QIII}).Value": 0, + "Instantaneous Data.Instantaneous active power L2 (+P{QIV}).Value": 0, + "Instantaneous Data.Instantaneous active power (+P) L3.Value": 0, + "Instantaneous Data.Instantaneous active power (-P) L3.Value": 0, + "Instantaneous Data.Instantaneous active power L3 (+P{QI}).Value": 0, + "Instantaneous Data.Instantaneous active power L3 (-P{QII}).Value": 0, + "Instantaneous Data.Instantaneous active power L3 (-P{QIII}).Value": 0, + "Instantaneous Data.Instantaneous active power L3 (+P{QIV}).Value": 0, + "Instantaneous Data.Instantaneous reactive power (+Q).Value": 0, + "Instantaneous Data.Instantaneous reactive power (-Q).Value": 0, + "Instantaneous Data.Instantaneous reactive power (+Q{QI}).Value": 0, + "Instantaneous Data.Instantaneous reactive power (+Q{QII}).Value": 0, + "Instantaneous Data.Instantaneous reactive power (-Q{QIII}).Value": 0, + "Instantaneous Data.Instantaneous reactive power (-Q{QIV}).Value": 0, + "Instantaneous Data.Instantanous reactive power L1 (+Q).Value": 0, + "Instantaneous Data.Instantanous reactive power L1 (-Q).Value": 0, + "Instantaneous Data.Instantaneous reactive power L1 (+Q{QI}).Value": 0, + "Instantaneous Data.Instantaneous reactive power L1 (+Q{QII}).Value": 0, + "Instantaneous Data.Instantaneous reactive power L1 (-Q{QIII}).Value": 0, + "Instantaneous Data.Instantaneous reactive power L1 (-Q{QIV}).Value": 0, + "Instantaneous Data.Instantanous reactive power L2 (+Q).Value": 0, + "Instantaneous Data.Instantanous reactive power L2 (-Q).Value": 0, + "Instantaneous Data.Instantaneous reactive power L2 (+Q{QI}).Value": 0, + "Instantaneous Data.Instantaneous reactive power L2 (+Q{QII}).Value": 0, + "Instantaneous Data.Instantaneous reactive power L2 (-Q{QIII}).Value": 0, + "Instantaneous Data.Instantaneous reactive power L2 (-Q{QIV}).Value": 0, + "Instantaneous Data.Instantanous reactive power L3 (+Q).Value": 0, + "Instantaneous Data.Instantanous reactive power L3 (-Q).Value": 0, + "Instantaneous Data.Instantaneous reactive power L3 (+Q{QI}).Value": 0, + "Instantaneous Data.Instantaneous reactive power L3 (+Q{QII}).Value": 0, + "Instantaneous Data.Instantaneous reactive power L3 (-Q{QIII}).Value": 0, + "Instantaneous Data.Instantaneous reactive power L3 (-Q{QIV}).Value": 0, + "Instantaneous Data.Instantaneous apparent power (+S).Value": 0, + "Instantaneous Data.Instantaneous apparent power (-S).Value": 0, + "Instantaneous Data.Temperature.Value": 26, + "Instantaneous Data.Safety Factor event 22.Value": 110, + "Energy.Cumulative A Positive.Value": 40163, + "Energy.Cumulative A Positive rate1.Value": 40154, + "Energy.Cumulative A Positive rate2.Value": 9, + "Energy.Cumulative A Negative.Value": 14, + "Energy.Cumulative A Negative rate1.Value": 14, + "Energy.Cumulative A Negative rate2.Value": 0, + "Average Measurement Data.Average voltage L1.Value": 216, + "Average Measurement Data.Average current L1.Value": 0, + "Average Measurement Data.Average active power (+P) L1.Value": 0, + "Average Measurement Data.Average active power (-P) L1.Value": 0, + "Average Measurement Data.Average reactive power (+Q) L1.Value": 0, + "Average Measurement Data.Average reactive power (-Q) L1.Value": 0, + "Average Measurement Data.Average reactive power L1 {+Q{QI}).Value": 0, + "Average Measurement Data.Average reactive power L1 {+Q{QII}).Value": 0, + "Average Measurement Data.Average reactive power L1 {-Q{QIII}).Value": 0, + "Average Measurement Data.Average reactive power L1 {-Q{QIV}).Value": 0, + "Average Measurement Data.Average active power L1 (+P{QI}).Value": 0, + "Average Measurement Data.Average active power L1 (-P{QII}).Value": 0, + "Average Measurement Data.Average active power L1 (-P{QIII}).Value": 0, + "Average Measurement Data.Average active power L1 (+P{QIV}).Value": 0, + "Average Measurement Data.Average voltage L2.Value": 0, + "Average Measurement Data.Average current L2.Value": 0, + "Average Measurement Data.Average active power (+P) L2.Value": 0, + "Average Measurement Data.Average active power (-P) L2.Value": 0, + "Average Measurement Data.Average reactive power (+Q) L2.Value": 0, + "Average Measurement Data.Average reactive power (-Q) L2.Value": 0, + "Average Measurement Data.Average reactive power L2 {+Q{QI}).Value": 0, + "Average Measurement Data.Average reactive power L2 {+Q{QII}).Value": 0, + "Average Measurement Data.Average reactive power L2 {-Q{QIII}).Value": 0, + "Average Measurement Data.Average reactive power L2 {-Q{QIV}).Value": 0, + "Average Measurement Data.Average active power L2 (+P{QI}).Value": 0, + "Average Measurement Data.Average active power L2 (-P{QII}).Value": 0, + "Average Measurement Data.Average active power L2 (-P{QIII}).Value": 0, + "Average Measurement Data.Average active power L2 (+P{QIV}).Value": 0, + "Average Measurement Data.Average voltage L3.Value": 0, + "Average Measurement Data.Average current L3.Value": 0, + "Average Measurement Data.Average active power (+P) L3.Value": 0, + "Average Measurement Data.Average active power (-P) L3.Value": 0, + "Average Measurement Data.Average reactive power (+Q) L3.Value": 0, + "Average Measurement Data.Average reactive power (-Q) L3.Value": 0, + "Average Measurement Data.Average reactive power L3 {+Q{QI}).Value": 0, + "Average Measurement Data.Average reactive power L3 {+Q{QII}).Value": 0, + "Average Measurement Data.Average reactive power L3 {-Q{QIII}).Value": 0, + "Average Measurement Data.Average reactive power L3 {-Q{QIV}).Value": 0, + "Average Measurement Data.Average active power L3 (+P{QI}).Value": 0, + "Average Measurement Data.Average active power L3 (-P{QII}).Value": 0, + "Average Measurement Data.Average active power L3 (-P{QIII}).Value": 0, + "Average Measurement Data.Average active power L3 (+P{QIV}).Value": 0, + "Tariff.Current Rate.Current Rate": "0002", + "Tariff.Tariff Table.Calendar name": "3032", + "Tariff.Tariff Table.Season profile active": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "Tariff.Tariff Table.Week profile table active": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "Tariff.Tariff Table.Day profile table active": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "Tariff.Tariff Table.Season profile passive": { + "0": [ + "00", + "FFFF-01-01 FF 00:00:00 00,FFC4,00", + "01" + ] + }, + "Tariff.Tariff Table.Week profile table passive": { + "0": [ + "00", + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "01", + 1, + 1, + 1, + 1, + 1, + 0, + 0 + ], + "2": [ + "02", + 2, + 2, + 2, + 2, + 2, + 0, + 0 + ] + }, + "Tariff.Tariff Table.Day profile table passive": { + "0": [ + 0, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "1": [ + 1, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "21:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ], + "2": [ + 2, + [ + [ + "00:00:00:00", + "0-0:10.0.100.255", + 1 + ], + [ + "07:00:00:00", + "0-0:10.0.100.255", + 2 + ], + [ + "23:00:00:00", + "0-0:10.0.100.255", + 1 + ] + ] + ] + }, + "Tariff.Tariff Table.Activate passive calendar time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "Tariff.Special Days.Special days table": { + "0": [ + 0, + "FFFF-01-01-FF", + 0 + ], + "1": [ + 1, + "FFFF-04-27-FF", + 0 + ], + "2": [ + 2, + "FFFF-12-25-FF", + 0 + ], + "3": [ + 3, + "FFFF-12-26-FF", + 0 + ], + "4": [ + 4, + "2024-04-01-FF", + 0 + ], + "5": [ + 5, + "2024-05-09-FF", + 0 + ], + "6": [ + 6, + "2024-05-20-FF", + 0 + ], + "7": [ + 7, + "2025-04-21-FF", + 0 + ], + "8": [ + 8, + "2025-05-29-FF", + 0 + ], + "9": [ + 9, + "2025-06-09-FF", + 0 + ], + "10": [ + 10, + "2026-04-06-FF", + 0 + ], + "11": [ + 11, + "2026-05-14-FF", + 0 + ], + "12": [ + 12, + "2026-05-25-FF", + 0 + ], + "13": [ + 13, + "2027-03-29-FF", + 0 + ], + "14": [ + 14, + "2027-05-06-FF", + 0 + ], + "15": [ + 15, + "2027-05-17-FF", + 0 + ], + "16": [ + 16, + "2028-04-17-FF", + 0 + ], + "17": [ + 17, + "2028-05-25-FF", + 0 + ], + "18": [ + 18, + "2028-06-05-FF", + 0 + ], + "19": [ + 19, + "2029-04-02-FF", + 0 + ], + "20": [ + 20, + "2029-05-10-FF", + 0 + ], + "21": [ + 21, + "2029-05-21-FF", + 0 + ], + "22": [ + 22, + "2030-04-22-FF", + 0 + ], + "23": [ + 23, + "2030-05-30-FF", + 0 + ], + "24": [ + 24, + "2030-06-10-FF", + 0 + ], + "25": [ + 25, + "2031-04-14-FF", + 0 + ], + "26": [ + 26, + "2031-05-22-FF", + 0 + ], + "27": [ + 27, + "2031-06-02-FF", + 0 + ], + "28": [ + 28, + "2032-03-29-FF", + 0 + ], + "29": [ + 29, + "2032-05-06-FF", + 0 + ] + }, + "Tariff.Tariffication.Scripts": { + "0": [ + 1, + [ + [ + 1, + 6, + "0-0:14.0.0.255", + 4, + "0001" + ] + ] + ], + "1": [ + 2, + [ + [ + 1, + 6, + "0-0:14.0.0.255", + 4, + "0002" + ] + ] + ] + }, + "Tariff.Register Activation.Register assignment": { + "0": [ + 3, + "1-0:1.8.1.255" + ], + "1": [ + 3, + "1-0:1.8.2.255" + ], + "2": [ + 3, + "1-0:2.8.1.255" + ], + "3": [ + 3, + "1-0:2.8.2.255" + ] + }, + "Tariff.Register Activation.Mask list": { + "0": [ + "0001", + [ + 1, + 3 + ] + ], + "1": [ + "0002", + [ + 2, + 4 + ] + ] + }, + "Tariff.Register Activation.Active mask": "0002", + "Month Billing.AMR Profile Status Code E meter - Monthly.AMR Profile Status Code E meter - Monthly": 165, + "Month Billing.E-meter Monthly Billing.Buffer": { + "0": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 167, + 10273, + 0, + 0, + 0 + ], + "1": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 164, + 20907, + 0, + 0, + 0 + ], + "2": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 45, + 23095, + 0, + 0, + 0 + ], + "3": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 172, + 23145, + 0, + 0, + 0 + ] + }, + "Month Billing.E-meter Monthly Billing.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.6.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "Month Billing.E-meter Monthly Billing.Capture period": 0, + "Month Billing.E-meter Monthly Billing.Sort method": 1, + "Month Billing.E-meter Monthly Billing.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Month Billing.E-meter Monthly Billing.Entries in use": 4, + "Month Billing.E-meter Monthly Billing.Profile entries": 13, + "Month Billing.AMR Profile Status Code M-BUS - Monthly.AMR Profile Status Code M-BUS - Monthly": 6, + "Month Billing.Channel 1.Buffer": {}, + "Month Billing.Channel 1.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "Month Billing.Channel 1.Capture period": 0, + "Month Billing.Channel 1.Sort method": 1, + "Month Billing.Channel 1.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Month Billing.Channel 1.Entries in use": 0, + "Month Billing.Channel 1.Profile entries": 13, + "Month Billing.Channel 2.Buffer": {}, + "Month Billing.Channel 2.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "Month Billing.Channel 2.Capture period": 0, + "Month Billing.Channel 2.Sort method": 1, + "Month Billing.Channel 2.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Month Billing.Channel 2.Entries in use": 0, + "Month Billing.Channel 2.Profile entries": 13, + "Month Billing.Channel 3.Buffer": {}, + "Month Billing.Channel 3.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "Month Billing.Channel 3.Capture period": 0, + "Month Billing.Channel 3.Sort method": 1, + "Month Billing.Channel 3.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Month Billing.Channel 3.Entries in use": 0, + "Month Billing.Channel 3.Profile entries": 13, + "Month Billing.Channel 4.Buffer": {}, + "Month Billing.Channel 4.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.7.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "Month Billing.Channel 4.Capture period": 0, + "Month Billing.Channel 4.Sort method": 1, + "Month Billing.Channel 4.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Month Billing.Channel 4.Entries in use": 0, + "Month Billing.Channel 4.Profile entries": 13, + "Daily Billing.AMR Profile Status Code E meter - Daily.AMR Profile Status Code E meter - Daily": 165, + "Daily Billing.E-meter Daily Billing.Buffer": { + "0": [ + "2025-10-25 06 00:00:00 00,FF88,80", + 175, + 9263, + 0, + 0, + 0 + ], + "1": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 36, + 10273, + 0, + 0, + 0 + ], + "2": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 164, + 20907, + 0, + 0, + 0 + ], + "3": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 45, + 23095, + 0, + 0, + 0 + ], + "4": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 172, + 23145, + 0, + 0, + 0 + ] + }, + "Daily Billing.E-meter Daily Billing.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.4.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.1.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:1.8.2.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:2.8.1.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:2.8.2.255", + 2, + 0 + ] + }, + "Daily Billing.E-meter Daily Billing.Capture period": 86400, + "Daily Billing.E-meter Daily Billing.Sort method": 1, + "Daily Billing.E-meter Daily Billing.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Daily Billing.E-meter Daily Billing.Entries in use": 5, + "Daily Billing.E-meter Daily Billing.Profile entries": 40, + "Daily Billing.AMR Profile Status Code M-BUS - Daily.AMR Profile Status Code M-BUS - Daily": 6, + "Daily Billing.Channel 1.Buffer": {}, + "Daily Billing.Channel 1.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "Daily Billing.Channel 1.Capture period": 86400, + "Daily Billing.Channel 1.Sort method": 1, + "Daily Billing.Channel 1.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Daily Billing.Channel 1.Entries in use": 0, + "Daily Billing.Channel 1.Profile entries": 40, + "Daily Billing.Channel 2.Buffer": {}, + "Daily Billing.Channel 2.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "Daily Billing.Channel 2.Capture period": 86400, + "Daily Billing.Channel 2.Sort method": 1, + "Daily Billing.Channel 2.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Daily Billing.Channel 2.Entries in use": 0, + "Daily Billing.Channel 2.Profile entries": 40, + "Daily Billing.Channel 3.Buffer": {}, + "Daily Billing.Channel 3.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "Daily Billing.Channel 3.Capture period": 86400, + "Daily Billing.Channel 3.Sort method": 1, + "Daily Billing.Channel 3.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Daily Billing.Channel 3.Entries in use": 0, + "Daily Billing.Channel 3.Profile entries": 40, + "Daily Billing.Channel 4.Buffer": {}, + "Daily Billing.Channel 4.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.5.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "Daily Billing.Channel 4.Capture period": 86400, + "Daily Billing.Channel 4.Sort method": 1, + "Daily Billing.Channel 4.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Daily Billing.Channel 4.Entries in use": 0, + "Daily Billing.Channel 4.Profile entries": 40, + "Load Profile.AMR Profile Status Code E meter - 15min.AMR Profile Status Code E meter - 15min": 128, + "Load Profile.Energy Profile.Buffer": { + "0": [ + "2025-09-22 01 11:15:00 00,FF88,80", + 13, + 0, + 0 + ], + "1": [ + "2025-09-22 01 11:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "2": [ + "2025-09-22 01 11:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "3": [ + "2025-09-22 01 12:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "4": [ + "2025-09-22 01 12:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "5": [ + "2025-09-22 01 12:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "6": [ + "2025-09-22 01 15:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "7": [ + "2025-09-22 01 15:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "8": [ + "2025-09-22 01 15:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "9": [ + "2025-09-22 01 16:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "10": [ + "2025-09-22 01 16:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "11": [ + "2025-09-22 01 16:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "12": [ + "2025-09-22 01 16:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "13": [ + "2025-09-22 01 17:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "14": [ + "2025-09-22 01 17:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "15": [ + "2025-09-22 01 17:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "16": [ + "2025-09-22 01 17:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "17": [ + "2025-09-22 01 18:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "18": [ + "2025-09-22 01 18:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "19": [ + "2025-09-22 01 18:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "20": [ + "2025-09-22 01 21:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "21": [ + "2025-09-22 01 22:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "22": [ + "2025-09-22 01 22:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "23": [ + "2025-09-22 01 23:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "24": [ + "2025-09-22 01 23:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "25": [ + "2025-09-22 01 23:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "26": [ + "2025-09-23 02 00:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "27": [ + "2025-09-23 02 00:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "28": [ + "2025-09-23 02 01:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "29": [ + "2025-09-23 02 02:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "30": [ + "2025-09-23 02 02:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "31": [ + "2025-09-23 02 02:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "32": [ + "2025-09-23 02 03:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "33": [ + "2025-09-23 02 03:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "34": [ + "2025-09-23 02 04:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "35": [ + "2025-09-23 02 04:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "36": [ + "2025-09-23 02 04:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "37": [ + "2025-09-23 02 04:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "38": [ + "2025-09-23 02 05:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "39": [ + "2025-09-23 02 05:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "40": [ + "2025-09-23 02 06:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "41": [ + "2025-09-23 02 06:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "42": [ + "2025-09-23 02 07:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "43": [ + "2025-09-23 02 07:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "44": [ + "2025-09-23 02 08:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "45": [ + "2025-09-23 02 08:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "46": [ + "2025-09-23 02 08:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "47": [ + "2025-09-23 02 09:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "48": [ + "2025-09-23 02 09:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "49": [ + "2025-09-23 02 09:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "50": [ + "2025-09-23 02 10:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "51": [ + "2025-09-23 02 10:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "52": [ + "2025-09-23 02 11:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "53": [ + "2025-09-24 03 09:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "54": [ + "2025-09-24 03 09:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "55": [ + "2025-09-24 03 09:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "56": [ + "2025-09-24 03 10:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "57": [ + "2025-09-24 03 10:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "58": [ + "2025-09-24 03 10:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "59": [ + "2025-09-24 03 10:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "60": [ + "2025-09-24 03 11:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "61": [ + "2025-09-24 03 11:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "62": [ + "2025-09-24 03 11:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "63": [ + "2025-09-24 03 12:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "64": [ + "2025-09-24 03 12:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "65": [ + "2025-09-24 03 12:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "66": [ + "2025-09-24 03 13:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "67": [ + "2025-09-24 03 14:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "68": [ + "2025-09-24 03 15:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "69": [ + "2025-09-24 03 15:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "70": [ + "2025-09-24 03 16:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "71": [ + "2025-09-24 03 16:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "72": [ + "2025-09-24 03 16:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "73": [ + "2025-09-24 03 16:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "74": [ + "2025-09-24 03 17:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "75": [ + "2025-09-24 03 17:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "76": [ + "2025-09-24 03 17:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "77": [ + "2025-09-24 03 17:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "78": [ + "2025-09-24 03 18:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "79": [ + "2025-09-24 03 19:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "80": [ + "2025-09-24 03 19:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "81": [ + "2025-09-24 03 19:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "82": [ + "2025-09-24 03 19:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "83": [ + "2025-09-24 03 20:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "84": [ + "2025-09-24 03 20:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "85": [ + "2025-09-24 03 20:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "86": [ + "2025-09-25 04 08:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "87": [ + "2025-09-25 04 09:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "88": [ + "2025-09-25 04 09:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "89": [ + "2025-09-25 04 09:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "90": [ + "2025-09-25 04 09:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "91": [ + "2025-09-25 04 10:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "92": [ + "2025-09-25 04 10:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "93": [ + "2025-09-25 04 11:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "94": [ + "2025-09-25 04 11:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "95": [ + "2025-09-25 04 11:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "96": [ + "2025-09-25 04 12:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "97": [ + "2025-09-25 04 12:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "98": [ + "2025-09-25 04 12:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "99": [ + "2025-09-25 04 12:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "100": [ + "2025-09-25 04 13:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "101": [ + "2025-09-25 04 13:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "102": [ + "2025-09-25 04 13:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "103": [ + "2025-09-25 04 13:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "104": [ + "2025-09-25 04 14:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "105": [ + "2025-09-25 04 14:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "106": [ + "2025-09-25 04 14:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "107": [ + "2025-09-25 04 14:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "108": [ + "2025-09-25 04 15:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "109": [ + "2025-09-25 04 15:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "110": [ + "2025-09-25 04 23:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "111": [ + "2025-09-25 04 23:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "112": [ + "2025-09-26 05 02:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "113": [ + "2025-09-26 05 02:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "114": [ + "2025-09-26 05 02:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "115": [ + "2025-09-26 05 05:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "116": [ + "2025-09-26 05 05:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "117": [ + "2025-09-26 05 05:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "118": [ + "2025-09-26 05 05:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "119": [ + "2025-09-26 05 08:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "120": [ + "2025-09-26 05 08:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "121": [ + "2025-09-27 06 10:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "122": [ + "2025-09-27 06 11:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "123": [ + "2025-09-27 06 11:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "124": [ + "2025-09-27 06 11:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "125": [ + "2025-09-27 06 11:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "126": [ + "2025-09-27 06 12:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "127": [ + "2025-09-27 06 12:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "128": [ + "2025-09-27 06 12:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "129": [ + "2025-09-27 06 12:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "130": [ + "2025-09-27 06 13:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "131": [ + "2025-09-27 06 13:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "132": [ + "2025-09-27 06 13:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "133": [ + "2025-09-27 06 13:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "134": [ + "2025-09-27 06 14:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "135": [ + "2025-09-27 06 14:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "136": [ + "2025-09-27 06 14:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "137": [ + "2025-09-27 06 15:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "138": [ + "2025-09-27 06 15:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "139": [ + "2025-09-27 06 18:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "140": [ + "2025-09-27 06 18:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "141": [ + "2025-09-27 06 18:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "142": [ + "2025-09-27 06 19:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "143": [ + "2025-09-27 06 19:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "144": [ + "2025-09-27 06 19:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "145": [ + "2025-09-27 06 20:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "146": [ + "2025-09-27 06 21:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "147": [ + "2025-09-27 06 21:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "148": [ + "2025-09-27 06 21:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "149": [ + "2025-09-27 06 22:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "150": [ + "2025-09-27 06 22:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "151": [ + "2025-09-27 06 22:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "152": [ + "2025-09-27 06 22:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "153": [ + "2025-09-27 06 23:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "154": [ + "2025-09-27 06 23:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "155": [ + "2025-09-28 07 00:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "156": [ + "2025-09-28 07 00:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "157": [ + "2025-09-28 07 01:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "158": [ + "2025-09-28 07 01:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "159": [ + "2025-09-28 07 01:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "160": [ + "2025-09-28 07 02:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "161": [ + "2025-09-28 07 02:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "162": [ + "2025-09-28 07 03:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "163": [ + "2025-09-28 07 03:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "164": [ + "2025-09-28 07 04:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "165": [ + "2025-09-28 07 04:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "166": [ + "2025-09-28 07 04:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "167": [ + "2025-09-28 07 05:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "168": [ + "2025-09-28 07 05:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "169": [ + "2025-09-28 07 06:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "170": [ + "2025-09-28 07 06:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "171": [ + "2025-09-28 07 07:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "172": [ + "2025-09-28 07 07:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "173": [ + "2025-09-28 07 07:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "174": [ + "2025-09-28 07 08:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "175": [ + "2025-09-28 07 09:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "176": [ + "2025-09-28 07 09:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "177": [ + "2025-09-28 07 10:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "178": [ + "2025-09-28 07 10:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "179": [ + "2025-09-28 07 11:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "180": [ + "2025-09-28 07 11:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "181": [ + "2025-09-28 07 11:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "182": [ + "2025-09-28 07 11:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "183": [ + "2025-09-28 07 12:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "184": [ + "2025-09-28 07 12:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "185": [ + "2025-09-28 07 12:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "186": [ + "2025-09-28 07 12:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "187": [ + "2025-09-28 07 13:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "188": [ + "2025-09-28 07 13:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "189": [ + "2025-09-28 07 13:30:00 00,FF88,80", + 136, + 0, + 0 + ], + "190": [ + "2025-09-28 07 15:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "191": [ + "2025-09-28 07 15:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "192": [ + "2025-09-28 07 15:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "193": [ + "2025-09-28 07 15:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "194": [ + "2025-09-28 07 16:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "195": [ + "2025-09-28 07 16:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "196": [ + "2025-09-28 07 16:30:00 00,FF88,80", + 8, + 0, + 0 + ], + "197": [ + "2025-09-28 07 16:45:00 00,FF88,80", + 8, + 0, + 0 + ], + "198": [ + "2025-09-28 07 17:00:00 00,FF88,80", + 8, + 0, + 0 + ], + "199": [ + "2025-09-28 07 17:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "200": [ + "2025-09-28 07 17:45:00 00,FF88,80", + 136, + 0, + 0 + ], + "201": [ + "2025-09-28 07 18:00:00 00,FF88,80", + 136, + 0, + 0 + ], + "202": [ + "2025-09-28 07 18:15:00 00,FF88,80", + 136, + 0, + 0 + ], + "203": [ + "2025-09-29 01 15:00:00 00,FF88,80", + 141, + 0, + 0 + ], + "204": [ + "2025-09-29 01 15:15:00 00,FF88,80", + 8, + 0, + 0 + ], + "205": [ + "2025-09-29 01 15:30:00 00,FF88,80", + 8, + 373, + 0 + ], + "206": [ + "2025-09-29 01 16:15:00 00,FF88,80", + 141, + 1504, + 0 + ], + "207": [ + "2025-09-30 02 17:00:00 00,FF88,81", + 142, + 1504, + 0 + ], + "208": [ + "2025-09-30 02 17:15:00 00,FF88,81", + 14, + 1504, + 0 + ], + "209": [ + "2025-09-30 02 17:30:00 00,FF88,81", + 14, + 1504, + 0 + ], + "210": [ + "2025-09-30 02 17:45:00 00,FF88,81", + 14, + 1504, + 0 + ], + "211": [ + "2025-09-30 02 18:00:00 00,FF88,81", + 14, + 1504, + 0 + ], + "212": [ + "2025-09-30 02 18:15:00 00,FF88,81", + 14, + 1504, + 0 + ], + "213": [ + "2025-09-30 02 18:30:00 00,FF88,81", + 14, + 1504, + 0 + ], + "214": [ + "2025-09-30 02 18:45:00 00,FF88,81", + 14, + 1504, + 0 + ], + "215": [ + "2025-10-20 01 11:45:00 00,FF88,80", + 46, + 1504, + 0 + ], + "216": [ + "2025-10-20 01 12:00:00 00,FF88,80", + 8, + 1504, + 0 + ], + "217": [ + "2025-10-20 01 12:15:00 00,FF88,80", + 8, + 1504, + 0 + ], + "218": [ + "2025-10-20 01 12:30:00 00,FF88,80", + 8, + 1504, + 0 + ], + "219": [ + "2025-10-20 01 15:45:00 00,FF88,80", + 136, + 1504, + 0 + ], + "220": [ + "2025-10-20 01 16:00:00 00,FF88,80", + 13, + 2180, + 0 + ], + "221": [ + "2025-10-20 01 16:15:00 00,FF88,80", + 8, + 3042, + 0 + ], + "222": [ + "2025-10-20 01 16:30:00 00,FF88,80", + 8, + 3905, + 0 + ], + "223": [ + "2025-10-20 01 16:45:00 00,FF88,80", + 8, + 4767, + 0 + ], + "224": [ + "2025-10-20 01 17:00:00 00,FF88,80", + 8, + 5630, + 0 + ], + "225": [ + "2025-10-20 01 17:30:00 00,FF88,80", + 44, + 6931, + 0 + ], + "226": [ + "2025-10-20 01 17:45:00 00,FF88,80", + 44, + 7465, + 0 + ], + "227": [ + "2025-10-20 01 18:00:00 00,FF88,80", + 44, + 8140, + 0 + ], + "228": [ + "2025-10-21 02 09:00:00 00,FF88,80", + 172, + 9263, + 0 + ], + "229": [ + "2025-10-21 02 09:15:00 00,FF88,80", + 136, + 9263, + 0 + ], + "230": [ + "2025-10-21 02 09:30:00 00,FF88,80", + 8, + 9263, + 0 + ], + "231": [ + "2025-10-21 02 09:45:00 00,FF88,80", + 8, + 9263, + 0 + ], + "232": [ + "2025-10-21 02 10:00:00 00,FF88,80", + 136, + 9263, + 0 + ], + "233": [ + "2025-10-21 02 10:15:00 00,FF88,80", + 8, + 9263, + 0 + ], + "234": [ + "2025-10-21 02 10:30:00 00,FF88,80", + 8, + 9263, + 0 + ], + "235": [ + "2025-10-21 02 10:45:00 00,FF88,80", + 8, + 9263, + 0 + ], + "236": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 8, + 9263, + 0 + ], + "237": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 44, + 9263, + 0 + ], + "238": [ + "2025-10-25 06 00:00:00 00,FF88,80", + 44, + 9263, + 0 + ], + "239": [ + "2025-10-25 06 00:15:00 00,FF88,80", + 8, + 9263, + 0 + ], + "240": [ + "2025-10-25 06 00:30:00 00,FF88,80", + 8, + 9708, + 0 + ], + "241": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 36, + 10273, + 0 + ], + "242": [ + "2025-10-21 02 12:00:00 00,FF88,80", + 44, + 10906, + 0 + ], + "243": [ + "2025-10-21 02 12:15:00 00,FF88,80", + 8, + 10910, + 0 + ], + "244": [ + "2025-10-21 02 12:30:00 00,FF88,80", + 8, + 10910, + 0 + ], + "245": [ + "2025-10-21 02 13:45:00 00,FF88,80", + 136, + 10910, + 0 + ], + "246": [ + "2025-10-21 02 14:00:00 00,FF88,80", + 8, + 10910, + 0 + ], + "247": [ + "2025-10-21 02 14:15:00 00,FF88,80", + 8, + 10910, + 0 + ], + "248": [ + "2025-10-21 02 14:30:00 00,FF88,80", + 8, + 11031, + 0 + ], + "249": [ + "2025-11-01 06 00:15:00 00,FFC4,00", + 36, + 12711, + 0 + ], + "250": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 13574, + 0 + ], + "251": [ + "2025-11-01 06 00:45:00 00,FFC4,00", + 0, + 14436, + 0 + ], + "252": [ + "2025-12-01 01 00:15:00 00,FFC4,00", + 36, + 15635, + 0 + ], + "253": [ + "2025-12-01 01 00:30:00 00,FFC4,00", + 0, + 16498, + 0 + ], + "254": [ + "2025-12-01 01 00:45:00 00,FFC4,00", + 0, + 17360, + 0 + ], + "255": [ + "2025-12-01 01 01:00:00 00,FFC4,00", + 0, + 18223, + 0 + ], + "256": [ + "2026-01-01 04 00:15:00 00,FFC4,00", + 36, + 19204, + 0 + ], + "257": [ + "2026-02-01 07 00:15:00 00,FFC4,00", + 36, + 20566, + 0 + ], + "258": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 36, + 20907, + 0 + ], + "259": [ + "2026-03-01 07 00:15:00 00,FFC4,00", + 0, + 21769, + 0 + ], + "260": [ + "2026-03-01 07 00:30:00 00,FFC4,00", + 0, + 22632, + 0 + ], + "261": [ + "2026-03-01 07 00:45:00 00,FFC4,00", + 0, + 23095, + 0 + ], + "262": [ + "2026-03-01 07 01:00:00 00,FFC4,00", + 0, + 23095, + 0 + ], + "263": [ + "2026-03-01 07 01:15:00 00,FFC4,00", + 0, + 23095, + 0 + ], + "264": [ + "2026-03-01 07 01:30:00 00,FFC4,00", + 5, + 23095, + 0 + ], + "265": [ + "2026-04-01 03 00:15:00 00,FF88,80", + 44, + 23095, + 0 + ], + "266": [ + "2026-04-01 03 00:30:00 00,FF88,80", + 8, + 23095, + 0 + ], + "267": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 44, + 23095, + 0 + ], + "268": [ + "2026-05-01 05 00:15:00 00,FF88,80", + 8, + 23095, + 0 + ], + "269": [ + "2026-05-01 05 00:30:00 00,FF88,80", + 8, + 23095, + 0 + ], + "270": [ + "2026-05-01 05 13:45:00 00,FF88,80", + 136, + 23095, + 0 + ], + "271": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 44, + 23145, + 0 + ], + "272": [ + "2026-06-01 01 07:30:00 00,FF88,80", + 141, + 23462, + 0 + ], + "273": [ + "2025-10-22 03 17:15:00 00,FF88,80", + 44, + 23462, + 0 + ], + "274": [ + "2025-10-22 03 17:30:00 00,FF88,80", + 8, + 23471, + 0 + ], + "275": [ + "2025-10-22 03 17:45:00 00,FF88,80", + 8, + 23471, + 0 + ], + "276": [ + "2025-11-01 06 00:15:00 00,FFC4,00", + 36, + 23471, + 0 + ], + "277": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "278": [ + "2025-11-01 06 00:45:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "279": [ + "2025-11-01 06 01:00:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "280": [ + "2025-11-01 06 01:15:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "281": [ + "2025-11-01 06 01:30:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "282": [ + "2025-11-01 06 15:00:00 00,FFC4,00", + 128, + 23471, + 0 + ], + "283": [ + "2025-11-01 06 15:15:00 00,FFC4,00", + 0, + 23471, + 0 + ], + "284": [ + "2025-11-01 06 15:30:00 00,FFC4,00", + 0, + 23562, + 0 + ], + "285": [ + "2025-11-01 06 15:45:00 00,FFC4,00", + 0, + 23646, + 0 + ], + "286": [ + "2025-11-01 06 16:00:00 00,FFC4,00", + 0, + 24744, + 0 + ], + "287": [ + "2025-11-01 06 16:15:00 00,FFC4,00", + 0, + 29722, + 0 + ], + "288": [ + "2025-11-01 06 16:30:00 00,FFC4,00", + 0, + 35653, + 6 + ], + "289": [ + "2025-11-08 06 15:30:00 00,FFC4,00", + 133, + 37829, + 14 + ], + "290": [ + "2025-11-08 06 15:45:00 00,FFC4,00", + 128, + 37829, + 14 + ], + "291": [ + "2025-11-08 06 16:00:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "292": [ + "2025-11-08 06 16:15:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "293": [ + "2025-11-08 06 16:45:00 00,FFC4,00", + 128, + 37829, + 14 + ], + "294": [ + "2025-11-08 06 17:00:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "295": [ + "2025-11-08 06 17:15:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "296": [ + "2025-11-08 06 17:30:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "297": [ + "2025-11-08 06 17:45:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "298": [ + "2025-11-08 06 18:00:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "299": [ + "2025-11-08 06 18:15:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "300": [ + "2025-11-08 06 18:30:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "301": [ + "2025-11-08 06 18:45:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "302": [ + "2025-11-08 06 19:00:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "303": [ + "2025-11-08 06 19:15:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "304": [ + "2025-11-08 06 19:30:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "305": [ + "2025-11-08 06 19:45:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "306": [ + "2025-11-08 06 20:00:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "307": [ + "2025-11-08 06 20:15:00 00,FFC4,00", + 128, + 37829, + 14 + ], + "308": [ + "2025-11-08 06 20:30:00 00,FFC4,00", + 0, + 37829, + 14 + ], + "309": [ + "2025-11-08 06 20:45:00 00,FFC4,00", + 0, + 37883, + 14 + ], + "310": [ + "2025-11-08 06 21:00:00 00,FFC4,00", + 0, + 37883, + 14 + ], + "311": [ + "2025-11-08 06 21:15:00 00,FFC4,00", + 0, + 37883, + 14 + ], + "312": [ + "2025-11-08 06 21:30:00 00,FFC4,00", + 0, + 37883, + 14 + ], + "313": [ + "2025-11-08 06 21:45:00 00,FFC4,00", + 0, + 38495, + 14 + ], + "314": [ + "2025-11-08 06 22:00:00 00,FFC4,00", + 0, + 39356, + 14 + ], + "315": [ + "2025-11-08 06 22:15:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "316": [ + "2025-11-09 07 14:45:00 00,FFC4,00", + 128, + 40163, + 14 + ], + "317": [ + "2025-11-09 07 15:00:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "318": [ + "2025-11-09 07 20:15:00 00,FFC4,00", + 128, + 40163, + 14 + ], + "319": [ + "2025-11-09 07 20:30:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "320": [ + "2025-11-09 07 21:00:00 00,FFC4,00", + 128, + 40163, + 14 + ], + "321": [ + "2025-11-09 07 21:15:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "322": [ + "2025-11-09 07 21:30:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "323": [ + "2025-11-09 07 21:45:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "324": [ + "2025-11-09 07 22:00:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "325": [ + "2025-11-09 07 22:15:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "326": [ + "2025-11-09 07 22:30:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "327": [ + "2025-11-09 07 22:45:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "328": [ + "2025-11-09 07 23:00:00 00,FFC4,00", + 0, + 40163, + 14 + ], + "329": [ + "2025-11-10 01 00:15:00 00,FFC4,00", + 128, + 40163, + 14 + ], + "330": [ + "2025-11-10 01 00:30:00 00,FFC4,00", + 0, + 40163, + 14 + ] + }, + "Load Profile.Energy Profile.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.2.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:1.8.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:2.8.0.255", + 2, + 0 + ] + }, + "Load Profile.Energy Profile.Capture period": 900, + "Load Profile.Energy Profile.Sort method": 1, + "Load Profile.Energy Profile.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Load Profile.Energy Profile.Entries in use": 331, + "Load Profile.Energy Profile.Profile entries": 960, + "Load Profile.LTE Monitoring-profile.Buffer": {}, + "Load Profile.LTE Monitoring-profile.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 151, + "0-1:25.11.0.255", + 2, + 0 + ], + "2": [ + 151, + "0-1:25.11.0.255", + 3, + 0 + ], + "3": [ + 47, + "0-1:25.6.0.255", + 6, + 0 + ], + "4": [ + 47, + "0-1:25.6.0.255", + 7, + 0 + ], + "5": [ + 1, + "0-1:94.31.7.255", + 2, + 0 + ] + }, + "Load Profile.LTE Monitoring-profile.Capture period": 14400, + "Load Profile.LTE Monitoring-profile.Sort method": 1, + "Load Profile.LTE Monitoring-profile.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Load Profile.LTE Monitoring-profile.Entries in use": 0, + "Load Profile.LTE Monitoring-profile.Profile entries": 960, + "Load Profile.AMR Profile Status Code M-BUS - Hourly.AMR Profile Status Code M-BUS - Hourly": 6, + "Load Profile.Channel 1.Buffer": {}, + "Load Profile.Channel 1.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-1:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-1:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-1:24.2.3.255", + 5, + 0 + ] + }, + "Load Profile.Channel 1.Capture period": 3600, + "Load Profile.Channel 1.Sort method": 1, + "Load Profile.Channel 1.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Load Profile.Channel 1.Entries in use": 0, + "Load Profile.Channel 1.Profile entries": 240, + "Load Profile.Channel 2.Buffer": {}, + "Load Profile.Channel 2.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-2:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-2:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-2:24.2.3.255", + 5, + 0 + ] + }, + "Load Profile.Channel 2.Capture period": 3600, + "Load Profile.Channel 2.Sort method": 1, + "Load Profile.Channel 2.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Load Profile.Channel 2.Entries in use": 0, + "Load Profile.Channel 2.Profile entries": 240, + "Load Profile.Channel 3.Buffer": {}, + "Load Profile.Channel 3.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-3:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-3:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-3:24.2.3.255", + 5, + 0 + ] + }, + "Load Profile.Channel 3.Capture period": 3600, + "Load Profile.Channel 3.Sort method": 1, + "Load Profile.Channel 3.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Load Profile.Channel 3.Entries in use": 0, + "Load Profile.Channel 3.Profile entries": 240, + "Load Profile.Channel 4.Buffer": {}, + "Load Profile.Channel 4.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.10.3.255", + 2, + 0 + ], + "2": [ + 4, + "0-4:24.2.3.255", + 2, + 0 + ], + "3": [ + 4, + "0-4:24.2.3.255", + 5, + 0 + ] + }, + "Load Profile.Channel 4.Capture period": 3600, + "Load Profile.Channel 4.Sort method": 1, + "Load Profile.Channel 4.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Load Profile.Channel 4.Entries in use": 0, + "Load Profile.Channel 4.Profile entries": 240, + "Definable Load Profile.Definable Load Profile-72.Buffer": { + "0": [ + "2025-10-20 01 17:20:00 00,FF88,80", + 230, + 230, + 230, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "1": [ + "2025-10-20 01 17:30:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "2": [ + "2025-10-20 01 17:40:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "3": [ + "2025-10-20 01 17:50:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "4": [ + "2025-10-20 01 18:00:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "5": [ + "2025-10-20 01 18:10:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "6": [ + "2025-10-20 01 18:20:00 00,FF88,80", + 230, + 230, + 230, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "7": [ + "2025-10-21 02 09:00:00 00,FF88,80", + 230, + 230, + 229, + 230, + 229, + 230, + 0, + 0, + 0 + ], + "8": [ + "2025-10-21 02 09:10:00 00,FF88,80", + 230, + 230, + 0, + 141, + 0, + 141, + 0, + 0, + 0 + ], + "9": [ + "2025-10-21 02 09:20:00 00,FF88,80", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "10": [ + "2025-10-21 02 09:30:00 00,FF88,80", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "11": [ + "2025-10-21 02 09:40:00 00,FF88,80", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "12": [ + "2025-10-21 02 09:50:00 00,FF88,80", + 230, + 230, + 229, + 29, + 230, + 29, + 0, + 0, + 0 + ], + "13": [ + "2025-10-21 02 10:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "14": [ + "2025-10-21 02 10:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "15": [ + "2025-10-21 02 10:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "16": [ + "2025-10-21 02 10:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "17": [ + "2025-10-21 02 10:40:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "18": [ + "2025-10-21 02 10:50:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "19": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "20": [ + "2025-10-21 02 10:50:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "21": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "22": [ + "2025-10-25 06 00:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "23": [ + "2025-10-25 06 00:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "24": [ + "2025-10-25 06 00:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "25": [ + "2025-10-25 06 00:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 5, + 4, + 5 + ], + "26": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "27": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 5, + 4, + 5 + ], + "28": [ + "2025-10-21 02 12:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "29": [ + "2025-10-21 02 12:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "30": [ + "2025-10-21 02 12:20:00 00,FF88,80", + 230, + 230, + 230, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "31": [ + "2025-10-21 02 12:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "32": [ + "2025-10-21 02 13:40:00 00,FF88,80", + 230, + 230, + 229, + 229, + 229, + 230, + 0, + 0, + 0 + ], + "33": [ + "2025-10-21 02 13:50:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "34": [ + "2025-10-21 02 14:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "35": [ + "2025-10-21 02 14:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "36": [ + "2025-10-21 02 14:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "37": [ + "2025-10-21 02 14:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 4 + ], + "38": [ + "2025-10-21 02 14:40:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 5, + 4, + 5 + ], + "39": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "40": [ + "2025-11-01 06 00:20:00 00,FFC4,00", + 230, + 230, + 230, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "41": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 230, + 230, + 230, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "42": [ + "2025-11-01 06 00:40:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "43": [ + "2025-12-01 01 00:10:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "44": [ + "2025-12-01 01 00:20:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "45": [ + "2025-12-01 01 00:30:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "46": [ + "2025-12-01 01 00:40:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "47": [ + "2025-12-01 01 00:50:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "48": [ + "2025-12-01 01 01:00:00 00,FFC4,00", + 230, + 230, + 230, + 229, + 230, + 230, + 5, + 4, + 5 + ], + "49": [ + "2026-01-01 04 00:10:00 00,FFC4,00", + 230, + 230, + 230, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "50": [ + "2026-01-01 04 00:20:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "51": [ + "2026-02-01 07 00:10:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "52": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 230, + 230, + 229, + 230, + 230, + 230, + 4, + 4, + 4 + ], + "53": [ + "2026-03-01 07 00:10:00 00,FFC4,00", + 230, + 230, + 229, + 230, + 230, + 230, + 5, + 4, + 5 + ], + "54": [ + "2026-03-01 07 00:20:00 00,FFC4,00", + 230, + 230, + 230, + 229, + 230, + 230, + 4, + 4, + 5 + ], + "55": [ + "2026-03-01 07 00:30:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 4, + 4, + 5 + ], + "56": [ + "2026-03-01 07 00:40:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 0, + 0, + 0 + ], + "57": [ + "2026-03-01 07 00:50:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 0, + 0, + 0 + ], + "58": [ + "2026-03-01 07 01:00:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 0, + 0, + 0 + ], + "59": [ + "2026-03-01 07 01:10:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 0, + 0, + 0 + ], + "60": [ + "2026-03-01 07 01:20:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "61": [ + "2026-03-01 07 01:30:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "62": [ + "2026-04-01 03 00:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "63": [ + "2026-04-01 03 00:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "64": [ + "2026-04-01 03 00:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "65": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "66": [ + "2026-05-01 05 00:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "67": [ + "2026-05-01 05 00:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "68": [ + "2026-05-01 05 00:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "69": [ + "2026-05-01 05 13:50:00 00,FF88,80", + 230, + 230, + 229, + 229, + 229, + 229, + 0, + 0, + 0 + ], + "70": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 230, + 230, + 229, + 229, + 229, + 229, + 5, + 4, + 5 + ], + "71": [ + "2026-06-01 01 07:30:00 00,FF88,80", + 230, + 226, + 229, + 173, + 229, + 174, + 0, + 0, + 0 + ], + "72": [ + "2025-10-22 03 17:10:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "73": [ + "2025-10-22 03 17:20:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "74": [ + "2025-10-22 03 17:30:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "75": [ + "2025-10-22 03 17:40:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "76": [ + "2025-10-22 03 17:50:00 00,FF88,80", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "77": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "78": [ + "2025-11-01 06 00:20:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "79": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "80": [ + "2025-11-01 06 00:40:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "81": [ + "2025-11-01 06 00:50:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "82": [ + "2025-11-01 06 01:00:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "83": [ + "2025-11-01 06 01:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "84": [ + "2025-11-01 06 01:20:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "85": [ + "2025-11-01 06 01:30:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "86": [ + "2025-11-01 06 15:00:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 229, + 230, + 0, + 0, + 0 + ], + "87": [ + "2025-11-01 06 15:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 229, + 229, + 0, + 0, + 0 + ], + "88": [ + "2025-11-01 06 15:20:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 229, + 0, + 0, + 0 + ], + "89": [ + "2025-11-01 06 15:30:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "90": [ + "2025-11-01 06 15:40:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "91": [ + "2025-11-01 06 15:50:00 00,FFC4,00", + 230, + 229, + 230, + 229, + 230, + 229, + 0, + 0, + 0 + ], + "92": [ + "2025-11-01 06 16:00:00 00,FFC4,00", + 230, + 230, + 229, + 210, + 230, + 207, + 0, + 0, + 0 + ], + "93": [ + "2025-11-01 06 16:10:00 00,FFC4,00", + 229, + 229, + 229, + 229, + 229, + 229, + 49, + 49, + 49 + ], + "94": [ + "2025-11-01 06 16:20:00 00,FFC4,00", + 229, + 229, + 229, + 229, + 229, + 230, + 49, + 49, + 49 + ], + "95": [ + "2025-11-01 06 16:30:00 00,FFC4,00", + 229, + 229, + 230, + 229, + 230, + 230, + 49, + 49, + 49 + ], + "96": [ + "2025-11-01 06 16:40:00 00,FFC4,00", + 230, + 230, + 230, + 230, + 230, + 230, + 0, + 0, + 0 + ], + "97": [ + "2025-11-08 06 15:30:00 00,FFC4,00", + 230, + 230, + 229, + 230, + 229, + 230, + 0, + 0, + 0 + ], + "98": [ + "2025-11-08 06 15:40:00 00,FFC4,00", + 230, + 230, + 0, + 42, + 0, + 42, + 0, + 0, + 0 + ], + "99": [ + "2025-11-08 06 15:50:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "100": [ + "2025-11-08 06 16:00:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "101": [ + "2025-11-08 06 16:10:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "102": [ + "2025-11-08 06 16:20:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "103": [ + "2025-11-08 06 16:40:00 00,FFC4,00", + 230, + 230, + 229, + 110, + 230, + 110, + 0, + 0, + 0 + ], + "104": [ + "2025-11-08 06 16:50:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "105": [ + "2025-11-08 06 17:00:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "106": [ + "2025-11-08 06 17:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "107": [ + "2025-11-08 06 17:20:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "108": [ + "2025-11-08 06 17:30:00 00,FFC4,00", + 230, + 230, + 0, + 204, + 0, + 205, + 0, + 0, + 0 + ], + "109": [ + "2025-11-08 06 17:40:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "110": [ + "2025-11-08 06 17:50:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "111": [ + "2025-11-08 06 18:00:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "112": [ + "2025-11-08 06 18:10:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "113": [ + "2025-11-08 06 18:20:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "114": [ + "2025-11-08 06 18:30:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "115": [ + "2025-11-08 06 18:40:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "116": [ + "2025-11-08 06 18:50:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "117": [ + "2025-11-08 06 19:00:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "118": [ + "2025-11-08 06 19:10:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "119": [ + "2025-11-08 06 19:20:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "120": [ + "2025-11-08 06 19:30:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "121": [ + "2025-11-08 06 19:40:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "122": [ + "2025-11-08 06 19:50:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "123": [ + "2025-11-08 06 20:00:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "124": [ + "2025-11-08 06 20:10:00 00,FFC4,00", + 230, + 230, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "125": [ + "2025-11-08 06 20:20:00 00,FFC4,00", + 230, + 230, + 229, + 177, + 230, + 177, + 0, + 0, + 0 + ], + "126": [ + "2025-11-08 06 20:30:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 230, + 0, + 0, + 0 + ], + "127": [ + "2025-11-08 06 20:40:00 00,FFC4,00", + 230, + 230, + 229, + 228, + 230, + 229, + 0, + 0, + 0 + ], + "128": [ + "2025-11-08 06 20:50:00 00,FFC4,00", + 234, + 232, + 234, + 232, + 234, + 232, + 0, + 0, + 0 + ], + "129": [ + "2025-11-08 06 21:00:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 0, + 0, + 0 + ], + "130": [ + "2025-11-08 06 21:10:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 0, + 0, + 0 + ], + "131": [ + "2025-11-08 06 21:20:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 0, + 0, + 0 + ], + "132": [ + "2025-11-08 06 21:30:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 0, + 0, + 0 + ], + "133": [ + "2025-11-08 06 21:40:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 4, + 4, + 4 + ], + "134": [ + "2025-11-08 06 21:50:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 4, + 4, + 4 + ], + "135": [ + "2025-11-08 06 22:00:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 4, + 4, + 4 + ], + "136": [ + "2025-11-08 06 22:10:00 00,FFC4,00", + 234, + 234, + 234, + 234, + 234, + 234, + 4, + 4, + 4 + ], + "137": [ + "2025-11-09 07 14:40:00 00,FFC4,00", + 230, + 231, + 229, + 231, + 229, + 231, + 0, + 0, + 0 + ], + "138": [ + "2025-11-09 07 14:50:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 229, + 229, + 0, + 0, + 0 + ], + "139": [ + "2025-11-09 07 15:00:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 229, + 0, + 0, + 0 + ], + "140": [ + "2025-11-09 07 15:10:00 00,FFC4,00", + 230, + 230, + 229, + 229, + 230, + 229, + 0, + 0, + 0 + ], + "141": [ + "2025-11-09 07 20:10:00 00,FFC4,00", + 215, + 220, + 0, + 74, + 0, + 74, + 0, + 0, + 0 + ], + "142": [ + "2025-11-09 07 20:20:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "143": [ + "2025-11-09 07 20:30:00 00,FFC4,00", + 215, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "144": [ + "2025-11-09 07 20:50:00 00,FFC4,00", + 215, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "145": [ + "2025-11-09 07 21:00:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "146": [ + "2025-11-09 07 21:10:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "147": [ + "2025-11-09 07 21:20:00 00,FFC4,00", + 215, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "148": [ + "2025-11-09 07 21:30:00 00,FFC4,00", + 216, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "149": [ + "2025-11-09 07 21:40:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "150": [ + "2025-11-09 07 21:50:00 00,FFC4,00", + 215, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "151": [ + "2025-11-09 07 22:00:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "152": [ + "2025-11-09 07 22:10:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "153": [ + "2025-11-09 07 22:20:00 00,FFC4,00", + 215, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "154": [ + "2025-11-09 07 22:30:00 00,FFC4,00", + 215, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "155": [ + "2025-11-09 07 22:40:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "156": [ + "2025-11-09 07 22:50:00 00,FFC4,00", + 215, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "157": [ + "2025-11-09 07 23:00:00 00,FFC4,00", + 215, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "158": [ + "2025-11-09 07 23:10:00 00,FFC4,00", + 216, + 215, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "159": [ + "2025-11-10 01 00:10:00 00,FFC4,00", + 216, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "160": [ + "2025-11-10 01 00:20:00 00,FFC4,00", + 217, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "161": [ + "2025-11-10 01 00:30:00 00,FFC4,00", + 217, + 217, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "162": [ + "2025-11-10 01 15:40:00 00,FFC4,00", + 215, + 216, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "Definable Load Profile.Definable Load Profile-72.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:31.7.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:51.7.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:71.7.0.255", + 2, + 0 + ] + }, + "Definable Load Profile.Definable Load Profile-72.Capture period": 600, + "Definable Load Profile.Definable Load Profile-72.Sort method": 1, + "Definable Load Profile.Definable Load Profile-72.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Definable Load Profile.Definable Load Profile-72.Entries in use": 163, + "Definable Load Profile.Definable Load Profile-72.Profile entries": 960, + "Quality Profile.AMR Profile Status Code E meter - Power Quality profile 1 status.AMR Profile Status Code E meter - Power Quality profile 1 status": 128, + "Quality Profile.15 Minutes Power Quality Profile.Buffer": { + "0": [ + "2025-09-22 01 11:15:00 00,FF88,80", + 13, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "1": [ + "2025-09-22 01 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "2": [ + "2025-09-22 01 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "3": [ + "2025-09-22 01 12:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "4": [ + "2025-09-22 01 12:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "5": [ + "2025-09-22 01 12:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "6": [ + "2025-09-22 01 15:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "7": [ + "2025-09-22 01 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "8": [ + "2025-09-22 01 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "9": [ + "2025-09-22 01 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "10": [ + "2025-09-22 01 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "11": [ + "2025-09-22 01 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "12": [ + "2025-09-22 01 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "13": [ + "2025-09-22 01 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "14": [ + "2025-09-22 01 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "15": [ + "2025-09-22 01 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "16": [ + "2025-09-22 01 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "17": [ + "2025-09-22 01 18:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "18": [ + "2025-09-22 01 18:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "19": [ + "2025-09-22 01 18:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "20": [ + "2025-09-22 01 21:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "21": [ + "2025-09-22 01 22:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "22": [ + "2025-09-22 01 22:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "23": [ + "2025-09-22 01 23:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "24": [ + "2025-09-22 01 23:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "25": [ + "2025-09-22 01 23:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "26": [ + "2025-09-23 02 00:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "27": [ + "2025-09-23 02 00:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "28": [ + "2025-09-23 02 01:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "29": [ + "2025-09-23 02 02:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "30": [ + "2025-09-23 02 02:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "31": [ + "2025-09-23 02 02:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "32": [ + "2025-09-23 02 03:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "33": [ + "2025-09-23 02 03:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "34": [ + "2025-09-23 02 04:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "35": [ + "2025-09-23 02 04:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "36": [ + "2025-09-23 02 04:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "37": [ + "2025-09-23 02 04:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "38": [ + "2025-09-23 02 05:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "39": [ + "2025-09-23 02 05:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "40": [ + "2025-09-23 02 06:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "41": [ + "2025-09-23 02 06:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "42": [ + "2025-09-23 02 07:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "43": [ + "2025-09-23 02 07:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "44": [ + "2025-09-23 02 08:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "45": [ + "2025-09-23 02 08:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "46": [ + "2025-09-23 02 08:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "47": [ + "2025-09-23 02 09:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "48": [ + "2025-09-23 02 09:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "49": [ + "2025-09-23 02 09:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "50": [ + "2025-09-23 02 10:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "51": [ + "2025-09-23 02 10:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "52": [ + "2025-09-23 02 11:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "53": [ + "2025-09-24 03 09:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "54": [ + "2025-09-24 03 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "55": [ + "2025-09-24 03 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "56": [ + "2025-09-24 03 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "57": [ + "2025-09-24 03 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "58": [ + "2025-09-24 03 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "59": [ + "2025-09-24 03 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "60": [ + "2025-09-24 03 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "61": [ + "2025-09-24 03 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "62": [ + "2025-09-24 03 11:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "63": [ + "2025-09-24 03 12:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "64": [ + "2025-09-24 03 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "65": [ + "2025-09-24 03 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "66": [ + "2025-09-24 03 13:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "67": [ + "2025-09-24 03 14:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "68": [ + "2025-09-24 03 15:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "69": [ + "2025-09-24 03 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "70": [ + "2025-09-24 03 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "71": [ + "2025-09-24 03 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "72": [ + "2025-09-24 03 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "73": [ + "2025-09-24 03 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "74": [ + "2025-09-24 03 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "75": [ + "2025-09-24 03 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "76": [ + "2025-09-24 03 17:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "77": [ + "2025-09-24 03 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "78": [ + "2025-09-24 03 18:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "79": [ + "2025-09-24 03 19:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "80": [ + "2025-09-24 03 19:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "81": [ + "2025-09-24 03 19:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "82": [ + "2025-09-24 03 19:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "83": [ + "2025-09-24 03 20:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "84": [ + "2025-09-24 03 20:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "85": [ + "2025-09-24 03 20:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "86": [ + "2025-09-25 04 08:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "87": [ + "2025-09-25 04 09:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "88": [ + "2025-09-25 04 09:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "89": [ + "2025-09-25 04 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "90": [ + "2025-09-25 04 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "91": [ + "2025-09-25 04 10:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "92": [ + "2025-09-25 04 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "93": [ + "2025-09-25 04 11:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "94": [ + "2025-09-25 04 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "95": [ + "2025-09-25 04 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "96": [ + "2025-09-25 04 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "97": [ + "2025-09-25 04 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "98": [ + "2025-09-25 04 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "99": [ + "2025-09-25 04 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "100": [ + "2025-09-25 04 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "101": [ + "2025-09-25 04 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "102": [ + "2025-09-25 04 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "103": [ + "2025-09-25 04 13:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "104": [ + "2025-09-25 04 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "105": [ + "2025-09-25 04 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "106": [ + "2025-09-25 04 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "107": [ + "2025-09-25 04 14:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "108": [ + "2025-09-25 04 15:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "109": [ + "2025-09-25 04 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "110": [ + "2025-09-25 04 23:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "111": [ + "2025-09-25 04 23:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "112": [ + "2025-09-26 05 02:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "113": [ + "2025-09-26 05 02:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "114": [ + "2025-09-26 05 02:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "115": [ + "2025-09-26 05 05:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "116": [ + "2025-09-26 05 05:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "117": [ + "2025-09-26 05 05:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "118": [ + "2025-09-26 05 05:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "119": [ + "2025-09-26 05 08:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "120": [ + "2025-09-26 05 08:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "121": [ + "2025-09-27 06 10:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "122": [ + "2025-09-27 06 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "123": [ + "2025-09-27 06 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "124": [ + "2025-09-27 06 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "125": [ + "2025-09-27 06 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "126": [ + "2025-09-27 06 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "127": [ + "2025-09-27 06 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "128": [ + "2025-09-27 06 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "129": [ + "2025-09-27 06 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "130": [ + "2025-09-27 06 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "131": [ + "2025-09-27 06 13:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "132": [ + "2025-09-27 06 13:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "133": [ + "2025-09-27 06 13:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "134": [ + "2025-09-27 06 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "135": [ + "2025-09-27 06 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "136": [ + "2025-09-27 06 14:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "137": [ + "2025-09-27 06 15:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "138": [ + "2025-09-27 06 15:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "139": [ + "2025-09-27 06 18:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "140": [ + "2025-09-27 06 18:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "141": [ + "2025-09-27 06 18:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "142": [ + "2025-09-27 06 19:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "143": [ + "2025-09-27 06 19:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "144": [ + "2025-09-27 06 19:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "145": [ + "2025-09-27 06 20:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "146": [ + "2025-09-27 06 21:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "147": [ + "2025-09-27 06 21:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "148": [ + "2025-09-27 06 21:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "149": [ + "2025-09-27 06 22:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "150": [ + "2025-09-27 06 22:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "151": [ + "2025-09-27 06 22:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "152": [ + "2025-09-27 06 22:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "153": [ + "2025-09-27 06 23:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "154": [ + "2025-09-27 06 23:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "155": [ + "2025-09-28 07 00:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "156": [ + "2025-09-28 07 00:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "157": [ + "2025-09-28 07 01:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "158": [ + "2025-09-28 07 01:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "159": [ + "2025-09-28 07 01:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "160": [ + "2025-09-28 07 02:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "161": [ + "2025-09-28 07 02:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "162": [ + "2025-09-28 07 03:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "163": [ + "2025-09-28 07 03:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "164": [ + "2025-09-28 07 04:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "165": [ + "2025-09-28 07 04:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "166": [ + "2025-09-28 07 04:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "167": [ + "2025-09-28 07 05:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "168": [ + "2025-09-28 07 05:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "169": [ + "2025-09-28 07 06:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "170": [ + "2025-09-28 07 06:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "171": [ + "2025-09-28 07 07:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "172": [ + "2025-09-28 07 07:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "173": [ + "2025-09-28 07 07:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "174": [ + "2025-09-28 07 08:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "175": [ + "2025-09-28 07 09:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "176": [ + "2025-09-28 07 09:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "177": [ + "2025-09-28 07 10:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "178": [ + "2025-09-28 07 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "179": [ + "2025-09-28 07 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "180": [ + "2025-09-28 07 11:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "181": [ + "2025-09-28 07 11:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "182": [ + "2025-09-28 07 11:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "183": [ + "2025-09-28 07 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "184": [ + "2025-09-28 07 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "185": [ + "2025-09-28 07 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "186": [ + "2025-09-28 07 12:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "187": [ + "2025-09-28 07 13:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "188": [ + "2025-09-28 07 13:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "189": [ + "2025-09-28 07 13:30:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "190": [ + "2025-09-28 07 15:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "191": [ + "2025-09-28 07 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "192": [ + "2025-09-28 07 15:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "193": [ + "2025-09-28 07 15:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "194": [ + "2025-09-28 07 16:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "195": [ + "2025-09-28 07 16:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "196": [ + "2025-09-28 07 16:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "197": [ + "2025-09-28 07 16:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "198": [ + "2025-09-28 07 17:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "199": [ + "2025-09-28 07 17:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "200": [ + "2025-09-28 07 17:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "201": [ + "2025-09-28 07 18:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "202": [ + "2025-09-28 07 18:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "203": [ + "2025-09-29 01 15:00:00 00,FF88,80", + 141, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "204": [ + "2025-09-29 01 15:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "205": [ + "2025-09-29 01 15:30:00 00,FF88,80", + 8, + 502, + 0, + 0, + 0, + 499, + 0, + 0, + 0, + 498, + 0, + 0, + 0 + ], + "206": [ + "2025-09-29 01 16:15:00 00,FF88,80", + 141, + 1083, + 112, + 1, + 0, + 1198, + 0, + 0, + 0, + 1205, + 0, + 0, + 0 + ], + "207": [ + "2025-09-30 02 17:00:00 00,FF88,81", + 142, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "208": [ + "2025-09-30 02 17:15:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "209": [ + "2025-09-30 02 17:30:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "210": [ + "2025-09-30 02 17:45:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "211": [ + "2025-09-30 02 18:00:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "212": [ + "2025-09-30 02 18:15:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "213": [ + "2025-09-30 02 18:30:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "214": [ + "2025-09-30 02 18:45:00 00,FF88,81", + 14, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "215": [ + "2025-10-20 01 11:45:00 00,FF88,80", + 46, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "216": [ + "2025-10-20 01 12:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "217": [ + "2025-10-20 01 12:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "218": [ + "2025-10-20 01 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "219": [ + "2025-10-20 01 15:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "220": [ + "2025-10-20 01 16:00:00 00,FF88,80", + 13, + 908, + 0, + 0, + 0, + 908, + 0, + 0, + 0, + 908, + 0, + 0, + 0 + ], + "221": [ + "2025-10-20 01 16:15:00 00,FF88,80", + 8, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "222": [ + "2025-10-20 01 16:30:00 00,FF88,80", + 8, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "223": [ + "2025-10-20 01 16:45:00 00,FF88,80", + 8, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "224": [ + "2025-10-20 01 17:00:00 00,FF88,80", + 8, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "225": [ + "2025-10-20 01 17:30:00 00,FF88,80", + 44, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "226": [ + "2025-10-20 01 17:45:00 00,FF88,80", + 44, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "227": [ + "2025-10-20 01 18:00:00 00,FF88,80", + 44, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "228": [ + "2025-10-21 02 09:00:00 00,FF88,80", + 172, + 1140, + 0, + 0, + 0, + 1139, + 0, + 0, + 0, + 1140, + 0, + 0, + 0 + ], + "229": [ + "2025-10-21 02 09:15:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "230": [ + "2025-10-21 02 09:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "231": [ + "2025-10-21 02 09:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "232": [ + "2025-10-21 02 10:00:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "233": [ + "2025-10-21 02 10:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "234": [ + "2025-10-21 02 10:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "235": [ + "2025-10-21 02 10:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "236": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "237": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 44, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "238": [ + "2025-10-25 06 00:00:00 00,FF88,80", + 44, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "239": [ + "2025-10-25 06 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "240": [ + "2025-10-25 06 00:30:00 00,FF88,80", + 8, + 593, + 0, + 0, + 0, + 593, + 0, + 0, + 0, + 593, + 0, + 0, + 0 + ], + "241": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "242": [ + "2025-10-21 02 12:00:00 00,FF88,80", + 44, + 1149, + 0, + 0, + 0, + 1148, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "243": [ + "2025-10-21 02 12:15:00 00,FF88,80", + 8, + 4, + 0, + 0, + 0, + 4, + 0, + 0, + 0, + 4, + 0, + 0, + 0 + ], + "244": [ + "2025-10-21 02 12:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "245": [ + "2025-10-21 02 13:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "246": [ + "2025-10-21 02 14:00:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "247": [ + "2025-10-21 02 14:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "248": [ + "2025-10-21 02 14:30:00 00,FF88,80", + 8, + 166, + 0, + 0, + 0, + 167, + 0, + 0, + 0, + 166, + 0, + 0, + 0 + ], + "249": [ + "2025-11-01 06 00:15:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1148, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "250": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "251": [ + "2025-11-01 06 00:45:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "252": [ + "2025-12-01 01 00:15:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "253": [ + "2025-12-01 01 00:30:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "254": [ + "2025-12-01 01 00:45:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "255": [ + "2025-12-01 01 01:00:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "256": [ + "2026-01-01 04 00:15:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "257": [ + "2026-02-01 07 00:15:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "258": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 36, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1150, + 0, + 0, + 0 + ], + "259": [ + "2026-03-01 07 00:15:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0 + ], + "260": [ + "2026-03-01 07 00:30:00 00,FFC4,00", + 0, + 1149, + 0, + 0, + 0, + 1149, + 0, + 0, + 0, + 1150, + 0, + 0, + 0 + ], + "261": [ + "2026-03-01 07 00:45:00 00,FFC4,00", + 0, + 615, + 0, + 0, + 0, + 615, + 0, + 0, + 0, + 615, + 0, + 0, + 0 + ], + "262": [ + "2026-03-01 07 01:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "263": [ + "2026-03-01 07 01:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "264": [ + "2026-03-01 07 01:30:00 00,FFC4,00", + 5, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "265": [ + "2026-04-01 03 00:15:00 00,FF88,80", + 44, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "266": [ + "2026-04-01 03 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "267": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 44, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "268": [ + "2026-05-01 05 00:15:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "269": [ + "2026-05-01 05 00:30:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "270": [ + "2026-05-01 05 13:45:00 00,FF88,80", + 136, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "271": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 44, + 77, + 0, + 0, + 0, + 77, + 0, + 0, + 0, + 77, + 0, + 0, + 0 + ], + "272": [ + "2026-06-01 01 07:30:00 00,FF88,80", + 141, + 854, + 0, + 0, + 0, + 853, + 0, + 0, + 0, + 853, + 0, + 0, + 0 + ], + "273": [ + "2025-10-22 03 17:15:00 00,FF88,80", + 44, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "274": [ + "2025-10-22 03 17:30:00 00,FF88,80", + 8, + 11, + 0, + 0, + 0, + 11, + 0, + 0, + 0, + 11, + 0, + 0, + 0 + ], + "275": [ + "2025-10-22 03 17:45:00 00,FF88,80", + 8, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "276": [ + "2025-11-01 06 00:15:00 00,FFC4,00", + 36, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "277": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "278": [ + "2025-11-01 06 00:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "279": [ + "2025-11-01 06 01:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "280": [ + "2025-11-01 06 01:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "281": [ + "2025-11-01 06 01:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "282": [ + "2025-11-01 06 15:00:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "283": [ + "2025-11-01 06 15:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "284": [ + "2025-11-01 06 15:30:00 00,FFC4,00", + 0, + 116, + 0, + 0, + 0, + 116, + 0, + 0, + 0, + 116, + 0, + 0, + 0 + ], + "285": [ + "2025-11-01 06 15:45:00 00,FFC4,00", + 0, + 123, + 0, + 0, + 0, + 127, + 0, + 0, + 0, + 130, + 0, + 0, + 0 + ], + "286": [ + "2025-11-01 06 16:00:00 00,FFC4,00", + 0, + 1480, + 0, + 0, + 1, + 1477, + 0, + 0, + 1, + 1476, + 0, + 0, + 2 + ], + "287": [ + "2025-11-01 06 16:15:00 00,FFC4,00", + 0, + 6849, + 0, + 0, + 9, + 6857, + 0, + 0, + 8, + 6912, + 0, + 0, + 5 + ], + "288": [ + "2025-11-01 06 16:30:00 00,FFC4,00", + 0, + 7963, + 0, + 1, + 11, + 7983, + 0, + 1, + 9, + 7953, + 0, + 1, + 6 + ], + "289": [ + "2025-11-08 06 15:30:00 00,FFC4,00", + 133, + 3113, + 0, + 0, + 5, + 3116, + 0, + 0, + 4, + 3119, + 0, + 0, + 3 + ], + "290": [ + "2025-11-08 06 15:45:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "291": [ + "2025-11-08 06 16:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "292": [ + "2025-11-08 06 16:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "293": [ + "2025-11-08 06 16:45:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "294": [ + "2025-11-08 06 17:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "295": [ + "2025-11-08 06 17:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "296": [ + "2025-11-08 06 17:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "297": [ + "2025-11-08 06 17:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "298": [ + "2025-11-08 06 18:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "299": [ + "2025-11-08 06 18:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "300": [ + "2025-11-08 06 18:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "301": [ + "2025-11-08 06 18:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "302": [ + "2025-11-08 06 19:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "303": [ + "2025-11-08 06 19:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "304": [ + "2025-11-08 06 19:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "305": [ + "2025-11-08 06 19:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "306": [ + "2025-11-08 06 20:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "307": [ + "2025-11-08 06 20:15:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "308": [ + "2025-11-08 06 20:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "309": [ + "2025-11-08 06 20:45:00 00,FFC4,00", + 0, + 77, + 0, + 0, + 0, + 68, + 0, + 0, + 0, + 72, + 0, + 0, + 0 + ], + "310": [ + "2025-11-08 06 21:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "311": [ + "2025-11-08 06 21:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "312": [ + "2025-11-08 06 21:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "313": [ + "2025-11-08 06 21:45:00 00,FFC4,00", + 0, + 816, + 0, + 0, + 0, + 816, + 0, + 0, + 0, + 817, + 0, + 0, + 0 + ], + "314": [ + "2025-11-08 06 22:00:00 00,FFC4,00", + 0, + 1147, + 0, + 0, + 0, + 1147, + 0, + 0, + 0, + 1148, + 0, + 0, + 0 + ], + "315": [ + "2025-11-08 06 22:15:00 00,FFC4,00", + 0, + 1073, + 0, + 0, + 0, + 1073, + 0, + 0, + 0, + 1073, + 0, + 0, + 0 + ], + "316": [ + "2025-11-09 07 14:45:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "317": [ + "2025-11-09 07 15:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "318": [ + "2025-11-09 07 20:15:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "319": [ + "2025-11-09 07 20:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "320": [ + "2025-11-09 07 21:00:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "321": [ + "2025-11-09 07 21:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "322": [ + "2025-11-09 07 21:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "323": [ + "2025-11-09 07 21:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "324": [ + "2025-11-09 07 22:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "325": [ + "2025-11-09 07 22:15:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "326": [ + "2025-11-09 07 22:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "327": [ + "2025-11-09 07 22:45:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "328": [ + "2025-11-09 07 23:00:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "329": [ + "2025-11-10 01 00:15:00 00,FFC4,00", + 128, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "330": [ + "2025-11-10 01 00:30:00 00,FFC4,00", + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "Quality Profile.15 Minutes Power Quality Profile.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.8.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:21.5.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:22.5.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:23.5.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:24.5.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:41.5.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:42.5.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:43.5.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:44.5.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:61.5.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:62.5.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:63.5.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:64.5.0.255", + 2, + 0 + ] + }, + "Quality Profile.15 Minutes Power Quality Profile.Capture period": 900, + "Quality Profile.15 Minutes Power Quality Profile.Sort method": 1, + "Quality Profile.15 Minutes Power Quality Profile.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Quality Profile.15 Minutes Power Quality Profile.Entries in use": 331, + "Quality Profile.15 Minutes Power Quality Profile.Profile entries": 960, + "Quality Profile.AMR Profile Status Code E meter - Power Quality profile 2 status.AMR Profile Status Code E meter - Power Quality profile 2 status": 0, + "Quality Profile.10 Minutes Power Quality Profile.Buffer": { + "0": [ + "2025-10-20 01 17:10:00 00,FF88,80", + 8, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "1": [ + "2025-10-20 01 17:20:00 00,FF88,80", + 44, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "2": [ + "2025-10-20 01 17:30:00 00,FF88,80", + 8, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "3": [ + "2025-10-20 01 17:40:00 00,FF88,80", + 44, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "4": [ + "2025-10-20 01 17:50:00 00,FF88,80", + 44, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "5": [ + "2025-10-20 01 18:00:00 00,FF88,80", + 8, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "6": [ + "2025-10-20 01 18:10:00 00,FF88,80", + 8, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "7": [ + "2025-10-20 01 18:20:00 00,FF88,80", + 44, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "8": [ + "2025-10-21 02 09:00:00 00,FF88,80", + 136, + 230, + 4, + 230, + 4, + 230, + 4, + 405, + 406, + 407, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "9": [ + "2025-10-21 02 09:10:00 00,FF88,80", + 136, + 230, + 0, + 141, + 0, + 141, + 0, + 586, + 497, + 586, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "10": [ + "2025-10-21 02 09:20:00 00,FF88,80", + 8, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "11": [ + "2025-10-21 02 09:30:00 00,FF88,80", + 8, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "12": [ + "2025-10-21 02 09:40:00 00,FF88,80", + 8, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "13": [ + "2025-10-21 02 09:50:00 00,FF88,80", + 136, + 230, + 0, + 29, + 0, + 29, + 0, + 166, + 621, + 166, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "14": [ + "2025-10-21 02 10:00:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "15": [ + "2025-10-21 02 10:10:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "16": [ + "2025-10-21 02 10:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "17": [ + "2025-10-21 02 10:30:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "18": [ + "2025-10-21 02 10:40:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "19": [ + "2025-10-21 02 10:50:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "20": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "21": [ + "2025-10-21 02 10:50:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "22": [ + "2025-10-21 02 11:00:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "23": [ + "2025-10-25 06 00:00:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "24": [ + "2025-10-25 06 00:10:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "25": [ + "2025-10-25 06 00:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "26": [ + "2025-10-25 06 00:30:00 00,FF88,80", + 8, + 230, + 3, + 229, + 3, + 230, + 3, + 398, + 398, + 398, + 3449, + 0, + 5, + 230, + 4, + 229, + 5, + 230 + ], + "27": [ + "2025-11-01 06 00:00:00 00,FFC4,00", + 36, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3449, + 0, + 4, + 230, + 4, + 229, + 5, + 230 + ], + "28": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 402, + 402, + 402, + 3449, + 0, + 5, + 230, + 4, + 229, + 5, + 230 + ], + "29": [ + "2025-10-21 02 12:00:00 00,FF88,80", + 44, + 230, + 4, + 229, + 4, + 230, + 5, + 398, + 398, + 398, + 3449, + 0, + 4, + 230, + 4, + 229, + 5, + 230 + ], + "30": [ + "2025-10-21 02 12:10:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "31": [ + "2025-10-21 02 12:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "32": [ + "2025-10-21 02 12:30:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "33": [ + "2025-10-21 02 13:40:00 00,FF88,80", + 136, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 399, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "34": [ + "2025-10-21 02 13:50:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "35": [ + "2025-10-21 02 14:00:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "36": [ + "2025-10-21 02 14:10:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "37": [ + "2025-10-21 02 14:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "38": [ + "2025-10-21 02 14:30:00 00,FF88,80", + 8, + 230, + 1, + 229, + 1, + 230, + 1, + 402, + 402, + 402, + 3449, + 0, + 4, + 230, + 4, + 229, + 4, + 230 + ], + "39": [ + "2025-10-21 02 14:40:00 00,FF88,80", + 8, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3449, + 0, + 5, + 230, + 4, + 229, + 5, + 230 + ], + "40": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 36, + 230, + 4, + 229, + 4, + 230, + 4, + 401, + 401, + 401, + 3449, + 0, + 4, + 230, + 4, + 229, + 5, + 230 + ], + "41": [ + "2025-11-01 06 00:20:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "42": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "43": [ + "2025-11-01 06 00:40:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "44": [ + "2025-12-01 01 00:10:00 00,FFC4,00", + 36, + 230, + 4, + 230, + 4, + 230, + 4, + 400, + 400, + 400, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "45": [ + "2025-12-01 01 00:20:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "46": [ + "2025-12-01 01 00:30:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "47": [ + "2025-12-01 01 00:40:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3449, + 0, + 4, + 230, + 4, + 229, + 5, + 230 + ], + "48": [ + "2025-12-01 01 00:50:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3449, + 0, + 4, + 230, + 4, + 229, + 5, + 230 + ], + "49": [ + "2025-12-01 01 01:00:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 4, + 398, + 398, + 398, + 3449, + 0, + 5, + 230, + 4, + 230, + 5, + 230 + ], + "50": [ + "2026-01-01 04 00:10:00 00,FFC4,00", + 36, + 230, + 4, + 229, + 4, + 230, + 4, + 401, + 402, + 401, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "51": [ + "2026-01-01 04 00:20:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "52": [ + "2026-02-01 07 00:10:00 00,FFC4,00", + 36, + 230, + 4, + 230, + 4, + 230, + 4, + 401, + 401, + 401, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "53": [ + "2026-03-01 07 00:00:00 00,FFC4,00", + 36, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 3445, + 0, + 4, + 230, + 4, + 229, + 4, + 230 + ], + "54": [ + "2026-03-01 07 00:10:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 402, + 402, + 403, + 3450, + 0, + 5, + 230, + 4, + 229, + 5, + 230 + ], + "55": [ + "2026-03-01 07 00:20:00 00,FFC4,00", + 0, + 230, + 4, + 229, + 4, + 230, + 5, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "56": [ + "2026-03-01 07 00:30:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 5, + 398, + 398, + 398, + 3450, + 0, + 4, + 230, + 4, + 230, + 5, + 230 + ], + "57": [ + "2026-03-01 07 00:40:00 00,FFC4,00", + 0, + 230, + 4, + 230, + 4, + 230, + 4, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "58": [ + "2026-03-01 07 00:50:00 00,FFC4,00", + 0, + 230, + 0, + 230, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "59": [ + "2026-03-01 07 01:00:00 00,FFC4,00", + 0, + 230, + 0, + 230, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "60": [ + "2026-03-01 07 01:10:00 00,FFC4,00", + 0, + 230, + 0, + 230, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "61": [ + "2026-03-01 07 01:20:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "62": [ + "2026-03-01 07 01:30:00 00,FFC4,00", + 5, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "63": [ + "2026-04-01 03 00:10:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 230, + 0, + 401, + 401, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "64": [ + "2026-04-01 03 00:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "65": [ + "2026-04-01 03 00:30:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "66": [ + "2026-05-01 05 00:00:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "67": [ + "2026-05-01 05 00:10:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "68": [ + "2026-05-01 05 00:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "69": [ + "2026-05-01 05 00:30:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "70": [ + "2026-05-01 05 13:50:00 00,FF88,80", + 136, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "71": [ + "2026-06-01 01 00:00:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 3448, + 0, + 5, + 230, + 4, + 229, + 5, + 229 + ], + "72": [ + "2026-06-01 01 07:30:00 00,FF88,80", + 141, + 226, + 3, + 173, + 3, + 174, + 3, + 513, + 460, + 514, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "73": [ + "2025-10-22 03 17:10:00 00,FF88,80", + 44, + 230, + 0, + 229, + 0, + 230, + 0, + 405, + 406, + 406, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "74": [ + "2025-10-22 03 17:20:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "75": [ + "2025-10-22 03 17:30:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 402, + 403, + 403, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "76": [ + "2025-10-22 03 17:40:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "77": [ + "2025-10-22 03 17:50:00 00,FF88,80", + 8, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "78": [ + "2025-11-01 06 00:10:00 00,FFC4,00", + 36, + 230, + 0, + 229, + 0, + 230, + 0, + 400, + 400, + 401, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "79": [ + "2025-11-01 06 00:20:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "80": [ + "2025-11-01 06 00:30:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "81": [ + "2025-11-01 06 00:40:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "82": [ + "2025-11-01 06 00:50:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "83": [ + "2025-11-01 06 01:00:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "84": [ + "2025-11-01 06 01:10:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "85": [ + "2025-11-01 06 01:20:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "86": [ + "2025-11-01 06 01:30:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "87": [ + "2025-11-01 06 15:00:00 00,FFC4,00", + 128, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "88": [ + "2025-11-01 06 15:10:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "89": [ + "2025-11-01 06 15:20:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 229, + 0, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "90": [ + "2025-11-01 06 15:30:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "91": [ + "2025-11-01 06 15:40:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "92": [ + "2025-11-01 06 15:50:00 00,FFC4,00", + 0, + 229, + 10, + 229, + 10, + 229, + 10, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "93": [ + "2025-11-01 06 16:00:00 00,FFC4,00", + 0, + 230, + 0, + 210, + 0, + 207, + 0, + 439, + 426, + 446, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "94": [ + "2025-11-01 06 16:10:00 00,FFC4,00", + 0, + 229, + 20, + 229, + 20, + 229, + 20, + 406, + 406, + 405, + 34432, + 0, + 49, + 229, + 49, + 229, + 49, + 229 + ], + "95": [ + "2025-11-01 06 16:20:00 00,FFC4,00", + 0, + 229, + 30, + 229, + 29, + 230, + 29, + 410, + 410, + 410, + 34406, + 0, + 49, + 229, + 49, + 229, + 49, + 229 + ], + "96": [ + "2025-11-01 06 16:30:00 00,FFC4,00", + 0, + 229, + 46, + 229, + 46, + 230, + 46, + 402, + 402, + 403, + 34445, + 0, + 49, + 229, + 49, + 230, + 49, + 230 + ], + "97": [ + "2025-11-01 06 16:40:00 00,FFC4,00", + 0, + 230, + 19, + 230, + 19, + 230, + 19, + 402, + 402, + 402, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 230 + ], + "98": [ + "2025-11-08 06 15:30:00 00,FFC4,00", + 133, + 230, + 0, + 230, + 0, + 230, + 0, + 402, + 402, + 404, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "99": [ + "2025-11-08 06 15:40:00 00,FFC4,00", + 128, + 230, + 0, + 42, + 0, + 42, + 0, + 139, + 607, + 139, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "100": [ + "2025-11-08 06 15:50:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "101": [ + "2025-11-08 06 16:00:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "102": [ + "2025-11-08 06 16:10:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "103": [ + "2025-11-08 06 16:20:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "104": [ + "2025-11-08 06 16:40:00 00,FFC4,00", + 128, + 230, + 0, + 110, + 0, + 110, + 0, + 651, + 532, + 651, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "105": [ + "2025-11-08 06 16:50:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "106": [ + "2025-11-08 06 17:00:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 399, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "107": [ + "2025-11-08 06 17:10:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 399, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "108": [ + "2025-11-08 06 17:20:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "109": [ + "2025-11-08 06 17:30:00 00,FFC4,00", + 0, + 230, + 0, + 204, + 0, + 205, + 0, + 452, + 428, + 450, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "110": [ + "2025-11-08 06 17:40:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "111": [ + "2025-11-08 06 17:50:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "112": [ + "2025-11-08 06 18:00:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "113": [ + "2025-11-08 06 18:10:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "114": [ + "2025-11-08 06 18:20:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "115": [ + "2025-11-08 06 18:30:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "116": [ + "2025-11-08 06 18:40:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "117": [ + "2025-11-08 06 18:50:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "118": [ + "2025-11-08 06 19:00:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "119": [ + "2025-11-08 06 19:10:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "120": [ + "2025-11-08 06 19:20:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "121": [ + "2025-11-08 06 19:30:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "122": [ + "2025-11-08 06 19:40:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "123": [ + "2025-11-08 06 19:50:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "124": [ + "2025-11-08 06 20:00:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "125": [ + "2025-11-08 06 20:10:00 00,FFC4,00", + 0, + 230, + 0, + 0, + 0, + 0, + 0, + 230, + 0, + 230, + 0, + 0, + 0, + 230, + 0, + 0, + 0, + 0 + ], + "126": [ + "2025-11-08 06 20:20:00 00,FFC4,00", + 128, + 230, + 0, + 177, + 0, + 177, + 0, + 509, + 457, + 509, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "127": [ + "2025-11-08 06 20:30:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 230, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "128": [ + "2025-11-08 06 20:40:00 00,FFC4,00", + 0, + 230, + 0, + 228, + 0, + 229, + 0, + 397, + 397, + 397, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "129": [ + "2025-11-08 06 20:50:00 00,FFC4,00", + 0, + 232, + 0, + 232, + 0, + 232, + 0, + 402, + 403, + 403, + 0, + 0, + 0, + 234, + 0, + 234, + 0, + 234 + ], + "130": [ + "2025-11-08 06 21:00:00 00,FFC4,00", + 0, + 234, + 0, + 234, + 0, + 234, + 0, + 406, + 406, + 406, + 0, + 0, + 0, + 234, + 0, + 234, + 0, + 234 + ], + "131": [ + "2025-11-08 06 21:10:00 00,FFC4,00", + 0, + 234, + 0, + 234, + 0, + 234, + 0, + 406, + 406, + 406, + 0, + 0, + 0, + 234, + 0, + 234, + 0, + 234 + ], + "132": [ + "2025-11-08 06 21:20:00 00,FFC4,00", + 0, + 234, + 0, + 234, + 0, + 234, + 0, + 406, + 406, + 406, + 0, + 0, + 0, + 234, + 0, + 234, + 0, + 234 + ], + "133": [ + "2025-11-08 06 21:30:00 00,FFC4,00", + 0, + 234, + 0, + 234, + 0, + 234, + 0, + 406, + 406, + 406, + 0, + 0, + 0, + 234, + 0, + 234, + 0, + 234 + ], + "134": [ + "2025-11-08 06 21:40:00 00,FFC4,00", + 0, + 234, + 2, + 234, + 2, + 234, + 2, + 405, + 405, + 405, + 3446, + 0, + 4, + 234, + 4, + 234, + 4, + 234 + ], + "135": [ + "2025-11-08 06 21:50:00 00,FFC4,00", + 0, + 234, + 4, + 234, + 4, + 234, + 4, + 406, + 406, + 406, + 3445, + 0, + 4, + 234, + 4, + 234, + 4, + 234 + ], + "136": [ + "2025-11-08 06 22:00:00 00,FFC4,00", + 0, + 234, + 4, + 234, + 4, + 234, + 4, + 406, + 406, + 406, + 3444, + 0, + 4, + 234, + 4, + 234, + 4, + 234 + ], + "137": [ + "2025-11-08 06 22:10:00 00,FFC4,00", + 0, + 234, + 4, + 234, + 4, + 234, + 4, + 406, + 406, + 406, + 3443, + 0, + 4, + 234, + 4, + 234, + 4, + 234 + ], + "138": [ + "2025-11-09 07 14:40:00 00,FFC4,00", + 128, + 231, + 1, + 231, + 1, + 231, + 1, + 401, + 401, + 401, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "139": [ + "2025-11-09 07 14:50:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 229 + ], + "140": [ + "2025-11-09 07 15:00:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "141": [ + "2025-11-09 07 15:10:00 00,FFC4,00", + 0, + 230, + 0, + 229, + 0, + 229, + 0, + 398, + 398, + 398, + 0, + 0, + 0, + 230, + 0, + 229, + 0, + 230 + ], + "142": [ + "2025-11-09 07 20:10:00 00,FFC4,00", + 128, + 220, + 0, + 74, + 0, + 74, + 0, + 63, + 572, + 63, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "143": [ + "2025-11-09 07 20:20:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "144": [ + "2025-11-09 07 20:30:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "145": [ + "2025-11-09 07 20:50:00 00,FFC4,00", + 128, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "146": [ + "2025-11-09 07 21:00:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "147": [ + "2025-11-09 07 21:10:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "148": [ + "2025-11-09 07 21:20:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "149": [ + "2025-11-09 07 21:30:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "150": [ + "2025-11-09 07 21:40:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "151": [ + "2025-11-09 07 21:50:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "152": [ + "2025-11-09 07 22:00:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "153": [ + "2025-11-09 07 22:10:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "154": [ + "2025-11-09 07 22:20:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "155": [ + "2025-11-09 07 22:30:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "156": [ + "2025-11-09 07 22:40:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "157": [ + "2025-11-09 07 22:50:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "158": [ + "2025-11-09 07 23:00:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ], + "159": [ + "2025-11-09 07 23:10:00 00,FFC4,00", + 0, + 215, + 0, + 0, + 0, + 0, + 0, + 215, + 0, + 215, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "160": [ + "2025-11-10 01 00:10:00 00,FFC4,00", + 128, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 216, + 0, + 0, + 0, + 0 + ], + "161": [ + "2025-11-10 01 00:20:00 00,FFC4,00", + 0, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 217, + 0, + 0, + 0, + 0 + ], + "162": [ + "2025-11-10 01 00:30:00 00,FFC4,00", + 0, + 217, + 0, + 0, + 0, + 0, + 0, + 217, + 0, + 217, + 0, + 0, + 0, + 217, + 0, + 0, + 0, + 0 + ], + "163": [ + "2025-11-10 01 15:40:00 00,FFC4,00", + 128, + 216, + 0, + 0, + 0, + 0, + 0, + 216, + 0, + 216, + 0, + 0, + 0, + 215, + 0, + 0, + 0, + 0 + ] + }, + "Quality Profile.10 Minutes Power Quality Profile.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.10.9.255", + 2, + 0 + ], + "2": [ + 3, + "1-0:32.25.0.255", + 2, + 0 + ], + "3": [ + 3, + "1-0:31.25.0.255", + 2, + 0 + ], + "4": [ + 3, + "1-0:52.25.0.255", + 2, + 0 + ], + "5": [ + 3, + "1-0:51.25.0.255", + 2, + 0 + ], + "6": [ + 3, + "1-0:72.25.0.255", + 2, + 0 + ], + "7": [ + 3, + "1-0:71.25.0.255", + 2, + 0 + ], + "8": [ + 3, + "1-0:124.25.0.255", + 2, + 0 + ], + "9": [ + 3, + "1-0:125.25.0.255", + 2, + 0 + ], + "10": [ + 3, + "1-0:126.25.0.255", + 2, + 0 + ], + "11": [ + 3, + "1-0:1.7.0.255", + 2, + 0 + ], + "12": [ + 3, + "1-0:10.7.0.255", + 2, + 0 + ], + "13": [ + 3, + "1-0:31.7.0.255", + 2, + 0 + ], + "14": [ + 3, + "1-0:32.7.0.255", + 2, + 0 + ], + "15": [ + 3, + "1-0:51.7.0.255", + 2, + 0 + ], + "16": [ + 3, + "1-0:52.7.0.255", + 2, + 0 + ], + "17": [ + 3, + "1-0:71.7.0.255", + 2, + 0 + ], + "18": [ + 3, + "1-0:72.7.0.255", + 2, + 0 + ] + }, + "Quality Profile.10 Minutes Power Quality Profile.Capture period": 600, + "Quality Profile.10 Minutes Power Quality Profile.Sort method": 1, + "Quality Profile.10 Minutes Power Quality Profile.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Quality Profile.10 Minutes Power Quality Profile.Entries in use": 164, + "Quality Profile.10 Minutes Power Quality Profile.Profile entries": 1440, + "Power Quality.Time threshold for long power failure.Value": 180, + "Power Quality.Value threshold for voltage sag.Value": 207, + "Power Quality.Time threshold for voltage sag.Value": 30, + "Power Quality.Value threshold for short voltage sag.Value": 207, + "Power Quality.Time threshold for short voltage sag.Value": 1, + "Power Quality.Value threshold for PV voltage sag.Value": 212, + "Power Quality.Time threshold for PV voltage sag.Value": 2, + "Power Quality.Value threshold for voltage swell.Value": 253, + "Power Quality.Time threshold for voltage swell.Value": 30, + "Power Quality.Value threshold for PV voltage swell.Value": 248, + "Power Quality.Time threshold for PV voltage swell.Value": 2, + "Power Quality.Number of voltage sags in phase L1.L1 sag number": 0, + "Power Quality.Number of voltage sags in phase L2.L2 sag number": 0, + "Power Quality.Number of voltage sags in phase L3.L3 sag number": 0, + "Power Quality.Duration of last voltage sag in phase L1.L1 sag number": 0, + "Power Quality.Duration of last voltage sag in phase L2.L2 sag number": 0, + "Power Quality.Duration of last voltage sag in phase L3.L3 sag number": 0, + "Power Quality.Magnitude of last voltage sag in phase L1.L1 sag number": 0, + "Power Quality.Magnitude of last voltage sag in phase L2.L2 sag number": 0, + "Power Quality.Magnitude of last voltage sag in phase L3.L3 sag number": 0, + "Power Quality.L1 PV sag number.L1 sag number": 1, + "Power Quality.L2 PV sag number.L2 sag number": 3, + "Power Quality.L3 PV sag number.L3 sag number": 1, + "Power Quality.L1 Short sag number.L1 sag number": 7958, + "Power Quality.L2 Short sag number.L2 sag number": 0, + "Power Quality.L3 Short sag number.L3 sag number": 0, + "Power Quality.Number of voltage swells in phase L1.L1 swell number": 0, + "Power Quality.Number of voltage swells in phase L2.L2 swell number": 0, + "Power Quality.Number of voltage swells in phase L3.L3 swell number": 0, + "Power Quality.Duration of last voltage swell in phase L1.L1 sag number": 0, + "Power Quality.Duration of last voltage swell in phase L2.L2 sag number": 0, + "Power Quality.Duration of last voltage swell in phase L3.L3 sag number": 0, + "Power Quality.Magnitude of last voltage swell in phase L1.L1 sag number": 0, + "Power Quality.Magnitude of last voltage swell in phase L2.L2 sag number": 0, + "Power Quality.Magnitude of last voltage swell in phase L3.L3 sag number": 0, + "Power Quality.L1 PV swell number.L1 swell number": 0, + "Power Quality.L2 PV swell number.L2 swell number": 0, + "Power Quality.L3 PV swell number.L3 swell number": 0, + "Power Quality.Number of power failures in any phases.Number of power failures in any phases": 2, + "Power Quality.Number of long power failures in any phases.Number of long power failures in any phases": 13, + "Event Record.Standard event log code.Standard event log code": 1, + "Event Record.0-Standard.Buffer": { + "0": [ + "2026-03-31 02 23:58:24 00,FF88,80", + 5 + ], + "1": [ + "2026-04-01 03 00:00:04 00,FF88,80", + 18 + ], + "2": [ + "2026-04-01 03 00:00:04 00,FF88,80", + 20 + ], + "3": [ + "2026-04-01 03 00:17:59 00,FF88,80", + 17 + ], + "4": [ + "2026-04-01 03 00:35:01 00,FF88,80", + 4 + ], + "5": [ + "2026-04-30 04 23:59:25 00,FF88,80", + 5 + ], + "6": [ + "2026-05-01 05 00:01:04 00,FF88,80", + 18 + ], + "7": [ + "2026-05-01 05 00:01:04 00,FF88,80", + 20 + ], + "8": [ + "2026-05-01 05 00:19:16 00,FF88,80", + 17 + ], + "9": [ + "2026-05-01 05 00:31:29 00,FF88,80", + 1 + ], + "10": [ + "2026-05-01 05 13:44:03 00,FF88,80", + 2 + ], + "11": [ + "2026-05-01 05 13:57:22 00,FF88,80", + 4 + ], + "12": [ + "2026-05-31 07 23:59:00 00,FF88,80", + 5 + ], + "13": [ + "2026-06-01 01 00:05:30 00,FF88,80", + 1 + ], + "14": [ + "2026-06-01 01 07:29:53 00,FF88,80", + 2 + ], + "15": [ + "2026-06-01 01 07:31:28 00,FF88,80", + 4 + ], + "16": [ + "2025-10-22 03 17:00:28 00,FF88,80", + 5 + ], + "17": [ + "2025-10-22 03 17:02:22 00,FF88,80", + 17 + ], + "18": [ + "2025-10-22 03 17:03:07 00,FF88,80", + 18 + ], + "19": [ + "2025-10-22 03 17:03:07 00,FF88,80", + 20 + ], + "20": [ + "2025-10-22 03 17:03:08 00,FF88,80", + 2 + ], + "21": [ + "2025-10-22 03 17:05:36 00,FF88,80", + 17 + ], + "22": [ + "2025-10-22 03 17:05:54 00,FF88,80", + 18 + ], + "23": [ + "2025-10-22 03 17:05:54 00,FF88,80", + 20 + ], + "24": [ + "2025-10-22 03 17:05:55 00,FF88,80", + 2 + ], + "25": [ + "2025-10-22 03 17:20:45 00,FF88,80", + 17 + ], + "26": [ + "2025-10-22 03 17:22:40 00,FF88,80", + 18 + ], + "27": [ + "2025-10-22 03 17:22:40 00,FF88,80", + 20 + ], + "28": [ + "2025-10-22 03 17:22:41 00,FF88,80", + 2 + ], + "29": [ + "2025-10-22 03 17:50:38 00,FF88,80", + 17 + ], + "30": [ + "2025-10-22 03 17:53:45 00,FF88,80", + 4 + ], + "31": [ + "2025-10-31 05 23:58:25 00,FFC4,00", + 5 + ], + "32": [ + "2025-11-01 06 00:00:05 00,FFC4,00", + 18 + ], + "33": [ + "2025-11-01 06 00:00:05 00,FFC4,00", + 20 + ], + "34": [ + "2025-11-01 06 00:00:06 00,FFC4,00", + 2 + ], + "35": [ + "2025-11-01 06 01:36:49 00,FFC4,00", + 1 + ], + "36": [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 2 + ], + "37": [ + "2025-11-01 06 15:12:33 00,FFC4,00", + 17 + ], + "38": [ + "2025-11-01 06 15:17:14 00,FFC4,00", + 18 + ], + "39": [ + "2025-11-01 06 15:17:14 00,FFC4,00", + 20 + ], + "40": [ + "2025-11-01 06 15:38:52 00,FFC4,00", + 17 + ], + "41": [ + "2025-11-01 06 15:46:23 00,FFC4,00", + 18 + ], + "42": [ + "2025-11-01 06 15:46:23 00,FFC4,00", + 20 + ], + "43": [ + "2025-11-01 06 15:56:56 00,FFC4,00", + 1 + ], + "44": [ + "2025-11-01 06 15:57:55 00,FFC4,00", + 2 + ], + "45": [ + "2025-11-01 06 16:01:36 00,FFC4,00", + 17 + ], + "46": [ + "2025-11-01 06 16:01:51 00,FFC4,00", + 18 + ], + "47": [ + "2025-11-01 06 16:01:51 00,FFC4,00", + 20 + ], + "48": [ + "2025-11-01 06 16:07:14 00,FFC4,00", + 17 + ], + "49": [ + "2025-11-01 06 16:07:30 00,FFC4,00", + 18 + ], + "50": [ + "2025-11-01 06 16:07:30 00,FFC4,00", + 20 + ], + "51": [ + "2025-11-01 06 16:09:50 00,FFC4,00", + 17 + ], + "52": [ + "2025-11-01 06 16:10:15 00,FFC4,00", + 18 + ], + "53": [ + "2025-11-01 06 16:10:15 00,FFC4,00", + 20 + ], + "54": [ + "2025-11-01 06 16:11:56 00,FFC4,00", + 17 + ], + "55": [ + "2025-11-01 06 16:12:10 00,FFC4,00", + 18 + ], + "56": [ + "2025-11-01 06 16:12:10 00,FFC4,00", + 20 + ], + "57": [ + "2025-11-01 06 16:14:19 00,FFC4,00", + 17 + ], + "58": [ + "2025-11-01 06 16:14:33 00,FFC4,00", + 18 + ], + "59": [ + "2025-11-01 06 16:14:33 00,FFC4,00", + 20 + ], + "60": [ + "2025-11-01 06 16:19:44 00,FFC4,00", + 17 + ], + "61": [ + "2025-11-01 06 16:19:58 00,FFC4,00", + 18 + ], + "62": [ + "2025-11-01 06 16:19:58 00,FFC4,00", + 20 + ], + "63": [ + "2025-11-01 06 16:37:35 00,FFC4,00", + 17 + ], + "64": [ + "2025-11-01 06 16:37:48 00,FFC4,00", + 18 + ], + "65": [ + "2025-11-01 06 16:37:48 00,FFC4,00", + 20 + ], + "66": [ + "2025-11-01 06 16:42:08 00,FFC4,00", + 17 + ], + "67": [ + "2025-11-01 06 16:42:22 00,FFC4,00", + 18 + ], + "68": [ + "2025-11-01 06 16:42:22 00,FFC4,00", + 20 + ], + "69": [ + "2025-11-01 06 16:42:28 00,FFC4,00", + 1 + ], + "70": [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 2 + ], + "71": [ + "2025-11-08 06 15:31:48 00,FFC4,00", + 1 + ], + "72": [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 2 + ], + "73": [ + "2025-11-08 06 16:47:04 00,FFC4,00", + 17 + ], + "74": [ + "2025-11-08 06 16:59:12 00,FFC4,00", + 18 + ], + "75": [ + "2025-11-08 06 16:59:12 00,FFC4,00", + 20 + ], + "76": [ + "2025-11-08 06 16:59:13 00,FFC4,00", + 2 + ], + "77": [ + "2025-11-08 06 17:02:51 00,FFC4,00", + 17 + ], + "78": [ + "2025-11-08 06 17:03:05 00,FFC4,00", + 18 + ], + "79": [ + "2025-11-08 06 17:03:05 00,FFC4,00", + 20 + ], + "80": [ + "2025-11-08 06 17:03:06 00,FFC4,00", + 2 + ], + "81": [ + "2025-11-08 06 17:03:29 00,FFC4,00", + 17 + ], + "82": [ + "2025-11-08 06 17:03:44 00,FFC4,00", + 18 + ], + "83": [ + "2025-11-08 06 17:03:44 00,FFC4,00", + 20 + ], + "84": [ + "2025-11-08 06 17:03:45 00,FFC4,00", + 2 + ], + "85": [ + "2025-11-08 06 17:04:05 00,FFC4,00", + 17 + ], + "86": [ + "2025-11-08 06 17:04:20 00,FFC4,00", + 18 + ], + "87": [ + "2025-11-08 06 17:04:20 00,FFC4,00", + 20 + ], + "88": [ + "2025-11-08 06 17:04:21 00,FFC4,00", + 2 + ], + "89": [ + "2025-11-08 06 17:28:54 00,FFC4,00", + 1 + ], + "90": [ + "2025-11-08 06 17:29:49 00,FFC4,00", + 17 + ], + "91": [ + "2025-11-08 06 17:30:04 00,FFC4,00", + 18 + ], + "92": [ + "2025-11-08 06 17:30:04 00,FFC4,00", + 20 + ], + "93": [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 2 + ], + "94": [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 1 + ], + "95": [ + "2025-11-08 06 20:12:40 00,FFC4,00", + 2 + ], + "96": [ + "2025-11-08 06 21:37:53 00,FFC4,00", + 10 + ], + "97": [ + "2025-11-08 06 22:19:46 00,FFC4,00", + 1 + ], + "98": [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 2 + ], + "99": [ + "2025-11-09 07 15:14:43 00,FFC4,00", + 1 + ] + }, + "Event Record.0-Standard.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.0.255", + 2, + 0 + ] + }, + "Event Record.0-Standard.Capture period": 0, + "Event Record.0-Standard.Sort method": 1, + "Event Record.0-Standard.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Event Record.0-Standard.Entries in use": 100, + "Event Record.0-Standard.Profile entries": 100, + "Event Record.Fraud event log code.Fraud event log code": 47, + "Event Record.1-Fraud detect.Buffer": { + "0": [ + "2025-09-22 01 11:10:01 00,FF88,80", + 40 + ], + "1": [ + "2025-09-29 01 14:54:25 00,FF88,80", + 47 + ], + "2": [ + "2025-09-29 01 14:55:12 00,FF88,80", + 46 + ], + "3": [ + "2025-09-29 01 16:09:53 00,FF88,80", + 46 + ], + "4": [ + "2025-09-30 02 13:56:08 00,FF88,80", + 44 + ], + "5": [ + "2025-09-30 02 14:52:40 00,FF88,80", + 45 + ], + "6": [ + "2025-09-30 02 16:18:25 00,FF88,81", + 44 + ], + "7": [ + "2025-09-30 02 16:48:22 00,FF88,81", + 45 + ], + "8": [ + "2025-10-20 01 15:44:59 00,FF88,80", + 41 + ], + "9": [ + "2025-10-20 01 15:45:02 00,FF88,80", + 40 + ], + "10": [ + "2025-10-20 01 15:45:19 00,FF88,80", + 41 + ], + "11": [ + "2025-10-20 01 15:46:10 00,FF88,80", + 40 + ], + "12": [ + "2025-10-20 01 15:46:30 00,FF88,80", + 41 + ], + "13": [ + "2025-10-20 01 17:06:22 00,FF88,80", + 47 + ], + "14": [ + "2025-10-20 01 17:12:00 00,FF88,80", + 47 + ], + "15": [ + "2025-10-20 01 17:57:50 00,FF88,80", + 47 + ], + "16": [ + "2025-10-20 01 17:59:25 00,FF88,80", + 47 + ], + "17": [ + "2026-03-01 07 01:28:18 00,FFC4,00", + 46 + ], + "18": [ + "2026-06-01 01 00:06:33 00,FF88,80", + 40 + ], + "19": [ + "2025-10-22 03 17:11:25 00,FF88,80", + 41 + ], + "20": [ + "2025-11-01 06 20:00:05 00,FFC4,00", + 40 + ], + "21": [ + "2025-11-08 06 19:51:43 00,FFC4,00", + 47 + ], + "22": [ + "2025-11-08 06 20:15:18 00,FFC4,00", + 47 + ] + }, + "Event Record.1-Fraud detect.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.1.255", + 2, + 0 + ] + }, + "Event Record.1-Fraud detect.Capture period": 0, + "Event Record.1-Fraud detect.Sort method": 1, + "Event Record.1-Fraud detect.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Event Record.1-Fraud detect.Entries in use": 23, + "Event Record.1-Fraud detect.Profile entries": 30, + "Event Record.Event Counter Meter Readings E(73).E-meter Logic device name": 6, + "Event Record.Event Counter Meter Readings G(74).E-meter Logic device name": 0, + "Event Record.Event Counter Interval Data E(75).E-meter Logic device name": 331, + "Event Record.Event Counter Interval Data G(76).E-meter Logic device name": 0, + "Event Record.Event Counter Communication Sessions Log.E-meter Logic device name": 0, + "Event Record.Communication event log code.Communication event log code": 71, + "Event Record.2-Com log.Buffer": { + "0": [ + "2025-09-22 01 11:10:26 00,FF88,80", + 71, + 0 + ], + "1": [ + "2025-09-22 01 11:11:10 00,FF88,80", + 71, + 0 + ], + "2": [ + "2025-09-22 01 11:12:31 00,FF88,80", + 71, + 0 + ], + "3": [ + "2025-09-22 01 11:13:58 00,FF88,80", + 71, + 0 + ], + "4": [ + "2025-09-22 01 11:13:58 00,FF88,80", + 72, + 0 + ], + "5": [ + "2025-09-24 03 11:02:58 00,FF88,80", + 71, + 0 + ], + "6": [ + "2025-09-24 03 11:22:08 00,FF88,80", + 71, + 0 + ], + "7": [ + "2025-09-24 03 11:22:08 00,FF88,80", + 72, + 0 + ], + "8": [ + "2025-09-24 03 11:22:08 00,FF88,80", + 73, + 1 + ], + "9": [ + "2025-09-24 03 11:22:08 00,FF88,80", + 75, + 61 + ], + "10": [ + "2025-09-24 03 13:42:53 00,FF88,80", + 71, + 0 + ], + "11": [ + "2025-09-24 03 13:56:47 00,FF88,80", + 71, + 0 + ], + "12": [ + "2025-09-24 03 13:56:47 00,FF88,80", + 72, + 0 + ], + "13": [ + "2025-09-24 03 13:56:47 00,FF88,80", + 73, + 1 + ], + "14": [ + "2025-09-24 03 13:56:47 00,FF88,80", + 75, + 67 + ], + "15": [ + "2025-09-24 03 15:26:06 00,FF88,80", + 71, + 0 + ], + "16": [ + "2025-09-25 04 08:33:13 00,FF88,80", + 71, + 0 + ], + "17": [ + "2025-09-25 04 13:43:01 00,FF88,80", + 71, + 0 + ], + "18": [ + "2025-09-27 06 11:43:13 00,FF88,80", + 71, + 0 + ], + "19": [ + "2025-09-27 06 11:51:22 00,FF88,80", + 71, + 0 + ], + "20": [ + "2025-09-27 06 11:51:22 00,FF88,80", + 72, + 0 + ], + "21": [ + "2025-09-27 06 11:51:22 00,FF88,80", + 73, + 1 + ], + "22": [ + "2025-09-27 06 11:51:22 00,FF88,80", + 75, + 126 + ], + "23": [ + "2025-09-28 07 12:01:00 00,FF88,80", + 71, + 0 + ], + "24": [ + "2025-09-28 07 12:38:25 00,FF88,80", + 71, + 0 + ], + "25": [ + "2025-09-28 07 12:38:25 00,FF88,80", + 72, + 0 + ], + "26": [ + "2025-09-28 07 12:38:25 00,FF88,80", + 73, + 1 + ], + "27": [ + "2025-09-28 07 12:38:25 00,FF88,80", + 75, + 184 + ], + "28": [ + "2025-09-28 07 17:01:47 00,FF88,80", + 71, + 0 + ], + "29": [ + "2025-09-28 07 17:19:33 00,FF88,80", + 71, + 0 + ], + "30": [ + "2025-09-29 01 14:51:28 00,FF88,80", + 71, + 0 + ], + "31": [ + "2025-09-29 01 14:52:16 00,FF88,80", + 71, + 0 + ], + "32": [ + "2025-09-29 01 14:54:31 00,FF88,80", + 71, + 0 + ], + "33": [ + "2025-09-29 01 14:59:37 00,FF88,80", + 71, + 0 + ], + "34": [ + "2025-09-29 01 15:39:57 00,FF88,80", + 71, + 0 + ], + "35": [ + "2025-09-29 01 15:39:57 00,FF88,80", + 72, + 0 + ], + "36": [ + "2025-09-29 01 15:39:57 00,FF88,80", + 73, + 1 + ], + "37": [ + "2025-09-29 01 15:39:57 00,FF88,80", + 75, + 314 + ], + "38": [ + "2025-09-29 01 16:15:59 00,FF88,80", + 71, + 0 + ], + "39": [ + "2025-09-30 02 17:12:31 00,FF88,81", + 71, + 0 + ], + "40": [ + "2025-09-30 02 17:22:25 00,FF88,81", + 71, + 0 + ], + "41": [ + "2025-09-30 02 17:23:09 00,FF88,81", + 71, + 0 + ], + "42": [ + "2025-09-30 02 17:42:58 00,FF88,81", + 71, + 0 + ], + "43": [ + "2025-09-30 02 17:49:06 00,FF88,81", + 71, + 0 + ], + "44": [ + "2025-09-30 02 17:49:26 00,FF88,81", + 71, + 0 + ], + "45": [ + "2025-09-30 02 18:58:56 00,FF88,81", + 71, + 0 + ], + "46": [ + "2025-10-20 01 15:36:15 00,FF88,80", + 71, + 0 + ], + "47": [ + "2025-10-20 01 15:41:33 00,FF88,80", + 71, + 0 + ], + "48": [ + "2025-10-20 01 15:45:22 00,FF88,80", + 71, + 0 + ], + "49": [ + "2025-10-20 01 18:20:19 00,FF88,80", + 71, + 0 + ], + "50": [ + "2025-10-20 01 18:25:44 00,FF88,80", + 71, + 0 + ], + "51": [ + "2025-10-20 01 18:25:44 00,FF88,80", + 72, + 0 + ], + "52": [ + "2025-10-21 02 08:59:59 00,FF88,80", + 71, + 0 + ], + "53": [ + "2025-10-21 02 09:06:22 00,FF88,80", + 71, + 0 + ], + "54": [ + "2025-10-21 02 09:48:16 00,FF88,80", + 71, + 0 + ], + "55": [ + "2025-10-21 02 09:49:44 00,FF88,80", + 71, + 0 + ], + "56": [ + "2025-10-21 02 10:50:11 00,FF88,80", + 71, + 0 + ], + "57": [ + "2025-10-21 02 11:06:27 00,FF88,80", + 71, + 0 + ], + "58": [ + "2025-10-21 02 10:45:35 00,FF88,80", + 71, + 0 + ], + "59": [ + "2025-10-21 02 10:45:43 00,FF88,80", + 71, + 0 + ], + "60": [ + "2025-10-21 02 10:45:58 00,FF88,80", + 71, + 0 + ], + "61": [ + "2025-10-21 02 10:46:05 00,FF88,80", + 71, + 0 + ], + "62": [ + "2025-10-21 02 10:46:14 00,FF88,80", + 71, + 0 + ], + "63": [ + "2025-10-21 02 10:46:38 00,FF88,80", + 71, + 0 + ], + "64": [ + "2025-10-21 02 10:46:54 00,FF88,80", + 71, + 0 + ], + "65": [ + "2025-10-21 02 10:47:11 00,FF88,80", + 71, + 0 + ], + "66": [ + "2025-10-21 02 10:49:11 00,FF88,80", + 71, + 0 + ], + "67": [ + "2025-10-21 02 10:49:11 00,FF88,80", + 72, + 0 + ], + "68": [ + "2025-10-21 02 10:49:17 00,FF88,80", + 71, + 0 + ], + "69": [ + "2025-10-21 02 10:49:47 00,FF88,80", + 72, + 0 + ], + "70": [ + "2025-10-21 02 11:00:54 00,FF88,80", + 71, + 0 + ], + "71": [ + "2025-10-25 06 00:00:12 00,FF88,80", + 71, + 0 + ], + "72": [ + "2025-11-01 06 00:00:02 00,FFC4,00", + 71, + 0 + ], + "73": [ + "2025-11-01 06 00:00:02 00,FFC4,00", + 72, + 0 + ], + "74": [ + "2025-11-01 06 00:00:03 00,FFC4,00", + 71, + 0 + ], + "75": [ + "2025-11-01 06 00:00:15 00,FFC4,00", + 71, + 0 + ], + "76": [ + "2025-10-21 02 12:31:27 00,FF88,80", + 71, + 0 + ], + "77": [ + "2025-10-21 02 12:31:27 00,FF88,80", + 72, + 0 + ], + "78": [ + "2025-10-21 02 12:31:27 00,FF88,80", + 73, + 2 + ], + "79": [ + "2025-10-21 02 13:33:05 00,FF88,80", + 71, + 0 + ], + "80": [ + "2025-10-21 02 13:43:33 00,FF88,80", + 71, + 0 + ], + "81": [ + "2025-10-21 02 14:05:45 00,FF88,80", + 71, + 0 + ], + "82": [ + "2025-10-21 02 14:05:56 00,FF88,80", + 71, + 0 + ], + "83": [ + "2025-10-21 02 14:06:35 00,FF88,80", + 71, + 0 + ], + "84": [ + "2025-10-21 02 14:25:59 00,FF88,80", + 71, + 0 + ], + "85": [ + "2025-11-01 06 00:06:46 00,FFC4,00", + 71, + 0 + ], + "86": [ + "2025-11-01 06 00:21:17 00,FFC4,00", + 71, + 0 + ], + "87": [ + "2025-11-01 06 00:21:17 00,FFC4,00", + 72, + 0 + ], + "88": [ + "2025-11-01 06 00:21:17 00,FFC4,00", + 73, + 2 + ], + "89": [ + "2025-11-01 06 00:21:17 00,FFC4,00", + 75, + 249 + ], + "90": [ + "2025-11-01 06 00:27:07 00,FFC4,00", + 71, + 0 + ], + "91": [ + "2025-11-01 06 00:29:28 00,FFC4,00", + 71, + 0 + ], + "92": [ + "2025-12-01 01 00:00:26 00,FFC4,00", + 71, + 0 + ], + "93": [ + "2026-01-01 04 00:00:13 00,FFC4,00", + 71, + 0 + ], + "94": [ + "2026-02-01 07 00:00:25 00,FFC4,00", + 71, + 0 + ], + "95": [ + "2026-03-01 07 00:00:10 00,FFC4,00", + 71, + 0 + ], + "96": [ + "2026-03-01 07 01:06:35 00,FFC4,00", + 71, + 0 + ], + "97": [ + "2026-03-01 07 01:06:35 00,FFC4,00", + 72, + 0 + ], + "98": [ + "2026-03-01 07 01:06:35 00,FFC4,00", + 73, + 3 + ], + "99": [ + "2026-03-01 07 01:06:35 00,FFC4,00", + 75, + 424 + ], + "100": [ + "2026-03-01 07 01:28:40 00,FFC4,00", + 71, + 0 + ], + "101": [ + "2026-04-01 03 00:00:58 00,FF88,80", + 71, + 0 + ], + "102": [ + "2026-04-01 03 00:01:08 00,FF88,80", + 71, + 0 + ], + "103": [ + "2026-04-01 03 00:01:37 00,FF88,80", + 71, + 0 + ], + "104": [ + "2026-05-01 05 00:03:03 00,FF88,80", + 71, + 0 + ], + "105": [ + "2026-05-01 05 13:44:09 00,FF88,80", + 71, + 0 + ], + "106": [ + "2026-06-01 01 00:05:25 00,FF88,80", + 71, + 0 + ], + "107": [ + "2026-06-01 01 00:05:25 00,FF88,80", + 72, + 0 + ], + "108": [ + "2026-06-01 01 00:05:25 00,FF88,80", + 73, + 4 + ], + "109": [ + "2026-06-01 01 07:23:35 00,FF88,80", + 71, + 0 + ], + "110": [ + "2026-06-01 01 07:24:17 00,FF88,80", + 71, + 0 + ], + "111": [ + "2026-06-01 01 07:30:00 00,FF88,80", + 71, + 0 + ], + "112": [ + "2025-10-22 03 17:03:14 00,FF88,80", + 71, + 0 + ], + "113": [ + "2025-10-22 03 17:05:58 00,FF88,80", + 71, + 0 + ], + "114": [ + "2025-10-22 03 17:23:50 00,FF88,80", + 71, + 0 + ], + "115": [ + "2025-11-01 06 00:00:13 00,FFC4,00", + 71, + 0 + ], + "116": [ + "2025-11-01 06 14:56:17 00,FFC4,00", + 71, + 0 + ], + "117": [ + "2025-11-01 06 15:18:41 00,FFC4,00", + 71, + 0 + ], + "118": [ + "2025-11-01 06 15:47:41 00,FFC4,00", + 71, + 0 + ], + "119": [ + "2025-11-01 06 16:04:33 00,FFC4,00", + 71, + 0 + ], + "120": [ + "2025-11-01 06 16:08:02 00,FFC4,00", + 71, + 0 + ], + "121": [ + "2025-11-01 06 16:10:06 00,FFC4,00", + 71, + 0 + ], + "122": [ + "2025-11-01 06 16:10:29 00,FFC4,00", + 71, + 0 + ], + "123": [ + "2025-11-01 06 16:12:00 00,FFC4,00", + 71, + 0 + ], + "124": [ + "2025-11-01 06 16:12:34 00,FFC4,00", + 71, + 0 + ], + "125": [ + "2025-11-01 06 16:14:24 00,FFC4,00", + 71, + 0 + ], + "126": [ + "2025-11-01 06 16:15:21 00,FFC4,00", + 71, + 0 + ], + "127": [ + "2025-11-01 06 16:19:49 00,FFC4,00", + 71, + 0 + ], + "128": [ + "2025-11-01 06 16:19:49 00,FFC4,00", + 73, + 1 + ], + "129": [ + "2025-11-01 06 16:20:33 00,FFC4,00", + 71, + 0 + ], + "130": [ + "2025-11-01 06 16:37:39 00,FFC4,00", + 71, + 0 + ], + "131": [ + "2025-11-01 06 16:37:39 00,FFC4,00", + 73, + 1 + ], + "132": [ + "2025-11-01 06 16:38:35 00,FFC4,00", + 71, + 0 + ], + "133": [ + "2025-11-01 06 16:42:12 00,FFC4,00", + 71, + 0 + ], + "134": [ + "2025-11-01 06 16:42:12 00,FFC4,00", + 73, + 1 + ], + "135": [ + "2025-11-08 06 15:28:28 00,FFC4,00", + 71, + 0 + ], + "136": [ + "2025-11-08 06 15:31:30 00,FFC4,00", + 71, + 0 + ], + "137": [ + "2025-11-08 06 15:31:43 00,FFC4,00", + 71, + 0 + ], + "138": [ + "2025-11-08 06 15:32:02 00,FFC4,00", + 71, + 0 + ], + "139": [ + "2025-11-08 06 15:32:22 00,FFC4,00", + 71, + 0 + ], + "140": [ + "2025-11-08 06 15:32:34 00,FFC4,00", + 71, + 0 + ], + "141": [ + "2025-11-08 06 15:35:18 00,FFC4,00", + 71, + 0 + ], + "142": [ + "2025-11-08 06 16:29:39 00,FFC4,00", + 71, + 0 + ], + "143": [ + "2025-11-08 06 16:31:04 00,FFC4,00", + 71, + 0 + ], + "144": [ + "2025-11-08 06 16:57:37 00,FFC4,00", + 71, + 0 + ], + "145": [ + "2025-11-08 06 16:59:16 00,FFC4,00", + 71, + 0 + ], + "146": [ + "2025-11-08 06 17:02:56 00,FFC4,00", + 71, + 0 + ], + "147": [ + "2025-11-08 06 17:03:09 00,FFC4,00", + 71, + 0 + ], + "148": [ + "2025-11-08 06 17:03:35 00,FFC4,00", + 71, + 0 + ], + "149": [ + "2025-11-08 06 17:03:50 00,FFC4,00", + 71, + 0 + ], + "150": [ + "2025-11-08 06 17:04:10 00,FFC4,00", + 71, + 0 + ], + "151": [ + "2025-11-08 06 17:04:23 00,FFC4,00", + 71, + 0 + ], + "152": [ + "2025-11-08 06 17:29:55 00,FFC4,00", + 71, + 0 + ], + "153": [ + "2025-11-08 06 17:29:55 00,FFC4,00", + 72, + 0 + ], + "154": [ + "2025-11-08 06 17:30:11 00,FFC4,00", + 71, + 0 + ], + "155": [ + "2025-11-08 06 17:43:47 00,FFC4,00", + 71, + 0 + ], + "156": [ + "2025-11-08 06 17:48:22 00,FFC4,00", + 71, + 0 + ], + "157": [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 71, + 0 + ], + "158": [ + "2025-11-08 06 20:13:05 00,FFC4,00", + 71, + 0 + ], + "159": [ + "2025-11-08 06 20:20:35 00,FFC4,00", + 71, + 0 + ], + "160": [ + "2025-11-08 06 20:21:12 00,FFC4,00", + 71, + 0 + ], + "161": [ + "2025-11-08 06 20:38:04 00,FFC4,00", + 71, + 0 + ], + "162": [ + "2025-11-08 06 20:38:12 00,FFC4,00", + 71, + 0 + ], + "163": [ + "2025-11-08 06 21:37:29 00,FFC4,00", + 71, + 0 + ], + "164": [ + "2025-11-08 06 21:37:29 00,FFC4,00", + 72, + 0 + ], + "165": [ + "2025-11-08 06 21:37:31 00,FFC4,00", + 71, + 0 + ], + "166": [ + "2025-11-08 06 21:40:32 00,FFC4,00", + 71, + 0 + ], + "167": [ + "2025-11-08 06 21:40:32 00,FFC4,00", + 72, + 0 + ], + "168": [ + "2025-11-09 07 14:42:59 00,FFC4,00", + 71, + 0 + ], + "169": [ + "2025-11-09 07 15:14:40 00,FFC4,00", + 71, + 0 + ], + "170": [ + "2025-11-10 01 00:13:22 00,FFC4,00", + 71, + 0 + ], + "171": [ + "2025-11-10 01 00:16:14 00,FFC4,00", + 71, + 0 + ], + "172": [ + "2025-11-10 01 00:17:09 00,FFC4,00", + 71, + 0 + ], + "173": [ + "2025-11-10 01 00:22:55 00,FFC4,00", + 71, + 0 + ], + "174": [ + "2025-11-10 01 00:34:55 00,FFC4,00", + 71, + 0 + ], + "175": [ + "2025-11-10 01 00:34:55 00,FFC4,00", + 72, + 0 + ], + "176": [ + "2025-11-10 01 00:34:55 00,FFC4,00", + 73, + 6 + ], + "177": [ + "2025-11-10 01 00:34:55 00,FFC4,00", + 75, + 330 + ], + "178": [ + "2025-11-10 01 15:35:32 00,FFC4,00", + 71, + 0 + ], + "179": [ + "2025-11-10 01 15:37:25 00,FFC4,00", + 71, + 0 + ], + "180": [ + "2025-11-10 01 15:37:25 00,FFC4,00", + 72, + 0 + ], + "181": [ + "2025-11-10 01 15:38:35 00,FFC4,00", + 71, + 0 + ] + }, + "Event Record.2-Com log.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.4.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.15.4.255", + 2, + 0 + ] + }, + "Event Record.2-Com log.Capture period": 0, + "Event Record.2-Com log.Sort method": 1, + "Event Record.2-Com log.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Event Record.2-Com log.Entries in use": 182, + "Event Record.2-Com log.Profile entries": 2190, + "Event Record.Power quality event log code.Power quality event log code": 90, + "Event Record.3-Power quality.Buffer": { + "0": [ + "2025-09-30 02 16:18:25 00,FF88,80", + 86 + ], + "1": [ + "2025-09-30 02 16:19:48 00,FF88,81", + 90 + ], + "2": [ + "2025-09-30 02 16:20:37 00,FF88,81", + 86 + ], + "3": [ + "2025-09-30 02 16:45:27 00,FF88,81", + 90 + ], + "4": [ + "2025-09-30 02 16:48:22 00,FF88,81", + 86 + ], + "5": [ + "2025-09-30 02 16:48:22 00,FF88,81", + 90 + ], + "6": [ + "2025-09-30 02 16:48:22 00,FF88,81", + 91 + ], + "7": [ + "2025-09-30 02 16:48:22 00,FF88,81", + 92 + ], + "8": [ + "2025-10-20 01 12:38:43 00,FF88,80", + 86 + ], + "9": [ + "2025-10-20 01 12:38:43 00,FF88,80", + 87 + ], + "10": [ + "2025-10-20 01 12:38:43 00,FF88,80", + 88 + ], + "11": [ + "2025-10-20 01 15:30:04 00,FF88,80", + 90 + ], + "12": [ + "2025-10-20 01 15:30:04 00,FF88,80", + 91 + ], + "13": [ + "2025-10-20 01 15:30:04 00,FF88,80", + 92 + ], + "14": [ + "2025-10-20 01 18:25:49 00,FF88,80", + 86 + ], + "15": [ + "2025-10-20 01 18:25:49 00,FF88,80", + 87 + ], + "16": [ + "2025-10-20 01 18:25:49 00,FF88,80", + 88 + ], + "17": [ + "2025-10-21 02 08:59:49 00,FF88,80", + 90 + ], + "18": [ + "2025-10-21 02 08:59:49 00,FF88,80", + 91 + ], + "19": [ + "2025-10-21 02 08:59:49 00,FF88,80", + 92 + ], + "20": [ + "2025-10-21 02 09:06:00 00,FF88,80", + 86 + ], + "21": [ + "2025-10-21 02 09:06:00 00,FF88,80", + 87 + ], + "22": [ + "2025-10-21 02 09:06:00 00,FF88,80", + 88 + ], + "23": [ + "2025-10-21 02 09:06:13 00,FF88,80", + 90 + ], + "24": [ + "2025-10-21 02 09:48:21 00,FF88,80", + 86 + ], + "25": [ + "2025-10-21 02 09:48:44 00,FF88,80", + 90 + ], + "26": [ + "2025-10-21 02 09:48:44 00,FF88,80", + 91 + ], + "27": [ + "2025-10-21 02 09:48:44 00,FF88,80", + 92 + ], + "28": [ + "2025-10-21 02 12:35:03 00,FF88,80", + 86 + ], + "29": [ + "2025-10-21 02 12:35:03 00,FF88,80", + 87 + ], + "30": [ + "2025-10-21 02 12:35:03 00,FF88,80", + 88 + ], + "31": [ + "2025-10-21 02 13:32:55 00,FF88,80", + 90 + ], + "32": [ + "2025-10-21 02 13:32:55 00,FF88,80", + 91 + ], + "33": [ + "2025-10-21 02 13:32:55 00,FF88,80", + 92 + ], + "34": [ + "2026-05-01 05 00:31:29 00,FF88,80", + 86 + ], + "35": [ + "2026-05-01 05 00:31:29 00,FF88,80", + 87 + ], + "36": [ + "2026-05-01 05 00:31:29 00,FF88,80", + 88 + ], + "37": [ + "2026-05-01 05 13:44:03 00,FF88,80", + 90 + ], + "38": [ + "2026-05-01 05 13:44:03 00,FF88,80", + 91 + ], + "39": [ + "2026-05-01 05 13:44:03 00,FF88,80", + 92 + ], + "40": [ + "2026-06-01 01 00:05:30 00,FF88,80", + 86 + ], + "41": [ + "2026-06-01 01 00:05:30 00,FF88,80", + 87 + ], + "42": [ + "2026-06-01 01 00:05:30 00,FF88,80", + 88 + ], + "43": [ + "2026-06-01 01 07:22:30 00,FF88,80", + 90 + ], + "44": [ + "2026-06-01 01 07:24:19 00,FF88,80", + 86 + ], + "45": [ + "2026-06-01 01 07:29:53 00,FF88,80", + 90 + ], + "46": [ + "2026-06-01 01 07:29:53 00,FF88,80", + 91 + ], + "47": [ + "2026-06-01 01 07:29:53 00,FF88,80", + 92 + ], + "48": [ + "2025-11-01 06 01:36:49 00,FFC4,00", + 86 + ], + "49": [ + "2025-11-01 06 01:36:49 00,FFC4,00", + 87 + ], + "50": [ + "2025-11-01 06 01:36:49 00,FFC4,00", + 88 + ], + "51": [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 90 + ], + "52": [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 91 + ], + "53": [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 92 + ], + "54": [ + "2025-11-01 06 15:56:58 00,FFC4,00", + 88 + ], + "55": [ + "2025-11-01 06 15:57:04 00,FFC4,00", + 87 + ], + "56": [ + "2025-11-01 06 15:57:53 00,FFC4,00", + 91 + ], + "57": [ + "2025-11-01 06 15:57:55 00,FFC4,00", + 92 + ], + "58": [ + "2025-11-01 06 16:42:28 00,FFC4,00", + 86 + ], + "59": [ + "2025-11-01 06 16:42:28 00,FFC4,00", + 87 + ], + "60": [ + "2025-11-01 06 16:42:28 00,FFC4,00", + 88 + ], + "61": [ + "2025-11-01 06 16:47:20 00,FFC4,00", + 81 + ], + "62": [ + "2025-11-01 06 16:47:20 00,FFC4,00", + 82 + ], + "63": [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 90 + ], + "64": [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 91 + ], + "65": [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 92 + ], + "66": [ + "2025-11-08 06 15:31:48 00,FFC4,00", + 86 + ], + "67": [ + "2025-11-08 06 15:31:48 00,FFC4,00", + 87 + ], + "68": [ + "2025-11-08 06 15:31:48 00,FFC4,00", + 88 + ], + "69": [ + "2025-11-08 06 15:32:00 00,FFC4,00", + 90 + ], + "70": [ + "2025-11-08 06 15:32:24 00,FFC4,00", + 86 + ], + "71": [ + "2025-11-08 06 15:32:32 00,FFC4,00", + 90 + ], + "72": [ + "2025-11-08 06 16:29:47 00,FFC4,00", + 86 + ], + "73": [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 90 + ], + "74": [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 91 + ], + "75": [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 92 + ], + "76": [ + "2025-11-08 06 17:28:56 00,FFC4,00", + 87 + ], + "77": [ + "2025-11-08 06 17:28:59 00,FFC4,00", + 88 + ], + "78": [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 86 + ], + "79": [ + "2025-11-08 06 20:12:40 00,FFC4,00", + 90 + ], + "80": [ + "2025-11-08 06 20:12:40 00,FFC4,00", + 91 + ], + "81": [ + "2025-11-08 06 20:12:40 00,FFC4,00", + 92 + ], + "82": [ + "2025-11-08 06 20:39:01 00,FFC4,00", + 81 + ], + "83": [ + "2025-11-08 06 20:39:41 00,FFC4,00", + 81 + ], + "84": [ + "2025-11-08 06 22:19:46 00,FFC4,00", + 86 + ], + "85": [ + "2025-11-08 06 22:19:46 00,FFC4,00", + 87 + ], + "86": [ + "2025-11-08 06 22:19:46 00,FFC4,00", + 88 + ], + "87": [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 90 + ], + "88": [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 91 + ], + "89": [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 92 + ], + "90": [ + "2025-11-09 07 15:14:43 00,FFC4,00", + 86 + ], + "91": [ + "2025-11-09 07 15:14:43 00,FFC4,00", + 87 + ], + "92": [ + "2025-11-09 07 15:14:43 00,FFC4,00", + 88 + ], + "93": [ + "2025-11-09 07 20:00:04 00,FFC4,00", + 90 + ], + "94": [ + "2025-11-09 07 20:34:00 00,FFC4,00", + 86 + ], + "95": [ + "2025-11-09 07 20:47:21 00,FFC4,00", + 90 + ], + "96": [ + "2025-11-09 07 23:10:14 00,FFC4,00", + 86 + ], + "97": [ + "2025-11-10 01 00:00:58 00,FFC4,00", + 90 + ], + "98": [ + "2025-11-10 01 00:35:00 00,FFC4,00", + 86 + ], + "99": [ + "2025-11-10 01 15:34:07 00,FFC4,00", + 90 + ] + }, + "Event Record.3-Power quality.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.5.255", + 2, + 0 + ] + }, + "Event Record.3-Power quality.Capture period": 0, + "Event Record.3-Power quality.Sort method": 1, + "Event Record.3-Power quality.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Event Record.3-Power quality.Entries in use": 100, + "Event Record.3-Power quality.Profile entries": 100, + "Event Record.Power quality extended event log code.Power quality extended event log code": 0, + "Event Record.Power quality extended magnitude.Power quality extended magnitude": 0, + "Event Record.Power quality extended duration.Power quality extended duration": 0, + "Event Record.4-Power quality extended.Buffer": {}, + "Event Record.4-Power quality extended.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:96.11.7.255", + 2, + 0 + ], + "2": [ + 1, + "0-0:96.11.20.255", + 2, + 0 + ], + "3": [ + 1, + "0-0:96.11.21.255", + 2, + 0 + ] + }, + "Event Record.4-Power quality extended.Capture period": 0, + "Event Record.4-Power quality extended.Sort method": 1, + "Event Record.4-Power quality extended.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Event Record.4-Power quality extended.Entries in use": 0, + "Event Record.4-Power quality extended.Profile entries": 100, + "Event Record.M-BUS event log code.M-BUS event log code": 0, + "Event Record.5-MBus.Buffer": {}, + "Event Record.5-MBus.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 1, + "0-4:96.11.3.255", + 2, + 0 + ] + }, + "Event Record.5-MBus.Capture period": 0, + "Event Record.5-MBus.Sort method": 1, + "Event Record.5-MBus.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Event Record.5-MBus.Entries in use": 0, + "Event Record.5-MBus.Profile entries": 60, + "Event Record.6-Power failure.Buffer": { + "0": [ + "2025-10-21 02 08:59:49 00,FF88,80", + 52439 + ], + "1": [ + "2025-10-21 02 09:48:44 00,FF88,80", + 2563 + ], + "2": [ + "2025-10-21 02 13:32:55 00,FF88,80", + 3471 + ], + "3": [ + "2026-05-01 05 13:44:03 00,FF88,80", + 47553 + ], + "4": [ + "2026-06-01 01 07:29:53 00,FF88,80", + 26662 + ], + "5": [ + "2025-11-01 06 14:55:01 00,FFC4,00", + 47891 + ], + "6": [ + "2025-11-08 06 15:28:17 00,FFC4,00", + 600348 + ], + "7": [ + "2025-11-08 06 16:30:58 00,FFC4,00", + 3549 + ], + "8": [ + "2025-11-08 06 20:12:11 00,FFC4,00", + 9793 + ], + "9": [ + "2025-11-09 07 14:39:11 00,FFC4,00", + 58764 + ] + }, + "Event Record.6-Power failure.Capture objects": { + "0": [ + 8, + "0-0:1.0.0.255", + 2, + 0 + ], + "1": [ + 3, + "0-0:96.7.19.255", + 2, + 0 + ] + }, + "Event Record.6-Power failure.Capture period": 0, + "Event Record.6-Power failure.Sort method": 1, + "Event Record.6-Power failure.Sort object": { + "0": [ + 0, + "0-0:0.0.0.0", + 0, + 0 + ] + }, + "Event Record.6-Power failure.Entries in use": 10, + "Event Record.6-Power failure.Profile entries": 10, + "Single Action Schedule.Phase Outage scheduler.Executed script": { + "0": [ + "0-0:10.1.108.255", + 1 + ] + }, + "Single Action Schedule.Phase Outage scheduler.Type": 1, + "Single Action Schedule.Phase Outage scheduler.Execution time": {}, + "Image Transfer.Image Transfer.Image block size": 1152, + "Image Transfer.Image Transfer.Image transferred blocks status": "1111111111111111111111111111111", + "Image Transfer.Image Transfer.Image first not transferred block number": 31, + "Image Transfer.Image Transfer.Image transfer enabled": 1, + "Image Transfer.Image Transfer.Image transfer status": 6, + "Image Transfer.Image Transfer.Image to activate info": { + "0": [ + 34576, + "KFM-03", + "7E74BA05F40E05B0F6E39B050A03B3A9C9DBB513AD836AE4775A34404D94338BF426DCB6B2F6902F22DFF21AD38EA1C1F8B816F34679F676C63C54FE710EA6F9" + ] + }, + "Image Transfer.LTE Image Transfer.Image block size": 1152, + "Image Transfer.LTE Image Transfer.Image transferred blocks status": "", + "Image Transfer.LTE Image Transfer.Image first not transferred block number": 0, + "Image Transfer.LTE Image Transfer.Image transfer enabled": 0, + "Image Transfer.LTE Image Transfer.Image transfer status": 0, + "Image Transfer.LTE Image Transfer.Image to activate info": {}, + "Image Transfer.MBUS Image Transfer channel 1.Image block size": 1152, + "Image Transfer.MBUS Image Transfer channel 1.Image transferred blocks status": "", + "Image Transfer.MBUS Image Transfer channel 1.Image first not transferred block number": 0, + "Image Transfer.MBUS Image Transfer channel 1.Image transfer enabled": 0, + "Image Transfer.MBUS Image Transfer channel 1.Image transfer status": 0, + "Image Transfer.MBUS Image Transfer channel 1.Image to activate info": {}, + "Image Transfer.Firmware upgrade status on MBus level.nan": "ScopeOfAccessViolated", + "Image Transfer.MBUS Image Transfer channel 2.Image block size": 1152, + "Image Transfer.MBUS Image Transfer channel 2.Image transferred blocks status": "", + "Image Transfer.MBUS Image Transfer channel 2.Image first not transferred block number": 0, + "Image Transfer.MBUS Image Transfer channel 2.Image transfer enabled": 0, + "Image Transfer.MBUS Image Transfer channel 2.Image transfer status": 0, + "Image Transfer.MBUS Image Transfer channel 2.Image to activate info": {}, + "Image Transfer.MBUS Image Transfer channel 3.Image block size": 1152, + "Image Transfer.MBUS Image Transfer channel 3.Image transferred blocks status": "", + "Image Transfer.MBUS Image Transfer channel 3.Image first not transferred block number": 0, + "Image Transfer.MBUS Image Transfer channel 3.Image transfer enabled": 0, + "Image Transfer.MBUS Image Transfer channel 3.Image transfer status": 0, + "Image Transfer.MBUS Image Transfer channel 3.Image to activate info": {}, + "Image Transfer.MBUS Image Transfer channel 4.Image block size": 1152, + "Image Transfer.MBUS Image Transfer channel 4.Image transferred blocks status": "", + "Image Transfer.MBUS Image Transfer channel 4.Image first not transferred block number": 0, + "Image Transfer.MBUS Image Transfer channel 4.Image transfer enabled": 0, + "Image Transfer.MBUS Image Transfer channel 4.Image transfer status": 0, + "Image Transfer.MBUS Image Transfer channel 4.Image to activate info": {}, + "Communication port configuratio.Configuration object.nan": { + "0": [ + "0000001000000000" + ] + }, + "Communication port configuratio.Local Port.Default mode": 0, + "Communication port configuratio.Local Port.Default baud (": 5, + "Communication port configuratio.Local Port.Prop baud": 5, + "Communication port configuratio.Local Port.Response_time": 1, + "Communication port configuratio.Local Port.Device addr": "17", + "Communication port configuratio.Optical Setup.Comm speed": 5, + "Communication port configuratio.Optical Setup.Window size transmit": 1, + "Communication port configuratio.Optical Setup.Window size receive": 1, + "Communication port configuratio.Optical Setup.Max info field length transmit": 128, + "Communication port configuratio.Optical Setup.Max info field length receive": 128, + "Communication port configuratio.Optical Setup.Inter octet time out": 25, + "Communication port configuratio.Optical Setup.Inactivity time out": 120, + "Communication port configuratio.Optical Setup.Device address": 17, + "M-Bus.Channel 1.M-Bus port reference": "0-0:24.6.0.255", + "M-Bus.Channel 1.Capture definition": {}, + "M-Bus.Channel 1.Capture period": 0, + "M-Bus.Channel 1.Primary address": 0, + "M-Bus.Channel 1.Identification number": 0, + "M-Bus.Channel 1.Manufacturer id": 0, + "M-Bus.Channel 1.Version": 0, + "M-Bus.Channel 1.Device type": 0, + "M-Bus.Channel 1.Access number": 0, + "M-Bus.Channel 1.Status": 0, + "M-Bus.Channel 1.Alarm": 0, + "M-Bus.Channel 1.Configuration": 99, + "M-Bus.Channel 1.Encryption key status": 0, + "M-Bus.Channel 1.FUAK status": "ScopeOfAccessViolated", + "M-Bus.Channel 2.M-Bus port reference": "0-0:24.6.0.255", + "M-Bus.Channel 2.Capture definition": {}, + "M-Bus.Channel 2.Capture period": 0, + "M-Bus.Channel 2.Primary address": 0, + "M-Bus.Channel 2.Identification number": 0, + "M-Bus.Channel 2.Manufacturer id": 0, + "M-Bus.Channel 2.Version": 0, + "M-Bus.Channel 2.Device type": 0, + "M-Bus.Channel 2.Access number": 0, + "M-Bus.Channel 2.Status": 0, + "M-Bus.Channel 2.Alarm": 0, + "M-Bus.Channel 2.Configuration": 99, + "M-Bus.Channel 2.Encryption key status": 0, + "M-Bus.Channel 2.FUAK status": "ScopeOfAccessViolated", + "M-Bus.Channel 3.M-Bus port reference": "0-0:24.6.0.255", + "M-Bus.Channel 3.Capture definition": {}, + "M-Bus.Channel 3.Capture period": 0, + "M-Bus.Channel 3.Primary address": 0, + "M-Bus.Channel 3.Identification number": 0, + "M-Bus.Channel 3.Manufacturer id": 0, + "M-Bus.Channel 3.Version": 0, + "M-Bus.Channel 3.Device type": 0, + "M-Bus.Channel 3.Access number": 0, + "M-Bus.Channel 3.Status": 0, + "M-Bus.Channel 3.Alarm": 0, + "M-Bus.Channel 3.Configuration": 99, + "M-Bus.Channel 3.Encryption key status": 0, + "M-Bus.Channel 3.FUAK status": "ScopeOfAccessViolated", + "M-Bus.Channel 4.M-Bus port reference": "0-0:24.6.0.255", + "M-Bus.Channel 4.Capture definition": {}, + "M-Bus.Channel 4.Capture period": 0, + "M-Bus.Channel 4.Primary address": 0, + "M-Bus.Channel 4.Identification number": 0, + "M-Bus.Channel 4.Manufacturer id": 0, + "M-Bus.Channel 4.Version": 0, + "M-Bus.Channel 4.Device type": 0, + "M-Bus.Channel 4.Access number": 0, + "M-Bus.Channel 4.Status": 0, + "M-Bus.Channel 4.Alarm": 0, + "M-Bus.Channel 4.Configuration": 99, + "M-Bus.Channel 4.Encryption key status": 0, + "M-Bus.Channel 4.FUAK status": "ScopeOfAccessViolated", + "M-Bus.Device ID 1.Device ID 1": "", + "M-Bus.Device ID 2.Device ID 2": "", + "M-Bus.Device ID 3.Device ID 3": "", + "M-Bus.Device ID 4.Device ID 4": "", + "M-Bus.M-Bus Master Channel 1.Status": "00", + "M-Bus.M-Bus Master Channel 1.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.M-Bus Master Channel 2.Status": "00", + "M-Bus.M-Bus Master Channel 2.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.M-Bus Master Channel 3.Status": "00", + "M-Bus.M-Bus Master Channel 3.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.M-Bus Master Channel 4.Status": "00", + "M-Bus.M-Bus Master Channel 4.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.M-Bus Master 1.Value": "00", + "M-Bus.M-Bus Master 1.Status": "00", + "M-Bus.M-Bus Master 1.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.M-Bus Master 2.Value": "00", + "M-Bus.M-Bus Master 2.Status": "00", + "M-Bus.M-Bus Master 2.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.M-Bus Master 3.Value": "00", + "M-Bus.M-Bus Master 3.Status": "00", + "M-Bus.M-Bus Master 3.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.M-Bus Master 4.Value": "00", + "M-Bus.M-Bus Master 4.Status": "00", + "M-Bus.M-Bus Master 4.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Channel 1.received-signal-strength": 0, + "M-Bus.Channel 1.channel_Id": 0, + "M-Bus.Channel 1.link_status": 0, + "M-Bus.Channel 1.broadcast_frames_counter": {}, + "M-Bus.Channel 1.transmissions_counter": 0, + "M-Bus.Channel 1.FCS_OK_frames_counter": 0, + "M-Bus.Channel 1.FCS_NOK_frames_counter": 0, + "M-Bus.Channel 1.capture_time": { + "0": [ + 0, + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF" + ] + }, + "M-Bus.Number of missed C Message Channel 1.Value": 0, + "M-Bus.Number of missed C Message Channel 2.Value": 0, + "M-Bus.Number of missed C Message Channel 3.Value": 0, + "M-Bus.Number of missed C Message Channel 4.Value": 0, + "M-Bus.Number of missed T Message Channel 1.Value": 0, + "M-Bus.Number of missed T Message Channel 2.Value": 0, + "M-Bus.Number of missed T Message Channel 3.Value": 0, + "M-Bus.Number of missed T Message Channel 4.Value": 0, + "M-Bus.Average number of missed C message channel 1.Current average value": 0, + "M-Bus.Average number of missed C message channel 1.Last average value": 0, + "M-Bus.Average number of missed C message channel 1.Scaler unit": { + "0": [ + 0, + 255 + ] + }, + "M-Bus.Average number of missed C message channel 1.Status": 0, + "M-Bus.Average number of missed C message channel 1.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed C message channel 1.Start time current": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed C message channel 1.Period": 10, + "M-Bus.Average number of missed C message channel 1.Number of periods": 1, + "M-Bus.Average number of missed C message channel 2.Current average value": 0, + "M-Bus.Average number of missed C message channel 2.Last average value": 0, + "M-Bus.Average number of missed C message channel 2.Scaler unit": { + "0": [ + 0, + 255 + ] + }, + "M-Bus.Average number of missed C message channel 2.Status": 0, + "M-Bus.Average number of missed C message channel 2.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed C message channel 2.Start time current": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed C message channel 2.Period": 10, + "M-Bus.Average number of missed C message channel 2.Number of periods": 1, + "M-Bus.Average number of missed C message channel 3.Current average value": 0, + "M-Bus.Average number of missed C message channel 3.Last average value": 0, + "M-Bus.Average number of missed C message channel 3.Scaler unit": { + "0": [ + 0, + 255 + ] + }, + "M-Bus.Average number of missed C message channel 3.Status": 0, + "M-Bus.Average number of missed C message channel 3.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed C message channel 3.Start time current": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed C message channel 3.Period": 10, + "M-Bus.Average number of missed C message channel 3.Number of periods": 1, + "M-Bus.Average number of missed C message channel 4.Current average value": 0, + "M-Bus.Average number of missed C message channel 4.Last average value": 0, + "M-Bus.Average number of missed C message channel 4.Scaler unit": { + "0": [ + 0, + 255 + ] + }, + "M-Bus.Average number of missed C message channel 4.Status": 0, + "M-Bus.Average number of missed C message channel 4.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed C message channel 4.Start time current": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed C message channel 4.Period": 10, + "M-Bus.Average number of missed C message channel 4.Number of periods": 1, + "M-Bus.Average number of missed T message channel 1.Current average value": 0, + "M-Bus.Average number of missed T message channel 1.Last average value": 0, + "M-Bus.Average number of missed T message channel 1.Scaler unit": { + "0": [ + 0, + 255 + ] + }, + "M-Bus.Average number of missed T message channel 1.Status": 0, + "M-Bus.Average number of missed T message channel 1.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed T message channel 1.Start time current": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed T message channel 1.Period": 10, + "M-Bus.Average number of missed T message channel 1.Number of periods": 1, + "M-Bus.Average number of missed T message channel 2.Current average value": 0, + "M-Bus.Average number of missed T message channel 2.Last average value": 0, + "M-Bus.Average number of missed T message channel 2.Scaler unit": { + "0": [ + 0, + 255 + ] + }, + "M-Bus.Average number of missed T message channel 2.Status": 0, + "M-Bus.Average number of missed T message channel 2.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed T message channel 2.Start time current": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed T message channel 2.Period": 10, + "M-Bus.Average number of missed T message channel 2.Number of periods": 1, + "M-Bus.Average number of missed T message channel 3.Current average value": 0, + "M-Bus.Average number of missed T message channel 3.Last average value": 0, + "M-Bus.Average number of missed T message channel 3.Scaler unit": { + "0": [ + 0, + 255 + ] + }, + "M-Bus.Average number of missed T message channel 3.Status": 0, + "M-Bus.Average number of missed T message channel 3.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed T message channel 3.Start time current": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed T message channel 3.Period": 10, + "M-Bus.Average number of missed T message channel 3.Number of periods": 1, + "M-Bus.Average number of missed T message channel 4.Current average value": 0, + "M-Bus.Average number of missed T message channel 4.Last average value": 0, + "M-Bus.Average number of missed T message channel 4.Scaler unit": { + "0": [ + 0, + 255 + ] + }, + "M-Bus.Average number of missed T message channel 4.Status": 0, + "M-Bus.Average number of missed T message channel 4.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed T message channel 4.Start time current": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "M-Bus.Average number of missed T message channel 4.Period": 10, + "M-Bus.Average number of missed T message channel 4.Number of periods": 1, + "LTE Communication Setup.eUICCID.eUICCID": "3335303630303030303030303030303030303234303030303331333031373237", + "LTE Communication Setup.ICCID.ICCID": "89860110611108096225", + "LTE Communication Setup.Administrative in/out P3.nan": 0, + "LTE Communication Setup.connection watchdog timer P3.nan": 36, + "LTE Communication Setup.LTE FW Location.nan": "35.181.240.196:8080", + "LTE Communication Setup.LTE FW Download time.nan": 600, + "LTE Communication Setup.LTE Frequency configuration.LTE Frequency configuration": "00111100", + "LTE Communication Setup.Ping address.nan": { + "0": [ + "10.254.253.4", + "8082" + ] + }, + "LTE Communication Setup.PHY Randomisation.nan": { + "0": [ + 0, + 0, + 0 + ] + }, + "LTE Communication Setup.PPP Setup.PHY reference": "0-1:25.4.0.255", + "LTE Communication Setup.PPP Setup.LCP options": { + "0": [ + 1, + 2, + 1500 + ], + "1": [ + 3, + 2, + 49187 + ] + }, + "LTE Communication Setup.PPP Setup.IPCP options": {}, + "LTE Communication Setup.PPP Setup.PPP authentication": { + "0": [ + "kaifa", + "123123" + ] + }, + "LTE Communication Setup.TCP-UDP Setup.TCP-UDP port": 4059, + "LTE Communication Setup.TCP-UDP Setup.IP reference": "0-0:25.1.0.255", + "LTE Communication Setup.TCP-UDP Setup.MSS": 576, + "LTE Communication Setup.TCP-UDP Setup.Nb of sim conn": 1, + "LTE Communication Setup.TCP-UDP Setup.Inactivity time out": 300, + "LTE Communication Setup.IPv4 Setup.DL reference": "0-0:25.3.0.255", + "LTE Communication Setup.IPv4 Setup.IP address": "0.0.0.0", + "LTE Communication Setup.IPv4 Setup.Multicast IP address": {}, + "LTE Communication Setup.IPv4 Setup.IP options": {}, + "LTE Communication Setup.IPv4 Setup.Subnet mask": 0, + "LTE Communication Setup.IPv4 Setup.Gateway IP address": "0.0.0.0", + "LTE Communication Setup.IPv4 Setup.Use DHCP flag": 1, + "LTE Communication Setup.IPv4 Setup.Primary DNS address": 0, + "LTE Communication Setup.IPv4 Setup.Secondary DNS address": 0, + "LTE Communication Setup.IPv6 setup -GPRS.DL reference": "0-0:25.3.0.255", + "LTE Communication Setup.IPv6 setup -GPRS.Address config mode": 0, + "LTE Communication Setup.IPv6 setup -GPRS.Unicast IPv6 addresses": {}, + "LTE Communication Setup.IPv6 setup -GPRS.Multicast IPv6 addresses": {}, + "LTE Communication Setup.IPv6 setup -GPRS.Gateway IPv6 addresses": {}, + "LTE Communication Setup.IPv6 setup -GPRS.Primary DNS address": "", + "LTE Communication Setup.IPv6 setup -GPRS.Secondary DNS address": "", + "LTE Communication Setup.IPv6 setup -GPRS.Traffic class": 0, + "LTE Communication Setup.IPv6 setup -GPRS.Neighbor discovery setup": {}, + "LTE Communication Setup.LTE Modem setup.APN": "internet", + "LTE Communication Setup.LTE Modem setup.PIN code": 0, + "LTE Communication Setup.LTE Modem setup.Quality of service": { + "0": [ + [ + 0, + 0, + 0, + 0, + 0 + ], + [ + 0, + 0, + 0, + 0, + 0 + ] + ] + }, + "LTE Communication Setup.LTE Diagnostic.Operator": "", + "LTE Communication Setup.LTE Diagnostic.Status": 0, + "LTE Communication Setup.LTE Diagnostic.Cs attachment": 0, + "LTE Communication Setup.LTE Diagnostic.Ps status": 0, + "LTE Communication Setup.LTE Diagnostic.Cell info": { + "0": [ + 0, + 0, + 99, + 0, + 0, + 0, + 0 + ] + }, + "LTE Communication Setup.LTE Diagnostic.Adjacent cells": { + "0": [ + 999, + 99 + ], + "1": [ + 999, + 99 + ], + "2": [ + 999, + 99 + ] + }, + "LTE Communication Setup.LTE Diagnostic.Capture time": "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "LTE Communication Setup.LTE Monitoring.LTE network parameters": { + "0": [ + 720, + 3240, + 0, + 0, + 0, + 0, + -99, + 0, + 0 + ] + }, + "LTE Communication Setup.LTE Monitoring.LTE quality of service": { + "0": [ + 0, + -99, + 0, + 0 + ] + }, + "LTE Communication Setup.LTE connection rejection.LTE connection rejection": { + "0": [ + 8, + 222, + 3, + "2025-11-10 01 15:48:50 00,FFC4,00" + ] + }, + "LTE Communication Setup.GPS lattitude.GPS lattitude": 0, + "LTE Communication Setup.GPS longitude.GPS longitude": 0, + "Push setup.Single action scheduler.Executed script": { + "0": [ + "0-0:10.0.108.255", + 1 + ] + }, + "Push setup.Single action scheduler.Type": 1, + "Push setup.Single action scheduler.Execution time": {}, + "Push setup.Register monitor.Thresholds": { + "0": [ + 0 + ] + }, + "Push setup.Register monitor.Monitored value": { + "0": [ + 1, + "0-0:97.98.0.255", + 2 + ] + }, + "Push setup.Register monitor.Actions": { + "0": [ + [ + "", + 0 + ], + [ + "", + 0 + ] + ] + }, + "Push setup.Register monitor lastgasp.Thresholds": "ObjectUndefined", + "Push setup.Register monitor lastgasp.Monitored value": "ObjectUndefined", + "Push setup.Register monitor lastgasp.Actions": "ObjectUndefined", + "Push setup.Push script table.Scripts": { + "0": [ + 1, + [ + [ + 2, + 40, + "0-0:25.9.0.255", + 1, + 0 + ] + ] + ], + "1": [ + 2, + [ + [ + 2, + 40, + "0-1:25.9.0.255", + 1, + 0 + ] + ] + ] + }, + "Push setup.Phase Outage Test.Scripts": { + "0": [ + 1, + [ + [ + 1, + 1, + "0-0:97.98.0.255", + 2, + 576460752303423488 + ] + ] + ] + }, + "Push setup.Push Setup Scheduler.Push object list": {}, + "Push setup.Push Setup Scheduler.Send destination and method": { + "0": [ + 0, + "", + 0 + ] + }, + "Push setup.Push Setup Scheduler.Communication window": { + "0": [ + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "FFFF-FF-FF FF 23:59:59 99,8000,FF" + ] + }, + "Push setup.Push Setup Scheduler.Randomisation start interval": 0, + "Push setup.Push Setup Scheduler.Number of retries": 0, + "Push setup.Push Setup Scheduler.Repetition delay": "0000", + "Push setup.Push Setup Alarm.Push object list": { + "0": [ + 1, + "0-0:96.1.1.255", + 2, + 0 + ], + "1": [ + 1, + "0-0:97.98.0.255", + 2, + 0 + ] + }, + "Push setup.Push Setup Alarm.Send destination and method": { + "0": [ + 0, + "", + 0 + ] + }, + "Push setup.Push Setup Alarm.Communication window": { + "0": [ + "FFFF-FF-FF FF FF:FF:FF FF,8000,FF", + "FFFF-FF-FF FF 23:59:59 99,8000,FF" + ] + }, + "Push setup.Push Setup Alarm.Randomisation start interval": 0, + "Push setup.Push Setup Alarm.Number of retries": 0, + "Push setup.Push Setup Alarm.Repetition delay": "0000", + "Association related parameters.SAP Assignment.SAP assignment list": { + "0": [ + 1, + "KFM7000000000000" + ] + }, + "Association related parameters.Association LN.Object list": { + "0": [ + 1, + 0, + "0-0:42.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "1": [ + 1, + 0, + "0-0:96.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "2": [ + 1, + 0, + "0-0:96.1.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "3": [ + 1, + 0, + "0-0:96.1.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "4": [ + 1, + 0, + "0-0:96.4.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "5": [ + 1, + 0, + "0-0:96.7.9.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "6": [ + 1, + 0, + "0-0:96.7.21.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "7": [ + 1, + 0, + "0-0:96.10.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "8": [ + 1, + 0, + "0-0:96.10.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "9": [ + 1, + 0, + "0-0:96.10.6.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "10": [ + 1, + 0, + "0-0:96.10.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "11": [ + 1, + 0, + "0-0:96.10.9.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "12": [ + 1, + 0, + "0-0:96.11.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "13": [ + 1, + 0, + "0-0:96.11.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "14": [ + 1, + 0, + "0-0:96.11.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "15": [ + 1, + 0, + "0-0:96.11.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "16": [ + 1, + 0, + "0-0:96.11.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "17": [ + 1, + 0, + "0-0:96.11.20.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "18": [ + 1, + 0, + "0-0:96.11.21.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "19": [ + 1, + 0, + "0-0:96.13.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "20": [ + 1, + 0, + "0-0:96.14.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "21": [ + 1, + 0, + "0-0:96.15.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "22": [ + 1, + 0, + "0-0:96.15.11.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "23": [ + 1, + 0, + "0-0:96.15.12.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "24": [ + 1, + 0, + "0-0:96.15.13.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "25": [ + 1, + 0, + "0-0:96.15.14.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "26": [ + 1, + 0, + "0-0:97.97.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "27": [ + 1, + 0, + "0-0:97.98.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "28": [ + 1, + 0, + "0-0:97.98.10.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "29": [ + 1, + 0, + "0-1:94.31.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "30": [ + 1, + 0, + "0-1:94.31.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [ + [ + -1, + 1 + ] + ] + ] + ], + "31": [ + 1, + 0, + "0-1:94.31.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "32": [ + 1, + 0, + "0-1:94.31.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "33": [ + 1, + 0, + "0-1:94.31.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "34": [ + 1, + 0, + "0-1:94.31.12.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "35": [ + 1, + 0, + "0-1:94.31.19.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "36": [ + 1, + 0, + "0-1:94.31.20.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "37": [ + 1, + 0, + "0-1:96.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "38": [ + 1, + 0, + "0-1:96.10.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "39": [ + 1, + 0, + "0-1:96.10.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "40": [ + 1, + 0, + "0-1:96.10.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "41": [ + 1, + 0, + "0-1:96.11.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "42": [ + 1, + 0, + "0-2:96.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "43": [ + 1, + 0, + "0-2:96.10.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "44": [ + 1, + 0, + "0-2:96.10.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "45": [ + 1, + 0, + "0-2:96.10.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "46": [ + 1, + 0, + "0-2:96.11.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "47": [ + 1, + 0, + "0-3:96.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "48": [ + 1, + 0, + "0-3:96.10.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "49": [ + 1, + 0, + "0-3:96.10.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "50": [ + 1, + 0, + "0-3:96.10.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "51": [ + 1, + 0, + "0-3:96.11.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "52": [ + 1, + 0, + "0-4:96.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "53": [ + 1, + 0, + "0-4:96.10.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "54": [ + 1, + 0, + "0-4:96.10.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "55": [ + 1, + 0, + "0-4:96.10.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "56": [ + 1, + 0, + "0-4:96.11.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "57": [ + 1, + 0, + "0-65:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "58": [ + 1, + 0, + "0-65:44.0.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "59": [ + 1, + 0, + "0-65:44.0.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [] + ] + ], + "60": [ + 1, + 0, + "1-0:0.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "61": [ + 1, + 0, + "1-0:0.2.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "62": [ + 1, + 0, + "1-0:32.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "63": [ + 1, + 0, + "1-0:32.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "64": [ + 1, + 0, + "1-0:52.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "65": [ + 1, + 0, + "1-0:52.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "66": [ + 1, + 0, + "1-0:72.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "67": [ + 1, + 0, + "1-0:72.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "68": [ + 1, + 0, + "1-1:0.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "69": [ + 1, + 0, + "1-1:0.2.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "70": [ + 1, + 0, + "1-1:32.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "71": [ + 1, + 0, + "1-1:52.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "72": [ + 1, + 0, + "1-1:72.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "73": [ + 1, + 0, + "1-2:0.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "74": [ + 1, + 0, + "1-2:0.2.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "75": [ + 1, + 0, + "1-2:32.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "76": [ + 1, + 0, + "1-2:32.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "77": [ + 1, + 0, + "1-2:52.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "78": [ + 1, + 0, + "1-2:52.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "79": [ + 1, + 0, + "1-2:72.32.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "80": [ + 1, + 0, + "1-2:72.36.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "81": [ + 1, + 0, + "1-3:0.2.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "82": [ + 1, + 0, + "1-4:0.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "83": [ + 1, + 0, + "1-4:0.2.8.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [] + ] + ], + "84": [ + 3, + 0, + "0-0:96.7.19.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "85": [ + 3, + 0, + "0-0:96.7.20.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "86": [ + 3, + 0, + "0-0:96.9.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "87": [ + 3, + 0, + "0-0:96.50.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "88": [ + 3, + 0, + "0-1:94.31.9.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + -1, + 1 + ] + ] + ] + ], + "89": [ + 3, + 0, + "0-1:94.31.10.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "90": [ + 3, + 0, + "0-1:128.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "91": [ + 3, + 0, + "0-1:128.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "92": [ + 3, + 0, + "0-2:128.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "93": [ + 3, + 0, + "0-2:128.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "94": [ + 3, + 0, + "0-3:128.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "95": [ + 3, + 0, + "0-3:128.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "96": [ + 3, + 0, + "0-4:128.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "97": [ + 3, + 0, + "0-4:128.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "98": [ + 3, + 0, + "1-0:0.9.11.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "99": [ + 3, + 0, + "1-0:1.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "100": [ + 3, + 0, + "1-0:1.8.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "101": [ + 3, + 0, + "1-0:1.8.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "102": [ + 3, + 0, + "1-0:1.8.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "103": [ + 3, + 0, + "1-0:2.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "104": [ + 3, + 0, + "1-0:2.8.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "105": [ + 3, + 0, + "1-0:2.8.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "106": [ + 3, + 0, + "1-0:2.8.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "107": [ + 3, + 0, + "1-0:3.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "108": [ + 3, + 0, + "1-0:4.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "109": [ + 3, + 0, + "1-0:5.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "110": [ + 3, + 0, + "1-0:6.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "111": [ + 3, + 0, + "1-0:7.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "112": [ + 3, + 0, + "1-0:8.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "113": [ + 3, + 0, + "1-0:9.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "114": [ + 3, + 0, + "1-0:10.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "115": [ + 3, + 0, + "1-0:12.31.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "116": [ + 3, + 0, + "1-0:12.35.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "117": [ + 3, + 0, + "1-0:12.43.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "118": [ + 3, + 0, + "1-0:12.44.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "119": [ + 3, + 0, + "1-0:16.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "120": [ + 3, + 0, + "1-0:17.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "121": [ + 3, + 0, + "1-0:18.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "122": [ + 3, + 0, + "1-0:19.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "123": [ + 3, + 0, + "1-0:20.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "124": [ + 3, + 0, + "1-0:21.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "125": [ + 3, + 0, + "1-0:21.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "126": [ + 3, + 0, + "1-0:22.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "127": [ + 3, + 0, + "1-0:22.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "128": [ + 3, + 0, + "1-0:23.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "129": [ + 3, + 0, + "1-0:23.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "130": [ + 3, + 0, + "1-0:24.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "131": [ + 3, + 0, + "1-0:24.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "132": [ + 3, + 0, + "1-0:25.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "133": [ + 3, + 0, + "1-0:25.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "134": [ + 3, + 0, + "1-0:26.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "135": [ + 3, + 0, + "1-0:26.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "136": [ + 3, + 0, + "1-0:27.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "137": [ + 3, + 0, + "1-0:27.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "138": [ + 3, + 0, + "1-0:28.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "139": [ + 3, + 0, + "1-0:28.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "140": [ + 3, + 0, + "1-0:31.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "141": [ + 3, + 0, + "1-0:31.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "142": [ + 3, + 0, + "1-0:32.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "143": [ + 3, + 0, + "1-0:32.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "144": [ + 3, + 0, + "1-0:32.33.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "145": [ + 3, + 0, + "1-0:32.34.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "146": [ + 3, + 0, + "1-0:32.37.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "147": [ + 3, + 0, + "1-0:32.38.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "148": [ + 3, + 0, + "1-0:37.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "149": [ + 3, + 0, + "1-0:37.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "150": [ + 3, + 0, + "1-0:38.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "151": [ + 3, + 0, + "1-0:38.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "152": [ + 3, + 0, + "1-0:39.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "153": [ + 3, + 0, + "1-0:39.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "154": [ + 3, + 0, + "1-0:40.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "155": [ + 3, + 0, + "1-0:40.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "156": [ + 3, + 0, + "1-0:41.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "157": [ + 3, + 0, + "1-0:41.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "158": [ + 3, + 0, + "1-0:42.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "159": [ + 3, + 0, + "1-0:42.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "160": [ + 3, + 0, + "1-0:43.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "161": [ + 3, + 0, + "1-0:43.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "162": [ + 3, + 0, + "1-0:44.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "163": [ + 3, + 0, + "1-0:44.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "164": [ + 3, + 0, + "1-0:45.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "165": [ + 3, + 0, + "1-0:45.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "166": [ + 3, + 0, + "1-0:46.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "167": [ + 3, + 0, + "1-0:46.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "168": [ + 3, + 0, + "1-0:47.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "169": [ + 3, + 0, + "1-0:47.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "170": [ + 3, + 0, + "1-0:48.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "171": [ + 3, + 0, + "1-0:48.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "172": [ + 3, + 0, + "1-0:51.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "173": [ + 3, + 0, + "1-0:51.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "174": [ + 3, + 0, + "1-0:52.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "175": [ + 3, + 0, + "1-0:52.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "176": [ + 3, + 0, + "1-0:52.33.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "177": [ + 3, + 0, + "1-0:52.34.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "178": [ + 3, + 0, + "1-0:52.37.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "179": [ + 3, + 0, + "1-0:52.38.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "180": [ + 3, + 0, + "1-0:57.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "181": [ + 3, + 0, + "1-0:57.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "182": [ + 3, + 0, + "1-0:58.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "183": [ + 3, + 0, + "1-0:58.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "184": [ + 3, + 0, + "1-0:59.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "185": [ + 3, + 0, + "1-0:59.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "186": [ + 3, + 0, + "1-0:60.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "187": [ + 3, + 0, + "1-0:60.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "188": [ + 3, + 0, + "1-0:61.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "189": [ + 3, + 0, + "1-0:61.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "190": [ + 3, + 0, + "1-0:62.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "191": [ + 3, + 0, + "1-0:62.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "192": [ + 3, + 0, + "1-0:63.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "193": [ + 3, + 0, + "1-0:63.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "194": [ + 3, + 0, + "1-0:64.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "195": [ + 3, + 0, + "1-0:64.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "196": [ + 3, + 0, + "1-0:65.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "197": [ + 3, + 0, + "1-0:65.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "198": [ + 3, + 0, + "1-0:66.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "199": [ + 3, + 0, + "1-0:66.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "200": [ + 3, + 0, + "1-0:67.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "201": [ + 3, + 0, + "1-0:67.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "202": [ + 3, + 0, + "1-0:68.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "203": [ + 3, + 0, + "1-0:68.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "204": [ + 3, + 0, + "1-0:71.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "205": [ + 3, + 0, + "1-0:71.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "206": [ + 3, + 0, + "1-0:72.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "207": [ + 3, + 0, + "1-0:72.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "208": [ + 3, + 0, + "1-0:72.33.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "209": [ + 3, + 0, + "1-0:72.34.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "210": [ + 3, + 0, + "1-0:72.37.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "211": [ + 3, + 0, + "1-0:72.38.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "212": [ + 3, + 0, + "1-0:77.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "213": [ + 3, + 0, + "1-0:77.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "214": [ + 3, + 0, + "1-0:78.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "215": [ + 3, + 0, + "1-0:78.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "216": [ + 3, + 0, + "1-0:79.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "217": [ + 3, + 0, + "1-0:79.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "218": [ + 3, + 0, + "1-0:80.5.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "219": [ + 3, + 0, + "1-0:80.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "220": [ + 3, + 0, + "1-0:90.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "221": [ + 3, + 0, + "1-0:124.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "222": [ + 3, + 0, + "1-0:124.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "223": [ + 3, + 0, + "1-0:125.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "224": [ + 3, + 0, + "1-0:125.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "225": [ + 3, + 0, + "1-0:126.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "226": [ + 3, + 0, + "1-0:126.25.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "227": [ + 3, + 0, + "1-1:12.31.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "228": [ + 3, + 0, + "1-1:12.43.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "229": [ + 3, + 0, + "1-2:12.31.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "230": [ + 3, + 0, + "1-2:12.35.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "231": [ + 3, + 0, + "1-2:12.43.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "232": [ + 3, + 0, + "1-2:12.44.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "233": [ + 4, + 0, + "0-1:24.2.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "234": [ + 4, + 0, + "0-1:24.2.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "235": [ + 4, + 0, + "0-1:24.2.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "236": [ + 4, + 0, + "0-2:24.2.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "237": [ + 4, + 0, + "0-2:24.2.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "238": [ + 4, + 0, + "0-2:24.2.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "239": [ + 4, + 0, + "0-3:24.2.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "240": [ + 4, + 0, + "0-3:24.2.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "241": [ + 4, + 0, + "0-3:24.2.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "242": [ + 4, + 0, + "0-4:24.2.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "243": [ + 4, + 0, + "0-4:24.2.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "244": [ + 4, + 0, + "0-4:24.2.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "245": [ + 5, + 0, + "0-1:129.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "246": [ + 5, + 0, + "0-1:129.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "247": [ + 5, + 0, + "0-2:129.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "248": [ + 5, + 0, + "0-2:129.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "249": [ + 5, + 0, + "0-3:129.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "250": [ + 5, + 0, + "0-3:129.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "251": [ + 5, + 0, + "0-4:129.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "252": [ + 5, + 0, + "0-4:129.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ] + ] + ] + ], + "253": [ + 6, + 0, + "0-0:14.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] + ] + ] + ], + "254": [ + 7, + 1, + "0-0:21.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "255": [ + 7, + 1, + "0-0:21.0.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "256": [ + 7, + 1, + "0-0:21.0.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "257": [ + 7, + 1, + "0-0:21.0.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "258": [ + 7, + 1, + "0-0:99.18.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "259": [ + 7, + 1, + "0-0:99.98.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "260": [ + 7, + 1, + "0-0:99.98.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "261": [ + 7, + 1, + "0-0:99.98.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "262": [ + 7, + 1, + "0-0:99.98.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "263": [ + 7, + 1, + "0-0:99.98.7.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "264": [ + 7, + 1, + "0-1:24.3.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "265": [ + 7, + 1, + "0-1:94.31.6.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "266": [ + 7, + 1, + "0-1:98.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "267": [ + 7, + 1, + "0-1:99.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "268": [ + 7, + 1, + "0-1:99.98.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "269": [ + 7, + 1, + "0-2:24.3.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "270": [ + 7, + 1, + "0-2:98.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "271": [ + 7, + 1, + "0-2:99.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "272": [ + 7, + 1, + "0-2:99.98.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "273": [ + 7, + 1, + "0-3:24.3.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "274": [ + 7, + 1, + "0-3:98.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "275": [ + 7, + 1, + "0-3:99.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "276": [ + 7, + 1, + "0-3:99.98.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "277": [ + 7, + 1, + "0-4:24.3.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "278": [ + 7, + 1, + "0-4:98.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "279": [ + 7, + 1, + "0-4:99.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "280": [ + 7, + 1, + "0-4:99.98.3.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "281": [ + 7, + 1, + "1-0:98.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "282": [ + 7, + 1, + "1-0:99.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "283": [ + 7, + 1, + "1-0:99.1.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "284": [ + 7, + 1, + "1-0:99.1.2.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "285": [ + 7, + 1, + "1-0:99.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "286": [ + 7, + 1, + "1-0:99.97.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + [ + 1, + 2 + ] + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ] + ] + ] + ], + "287": [ + 8, + 0, + "0-0:1.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ] + ] + ] + ], + "288": [ + 9, + 0, + "0-0:10.0.100.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "289": [ + 9, + 0, + "0-0:10.0.108.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "290": [ + 9, + 0, + "0-0:10.1.108.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "291": [ + 9, + 0, + "0-1:94.31.5.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "292": [ + 11, + 0, + "0-0:11.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ] + ] + ] + ], + "293": [ + 15, + 3, + "0-0:40.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 0, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ], + [ + 10, + 1, + "NullData" + ], + [ + 11, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ], + [ + 5, + 1 + ], + [ + 6, + 1 + ] + ] + ] + ], + "294": [ + 17, + 0, + "0-0:41.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "295": [ + 18, + 0, + "0-0:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ] + ] + ] + ], + "296": [ + 18, + 0, + "0-1:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ] + ] + ] + ], + "297": [ + 18, + 0, + "0-2:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ] + ] + ] + ], + "298": [ + 18, + 0, + "0-3:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ] + ] + ] + ], + "299": [ + 18, + 0, + "0-4:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ] + ] + ] + ], + "300": [ + 18, + 0, + "0-5:44.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ], + [ + 4, + 1 + ] + ] + ] + ], + "301": [ + 19, + 1, + "0-0:20.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [] + ] + ], + "302": [ + 20, + 0, + "0-0:13.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "303": [ + 21, + 0, + "0-0:16.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ] + ], + [] + ] + ], + "304": [ + 22, + 0, + "0-0:15.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ] + ], + [] + ] + ], + "305": [ + 22, + 0, + "0-0:15.0.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ] + ], + [] + ] + ], + "306": [ + 22, + 0, + "0-0:15.1.4.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ] + ], + [] + ] + ], + "307": [ + 23, + 1, + "0-0:22.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [] + ] + ], + "308": [ + 28, + 2, + "0-0:2.2.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 3, + "NullData" + ] + ], + [] + ] + ], + "309": [ + 29, + 2, + "0-0:2.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ] + ] + ] + ], + "310": [ + 40, + 0, + "0-0:25.9.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "311": [ + 40, + 0, + "0-1:25.9.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "312": [ + 41, + 0, + "0-0:25.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 3, + "NullData" + ] + ], + [] + ] + ], + "313": [ + 42, + 0, + "0-0:25.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 1, + "NullData" + ], + [ + 10, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 0 + ], + [ + 3, + 0 + ] + ] + ] + ], + "314": [ + 44, + 0, + "0-0:25.3.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ] + ], + [] + ] + ], + "315": [ + 45, + 0, + "0-1:25.4.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ] + ], + [] + ] + ], + "316": [ + 47, + 2, + "0-1:25.6.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ] + ], + [] + ] + ], + "317": [ + 48, + 0, + "0-0:25.7.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 3, + "NullData" + ], + [ + 3, + 3, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 3, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 0 + ] + ] + ] + ], + "318": [ + 64, + 1, + "0-0:43.0.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ], + [ + 2, + 1 + ], + [ + 3, + 1 + ], + [ + 4, + 1 + ], + [ + 5, + 1 + ], + [ + 6, + 1 + ], + [ + 7, + 1 + ], + [ + 8, + 1 + ] + ] + ] + ], + "319": [ + 72, + 1, + "0-1:24.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 1, + "NullData" + ], + [ + 11, + 1, + "NullData" + ], + [ + 12, + 1, + "NullData" + ], + [ + 13, + 1, + "NullData" + ], + [ + 14, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 1 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 1 + ], + [ + 8, + 1 + ], + [ + -1, + 1 + ], + [ + -2, + 1 + ] + ] + ] + ], + "320": [ + 72, + 1, + "0-2:24.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 1, + "NullData" + ], + [ + 11, + 1, + "NullData" + ], + [ + 12, + 1, + "NullData" + ], + [ + 13, + 1, + "NullData" + ], + [ + 14, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 1 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 1 + ], + [ + 8, + 1 + ], + [ + -1, + 1 + ], + [ + -2, + 1 + ] + ] + ] + ], + "321": [ + 72, + 1, + "0-3:24.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 1, + "NullData" + ], + [ + 11, + 1, + "NullData" + ], + [ + 12, + 1, + "NullData" + ], + [ + 13, + 1, + "NullData" + ], + [ + 14, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 1 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 1 + ], + [ + 8, + 1 + ], + [ + -1, + 1 + ], + [ + -2, + 1 + ] + ] + ] + ], + "322": [ + 72, + 1, + "0-4:24.1.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 3, + "NullData" + ], + [ + 5, + 3, + "NullData" + ], + [ + 6, + 3, + "NullData" + ], + [ + 7, + 3, + "NullData" + ], + [ + 8, + 3, + "NullData" + ], + [ + 9, + 3, + "NullData" + ], + [ + 10, + 1, + "NullData" + ], + [ + 11, + 1, + "NullData" + ], + [ + 12, + 1, + "NullData" + ], + [ + 13, + 1, + "NullData" + ], + [ + 14, + 1, + "NullData" + ], + [ + -1, + 1, + "NullData" + ] + ], + [ + [ + 1, + 0 + ], + [ + 2, + 1 + ], + [ + 3, + 0 + ], + [ + 4, + 1 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 1 + ], + [ + 8, + 1 + ], + [ + -1, + 1 + ], + [ + -2, + 1 + ] + ] + ] + ], + "323": [ + 77, + 0, + "0-1:24.9.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "324": [ + 77, + 0, + "0-2:24.9.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "325": [ + 77, + 0, + "0-3:24.9.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "326": [ + 77, + 0, + "0-4:24.9.1.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ], + [ + 4, + 1, + "NullData" + ], + [ + 5, + 1, + "NullData" + ], + [ + 6, + 1, + "NullData" + ], + [ + 7, + 1, + "NullData" + ], + [ + 8, + 1, + "NullData" + ], + [ + 9, + 1, + "NullData" + ] + ], + [ + [ + 1, + 1 + ] + ] + ] + ], + "327": [ + 151, + 1, + "0-1:25.11.0.255", + [ + [ + [ + 1, + 1, + "NullData" + ], + [ + 2, + 1, + "NullData" + ], + [ + 3, + 1, + "NullData" + ] + ], + [] + ] + ] + }, + "Association related parameters.Association LN.Associated partners id": { + "0": [ + 1, + 1 + ] + }, + "Association related parameters.Association LN.Application context name": "60857405080103", + "Association related parameters.Association LN.xDLMS context info": { + "0": [ + "011000000001101000011101", + 1300, + 1300, + 6, + 0, + "" + ] + }, + "Association related parameters.Association LN.Authentication mechanism name": "60857405080205", + "Association related parameters.Association LN.Secret": "ReadWriteDenied", + "Association related parameters.Association LN.Association status": 2, + "Association related parameters.Association LN.Security setup reference": "0-0:43.0.0.255", + "Association related parameters.Association LN.User list": {}, + "Association related parameters.Association LN.Current user": { + "0": [ + 0, + "" + ] + }, + "Association related parameters.Security Setup.Security policy": 108, + "Association related parameters.Security Setup.Security suite": 1, + "Association related parameters.Security Setup.Client system title": "0000000000009800", + "Association related parameters.Security Setup.Server system title": "4B464D0000000001", + "Association related parameters.Security Setup.Certificates": {}, + "Association related parameters.Invocation Counter for authenticated decryption (IC Rx).Invocation Counter for authenticated decryption (IC Rx)": "ReadWriteDenied", + "Meter Reset to Factory Setting.Tariffication.Scripts": { + "0": [ + 1, + [ + [ + 2, + 9, + "0-1:94.31.5.255", + 1, + "0001" + ] + ] + ] + } + }, + "summary": { + "total_read": 796, + "total_success": 796, + "total_failed": 0, + "sheet_count": 24 + } +} \ No newline at end of file diff --git a/docs/testdata/template_meter.json b/docs/testdata/template_meter.json new file mode 100644 index 0000000..3b9ea83 --- /dev/null +++ b/docs/testdata/template_meter.json @@ -0,0 +1 @@ +{"_id":{"$oid":"6985f99d01de8a5162785ca4"},"timestamp":"2025-11-01T09:33:56.512413","source_file":"E:\\code\\upgradeBATool\\project_entry-develop\\data\\andromeda\\XMLFunctionLists_Meter_PP.xlsx","sheets":{"Clock":{"sheet_name":"Clock","objects":[{"key":"Clock.Clock.Time","classId":{"$numberInt":"8"},"obis":"0.0.1.0.0.255","obisFormatted":"0-0:1.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Time","controlName":"Clock","value":"2025-11-10 01 15:38:38 00,FFC4,00","timestamp":"2025-11-01T09:33:57.071593","status":"success"},{"key":"Clock.Clock.Time zone","classId":{"$numberInt":"8"},"obis":"0.0.1.0.0.255","obisFormatted":"0-0:1.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Time zone","controlName":"Clock","value":{"$numberInt":"-60"},"timestamp":"2025-11-01T09:33:57.609006","status":"success"},{"key":"Clock.Clock.Status","classId":{"$numberInt":"8"},"obis":"0.0.1.0.0.255","obisFormatted":"0-0:1.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"Clock","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:33:58.164708","status":"success"},{"key":"Clock.Clock.Daylight savings begin","classId":{"$numberInt":"8"},"obis":"0.0.1.0.0.255","obisFormatted":"0-0:1.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Daylight savings begin","controlName":"Clock","value":"FFFF-03-FE 07 02:00:00 00,8000,FF","timestamp":"2025-11-01T09:33:58.738685","status":"success"},{"key":"Clock.Clock.Daylight savings end","classId":{"$numberInt":"8"},"obis":"0.0.1.0.0.255","obisFormatted":"0-0:1.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Daylight savings end","controlName":"Clock","value":"FFFF-10-FE 07 03:00:00 00,8000,FF","timestamp":"2025-11-01T09:33:59.364649","status":"success"},{"key":"Clock.Clock.Daylight savings deviation","classId":{"$numberInt":"8"},"obis":"0.0.1.0.0.255","obisFormatted":"0-0:1.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Daylight savings deviation","controlName":"Clock","value":{"$numberInt":"60"},"timestamp":"2025-11-01T09:33:59.962606","status":"success"},{"key":"Clock.Clock.Daylight savings enabled","classId":{"$numberInt":"8"},"obis":"0.0.1.0.0.255","obisFormatted":"0-0:1.0.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Daylight savings enabled","controlName":"Clock","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:00.579825","status":"success"},{"key":"Clock.Clock.Clock base","classId":{"$numberInt":"8"},"obis":"0.0.1.0.0.255","obisFormatted":"0-0:1.0.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Clock base","controlName":"Clock","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:01.172594","status":"success"},{"key":"Clock.Clock time shift event limit: S.Value","classId":{"$numberInt":"3"},"obis":"1.0.0.9.11.255","obisFormatted":"1-0:0.9.11.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Clock time shift event limit: S","value":{"$numberInt":"60"},"timestamp":"2025-11-01T09:34:01.807270","status":"success"}],"summary":{"total":{"$numberInt":"9"},"success":{"$numberInt":"9"},"failed":{"$numberInt":"0"}}},"Basic Information":{"sheet_name":"Basic Information","objects":[{"key":"Basic Information.E-meter Logic device name.E-meter Logic device name","classId":{"$numberInt":"1"},"obis":"0.0.42.0.0.255","obisFormatted":"0-0:42.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"E-meter Logic device name","controlName":"E-meter Logic device name","value":"KFM7000000000000","timestamp":"2025-11-01T09:34:02.547032","status":"success"},{"key":"Basic Information.E-meter Serial Number.E-meter Serial Number","classId":{"$numberInt":"1"},"obis":"0.0.96.1.0.255","obisFormatted":"0-0:96.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"E-meter Serial Number","controlName":"E-meter Serial Number","value":"20000000000000000002","timestamp":"2025-11-01T09:34:03.236504","status":"success"},{"key":"Basic Information.E-meter equipment identifier.E-meter equipment identifier","classId":{"$numberInt":"1"},"obis":"0.0.96.1.1.255","obisFormatted":"0-0:96.1.1.255","attributeId":{"$numberInt":"2"},"attributeName":"E-meter equipment identifier","controlName":"E-meter equipment identifier","value":"E009700000000000000000000000000000000000000000000000","timestamp":"2025-11-01T09:34:04.048260","status":"success"},{"key":"Basic Information.Legal Firmware Identifier.Legal Firmware Identifier","classId":{"$numberInt":"1"},"obis":"1.0.0.2.0.255","obisFormatted":"1-0:0.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Legal Firmware Identifier","controlName":"Legal Firmware Identifier","value":"1000FF22","timestamp":"2025-11-01T09:34:04.780701","status":"success"},{"key":"Basic Information.Legal Firmware Signature.Legal Firmware Signature","classId":{"$numberInt":"1"},"obis":"1.0.0.2.8.255","obisFormatted":"1-0:0.2.8.255","attributeId":{"$numberInt":"2"},"attributeName":"Legal Firmware Signature","controlName":"Legal Firmware Signature","value":"7E74BA05F40E05B0F6E39B050A03B3A9C9DBB513AD836AE4775A34404D94338BF426DCB6B2F6902F22DFF21AD38EA1C1F8B816F34679F676C63C54FE710EA6F9","timestamp":"2025-11-01T09:34:05.577790","status":"success"},{"key":"Basic Information.Application Firmware Identifier.Application Firmware Identifier","classId":{"$numberInt":"1"},"obis":"1.1.0.2.0.255","obisFormatted":"1-1:0.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Application Firmware Identifier","controlName":"Application Firmware Identifier","value":"11000231","timestamp":"2025-11-01T09:34:06.352850","status":"success"},{"key":"Basic Information.Application Firmware Signature.Application Firmware Signature","classId":{"$numberInt":"1"},"obis":"1.1.0.2.8.255","obisFormatted":"1-1:0.2.8.255","attributeId":{"$numberInt":"2"},"attributeName":"Application Firmware Signature","controlName":"Application Firmware Signature","value":"6EB9F9C1ED26595272519C22EF43D353A785586B00763548CB0D5A55C13185240874C5FB9B637A55E1525CBB513D15F201B899D0E6E3E0C6747D1F78B44D73AE","timestamp":"2025-11-01T09:34:07.118965","status":"success"},{"key":"Basic Information.Module Active Firmware Identifier.Module Active Firmware Identifier","classId":{"$numberInt":"1"},"obis":"1.2.0.2.0.255","obisFormatted":"1-2:0.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Module Active Firmware Identifier","controlName":"Module Active Firmware Identifier","value":"L710TK_V10.09.01.14_00000122","timestamp":"2025-11-01T09:34:07.840626","status":"success"},{"key":"Basic Information.Communication Module Firmware Signature.Communication Module Firmware Signature","classId":{"$numberInt":"1"},"obis":"1.2.0.2.8.255","obisFormatted":"1-2:0.2.8.255","attributeId":{"$numberInt":"2"},"attributeName":"Communication Module Firmware Signature","controlName":"Communication Module Firmware Signature","value":"E08AB330","timestamp":"2025-11-01T09:34:08.551957","status":"success"},{"key":"Basic Information.P1 port DSMR version.P1 port DSMR version","classId":{"$numberInt":"1"},"obis":"1.3.0.2.8.255","obisFormatted":"1-3:0.2.8.255","attributeId":{"$numberInt":"2"},"attributeName":"P1 port DSMR version","controlName":"P1 port DSMR version","value":"P","timestamp":"2025-11-01T09:34:09.285461","status":"success"},{"key":"Basic Information.M-Bus Driver Active Firmware Identifier.M-Bus Driver Active Firmware Identifier","classId":{"$numberInt":"1"},"obis":"1.4.0.2.0.255","obisFormatted":"1-4:0.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"M-Bus Driver Active Firmware Identifier","controlName":"M-Bus Driver Active Firmware Identifier","value":"SW00.68","timestamp":"2025-11-01T09:34:10.069954","status":"success"},{"key":"Basic Information.M-Bus Driver Active Firmware Signature.M-Bus Driver Active Firmware Signature","classId":{"$numberInt":"1"},"obis":"1.4.0.2.8.255","obisFormatted":"1-4:0.2.8.255","attributeId":{"$numberInt":"2"},"attributeName":"M-Bus Driver Active Firmware Signature","controlName":"M-Bus Driver Active Firmware Signature","value":"447B0E81","timestamp":"2025-11-01T09:34:10.884207","status":"success"},{"key":"Basic Information.Hardware Version.Hardware Version","classId":{"$numberInt":"1"},"obis":"0.0.96.1.4.255","obisFormatted":"0-0:96.1.4.255","attributeId":{"$numberInt":"2"},"attributeName":"Hardware Version","controlName":"Hardware Version","value":"V1.2","timestamp":"2025-11-01T09:34:11.609487","status":"success"}],"summary":{"total":{"$numberInt":"13"},"success":{"$numberInt":"13"},"failed":{"$numberInt":"0"}}},"Display":{"sheet_name":"Display","objects":[{"key":"Display.Scroll display mode.Buffer","classId":{"$numberInt":"7"},"obis":"0.0.21.0.3.255","obisFormatted":"0-0:21.0.3.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Scroll display mode","value":{"0":["2025-11-10 01 15:38:53 00,FFC4,00",{"$numberInt":"40154"},{"$numberInt":"9"},{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","1000FF22","7E74BA05F40E05B0F6E39B050A03B3A9C9DBB513AD836AE4775A34404D94338BF426DCB6B2F6902F22DFF21AD38EA1C1F8B816F34679F676C63C54FE710EA6F9","11000231","6EB9F9C1ED26595272519C22EF43D353A785586B00763548CB0D5A55C13185240874C5FB9B637A55E1525CBB513D15F201B899D0E6E3E0C6747D1F78B44D73AE",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},[["2025-11-10 01 15:38:35 00,FFC4,00",{"$numberInt":"71"}]],{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:34:13.211259","status":"success"},{"key":"Display.Scroll display mode.Capture objects","classId":{"$numberInt":"7"},"obis":"0.0.21.0.3.255","obisFormatted":"0-0:21.0.3.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Scroll display mode","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:16.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"72"},"0-1:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"7":[{"$numberInt":"72"},"0-1:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"8":[{"$numberInt":"4"},"0-1:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"4"},"0-1:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"10":[{"$numberInt":"72"},"0-2:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"11":[{"$numberInt":"72"},"0-2:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"12":[{"$numberInt":"4"},"0-2:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"13":[{"$numberInt":"4"},"0-2:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"14":[{"$numberInt":"72"},"0-3:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"15":[{"$numberInt":"72"},"0-3:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"16":[{"$numberInt":"4"},"0-3:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"17":[{"$numberInt":"4"},"0-3:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"18":[{"$numberInt":"72"},"0-4:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"19":[{"$numberInt":"72"},"0-4:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"20":[{"$numberInt":"4"},"0-4:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"21":[{"$numberInt":"4"},"0-4:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"22":[{"$numberInt":"1"},"1-0:0.2.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"23":[{"$numberInt":"1"},"1-0:0.2.8.255",{"$numberInt":"2"},{"$numberInt":"0"}],"24":[{"$numberInt":"1"},"1-1:0.2.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"25":[{"$numberInt":"1"},"1-1:0.2.8.255",{"$numberInt":"2"},{"$numberInt":"0"}],"26":[{"$numberInt":"3"},"1-0:21.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"27":[{"$numberInt":"3"},"1-0:22.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"28":[{"$numberInt":"3"},"1-0:41.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"29":[{"$numberInt":"3"},"1-0:42.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"30":[{"$numberInt":"3"},"1-0:61.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"31":[{"$numberInt":"3"},"1-0:62.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"32":[{"$numberInt":"7"},"0-0:99.98.4.255",{"$numberInt":"2"},{"$numberInt":"0"}],"33":[{"$numberInt":"151"},"0-1:25.11.0.255",{"$numberInt":"3"},{"$numberInt":"2"}]},"timestamp":"2025-11-01T09:34:15.550710","status":"success"},{"key":"Display.Scroll display mode.Capture period","classId":{"$numberInt":"7"},"obis":"0.0.21.0.3.255","obisFormatted":"0-0:21.0.3.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Scroll display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:16.133467","status":"success"},{"key":"Display.Scroll display mode.Sort method","classId":{"$numberInt":"7"},"obis":"0.0.21.0.3.255","obisFormatted":"0-0:21.0.3.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Scroll display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:16.724255","status":"success"},{"key":"Display.Scroll display mode.Sort object","classId":{"$numberInt":"7"},"obis":"0.0.21.0.3.255","obisFormatted":"0-0:21.0.3.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Scroll display mode","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:34:17.330173","status":"success"},{"key":"Display.Scroll display mode.Entries in use","classId":{"$numberInt":"7"},"obis":"0.0.21.0.3.255","obisFormatted":"0-0:21.0.3.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Scroll display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:17.956353","status":"success"},{"key":"Display.Scroll display mode.Profile entries","classId":{"$numberInt":"7"},"obis":"0.0.21.0.3.255","obisFormatted":"0-0:21.0.3.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Scroll display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:18.531486","status":"success"},{"key":"Display.Scroll display mode.Buffer","classId":{"$numberInt":"7"},"obis":"0.0.21.0.1.255","obisFormatted":"0-0:21.0.1.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Scroll display mode","value":{"0":[{"$numberInt":"40154"},{"$numberInt":"9"},{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:34:19.139047","status":"success"},{"key":"Display.Scroll display mode.Capture objects","classId":{"$numberInt":"7"},"obis":"0.0.21.0.1.255","obisFormatted":"0-0:21.0.1.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Scroll display mode","value":{"0":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:16.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:34:19.868622","status":"success"},{"key":"Display.Scroll display mode.Capture period","classId":{"$numberInt":"7"},"obis":"0.0.21.0.1.255","obisFormatted":"0-0:21.0.1.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Scroll display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:20.503741","status":"success"},{"key":"Display.Scroll display mode.Sort method","classId":{"$numberInt":"7"},"obis":"0.0.21.0.1.255","obisFormatted":"0-0:21.0.1.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Scroll display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:21.069034","status":"success"},{"key":"Display.Scroll display mode.Sort object","classId":{"$numberInt":"7"},"obis":"0.0.21.0.1.255","obisFormatted":"0-0:21.0.1.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Scroll display mode","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:34:21.670271","status":"success"},{"key":"Display.Scroll display mode.Entries in use","classId":{"$numberInt":"7"},"obis":"0.0.21.0.1.255","obisFormatted":"0-0:21.0.1.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Scroll display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:22.253033","status":"success"},{"key":"Display.Scroll display mode.Profile entries","classId":{"$numberInt":"7"},"obis":"0.0.21.0.1.255","obisFormatted":"0-0:21.0.1.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Scroll display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:22.879268","status":"success"},{"key":"Display.Button display mode.Buffer","classId":{"$numberInt":"7"},"obis":"0.0.21.0.2.255","obisFormatted":"0-0:21.0.2.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Button display mode","value":{"0":["P",{"$numberInt":"40154"},{"$numberInt":"9"},{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",[["2025-11-10 01 15:38:35 00,FFC4,00",{"$numberInt":"71"}]],{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:34:24.035172","status":"success"},{"key":"Display.Button display mode.Capture objects","classId":{"$numberInt":"7"},"obis":"0.0.21.0.2.255","obisFormatted":"0-0:21.0.2.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Button display mode","value":{"0":[{"$numberInt":"1"},"1-3:0.2.8.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:16.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"72"},"0-1:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"7":[{"$numberInt":"72"},"0-1:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"8":[{"$numberInt":"4"},"0-1:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"4"},"0-1:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"10":[{"$numberInt":"72"},"0-2:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"11":[{"$numberInt":"72"},"0-2:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"12":[{"$numberInt":"4"},"0-2:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"13":[{"$numberInt":"4"},"0-2:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"14":[{"$numberInt":"72"},"0-3:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"15":[{"$numberInt":"72"},"0-3:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"16":[{"$numberInt":"4"},"0-3:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"17":[{"$numberInt":"4"},"0-3:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"18":[{"$numberInt":"72"},"0-4:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"19":[{"$numberInt":"72"},"0-4:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"20":[{"$numberInt":"4"},"0-4:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"21":[{"$numberInt":"4"},"0-4:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"22":[{"$numberInt":"7"},"0-0:99.98.4.255",{"$numberInt":"2"},{"$numberInt":"0"}],"23":[{"$numberInt":"151"},"0-1:25.11.0.255",{"$numberInt":"3"},{"$numberInt":"2"}]},"timestamp":"2025-11-01T09:34:25.943847","status":"success"},{"key":"Display.Button display mode.Capture period","classId":{"$numberInt":"7"},"obis":"0.0.21.0.2.255","obisFormatted":"0-0:21.0.2.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Button display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:26.551988","status":"success"},{"key":"Display.Button display mode.Sort method","classId":{"$numberInt":"7"},"obis":"0.0.21.0.2.255","obisFormatted":"0-0:21.0.2.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Button display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:27.182202","status":"success"},{"key":"Display.Button display mode.Sort object","classId":{"$numberInt":"7"},"obis":"0.0.21.0.2.255","obisFormatted":"0-0:21.0.2.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Button display mode","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:34:27.740539","status":"success"},{"key":"Display.Button display mode.Entries in use","classId":{"$numberInt":"7"},"obis":"0.0.21.0.2.255","obisFormatted":"0-0:21.0.2.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Button display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:28.309604","status":"success"},{"key":"Display.Button display mode.Profile entries","classId":{"$numberInt":"7"},"obis":"0.0.21.0.2.255","obisFormatted":"0-0:21.0.2.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Button display mode","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:28.871598","status":"success"}],"summary":{"total":{"$numberInt":"21"},"success":{"$numberInt":"21"},"failed":{"$numberInt":"0"}}},"P1 output":{"sheet_name":"P1 output","objects":[{"key":"P1 output.Consumer Message Text.Consumer Message Text","classId":{"$numberInt":"1"},"obis":"0.0.96.13.0.255","obisFormatted":"0-0:96.13.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Consumer Message Text","controlName":"Consumer Message Text","value":"","timestamp":"2025-11-01T09:34:29.473700","status":"success"},{"key":"P1 output.P1 Connected.P1 Connected","classId":{"$numberInt":"1"},"obis":"0.0.96.4.1.255","obisFormatted":"0-0:96.4.1.255","attributeId":{"$numberInt":"2"},"attributeName":"P1 Connected","controlName":"P1 Connected","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:30.222670","status":"success"},{"key":"P1 output.P1 output.Buffer","classId":{"$numberInt":"7"},"obis":"0.0.21.0.0.255","obisFormatted":"0-0:21.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"P1 output","value":{"0":["P","2025-11-10 01 15:39:12 00,FFC4,00","E009700000000000000000000000000000000000000000000000",{"$numberInt":"40154"},{"$numberInt":"9"},{"$numberInt":"14"},{"$numberInt":"0"},"0002",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"2"},{"$numberInt":"13"},[["2025-10-21 02 08:59:49 00,FF88,80",{"$numberInt":"52439"}],["2025-10-21 02 09:48:44 00,FF88,80",{"$numberInt":"2563"}],["2025-10-21 02 13:32:55 00,FF88,80",{"$numberInt":"3471"}],["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"47553"}],["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"26662"}],["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"47891"}],["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"600348"}],["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"3549"}],["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"9793"}],["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"58764"}]],{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"",{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"","FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},"","FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},"","FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},"","FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:34:32.180512","status":"success"},{"key":"P1 output.P1 output.Capture objects","classId":{"$numberInt":"7"},"obis":"0.0.21.0.0.255","obisFormatted":"0-0:21.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"P1 output","value":{"0":[{"$numberInt":"1"},"1-3:0.2.8.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"1"},"0-0:96.1.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"7":[{"$numberInt":"1"},"0-0:96.14.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"8":[{"$numberInt":"3"},"1-0:1.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"3"},"1-0:2.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"10":[{"$numberInt":"1"},"0-0:96.7.21.255",{"$numberInt":"2"},{"$numberInt":"0"}],"11":[{"$numberInt":"1"},"0-0:96.7.9.255",{"$numberInt":"2"},{"$numberInt":"0"}],"12":[{"$numberInt":"7"},"1-0:99.97.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"13":[{"$numberInt":"1"},"1-0:32.32.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"14":[{"$numberInt":"1"},"1-0:52.32.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"15":[{"$numberInt":"1"},"1-0:72.32.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"16":[{"$numberInt":"1"},"1-0:32.36.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"17":[{"$numberInt":"1"},"1-0:52.36.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"18":[{"$numberInt":"1"},"1-0:72.36.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"19":[{"$numberInt":"1"},"0-0:96.13.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"20":[{"$numberInt":"3"},"1-0:32.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"21":[{"$numberInt":"3"},"1-0:52.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"22":[{"$numberInt":"3"},"1-0:72.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"23":[{"$numberInt":"3"},"1-0:31.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"24":[{"$numberInt":"3"},"1-0:51.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"25":[{"$numberInt":"3"},"1-0:71.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"26":[{"$numberInt":"3"},"1-0:21.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"27":[{"$numberInt":"3"},"1-0:41.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"28":[{"$numberInt":"3"},"1-0:61.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"29":[{"$numberInt":"3"},"1-0:22.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"30":[{"$numberInt":"3"},"1-0:42.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"31":[{"$numberInt":"3"},"1-0:62.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"32":[{"$numberInt":"72"},"0-1:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"33":[{"$numberInt":"1"},"0-1:96.1.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"34":[{"$numberInt":"4"},"0-1:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"35":[{"$numberInt":"4"},"0-1:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"36":[{"$numberInt":"72"},"0-2:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"37":[{"$numberInt":"1"},"0-2:96.1.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"38":[{"$numberInt":"4"},"0-2:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"39":[{"$numberInt":"4"},"0-2:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"40":[{"$numberInt":"72"},"0-3:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"41":[{"$numberInt":"1"},"0-3:96.1.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"42":[{"$numberInt":"4"},"0-3:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"43":[{"$numberInt":"4"},"0-3:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"44":[{"$numberInt":"72"},"0-4:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"45":[{"$numberInt":"1"},"0-4:96.1.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"46":[{"$numberInt":"4"},"0-4:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"47":[{"$numberInt":"4"},"0-4:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:34:35.395519","status":"success"},{"key":"P1 output.P1 output.Capture period","classId":{"$numberInt":"7"},"obis":"0.0.21.0.0.255","obisFormatted":"0-0:21.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"P1 output","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:35.996250","status":"success"},{"key":"P1 output.P1 output.Sort method","classId":{"$numberInt":"7"},"obis":"0.0.21.0.0.255","obisFormatted":"0-0:21.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"P1 output","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:36.543426","status":"success"},{"key":"P1 output.P1 output.Sort object","classId":{"$numberInt":"7"},"obis":"0.0.21.0.0.255","obisFormatted":"0-0:21.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"P1 output","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:34:37.134740","status":"success"},{"key":"P1 output.P1 output.Entries in use","classId":{"$numberInt":"7"},"obis":"0.0.21.0.0.255","obisFormatted":"0-0:21.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"P1 output","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:37.739021","status":"success"},{"key":"P1 output.P1 output.Profile entries","classId":{"$numberInt":"7"},"obis":"0.0.21.0.0.255","obisFormatted":"0-0:21.0.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"P1 output","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:34:38.321886","status":"success"}],"summary":{"total":{"$numberInt":"9"},"success":{"$numberInt":"9"},"failed":{"$numberInt":"0"}}},"Errors and alarms":{"sheet_name":"Errors and alarms","objects":[{"key":"Errors and alarms.Error 1.Error 1","classId":{"$numberInt":"1"},"obis":"0.0.97.97.0.255","obisFormatted":"0-0:97.97.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Error 1","controlName":"Error 1","value":{"$numberLong":"1585267068834414592"},"timestamp":"2025-11-01T09:34:38.957179","status":"success"},{"key":"Errors and alarms.Filter 1.Filter 1","classId":{"$numberInt":"1"},"obis":"0.0.97.98.10.255","obisFormatted":"0-0:97.98.10.255","attributeId":{"$numberInt":"2"},"attributeName":"Filter 1","controlName":"Filter 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:39.550971","status":"success"},{"key":"Errors and alarms.Alarm 1.Alarm 1","classId":{"$numberInt":"1"},"obis":"0.0.97.98.0.255","obisFormatted":"0-0:97.98.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Alarm 1","controlName":"Alarm 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:40.185903","status":"success"},{"key":"Errors and alarms.Lastgasp.Lastgasp","classId":{"$numberInt":"1"},"obis":"0.0.97.98.2.255","obisFormatted":"0-0:97.98.2.255","attributeId":{"$numberInt":"2"},"attributeName":"Lastgasp","controlName":"Lastgasp","value":"ObjectUndefined","timestamp":"2025-11-01T09:34:40.849792","status":"success"}],"summary":{"total":{"$numberInt":"4"},"success":{"$numberInt":"4"},"failed":{"$numberInt":"0"}}},"Instantaneous Data":{"sheet_name":"Instantaneous Data","objects":[{"key":"Instantaneous Data.Instantaneous current (Sum of all phases).Value","classId":{"$numberInt":"3"},"obis":"1.0.90.7.0.255","obisFormatted":"1-0:90.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous current (Sum of all phases)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:41.593006","status":"success"},{"key":"Instantaneous Data.Instantaneous Current L1.Value","classId":{"$numberInt":"3"},"obis":"1.0.31.7.0.255","obisFormatted":"1-0:31.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous Current L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:42.336630","status":"success"},{"key":"Instantaneous Data.Instantaneous Current L2.Value","classId":{"$numberInt":"3"},"obis":"1.0.51.7.0.255","obisFormatted":"1-0:51.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous Current L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:43.053823","status":"success"},{"key":"Instantaneous Data.Instantaneous Current L3.Value","classId":{"$numberInt":"3"},"obis":"1.0.71.7.0.255","obisFormatted":"1-0:71.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous Current L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:43.758548","status":"success"},{"key":"Instantaneous Data.Instantaneous Voltage L1.Value","classId":{"$numberInt":"3"},"obis":"1.0.32.7.0.255","obisFormatted":"1-0:32.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous Voltage L1","value":{"$numberInt":"215"},"timestamp":"2025-11-01T09:34:44.444849","status":"success"},{"key":"Instantaneous Data.Instantaneous Voltage L2.Value","classId":{"$numberInt":"3"},"obis":"1.0.52.7.0.255","obisFormatted":"1-0:52.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous Voltage L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:45.130498","status":"success"},{"key":"Instantaneous Data.Instantaneous Voltage L3.Value","classId":{"$numberInt":"3"},"obis":"1.0.72.7.0.255","obisFormatted":"1-0:72.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous Voltage L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:45.855199","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (+P) Total.Value","classId":{"$numberInt":"3"},"obis":"1.0.1.7.0.255","obisFormatted":"1-0:1.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (+P) Total","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:46.568140","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (-P) Total.Value","classId":{"$numberInt":"3"},"obis":"1.0.2.7.0.255","obisFormatted":"1-0:2.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (-P) Total","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:47.299710","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (abs(QI+QIV)-abs(QII+QIII)).Value","classId":{"$numberInt":"3"},"obis":"1.0.16.7.0.255","obisFormatted":"1-0:16.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (abs(QI+QIV)-abs(QII+QIII))","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:48.007321","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (+P{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.17.7.0.255","obisFormatted":"1-0:17.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (+P{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:48.760453","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (-P{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.18.7.0.255","obisFormatted":"1-0:18.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (-P{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:49.480670","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (-P{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.19.7.0.255","obisFormatted":"1-0:19.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (-P{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:50.217937","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (+P{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.20.7.0.255","obisFormatted":"1-0:20.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (+P{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:50.965143","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (+P) L1.Value","classId":{"$numberInt":"3"},"obis":"1.0.21.7.0.255","obisFormatted":"1-0:21.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (+P) L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:51.689645","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (-P) L1.Value","classId":{"$numberInt":"3"},"obis":"1.0.22.7.0.255","obisFormatted":"1-0:22.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (-P) L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:52.361418","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L1 (+P{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.37.7.0.255","obisFormatted":"1-0:37.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L1 (+P{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:53.071377","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L1 (-P{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.38.7.0.255","obisFormatted":"1-0:38.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L1 (-P{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:53.811021","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L1 (-P{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.39.7.0.255","obisFormatted":"1-0:39.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L1 (-P{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:54.592417","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L1 (+P{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.40.7.0.255","obisFormatted":"1-0:40.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L1 (+P{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:55.262261","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (+P) L2.Value","classId":{"$numberInt":"3"},"obis":"1.0.41.7.0.255","obisFormatted":"1-0:41.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (+P) L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:56.019090","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (-P) L2.Value","classId":{"$numberInt":"3"},"obis":"1.0.42.7.0.255","obisFormatted":"1-0:42.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (-P) L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:56.766109","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L2 (+P{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.57.7.0.255","obisFormatted":"1-0:57.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L2 (+P{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:57.487511","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L2 (-P{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.58.7.0.255","obisFormatted":"1-0:58.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L2 (-P{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:58.204442","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L2 (-P{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.59.7.0.255","obisFormatted":"1-0:59.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L2 (-P{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:58.910138","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L2 (+P{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.60.7.0.255","obisFormatted":"1-0:60.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L2 (+P{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:34:59.627203","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (+P) L3.Value","classId":{"$numberInt":"3"},"obis":"1.0.61.7.0.255","obisFormatted":"1-0:61.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (+P) L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:00.374052","status":"success"},{"key":"Instantaneous Data.Instantaneous active power (-P) L3.Value","classId":{"$numberInt":"3"},"obis":"1.0.62.7.0.255","obisFormatted":"1-0:62.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power (-P) L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:01.122559","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L3 (+P{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.77.7.0.255","obisFormatted":"1-0:77.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L3 (+P{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:01.867289","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L3 (-P{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.78.7.0.255","obisFormatted":"1-0:78.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L3 (-P{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:02.583732","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L3 (-P{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.79.7.0.255","obisFormatted":"1-0:79.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L3 (-P{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:03.313652","status":"success"},{"key":"Instantaneous Data.Instantaneous active power L3 (+P{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.80.7.0.255","obisFormatted":"1-0:80.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous active power L3 (+P{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:04.038380","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power (+Q).Value","classId":{"$numberInt":"3"},"obis":"1.0.3.7.0.255","obisFormatted":"1-0:3.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power (+Q)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:04.807185","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power (-Q).Value","classId":{"$numberInt":"3"},"obis":"1.0.4.7.0.255","obisFormatted":"1-0:4.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power (-Q)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:05.556060","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power (+Q{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.5.7.0.255","obisFormatted":"1-0:5.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power (+Q{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:06.325205","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power (+Q{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.6.7.0.255","obisFormatted":"1-0:6.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power (+Q{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:07.051241","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power (-Q{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.7.7.0.255","obisFormatted":"1-0:7.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power (-Q{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:07.802699","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power (-Q{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.8.7.0.255","obisFormatted":"1-0:8.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power (-Q{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:08.558452","status":"success"},{"key":"Instantaneous Data.Instantanous reactive power L1 (+Q).Value","classId":{"$numberInt":"3"},"obis":"1.0.23.7.0.255","obisFormatted":"1-0:23.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantanous reactive power L1 (+Q)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:09.337492","status":"success"},{"key":"Instantaneous Data.Instantanous reactive power L1 (-Q).Value","classId":{"$numberInt":"3"},"obis":"1.0.24.7.0.255","obisFormatted":"1-0:24.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantanous reactive power L1 (-Q)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:10.073660","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L1 (+Q{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.25.7.0.255","obisFormatted":"1-0:25.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L1 (+Q{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:10.790969","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L1 (+Q{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.26.7.0.255","obisFormatted":"1-0:26.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L1 (+Q{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:11.495794","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L1 (-Q{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.27.7.0.255","obisFormatted":"1-0:27.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L1 (-Q{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:12.236236","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L1 (-Q{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.28.7.0.255","obisFormatted":"1-0:28.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L1 (-Q{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:12.959943","status":"success"},{"key":"Instantaneous Data.Instantanous reactive power L2 (+Q).Value","classId":{"$numberInt":"3"},"obis":"1.0.43.7.0.255","obisFormatted":"1-0:43.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantanous reactive power L2 (+Q)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:13.699095","status":"success"},{"key":"Instantaneous Data.Instantanous reactive power L2 (-Q).Value","classId":{"$numberInt":"3"},"obis":"1.0.44.7.0.255","obisFormatted":"1-0:44.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantanous reactive power L2 (-Q)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:14.395107","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L2 (+Q{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.45.7.0.255","obisFormatted":"1-0:45.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L2 (+Q{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:15.177644","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L2 (+Q{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.46.7.0.255","obisFormatted":"1-0:46.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L2 (+Q{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:15.911178","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L2 (-Q{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.47.7.0.255","obisFormatted":"1-0:47.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L2 (-Q{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:16.651917","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L2 (-Q{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.48.7.0.255","obisFormatted":"1-0:48.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L2 (-Q{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:17.326540","status":"success"},{"key":"Instantaneous Data.Instantanous reactive power L3 (+Q).Value","classId":{"$numberInt":"3"},"obis":"1.0.63.7.0.255","obisFormatted":"1-0:63.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantanous reactive power L3 (+Q)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:18.070196","status":"success"},{"key":"Instantaneous Data.Instantanous reactive power L3 (-Q).Value","classId":{"$numberInt":"3"},"obis":"1.0.64.7.0.255","obisFormatted":"1-0:64.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantanous reactive power L3 (-Q)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:18.808192","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L3 (+Q{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.65.7.0.255","obisFormatted":"1-0:65.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L3 (+Q{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:19.537006","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L3 (+Q{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.66.7.0.255","obisFormatted":"1-0:66.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L3 (+Q{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:20.202828","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L3 (-Q{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.67.7.0.255","obisFormatted":"1-0:67.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L3 (-Q{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:20.968687","status":"success"},{"key":"Instantaneous Data.Instantaneous reactive power L3 (-Q{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.68.7.0.255","obisFormatted":"1-0:68.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous reactive power L3 (-Q{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:21.701781","status":"success"},{"key":"Instantaneous Data.Instantaneous apparent power (+S).Value","classId":{"$numberInt":"3"},"obis":"1.0.9.7.0.255","obisFormatted":"1-0:9.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous apparent power (+S)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:22.435116","status":"success"},{"key":"Instantaneous Data.Instantaneous apparent power (-S).Value","classId":{"$numberInt":"3"},"obis":"1.0.10.7.0.255","obisFormatted":"1-0:10.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Instantaneous apparent power (-S)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:23.110573","status":"success"},{"key":"Instantaneous Data.Temperature.Value","classId":{"$numberInt":"3"},"obis":"0.0.96.9.0.255","obisFormatted":"0-0:96.9.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Temperature","value":{"$numberInt":"26"},"timestamp":"2025-11-01T09:35:23.758850","status":"success"},{"key":"Instantaneous Data.Safety Factor event 22.Value","classId":{"$numberInt":"3"},"obis":"0.0.96.50.0.255","obisFormatted":"0-0:96.50.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Safety Factor event 22","value":{"$numberInt":"110"},"timestamp":"2025-11-01T09:35:24.380635","status":"success"}],"summary":{"total":{"$numberInt":"60"},"success":{"$numberInt":"60"},"failed":{"$numberInt":"0"}}},"Energy":{"sheet_name":"Energy","objects":[{"key":"Energy.Cumulative A Positive.Value","classId":{"$numberInt":"3"},"obis":"1.0.1.8.0.255","obisFormatted":"1-0:1.8.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Cumulative A Positive","value":{"$numberInt":"40163"},"timestamp":"2025-11-01T09:35:24.998717","status":"success"},{"key":"Energy.Cumulative A Positive rate1.Value","classId":{"$numberInt":"3"},"obis":"1.0.1.8.1.255","obisFormatted":"1-0:1.8.1.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Cumulative A Positive rate1","value":{"$numberInt":"40154"},"timestamp":"2025-11-01T09:35:25.684168","status":"success"},{"key":"Energy.Cumulative A Positive rate2.Value","classId":{"$numberInt":"3"},"obis":"1.0.1.8.2.255","obisFormatted":"1-0:1.8.2.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Cumulative A Positive rate2","value":{"$numberInt":"9"},"timestamp":"2025-11-01T09:35:26.289278","status":"success"},{"key":"Energy.Cumulative A Negative.Value","classId":{"$numberInt":"3"},"obis":"1.0.2.8.0.255","obisFormatted":"1-0:2.8.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Cumulative A Negative","value":{"$numberInt":"14"},"timestamp":"2025-11-01T09:35:26.898320","status":"success"},{"key":"Energy.Cumulative A Negative rate1.Value","classId":{"$numberInt":"3"},"obis":"1.0.2.8.1.255","obisFormatted":"1-0:2.8.1.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Cumulative A Negative rate1","value":{"$numberInt":"14"},"timestamp":"2025-11-01T09:35:27.491838","status":"success"},{"key":"Energy.Cumulative A Negative rate2.Value","classId":{"$numberInt":"3"},"obis":"1.0.2.8.2.255","obisFormatted":"1-0:2.8.2.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Cumulative A Negative rate2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:28.132712","status":"success"}],"summary":{"total":{"$numberInt":"6"},"success":{"$numberInt":"6"},"failed":{"$numberInt":"0"}}},"Average Measurement Data":{"sheet_name":"Average Measurement Data","objects":[{"key":"Average Measurement Data.Average voltage L1.Value","classId":{"$numberInt":"3"},"obis":"1.0.32.25.0.255","obisFormatted":"1-0:32.25.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average voltage L1","value":{"$numberInt":"216"},"timestamp":"2025-11-01T09:35:28.785741","status":"success"},{"key":"Average Measurement Data.Average current L1.Value","classId":{"$numberInt":"3"},"obis":"1.0.31.25.0.255","obisFormatted":"1-0:31.25.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average current L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:29.497671","status":"success"},{"key":"Average Measurement Data.Average active power (+P) L1.Value","classId":{"$numberInt":"3"},"obis":"1.0.21.5.0.255","obisFormatted":"1-0:21.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power (+P) L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:30.196228","status":"success"},{"key":"Average Measurement Data.Average active power (-P) L1.Value","classId":{"$numberInt":"3"},"obis":"1.0.22.5.0.255","obisFormatted":"1-0:22.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power (-P) L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:30.937980","status":"success"},{"key":"Average Measurement Data.Average reactive power (+Q) L1.Value","classId":{"$numberInt":"3"},"obis":"1.0.23.5.0.255","obisFormatted":"1-0:23.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power (+Q) L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:31.676787","status":"success"},{"key":"Average Measurement Data.Average reactive power (-Q) L1.Value","classId":{"$numberInt":"3"},"obis":"1.0.24.5.0.255","obisFormatted":"1-0:24.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power (-Q) L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:32.430763","status":"success"},{"key":"Average Measurement Data.Average reactive power L1 {+Q{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.25.5.0.255","obisFormatted":"1-0:25.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L1 {+Q{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:33.182490","status":"success"},{"key":"Average Measurement Data.Average reactive power L1 {+Q{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.26.5.0.255","obisFormatted":"1-0:26.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L1 {+Q{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:33.883634","status":"success"},{"key":"Average Measurement Data.Average reactive power L1 {-Q{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.27.5.0.255","obisFormatted":"1-0:27.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L1 {-Q{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:34.589048","status":"success"},{"key":"Average Measurement Data.Average reactive power L1 {-Q{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.28.5.0.255","obisFormatted":"1-0:28.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L1 {-Q{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:35.351696","status":"success"},{"key":"Average Measurement Data.Average active power L1 (+P{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.37.5.0.255","obisFormatted":"1-0:37.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L1 (+P{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:36.071360","status":"success"},{"key":"Average Measurement Data.Average active power L1 (-P{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.38.5.0.255","obisFormatted":"1-0:38.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L1 (-P{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:36.767488","status":"success"},{"key":"Average Measurement Data.Average active power L1 (-P{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.39.5.0.255","obisFormatted":"1-0:39.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L1 (-P{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:37.472218","status":"success"},{"key":"Average Measurement Data.Average active power L1 (+P{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.40.5.0.255","obisFormatted":"1-0:40.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L1 (+P{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:38.204750","status":"success"},{"key":"Average Measurement Data.Average voltage L2.Value","classId":{"$numberInt":"3"},"obis":"1.0.52.25.0.255","obisFormatted":"1-0:52.25.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average voltage L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:38.977027","status":"success"},{"key":"Average Measurement Data.Average current L2.Value","classId":{"$numberInt":"3"},"obis":"1.0.51.25.0.255","obisFormatted":"1-0:51.25.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average current L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:39.708499","status":"success"},{"key":"Average Measurement Data.Average active power (+P) L2.Value","classId":{"$numberInt":"3"},"obis":"1.0.41.5.0.255","obisFormatted":"1-0:41.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power (+P) L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:40.441801","status":"success"},{"key":"Average Measurement Data.Average active power (-P) L2.Value","classId":{"$numberInt":"3"},"obis":"1.0.42.5.0.255","obisFormatted":"1-0:42.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power (-P) L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:41.163947","status":"success"},{"key":"Average Measurement Data.Average reactive power (+Q) L2.Value","classId":{"$numberInt":"3"},"obis":"1.0.43.5.0.255","obisFormatted":"1-0:43.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power (+Q) L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:41.900538","status":"success"},{"key":"Average Measurement Data.Average reactive power (-Q) L2.Value","classId":{"$numberInt":"3"},"obis":"1.0.44.5.0.255","obisFormatted":"1-0:44.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power (-Q) L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:42.619155","status":"success"},{"key":"Average Measurement Data.Average reactive power L2 {+Q{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.45.5.0.255","obisFormatted":"1-0:45.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L2 {+Q{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:43.292708","status":"success"},{"key":"Average Measurement Data.Average reactive power L2 {+Q{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.46.5.0.255","obisFormatted":"1-0:46.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L2 {+Q{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:44.004366","status":"success"},{"key":"Average Measurement Data.Average reactive power L2 {-Q{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.47.5.0.255","obisFormatted":"1-0:47.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L2 {-Q{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:44.695447","status":"success"},{"key":"Average Measurement Data.Average reactive power L2 {-Q{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.48.5.0.255","obisFormatted":"1-0:48.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L2 {-Q{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:45.422565","status":"success"},{"key":"Average Measurement Data.Average active power L2 (+P{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.57.5.0.255","obisFormatted":"1-0:57.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L2 (+P{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:46.155468","status":"success"},{"key":"Average Measurement Data.Average active power L2 (-P{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.58.5.0.255","obisFormatted":"1-0:58.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L2 (-P{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:46.876330","status":"success"},{"key":"Average Measurement Data.Average active power L2 (-P{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.59.5.0.255","obisFormatted":"1-0:59.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L2 (-P{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:47.639934","status":"success"},{"key":"Average Measurement Data.Average active power L2 (+P{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.60.5.0.255","obisFormatted":"1-0:60.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L2 (+P{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:48.342927","status":"success"},{"key":"Average Measurement Data.Average voltage L3.Value","classId":{"$numberInt":"3"},"obis":"1.0.72.25.0.255","obisFormatted":"1-0:72.25.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average voltage L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:49.095358","status":"success"},{"key":"Average Measurement Data.Average current L3.Value","classId":{"$numberInt":"3"},"obis":"1.0.71.25.0.255","obisFormatted":"1-0:71.25.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average current L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:49.843345","status":"success"},{"key":"Average Measurement Data.Average active power (+P) L3.Value","classId":{"$numberInt":"3"},"obis":"1.0.61.5.0.255","obisFormatted":"1-0:61.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power (+P) L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:50.563170","status":"success"},{"key":"Average Measurement Data.Average active power (-P) L3.Value","classId":{"$numberInt":"3"},"obis":"1.0.62.5.0.255","obisFormatted":"1-0:62.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power (-P) L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:51.279028","status":"success"},{"key":"Average Measurement Data.Average reactive power (+Q) L3.Value","classId":{"$numberInt":"3"},"obis":"1.0.63.5.0.255","obisFormatted":"1-0:63.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power (+Q) L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:52.028887","status":"success"},{"key":"Average Measurement Data.Average reactive power (-Q) L3.Value","classId":{"$numberInt":"3"},"obis":"1.0.64.5.0.255","obisFormatted":"1-0:64.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power (-Q) L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:52.784988","status":"success"},{"key":"Average Measurement Data.Average reactive power L3 {+Q{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.65.5.0.255","obisFormatted":"1-0:65.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L3 {+Q{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:53.512221","status":"success"},{"key":"Average Measurement Data.Average reactive power L3 {+Q{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.66.5.0.255","obisFormatted":"1-0:66.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L3 {+Q{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:54.279858","status":"success"},{"key":"Average Measurement Data.Average reactive power L3 {-Q{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.67.5.0.255","obisFormatted":"1-0:67.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L3 {-Q{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:55.034822","status":"success"},{"key":"Average Measurement Data.Average reactive power L3 {-Q{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.68.5.0.255","obisFormatted":"1-0:68.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average reactive power L3 {-Q{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:55.781530","status":"success"},{"key":"Average Measurement Data.Average active power L3 (+P{QI}).Value","classId":{"$numberInt":"3"},"obis":"1.0.77.5.0.255","obisFormatted":"1-0:77.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L3 (+P{QI})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:56.569994","status":"success"},{"key":"Average Measurement Data.Average active power L3 (-P{QII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.78.5.0.255","obisFormatted":"1-0:78.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L3 (-P{QII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:57.287714","status":"success"},{"key":"Average Measurement Data.Average active power L3 (-P{QIII}).Value","classId":{"$numberInt":"3"},"obis":"1.0.79.5.0.255","obisFormatted":"1-0:79.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L3 (-P{QIII})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:57.960490","status":"success"},{"key":"Average Measurement Data.Average active power L3 (+P{QIV}).Value","classId":{"$numberInt":"3"},"obis":"1.0.80.5.0.255","obisFormatted":"1-0:80.5.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Average active power L3 (+P{QIV})","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:35:58.655471","status":"success"}],"summary":{"total":{"$numberInt":"42"},"success":{"$numberInt":"42"},"failed":{"$numberInt":"0"}}},"Tariff":{"sheet_name":"Tariff","objects":[{"key":"Tariff.Current Rate.Current Rate","classId":{"$numberInt":"1"},"obis":"0.0.96.14.0.255","obisFormatted":"0-0:96.14.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Current Rate","controlName":"Current Rate","value":"0002","timestamp":"2025-11-01T09:35:59.282888","status":"success"},{"key":"Tariff.Tariff Table.Calendar name","classId":{"$numberInt":"20"},"obis":"0.0.13.0.0.255","obisFormatted":"0-0:13.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Calendar name","controlName":"Tariff Table","value":"3032","timestamp":"2025-11-01T09:35:59.911983","status":"success"},{"key":"Tariff.Tariff Table.Season profile active","classId":{"$numberInt":"20"},"obis":"0.0.13.0.0.255","obisFormatted":"0-0:13.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Season profile active","controlName":"Tariff Table","value":{"0":["00","FFFF-01-01 FF 00:00:00 00,FFC4,00","01"]},"timestamp":"2025-11-01T09:36:00.512634","status":"success"},{"key":"Tariff.Tariff Table.Week profile table active","classId":{"$numberInt":"20"},"obis":"0.0.13.0.0.255","obisFormatted":"0-0:13.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Week profile table active","controlName":"Tariff Table","value":{"0":["00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["01",{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["02",{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:01.225043","status":"success"},{"key":"Tariff.Tariff Table.Day profile table active","classId":{"$numberInt":"20"},"obis":"0.0.13.0.0.255","obisFormatted":"0-0:13.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Day profile table active","controlName":"Tariff Table","value":{"0":[{"$numberInt":"0"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]],"1":[{"$numberInt":"1"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}],["07:00:00:00","0-0:10.0.100.255",{"$numberInt":"2"}],["21:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]],"2":[{"$numberInt":"2"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}],["07:00:00:00","0-0:10.0.100.255",{"$numberInt":"2"}],["23:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]]},"timestamp":"2025-11-01T09:36:02.341161","status":"success"},{"key":"Tariff.Tariff Table.Calendar name","classId":{"$numberInt":"20"},"obis":"0.0.13.0.0.255","obisFormatted":"0-0:13.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Calendar name","controlName":"Tariff Table","value":"3032","timestamp":"2025-11-01T09:36:02.975279","status":"success"},{"key":"Tariff.Tariff Table.Season profile passive","classId":{"$numberInt":"20"},"obis":"0.0.13.0.0.255","obisFormatted":"0-0:13.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Season profile passive","controlName":"Tariff Table","value":{"0":["00","FFFF-01-01 FF 00:00:00 00,FFC4,00","01"]},"timestamp":"2025-11-01T09:36:03.636671","status":"success"},{"key":"Tariff.Tariff Table.Week profile table passive","classId":{"$numberInt":"20"},"obis":"0.0.13.0.0.255","obisFormatted":"0-0:13.0.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Week profile table passive","controlName":"Tariff Table","value":{"0":["00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["01",{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["02",{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:04.336072","status":"success"},{"key":"Tariff.Tariff Table.Day profile table passive","classId":{"$numberInt":"20"},"obis":"0.0.13.0.0.255","obisFormatted":"0-0:13.0.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Day profile table passive","controlName":"Tariff Table","value":{"0":[{"$numberInt":"0"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]],"1":[{"$numberInt":"1"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}],["07:00:00:00","0-0:10.0.100.255",{"$numberInt":"2"}],["21:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]],"2":[{"$numberInt":"2"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}],["07:00:00:00","0-0:10.0.100.255",{"$numberInt":"2"}],["23:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]]},"timestamp":"2025-11-01T09:36:05.407037","status":"success"},{"key":"Tariff.Tariff Table.Activate passive calendar time","classId":{"$numberInt":"20"},"obis":"0.0.13.0.0.255","obisFormatted":"0-0:13.0.0.255","attributeId":{"$numberInt":"10"},"attributeName":"Activate passive calendar time","controlName":"Tariff Table","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:36:06.002521","status":"success"},{"key":"Tariff.Special Days.Special days table","classId":{"$numberInt":"11"},"obis":"0.0.11.0.0.255","obisFormatted":"0-0:11.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Special days table","controlName":"Special Days","value":{"0":[{"$numberInt":"0"},"FFFF-01-01-FF",{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"FFFF-04-27-FF",{"$numberInt":"0"}],"2":[{"$numberInt":"2"},"FFFF-12-25-FF",{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"FFFF-12-26-FF",{"$numberInt":"0"}],"4":[{"$numberInt":"4"},"2024-04-01-FF",{"$numberInt":"0"}],"5":[{"$numberInt":"5"},"2024-05-09-FF",{"$numberInt":"0"}],"6":[{"$numberInt":"6"},"2024-05-20-FF",{"$numberInt":"0"}],"7":[{"$numberInt":"7"},"2025-04-21-FF",{"$numberInt":"0"}],"8":[{"$numberInt":"8"},"2025-05-29-FF",{"$numberInt":"0"}],"9":[{"$numberInt":"9"},"2025-06-09-FF",{"$numberInt":"0"}],"10":[{"$numberInt":"10"},"2026-04-06-FF",{"$numberInt":"0"}],"11":[{"$numberInt":"11"},"2026-05-14-FF",{"$numberInt":"0"}],"12":[{"$numberInt":"12"},"2026-05-25-FF",{"$numberInt":"0"}],"13":[{"$numberInt":"13"},"2027-03-29-FF",{"$numberInt":"0"}],"14":[{"$numberInt":"14"},"2027-05-06-FF",{"$numberInt":"0"}],"15":[{"$numberInt":"15"},"2027-05-17-FF",{"$numberInt":"0"}],"16":[{"$numberInt":"16"},"2028-04-17-FF",{"$numberInt":"0"}],"17":[{"$numberInt":"17"},"2028-05-25-FF",{"$numberInt":"0"}],"18":[{"$numberInt":"18"},"2028-06-05-FF",{"$numberInt":"0"}],"19":[{"$numberInt":"19"},"2029-04-02-FF",{"$numberInt":"0"}],"20":[{"$numberInt":"20"},"2029-05-10-FF",{"$numberInt":"0"}],"21":[{"$numberInt":"21"},"2029-05-21-FF",{"$numberInt":"0"}],"22":[{"$numberInt":"22"},"2030-04-22-FF",{"$numberInt":"0"}],"23":[{"$numberInt":"23"},"2030-05-30-FF",{"$numberInt":"0"}],"24":[{"$numberInt":"24"},"2030-06-10-FF",{"$numberInt":"0"}],"25":[{"$numberInt":"25"},"2031-04-14-FF",{"$numberInt":"0"}],"26":[{"$numberInt":"26"},"2031-05-22-FF",{"$numberInt":"0"}],"27":[{"$numberInt":"27"},"2031-06-02-FF",{"$numberInt":"0"}],"28":[{"$numberInt":"28"},"2032-03-29-FF",{"$numberInt":"0"}],"29":[{"$numberInt":"29"},"2032-05-06-FF",{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:08.821302","status":"success"},{"key":"Tariff.Tariffication.Scripts","classId":{"$numberInt":"9"},"obis":"0.0.10.0.100.255","obisFormatted":"0-0:10.0.100.255","attributeId":{"$numberInt":"2"},"attributeName":"Scripts","controlName":"Tariffication","value":{"0":[{"$numberInt":"1"},[[{"$numberInt":"1"},{"$numberInt":"6"},"0-0:14.0.0.255",{"$numberInt":"4"},"0001"]]],"1":[{"$numberInt":"2"},[[{"$numberInt":"1"},{"$numberInt":"6"},"0-0:14.0.0.255",{"$numberInt":"4"},"0002"]]]},"timestamp":"2025-11-01T09:36:09.504411","status":"success"},{"key":"Tariff.Register Activation.Register assignment","classId":{"$numberInt":"6"},"obis":"0.0.14.0.0.255","obisFormatted":"0-0:14.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Register assignment","controlName":"Register Activation","value":{"0":[{"$numberInt":"3"},"1-0:1.8.1.255"],"1":[{"$numberInt":"3"},"1-0:1.8.2.255"],"2":[{"$numberInt":"3"},"1-0:2.8.1.255"],"3":[{"$numberInt":"3"},"1-0:2.8.2.255"]},"timestamp":"2025-11-01T09:36:10.137593","status":"success"},{"key":"Tariff.Register Activation.Mask list","classId":{"$numberInt":"6"},"obis":"0.0.14.0.0.255","obisFormatted":"0-0:14.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Mask list","controlName":"Register Activation","value":{"0":["0001",[{"$numberInt":"1"},{"$numberInt":"3"}]],"1":["0002",[{"$numberInt":"2"},{"$numberInt":"4"}]]},"timestamp":"2025-11-01T09:36:10.746216","status":"success"},{"key":"Tariff.Register Activation.Active mask","classId":{"$numberInt":"6"},"obis":"0.0.14.0.0.255","obisFormatted":"0-0:14.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Active mask","controlName":"Register Activation","value":"0002","timestamp":"2025-11-01T09:36:11.359754","status":"success"}],"summary":{"total":{"$numberInt":"15"},"success":{"$numberInt":"15"},"failed":{"$numberInt":"0"}}},"Month Billing":{"sheet_name":"Month Billing","objects":[{"key":"Month Billing.AMR Profile Status Code E meter - Monthly.AMR Profile Status Code E meter - Monthly","classId":{"$numberInt":"1"},"obis":"0.0.96.10.6.255","obisFormatted":"0-0:96.10.6.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code E meter - Monthly","controlName":"AMR Profile Status Code E meter - Monthly","value":{"$numberInt":"165"},"timestamp":"2025-11-01T09:36:12.016362","status":"success"},{"key":"Month Billing.E-meter Monthly Billing.Buffer","classId":{"$numberInt":"7"},"obis":"1.0.98.1.0.255","obisFormatted":"1-0:98.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"E-meter Monthly Billing","value":{"0":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"167"},{"$numberInt":"10273"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"164"},{"$numberInt":"20907"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"45"},{"$numberInt":"23095"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"3":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"172"},{"$numberInt":"23145"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:13.050049","status":"success"},{"key":"Month Billing.E-meter Monthly Billing.Capture objects","classId":{"$numberInt":"7"},"obis":"1.0.98.1.0.255","obisFormatted":"1-0:98.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"E-meter Monthly Billing","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.10.6.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:14.042247","status":"success"},{"key":"Month Billing.E-meter Monthly Billing.Capture period","classId":{"$numberInt":"7"},"obis":"1.0.98.1.0.255","obisFormatted":"1-0:98.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"E-meter Monthly Billing","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:14.678447","status":"success"},{"key":"Month Billing.E-meter Monthly Billing.Sort method","classId":{"$numberInt":"7"},"obis":"1.0.98.1.0.255","obisFormatted":"1-0:98.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"E-meter Monthly Billing","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:36:15.282445","status":"success"},{"key":"Month Billing.E-meter Monthly Billing.Sort object","classId":{"$numberInt":"7"},"obis":"1.0.98.1.0.255","obisFormatted":"1-0:98.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"E-meter Monthly Billing","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:15.891849","status":"success"},{"key":"Month Billing.E-meter Monthly Billing.Entries in use","classId":{"$numberInt":"7"},"obis":"1.0.98.1.0.255","obisFormatted":"1-0:98.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"E-meter Monthly Billing","value":{"$numberInt":"4"},"timestamp":"2025-11-01T09:36:16.480897","status":"success"},{"key":"Month Billing.E-meter Monthly Billing.Profile entries","classId":{"$numberInt":"7"},"obis":"1.0.98.1.0.255","obisFormatted":"1-0:98.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"E-meter Monthly Billing","value":{"$numberInt":"13"},"timestamp":"2025-11-01T09:36:17.118246","status":"success"},{"key":"Month Billing.AMR Profile Status Code M-BUS - Monthly.AMR Profile Status Code M-BUS - Monthly","classId":{"$numberInt":"1"},"obis":"0.1.96.10.7.255","obisFormatted":"0-1:96.10.7.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Monthly","controlName":"AMR Profile Status Code M-BUS - Monthly","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:36:17.820539","status":"success"},{"key":"Month Billing.Channel 1.Buffer","classId":{"$numberInt":"7"},"obis":"0.1.98.1.0.255","obisFormatted":"0-1:98.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 1","value":{},"timestamp":"2025-11-01T09:36:18.387869","status":"success"},{"key":"Month Billing.Channel 1.Capture objects","classId":{"$numberInt":"7"},"obis":"0.1.98.1.0.255","obisFormatted":"0-1:98.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 1","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-1:96.10.7.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:19.062627","status":"success"},{"key":"Month Billing.Channel 1.Capture period","classId":{"$numberInt":"7"},"obis":"0.1.98.1.0.255","obisFormatted":"0-1:98.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:19.654833","status":"success"},{"key":"Month Billing.Channel 1.Sort method","classId":{"$numberInt":"7"},"obis":"0.1.98.1.0.255","obisFormatted":"0-1:98.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 1","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:36:20.258091","status":"success"},{"key":"Month Billing.Channel 1.Sort object","classId":{"$numberInt":"7"},"obis":"0.1.98.1.0.255","obisFormatted":"0-1:98.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 1","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:20.889182","status":"success"},{"key":"Month Billing.Channel 1.Entries in use","classId":{"$numberInt":"7"},"obis":"0.1.98.1.0.255","obisFormatted":"0-1:98.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:21.483676","status":"success"},{"key":"Month Billing.Channel 1.Profile entries","classId":{"$numberInt":"7"},"obis":"0.1.98.1.0.255","obisFormatted":"0-1:98.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 1","value":{"$numberInt":"13"},"timestamp":"2025-11-01T09:36:22.106903","status":"success"},{"key":"Month Billing.AMR Profile Status Code M-BUS - Monthly.AMR Profile Status Code M-BUS - Monthly","classId":{"$numberInt":"1"},"obis":"0.2.96.10.7.255","obisFormatted":"0-2:96.10.7.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Monthly","controlName":"AMR Profile Status Code M-BUS - Monthly","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:36:22.740033","status":"success"},{"key":"Month Billing.Channel 2.Buffer","classId":{"$numberInt":"7"},"obis":"0.2.98.1.0.255","obisFormatted":"0-2:98.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 2","value":{},"timestamp":"2025-11-01T09:36:23.342181","status":"success"},{"key":"Month Billing.Channel 2.Capture objects","classId":{"$numberInt":"7"},"obis":"0.2.98.1.0.255","obisFormatted":"0-2:98.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 2","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-2:96.10.7.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:24.012738","status":"success"},{"key":"Month Billing.Channel 2.Capture period","classId":{"$numberInt":"7"},"obis":"0.2.98.1.0.255","obisFormatted":"0-2:98.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:24.657799","status":"success"},{"key":"Month Billing.Channel 2.Sort method","classId":{"$numberInt":"7"},"obis":"0.2.98.1.0.255","obisFormatted":"0-2:98.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 2","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:36:25.202939","status":"success"},{"key":"Month Billing.Channel 2.Sort object","classId":{"$numberInt":"7"},"obis":"0.2.98.1.0.255","obisFormatted":"0-2:98.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 2","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:25.848946","status":"success"},{"key":"Month Billing.Channel 2.Entries in use","classId":{"$numberInt":"7"},"obis":"0.2.98.1.0.255","obisFormatted":"0-2:98.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:26.512260","status":"success"},{"key":"Month Billing.Channel 2.Profile entries","classId":{"$numberInt":"7"},"obis":"0.2.98.1.0.255","obisFormatted":"0-2:98.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 2","value":{"$numberInt":"13"},"timestamp":"2025-11-01T09:36:27.106727","status":"success"},{"key":"Month Billing.AMR Profile Status Code M-BUS - Monthly.AMR Profile Status Code M-BUS - Monthly","classId":{"$numberInt":"1"},"obis":"0.3.96.10.7.255","obisFormatted":"0-3:96.10.7.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Monthly","controlName":"AMR Profile Status Code M-BUS - Monthly","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:36:27.881764","status":"success"},{"key":"Month Billing.Channel 3.Buffer","classId":{"$numberInt":"7"},"obis":"0.3.98.1.0.255","obisFormatted":"0-3:98.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 3","value":{},"timestamp":"2025-11-01T09:36:28.480763","status":"success"},{"key":"Month Billing.Channel 3.Capture objects","classId":{"$numberInt":"7"},"obis":"0.3.98.1.0.255","obisFormatted":"0-3:98.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 3","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-3:96.10.7.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:29.191477","status":"success"},{"key":"Month Billing.Channel 3.Capture period","classId":{"$numberInt":"7"},"obis":"0.3.98.1.0.255","obisFormatted":"0-3:98.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:29.766359","status":"success"},{"key":"Month Billing.Channel 3.Sort method","classId":{"$numberInt":"7"},"obis":"0.3.98.1.0.255","obisFormatted":"0-3:98.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 3","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:36:30.357375","status":"success"},{"key":"Month Billing.Channel 3.Sort object","classId":{"$numberInt":"7"},"obis":"0.3.98.1.0.255","obisFormatted":"0-3:98.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 3","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:31.007208","status":"success"},{"key":"Month Billing.Channel 3.Entries in use","classId":{"$numberInt":"7"},"obis":"0.3.98.1.0.255","obisFormatted":"0-3:98.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:31.635017","status":"success"},{"key":"Month Billing.Channel 3.Profile entries","classId":{"$numberInt":"7"},"obis":"0.3.98.1.0.255","obisFormatted":"0-3:98.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 3","value":{"$numberInt":"13"},"timestamp":"2025-11-01T09:36:32.226481","status":"success"},{"key":"Month Billing.AMR Profile Status Code M-BUS - Monthly.AMR Profile Status Code M-BUS - Monthly","classId":{"$numberInt":"1"},"obis":"0.4.96.10.7.255","obisFormatted":"0-4:96.10.7.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Monthly","controlName":"AMR Profile Status Code M-BUS - Monthly","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:36:32.964328","status":"success"},{"key":"Month Billing.Channel 4.Buffer","classId":{"$numberInt":"7"},"obis":"0.4.98.1.0.255","obisFormatted":"0-4:98.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 4","value":{},"timestamp":"2025-11-01T09:36:33.512413","status":"success"},{"key":"Month Billing.Channel 4.Capture objects","classId":{"$numberInt":"7"},"obis":"0.4.98.1.0.255","obisFormatted":"0-4:98.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 4","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-4:96.10.7.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:34.152763","status":"success"},{"key":"Month Billing.Channel 4.Capture period","classId":{"$numberInt":"7"},"obis":"0.4.98.1.0.255","obisFormatted":"0-4:98.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:34.781295","status":"success"},{"key":"Month Billing.Channel 4.Sort method","classId":{"$numberInt":"7"},"obis":"0.4.98.1.0.255","obisFormatted":"0-4:98.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 4","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:36:35.407755","status":"success"},{"key":"Month Billing.Channel 4.Sort object","classId":{"$numberInt":"7"},"obis":"0.4.98.1.0.255","obisFormatted":"0-4:98.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 4","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:36.074939","status":"success"},{"key":"Month Billing.Channel 4.Entries in use","classId":{"$numberInt":"7"},"obis":"0.4.98.1.0.255","obisFormatted":"0-4:98.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:36.674264","status":"success"},{"key":"Month Billing.Channel 4.Profile entries","classId":{"$numberInt":"7"},"obis":"0.4.98.1.0.255","obisFormatted":"0-4:98.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 4","value":{"$numberInt":"13"},"timestamp":"2025-11-01T09:36:37.289894","status":"success"}],"summary":{"total":{"$numberInt":"40"},"success":{"$numberInt":"40"},"failed":{"$numberInt":"0"}}},"Daily Billing":{"sheet_name":"Daily Billing","objects":[{"key":"Daily Billing.AMR Profile Status Code E meter - Daily.AMR Profile Status Code E meter - Daily","classId":{"$numberInt":"1"},"obis":"0.0.96.10.4.255","obisFormatted":"0-0:96.10.4.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code E meter - Daily","controlName":"AMR Profile Status Code E meter - Daily","value":{"$numberInt":"165"},"timestamp":"2025-11-01T09:36:37.950198","status":"success"},{"key":"Daily Billing.E-meter Daily Billing.Buffer","classId":{"$numberInt":"7"},"obis":"1.0.99.2.0.255","obisFormatted":"1-0:99.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"E-meter Daily Billing","value":{"0":["2025-10-25 06 00:00:00 00,FF88,80",{"$numberInt":"175"},{"$numberInt":"9263"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"10273"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"164"},{"$numberInt":"20907"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"3":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"45"},{"$numberInt":"23095"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"4":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"172"},{"$numberInt":"23145"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:39.049786","status":"success"},{"key":"Daily Billing.E-meter Daily Billing.Capture objects","classId":{"$numberInt":"7"},"obis":"1.0.99.2.0.255","obisFormatted":"1-0:99.2.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"E-meter Daily Billing","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.10.4.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:40.028555","status":"success"},{"key":"Daily Billing.E-meter Daily Billing.Capture period","classId":{"$numberInt":"7"},"obis":"1.0.99.2.0.255","obisFormatted":"1-0:99.2.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"E-meter Daily Billing","value":{"$numberInt":"86400"},"timestamp":"2025-11-01T09:36:40.650323","status":"success"},{"key":"Daily Billing.E-meter Daily Billing.Sort method","classId":{"$numberInt":"7"},"obis":"1.0.99.2.0.255","obisFormatted":"1-0:99.2.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"E-meter Daily Billing","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:36:41.268044","status":"success"},{"key":"Daily Billing.E-meter Daily Billing.Sort object","classId":{"$numberInt":"7"},"obis":"1.0.99.2.0.255","obisFormatted":"1-0:99.2.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"E-meter Daily Billing","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:41.875984","status":"success"},{"key":"Daily Billing.E-meter Daily Billing.Entries in use","classId":{"$numberInt":"7"},"obis":"1.0.99.2.0.255","obisFormatted":"1-0:99.2.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"E-meter Daily Billing","value":{"$numberInt":"5"},"timestamp":"2025-11-01T09:36:42.496826","status":"success"},{"key":"Daily Billing.E-meter Daily Billing.Profile entries","classId":{"$numberInt":"7"},"obis":"1.0.99.2.0.255","obisFormatted":"1-0:99.2.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"E-meter Daily Billing","value":{"$numberInt":"40"},"timestamp":"2025-11-01T09:36:43.115175","status":"success"},{"key":"Daily Billing.AMR Profile Status Code M-BUS - Daily.AMR Profile Status Code M-BUS - Daily","classId":{"$numberInt":"1"},"obis":"0.1.96.10.5.255","obisFormatted":"0-1:96.10.5.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Daily","controlName":"AMR Profile Status Code M-BUS - Daily","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:36:43.823023","status":"success"},{"key":"Daily Billing.Channel 1.Buffer","classId":{"$numberInt":"7"},"obis":"0.1.99.2.0.255","obisFormatted":"0-1:99.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 1","value":{},"timestamp":"2025-11-01T09:36:44.403631","status":"success"},{"key":"Daily Billing.Channel 1.Capture objects","classId":{"$numberInt":"7"},"obis":"0.1.99.2.0.255","obisFormatted":"0-1:99.2.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 1","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-1:96.10.5.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:45.070959","status":"success"},{"key":"Daily Billing.Channel 1.Capture period","classId":{"$numberInt":"7"},"obis":"0.1.99.2.0.255","obisFormatted":"0-1:99.2.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 1","value":{"$numberInt":"86400"},"timestamp":"2025-11-01T09:36:45.688697","status":"success"},{"key":"Daily Billing.Channel 1.Sort method","classId":{"$numberInt":"7"},"obis":"0.1.99.2.0.255","obisFormatted":"0-1:99.2.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 1","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:36:46.265194","status":"success"},{"key":"Daily Billing.Channel 1.Sort object","classId":{"$numberInt":"7"},"obis":"0.1.99.2.0.255","obisFormatted":"0-1:99.2.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 1","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:46.855364","status":"success"},{"key":"Daily Billing.Channel 1.Entries in use","classId":{"$numberInt":"7"},"obis":"0.1.99.2.0.255","obisFormatted":"0-1:99.2.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:47.490351","status":"success"},{"key":"Daily Billing.Channel 1.Profile entries","classId":{"$numberInt":"7"},"obis":"0.1.99.2.0.255","obisFormatted":"0-1:99.2.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 1","value":{"$numberInt":"40"},"timestamp":"2025-11-01T09:36:48.074019","status":"success"},{"key":"Daily Billing.AMR Profile Status Code M-BUS - Daily.AMR Profile Status Code M-BUS - Daily","classId":{"$numberInt":"1"},"obis":"0.2.96.10.5.255","obisFormatted":"0-2:96.10.5.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Daily","controlName":"AMR Profile Status Code M-BUS - Daily","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:36:48.748348","status":"success"},{"key":"Daily Billing.Channel 2.Buffer","classId":{"$numberInt":"7"},"obis":"0.2.99.2.0.255","obisFormatted":"0-2:99.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 2","value":{},"timestamp":"2025-11-01T09:36:49.332359","status":"success"},{"key":"Daily Billing.Channel 2.Capture objects","classId":{"$numberInt":"7"},"obis":"0.2.99.2.0.255","obisFormatted":"0-2:99.2.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 2","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-2:96.10.5.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:50.014806","status":"success"},{"key":"Daily Billing.Channel 2.Capture period","classId":{"$numberInt":"7"},"obis":"0.2.99.2.0.255","obisFormatted":"0-2:99.2.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 2","value":{"$numberInt":"86400"},"timestamp":"2025-11-01T09:36:50.661634","status":"success"},{"key":"Daily Billing.Channel 2.Sort method","classId":{"$numberInt":"7"},"obis":"0.2.99.2.0.255","obisFormatted":"0-2:99.2.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 2","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:36:51.273320","status":"success"},{"key":"Daily Billing.Channel 2.Sort object","classId":{"$numberInt":"7"},"obis":"0.2.99.2.0.255","obisFormatted":"0-2:99.2.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 2","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:51.885576","status":"success"},{"key":"Daily Billing.Channel 2.Entries in use","classId":{"$numberInt":"7"},"obis":"0.2.99.2.0.255","obisFormatted":"0-2:99.2.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:52.468609","status":"success"},{"key":"Daily Billing.Channel 2.Profile entries","classId":{"$numberInt":"7"},"obis":"0.2.99.2.0.255","obisFormatted":"0-2:99.2.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 2","value":{"$numberInt":"40"},"timestamp":"2025-11-01T09:36:53.057455","status":"success"},{"key":"Daily Billing.AMR Profile Status Code M-BUS - Daily.AMR Profile Status Code M-BUS - Daily","classId":{"$numberInt":"1"},"obis":"0.3.96.10.5.255","obisFormatted":"0-3:96.10.5.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Daily","controlName":"AMR Profile Status Code M-BUS - Daily","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:36:53.811988","status":"success"},{"key":"Daily Billing.Channel 3.Buffer","classId":{"$numberInt":"7"},"obis":"0.3.99.2.0.255","obisFormatted":"0-3:99.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 3","value":{},"timestamp":"2025-11-01T09:36:54.425567","status":"success"},{"key":"Daily Billing.Channel 3.Capture objects","classId":{"$numberInt":"7"},"obis":"0.3.99.2.0.255","obisFormatted":"0-3:99.2.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 3","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-3:96.10.5.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:55.084826","status":"success"},{"key":"Daily Billing.Channel 3.Capture period","classId":{"$numberInt":"7"},"obis":"0.3.99.2.0.255","obisFormatted":"0-3:99.2.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 3","value":{"$numberInt":"86400"},"timestamp":"2025-11-01T09:36:55.661098","status":"success"},{"key":"Daily Billing.Channel 3.Sort method","classId":{"$numberInt":"7"},"obis":"0.3.99.2.0.255","obisFormatted":"0-3:99.2.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 3","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:36:56.259547","status":"success"},{"key":"Daily Billing.Channel 3.Sort object","classId":{"$numberInt":"7"},"obis":"0.3.99.2.0.255","obisFormatted":"0-3:99.2.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 3","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:36:56.887536","status":"success"},{"key":"Daily Billing.Channel 3.Entries in use","classId":{"$numberInt":"7"},"obis":"0.3.99.2.0.255","obisFormatted":"0-3:99.2.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:36:57.477314","status":"success"},{"key":"Daily Billing.Channel 3.Profile entries","classId":{"$numberInt":"7"},"obis":"0.3.99.2.0.255","obisFormatted":"0-3:99.2.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 3","value":{"$numberInt":"40"},"timestamp":"2025-11-01T09:36:58.076392","status":"success"},{"key":"Daily Billing.AMR Profile Status Code M-BUS - Daily.AMR Profile Status Code M-BUS - Daily","classId":{"$numberInt":"1"},"obis":"0.4.96.10.5.255","obisFormatted":"0-4:96.10.5.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Daily","controlName":"AMR Profile Status Code M-BUS - Daily","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:36:58.829127","status":"success"},{"key":"Daily Billing.Channel 4.Buffer","classId":{"$numberInt":"7"},"obis":"0.4.99.2.0.255","obisFormatted":"0-4:99.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 4","value":{},"timestamp":"2025-11-01T09:36:59.421019","status":"success"},{"key":"Daily Billing.Channel 4.Capture objects","classId":{"$numberInt":"7"},"obis":"0.4.99.2.0.255","obisFormatted":"0-4:99.2.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 4","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-4:96.10.5.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:00.082021","status":"success"},{"key":"Daily Billing.Channel 4.Capture period","classId":{"$numberInt":"7"},"obis":"0.4.99.2.0.255","obisFormatted":"0-4:99.2.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 4","value":{"$numberInt":"86400"},"timestamp":"2025-11-01T09:37:00.690505","status":"success"},{"key":"Daily Billing.Channel 4.Sort method","classId":{"$numberInt":"7"},"obis":"0.4.99.2.0.255","obisFormatted":"0-4:99.2.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 4","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:37:01.280417","status":"success"},{"key":"Daily Billing.Channel 4.Sort object","classId":{"$numberInt":"7"},"obis":"0.4.99.2.0.255","obisFormatted":"0-4:99.2.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 4","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:01.911388","status":"success"},{"key":"Daily Billing.Channel 4.Entries in use","classId":{"$numberInt":"7"},"obis":"0.4.99.2.0.255","obisFormatted":"0-4:99.2.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:37:02.520243","status":"success"},{"key":"Daily Billing.Channel 4.Profile entries","classId":{"$numberInt":"7"},"obis":"0.4.99.2.0.255","obisFormatted":"0-4:99.2.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 4","value":{"$numberInt":"40"},"timestamp":"2025-11-01T09:37:03.128969","status":"success"}],"summary":{"total":{"$numberInt":"40"},"success":{"$numberInt":"40"},"failed":{"$numberInt":"0"}}},"Load Profile":{"sheet_name":"Load Profile","objects":[{"key":"Load Profile.AMR Profile Status Code E meter - 15min.AMR Profile Status Code E meter - 15min","classId":{"$numberInt":"1"},"obis":"0.0.96.10.2.255","obisFormatted":"0-0:96.10.2.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code E meter - 15min","controlName":"AMR Profile Status Code E meter - 15min","value":{"$numberInt":"128"},"timestamp":"2025-11-01T09:37:03.852981","status":"success"},{"key":"Load Profile.Energy Profile.Buffer","classId":{"$numberInt":"7"},"obis":"1.0.99.1.0.255","obisFormatted":"1-0:99.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Energy Profile","value":{"0":["2025-09-22 01 11:15:00 00,FF88,80",{"$numberInt":"13"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["2025-09-22 01 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["2025-09-22 01 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"3":["2025-09-22 01 12:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"4":["2025-09-22 01 12:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"5":["2025-09-22 01 12:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"6":["2025-09-22 01 15:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"7":["2025-09-22 01 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"8":["2025-09-22 01 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"9":["2025-09-22 01 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"10":["2025-09-22 01 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"11":["2025-09-22 01 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"12":["2025-09-22 01 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"13":["2025-09-22 01 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"14":["2025-09-22 01 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"15":["2025-09-22 01 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"16":["2025-09-22 01 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"17":["2025-09-22 01 18:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"18":["2025-09-22 01 18:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"19":["2025-09-22 01 18:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"20":["2025-09-22 01 21:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"21":["2025-09-22 01 22:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"22":["2025-09-22 01 22:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"23":["2025-09-22 01 23:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"24":["2025-09-22 01 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"25":["2025-09-22 01 23:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"26":["2025-09-23 02 00:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"27":["2025-09-23 02 00:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"28":["2025-09-23 02 01:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"29":["2025-09-23 02 02:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"30":["2025-09-23 02 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"31":["2025-09-23 02 02:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"32":["2025-09-23 02 03:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"33":["2025-09-23 02 03:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"34":["2025-09-23 02 04:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"35":["2025-09-23 02 04:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"36":["2025-09-23 02 04:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"37":["2025-09-23 02 04:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"38":["2025-09-23 02 05:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"39":["2025-09-23 02 05:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"40":["2025-09-23 02 06:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"41":["2025-09-23 02 06:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"42":["2025-09-23 02 07:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"43":["2025-09-23 02 07:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"44":["2025-09-23 02 08:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"45":["2025-09-23 02 08:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"46":["2025-09-23 02 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"47":["2025-09-23 02 09:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"48":["2025-09-23 02 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"49":["2025-09-23 02 09:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"50":["2025-09-23 02 10:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"51":["2025-09-23 02 10:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"52":["2025-09-23 02 11:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"53":["2025-09-24 03 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"54":["2025-09-24 03 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"55":["2025-09-24 03 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"56":["2025-09-24 03 10:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"57":["2025-09-24 03 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"58":["2025-09-24 03 10:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"59":["2025-09-24 03 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"60":["2025-09-24 03 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"61":["2025-09-24 03 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"62":["2025-09-24 03 11:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"63":["2025-09-24 03 12:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"64":["2025-09-24 03 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"65":["2025-09-24 03 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"66":["2025-09-24 03 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"67":["2025-09-24 03 14:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"68":["2025-09-24 03 15:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"69":["2025-09-24 03 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"70":["2025-09-24 03 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"71":["2025-09-24 03 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"72":["2025-09-24 03 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"73":["2025-09-24 03 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"74":["2025-09-24 03 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"75":["2025-09-24 03 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"76":["2025-09-24 03 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"77":["2025-09-24 03 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"78":["2025-09-24 03 18:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"79":["2025-09-24 03 19:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"80":["2025-09-24 03 19:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"81":["2025-09-24 03 19:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"82":["2025-09-24 03 19:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"83":["2025-09-24 03 20:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"84":["2025-09-24 03 20:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"85":["2025-09-24 03 20:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"86":["2025-09-25 04 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"87":["2025-09-25 04 09:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"88":["2025-09-25 04 09:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"89":["2025-09-25 04 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"90":["2025-09-25 04 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"91":["2025-09-25 04 10:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"92":["2025-09-25 04 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"93":["2025-09-25 04 11:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"94":["2025-09-25 04 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"95":["2025-09-25 04 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"96":["2025-09-25 04 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"97":["2025-09-25 04 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"98":["2025-09-25 04 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"99":["2025-09-25 04 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"100":["2025-09-25 04 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"101":["2025-09-25 04 13:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"102":["2025-09-25 04 13:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"103":["2025-09-25 04 13:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"104":["2025-09-25 04 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"105":["2025-09-25 04 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"106":["2025-09-25 04 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"107":["2025-09-25 04 14:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"108":["2025-09-25 04 15:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"109":["2025-09-25 04 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"110":["2025-09-25 04 23:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"111":["2025-09-25 04 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"112":["2025-09-26 05 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"113":["2025-09-26 05 02:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"114":["2025-09-26 05 02:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"115":["2025-09-26 05 05:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"116":["2025-09-26 05 05:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"117":["2025-09-26 05 05:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"118":["2025-09-26 05 05:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"119":["2025-09-26 05 08:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"120":["2025-09-26 05 08:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"121":["2025-09-27 06 10:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"122":["2025-09-27 06 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"123":["2025-09-27 06 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"124":["2025-09-27 06 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"125":["2025-09-27 06 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"126":["2025-09-27 06 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"127":["2025-09-27 06 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"128":["2025-09-27 06 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"129":["2025-09-27 06 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"130":["2025-09-27 06 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"131":["2025-09-27 06 13:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"132":["2025-09-27 06 13:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"133":["2025-09-27 06 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"134":["2025-09-27 06 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"135":["2025-09-27 06 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"136":["2025-09-27 06 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"137":["2025-09-27 06 15:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"138":["2025-09-27 06 15:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"139":["2025-09-27 06 18:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"140":["2025-09-27 06 18:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"141":["2025-09-27 06 18:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"142":["2025-09-27 06 19:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"143":["2025-09-27 06 19:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"144":["2025-09-27 06 19:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"145":["2025-09-27 06 20:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"146":["2025-09-27 06 21:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"147":["2025-09-27 06 21:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"148":["2025-09-27 06 21:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"149":["2025-09-27 06 22:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"150":["2025-09-27 06 22:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"151":["2025-09-27 06 22:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"152":["2025-09-27 06 22:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"153":["2025-09-27 06 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"154":["2025-09-27 06 23:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"155":["2025-09-28 07 00:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"156":["2025-09-28 07 00:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"157":["2025-09-28 07 01:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"158":["2025-09-28 07 01:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"159":["2025-09-28 07 01:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"160":["2025-09-28 07 02:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"161":["2025-09-28 07 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"162":["2025-09-28 07 03:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"163":["2025-09-28 07 03:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"164":["2025-09-28 07 04:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"165":["2025-09-28 07 04:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"166":["2025-09-28 07 04:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"167":["2025-09-28 07 05:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"168":["2025-09-28 07 05:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"169":["2025-09-28 07 06:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"170":["2025-09-28 07 06:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"171":["2025-09-28 07 07:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"172":["2025-09-28 07 07:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"173":["2025-09-28 07 07:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"174":["2025-09-28 07 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"175":["2025-09-28 07 09:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"176":["2025-09-28 07 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"177":["2025-09-28 07 10:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"178":["2025-09-28 07 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"179":["2025-09-28 07 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"180":["2025-09-28 07 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"181":["2025-09-28 07 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"182":["2025-09-28 07 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"183":["2025-09-28 07 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"184":["2025-09-28 07 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"185":["2025-09-28 07 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"186":["2025-09-28 07 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"187":["2025-09-28 07 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"188":["2025-09-28 07 13:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"189":["2025-09-28 07 13:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"190":["2025-09-28 07 15:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"191":["2025-09-28 07 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"192":["2025-09-28 07 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"193":["2025-09-28 07 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"194":["2025-09-28 07 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"195":["2025-09-28 07 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"196":["2025-09-28 07 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"197":["2025-09-28 07 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"198":["2025-09-28 07 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"199":["2025-09-28 07 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"200":["2025-09-28 07 17:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"201":["2025-09-28 07 18:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"202":["2025-09-28 07 18:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"203":["2025-09-29 01 15:00:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"0"}],"204":["2025-09-29 01 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"205":["2025-09-29 01 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"373"},{"$numberInt":"0"}],"206":["2025-09-29 01 16:15:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"1504"},{"$numberInt":"0"}],"207":["2025-09-30 02 17:00:00 00,FF88,81",{"$numberInt":"142"},{"$numberInt":"1504"},{"$numberInt":"0"}],"208":["2025-09-30 02 17:15:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"209":["2025-09-30 02 17:30:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"210":["2025-09-30 02 17:45:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"211":["2025-09-30 02 18:00:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"212":["2025-09-30 02 18:15:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"213":["2025-09-30 02 18:30:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"214":["2025-09-30 02 18:45:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"215":["2025-10-20 01 11:45:00 00,FF88,80",{"$numberInt":"46"},{"$numberInt":"1504"},{"$numberInt":"0"}],"216":["2025-10-20 01 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1504"},{"$numberInt":"0"}],"217":["2025-10-20 01 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1504"},{"$numberInt":"0"}],"218":["2025-10-20 01 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1504"},{"$numberInt":"0"}],"219":["2025-10-20 01 15:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"1504"},{"$numberInt":"0"}],"220":["2025-10-20 01 16:00:00 00,FF88,80",{"$numberInt":"13"},{"$numberInt":"2180"},{"$numberInt":"0"}],"221":["2025-10-20 01 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"3042"},{"$numberInt":"0"}],"222":["2025-10-20 01 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"3905"},{"$numberInt":"0"}],"223":["2025-10-20 01 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"4767"},{"$numberInt":"0"}],"224":["2025-10-20 01 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"5630"},{"$numberInt":"0"}],"225":["2025-10-20 01 17:30:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"6931"},{"$numberInt":"0"}],"226":["2025-10-20 01 17:45:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"7465"},{"$numberInt":"0"}],"227":["2025-10-20 01 18:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"8140"},{"$numberInt":"0"}],"228":["2025-10-21 02 09:00:00 00,FF88,80",{"$numberInt":"172"},{"$numberInt":"9263"},{"$numberInt":"0"}],"229":["2025-10-21 02 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"9263"},{"$numberInt":"0"}],"230":["2025-10-21 02 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"231":["2025-10-21 02 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"232":["2025-10-21 02 10:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"9263"},{"$numberInt":"0"}],"233":["2025-10-21 02 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"234":["2025-10-21 02 10:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"235":["2025-10-21 02 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"236":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"237":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"9263"},{"$numberInt":"0"}],"238":["2025-10-25 06 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"9263"},{"$numberInt":"0"}],"239":["2025-10-25 06 00:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"240":["2025-10-25 06 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9708"},{"$numberInt":"0"}],"241":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"10273"},{"$numberInt":"0"}],"242":["2025-10-21 02 12:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"10906"},{"$numberInt":"0"}],"243":["2025-10-21 02 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"10910"},{"$numberInt":"0"}],"244":["2025-10-21 02 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"10910"},{"$numberInt":"0"}],"245":["2025-10-21 02 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"10910"},{"$numberInt":"0"}],"246":["2025-10-21 02 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"10910"},{"$numberInt":"0"}],"247":["2025-10-21 02 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"10910"},{"$numberInt":"0"}],"248":["2025-10-21 02 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"11031"},{"$numberInt":"0"}],"249":["2025-11-01 06 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"12711"},{"$numberInt":"0"}],"250":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"13574"},{"$numberInt":"0"}],"251":["2025-11-01 06 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"14436"},{"$numberInt":"0"}],"252":["2025-12-01 01 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"15635"},{"$numberInt":"0"}],"253":["2025-12-01 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"16498"},{"$numberInt":"0"}],"254":["2025-12-01 01 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"17360"},{"$numberInt":"0"}],"255":["2025-12-01 01 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"18223"},{"$numberInt":"0"}],"256":["2026-01-01 04 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"19204"},{"$numberInt":"0"}],"257":["2026-02-01 07 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"20566"},{"$numberInt":"0"}],"258":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"20907"},{"$numberInt":"0"}],"259":["2026-03-01 07 00:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"21769"},{"$numberInt":"0"}],"260":["2026-03-01 07 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"22632"},{"$numberInt":"0"}],"261":["2026-03-01 07 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23095"},{"$numberInt":"0"}],"262":["2026-03-01 07 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23095"},{"$numberInt":"0"}],"263":["2026-03-01 07 01:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23095"},{"$numberInt":"0"}],"264":["2026-03-01 07 01:30:00 00,FFC4,00",{"$numberInt":"5"},{"$numberInt":"23095"},{"$numberInt":"0"}],"265":["2026-04-01 03 00:15:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"23095"},{"$numberInt":"0"}],"266":["2026-04-01 03 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"23095"},{"$numberInt":"0"}],"267":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"23095"},{"$numberInt":"0"}],"268":["2026-05-01 05 00:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"23095"},{"$numberInt":"0"}],"269":["2026-05-01 05 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"23095"},{"$numberInt":"0"}],"270":["2026-05-01 05 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"23095"},{"$numberInt":"0"}],"271":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"23145"},{"$numberInt":"0"}],"272":["2026-06-01 01 07:30:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"23462"},{"$numberInt":"0"}],"273":["2025-10-22 03 17:15:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"23462"},{"$numberInt":"0"}],"274":["2025-10-22 03 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"23471"},{"$numberInt":"0"}],"275":["2025-10-22 03 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"23471"},{"$numberInt":"0"}],"276":["2025-11-01 06 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"23471"},{"$numberInt":"0"}],"277":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"278":["2025-11-01 06 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"279":["2025-11-01 06 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"280":["2025-11-01 06 01:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"281":["2025-11-01 06 01:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"282":["2025-11-01 06 15:00:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"23471"},{"$numberInt":"0"}],"283":["2025-11-01 06 15:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"284":["2025-11-01 06 15:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23562"},{"$numberInt":"0"}],"285":["2025-11-01 06 15:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23646"},{"$numberInt":"0"}],"286":["2025-11-01 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"24744"},{"$numberInt":"0"}],"287":["2025-11-01 06 16:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"29722"},{"$numberInt":"0"}],"288":["2025-11-01 06 16:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"35653"},{"$numberInt":"6"}],"289":["2025-11-08 06 15:30:00 00,FFC4,00",{"$numberInt":"133"},{"$numberInt":"37829"},{"$numberInt":"14"}],"290":["2025-11-08 06 15:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"37829"},{"$numberInt":"14"}],"291":["2025-11-08 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"292":["2025-11-08 06 16:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"293":["2025-11-08 06 16:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"37829"},{"$numberInt":"14"}],"294":["2025-11-08 06 17:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"295":["2025-11-08 06 17:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"296":["2025-11-08 06 17:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"297":["2025-11-08 06 17:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"298":["2025-11-08 06 18:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"299":["2025-11-08 06 18:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"300":["2025-11-08 06 18:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"301":["2025-11-08 06 18:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"302":["2025-11-08 06 19:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"303":["2025-11-08 06 19:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"304":["2025-11-08 06 19:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"305":["2025-11-08 06 19:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"306":["2025-11-08 06 20:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"307":["2025-11-08 06 20:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"37829"},{"$numberInt":"14"}],"308":["2025-11-08 06 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"309":["2025-11-08 06 20:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37883"},{"$numberInt":"14"}],"310":["2025-11-08 06 21:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37883"},{"$numberInt":"14"}],"311":["2025-11-08 06 21:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37883"},{"$numberInt":"14"}],"312":["2025-11-08 06 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37883"},{"$numberInt":"14"}],"313":["2025-11-08 06 21:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"38495"},{"$numberInt":"14"}],"314":["2025-11-08 06 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"39356"},{"$numberInt":"14"}],"315":["2025-11-08 06 22:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"316":["2025-11-09 07 14:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"40163"},{"$numberInt":"14"}],"317":["2025-11-09 07 15:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"318":["2025-11-09 07 20:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"40163"},{"$numberInt":"14"}],"319":["2025-11-09 07 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"320":["2025-11-09 07 21:00:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"40163"},{"$numberInt":"14"}],"321":["2025-11-09 07 21:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"322":["2025-11-09 07 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"323":["2025-11-09 07 21:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"324":["2025-11-09 07 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"325":["2025-11-09 07 22:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"326":["2025-11-09 07 22:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"327":["2025-11-09 07 22:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"328":["2025-11-09 07 23:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"329":["2025-11-10 01 00:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"40163"},{"$numberInt":"14"}],"330":["2025-11-10 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}]},"timestamp":"2025-11-01T09:37:38.440630","status":"success"},{"key":"Load Profile.Energy Profile.Capture objects","classId":{"$numberInt":"7"},"obis":"1.0.99.1.0.255","obisFormatted":"1-0:99.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Energy Profile","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.10.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:1.8.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:2.8.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:39.136217","status":"success"},{"key":"Load Profile.Energy Profile.Capture period","classId":{"$numberInt":"7"},"obis":"1.0.99.1.0.255","obisFormatted":"1-0:99.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Energy Profile","value":{"$numberInt":"900"},"timestamp":"2025-11-01T09:37:39.727264","status":"success"},{"key":"Load Profile.Energy Profile.Sort method","classId":{"$numberInt":"7"},"obis":"1.0.99.1.0.255","obisFormatted":"1-0:99.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Energy Profile","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:37:40.331016","status":"success"},{"key":"Load Profile.Energy Profile.Sort object","classId":{"$numberInt":"7"},"obis":"1.0.99.1.0.255","obisFormatted":"1-0:99.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Energy Profile","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:40.957623","status":"success"},{"key":"Load Profile.Energy Profile.Entries in use","classId":{"$numberInt":"7"},"obis":"1.0.99.1.0.255","obisFormatted":"1-0:99.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Energy Profile","value":{"$numberInt":"331"},"timestamp":"2025-11-01T09:37:41.547119","status":"success"},{"key":"Load Profile.Energy Profile.Profile entries","classId":{"$numberInt":"7"},"obis":"1.0.99.1.0.255","obisFormatted":"1-0:99.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Energy Profile","value":{"$numberInt":"960"},"timestamp":"2025-11-01T09:37:42.139752","status":"success"},{"key":"Load Profile.LTE Monitoring-profile.Buffer","classId":{"$numberInt":"7"},"obis":"0.0.99.18.0.255","obisFormatted":"0-0:99.18.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"LTE Monitoring-profile","value":{},"timestamp":"2025-11-01T09:37:42.739431","status":"success"},{"key":"Load Profile.LTE Monitoring-profile.Capture objects","classId":{"$numberInt":"7"},"obis":"0.0.99.18.0.255","obisFormatted":"0-0:99.18.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"LTE Monitoring-profile","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"151"},"0-1:25.11.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"151"},"0-1:25.11.0.255",{"$numberInt":"3"},{"$numberInt":"0"}],"3":[{"$numberInt":"47"},"0-1:25.6.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"4":[{"$numberInt":"47"},"0-1:25.6.0.255",{"$numberInt":"7"},{"$numberInt":"0"}],"5":[{"$numberInt":"1"},"0-1:94.31.7.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:43.687272","status":"success"},{"key":"Load Profile.LTE Monitoring-profile.Capture period","classId":{"$numberInt":"7"},"obis":"0.0.99.18.0.255","obisFormatted":"0-0:99.18.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"LTE Monitoring-profile","value":{"$numberInt":"14400"},"timestamp":"2025-11-01T09:37:44.302324","status":"success"},{"key":"Load Profile.LTE Monitoring-profile.Sort method","classId":{"$numberInt":"7"},"obis":"0.0.99.18.0.255","obisFormatted":"0-0:99.18.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"LTE Monitoring-profile","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:37:44.879574","status":"success"},{"key":"Load Profile.LTE Monitoring-profile.Sort object","classId":{"$numberInt":"7"},"obis":"0.0.99.18.0.255","obisFormatted":"0-0:99.18.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"LTE Monitoring-profile","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:45.479792","status":"success"},{"key":"Load Profile.LTE Monitoring-profile.Entries in use","classId":{"$numberInt":"7"},"obis":"0.0.99.18.0.255","obisFormatted":"0-0:99.18.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"LTE Monitoring-profile","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:37:46.092840","status":"success"},{"key":"Load Profile.LTE Monitoring-profile.Profile entries","classId":{"$numberInt":"7"},"obis":"0.0.99.18.0.255","obisFormatted":"0-0:99.18.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"LTE Monitoring-profile","value":{"$numberInt":"960"},"timestamp":"2025-11-01T09:37:46.701843","status":"success"},{"key":"Load Profile.AMR Profile Status Code M-BUS - Hourly.AMR Profile Status Code M-BUS - Hourly","classId":{"$numberInt":"1"},"obis":"0.1.96.10.3.255","obisFormatted":"0-1:96.10.3.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Hourly","controlName":"AMR Profile Status Code M-BUS - Hourly","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:37:47.435074","status":"success"},{"key":"Load Profile.Channel 1.Buffer","classId":{"$numberInt":"7"},"obis":"0.1.24.3.0.255","obisFormatted":"0-1:24.3.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 1","value":{},"timestamp":"2025-11-01T09:37:47.996653","status":"success"},{"key":"Load Profile.Channel 1.Capture objects","classId":{"$numberInt":"7"},"obis":"0.1.24.3.0.255","obisFormatted":"0-1:24.3.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 1","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-1:96.10.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:48.656361","status":"success"},{"key":"Load Profile.Channel 1.Capture period","classId":{"$numberInt":"7"},"obis":"0.1.24.3.0.255","obisFormatted":"0-1:24.3.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 1","value":{"$numberInt":"3600"},"timestamp":"2025-11-01T09:37:49.227461","status":"success"},{"key":"Load Profile.Channel 1.Sort method","classId":{"$numberInt":"7"},"obis":"0.1.24.3.0.255","obisFormatted":"0-1:24.3.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 1","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:37:49.838634","status":"success"},{"key":"Load Profile.Channel 1.Sort object","classId":{"$numberInt":"7"},"obis":"0.1.24.3.0.255","obisFormatted":"0-1:24.3.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 1","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:50.477475","status":"success"},{"key":"Load Profile.Channel 1.Entries in use","classId":{"$numberInt":"7"},"obis":"0.1.24.3.0.255","obisFormatted":"0-1:24.3.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:37:51.063961","status":"success"},{"key":"Load Profile.Channel 1.Profile entries","classId":{"$numberInt":"7"},"obis":"0.1.24.3.0.255","obisFormatted":"0-1:24.3.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 1","value":{"$numberInt":"240"},"timestamp":"2025-11-01T09:37:51.665405","status":"success"},{"key":"Load Profile.AMR Profile Status Code M-BUS - Hourly.AMR Profile Status Code M-BUS - Hourly","classId":{"$numberInt":"1"},"obis":"0.2.96.10.3.255","obisFormatted":"0-2:96.10.3.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Hourly","controlName":"AMR Profile Status Code M-BUS - Hourly","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:37:52.383414","status":"success"},{"key":"Load Profile.Channel 2.Buffer","classId":{"$numberInt":"7"},"obis":"0.2.24.3.0.255","obisFormatted":"0-2:24.3.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 2","value":{},"timestamp":"2025-11-01T09:37:52.967023","status":"success"},{"key":"Load Profile.Channel 2.Capture objects","classId":{"$numberInt":"7"},"obis":"0.2.24.3.0.255","obisFormatted":"0-2:24.3.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 2","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-2:96.10.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:53.663538","status":"success"},{"key":"Load Profile.Channel 2.Capture period","classId":{"$numberInt":"7"},"obis":"0.2.24.3.0.255","obisFormatted":"0-2:24.3.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 2","value":{"$numberInt":"3600"},"timestamp":"2025-11-01T09:37:54.285849","status":"success"},{"key":"Load Profile.Channel 2.Sort method","classId":{"$numberInt":"7"},"obis":"0.2.24.3.0.255","obisFormatted":"0-2:24.3.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 2","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:37:54.912821","status":"success"},{"key":"Load Profile.Channel 2.Sort object","classId":{"$numberInt":"7"},"obis":"0.2.24.3.0.255","obisFormatted":"0-2:24.3.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 2","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:55.522154","status":"success"},{"key":"Load Profile.Channel 2.Entries in use","classId":{"$numberInt":"7"},"obis":"0.2.24.3.0.255","obisFormatted":"0-2:24.3.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:37:56.104135","status":"success"},{"key":"Load Profile.Channel 2.Profile entries","classId":{"$numberInt":"7"},"obis":"0.2.24.3.0.255","obisFormatted":"0-2:24.3.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 2","value":{"$numberInt":"240"},"timestamp":"2025-11-01T09:37:56.747511","status":"success"},{"key":"Load Profile.AMR Profile Status Code M-BUS - Hourly.AMR Profile Status Code M-BUS - Hourly","classId":{"$numberInt":"1"},"obis":"0.3.96.10.3.255","obisFormatted":"0-3:96.10.3.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Hourly","controlName":"AMR Profile Status Code M-BUS - Hourly","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:37:57.446113","status":"success"},{"key":"Load Profile.Channel 3.Buffer","classId":{"$numberInt":"7"},"obis":"0.3.24.3.0.255","obisFormatted":"0-3:24.3.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 3","value":{},"timestamp":"2025-11-01T09:37:58.066407","status":"success"},{"key":"Load Profile.Channel 3.Capture objects","classId":{"$numberInt":"7"},"obis":"0.3.24.3.0.255","obisFormatted":"0-3:24.3.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 3","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-3:96.10.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:37:58.715628","status":"success"},{"key":"Load Profile.Channel 3.Capture period","classId":{"$numberInt":"7"},"obis":"0.3.24.3.0.255","obisFormatted":"0-3:24.3.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 3","value":{"$numberInt":"3600"},"timestamp":"2025-11-01T09:37:59.316155","status":"success"},{"key":"Load Profile.Channel 3.Sort method","classId":{"$numberInt":"7"},"obis":"0.3.24.3.0.255","obisFormatted":"0-3:24.3.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 3","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:37:59.927887","status":"success"},{"key":"Load Profile.Channel 3.Sort object","classId":{"$numberInt":"7"},"obis":"0.3.24.3.0.255","obisFormatted":"0-3:24.3.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 3","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:38:00.587828","status":"success"},{"key":"Load Profile.Channel 3.Entries in use","classId":{"$numberInt":"7"},"obis":"0.3.24.3.0.255","obisFormatted":"0-3:24.3.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:38:01.191832","status":"success"},{"key":"Load Profile.Channel 3.Profile entries","classId":{"$numberInt":"7"},"obis":"0.3.24.3.0.255","obisFormatted":"0-3:24.3.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 3","value":{"$numberInt":"240"},"timestamp":"2025-11-01T09:38:01.792820","status":"success"},{"key":"Load Profile.AMR Profile Status Code M-BUS - Hourly.AMR Profile Status Code M-BUS - Hourly","classId":{"$numberInt":"1"},"obis":"0.4.96.10.3.255","obisFormatted":"0-4:96.10.3.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code M-BUS - Hourly","controlName":"AMR Profile Status Code M-BUS - Hourly","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:38:02.477472","status":"success"},{"key":"Load Profile.Channel 4.Buffer","classId":{"$numberInt":"7"},"obis":"0.4.24.3.0.255","obisFormatted":"0-4:24.3.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Channel 4","value":{},"timestamp":"2025-11-01T09:38:03.078063","status":"success"},{"key":"Load Profile.Channel 4.Capture objects","classId":{"$numberInt":"7"},"obis":"0.4.24.3.0.255","obisFormatted":"0-4:24.3.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Channel 4","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-4:96.10.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:38:03.731133","status":"success"},{"key":"Load Profile.Channel 4.Capture period","classId":{"$numberInt":"7"},"obis":"0.4.24.3.0.255","obisFormatted":"0-4:24.3.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 4","value":{"$numberInt":"3600"},"timestamp":"2025-11-01T09:38:04.317263","status":"success"},{"key":"Load Profile.Channel 4.Sort method","classId":{"$numberInt":"7"},"obis":"0.4.24.3.0.255","obisFormatted":"0-4:24.3.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Channel 4","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:38:04.933878","status":"success"},{"key":"Load Profile.Channel 4.Sort object","classId":{"$numberInt":"7"},"obis":"0.4.24.3.0.255","obisFormatted":"0-4:24.3.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Channel 4","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:38:05.582001","status":"success"},{"key":"Load Profile.Channel 4.Entries in use","classId":{"$numberInt":"7"},"obis":"0.4.24.3.0.255","obisFormatted":"0-4:24.3.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:38:06.208903","status":"success"},{"key":"Load Profile.Channel 4.Profile entries","classId":{"$numberInt":"7"},"obis":"0.4.24.3.0.255","obisFormatted":"0-4:24.3.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Channel 4","value":{"$numberInt":"240"},"timestamp":"2025-11-01T09:38:06.842396","status":"success"}],"summary":{"total":{"$numberInt":"47"},"success":{"$numberInt":"47"},"failed":{"$numberInt":"0"}}},"Definable Load Profile":{"sheet_name":"Definable Load Profile","objects":[{"key":"Definable Load Profile.Definable Load Profile-72.Buffer","classId":{"$numberInt":"7"},"obis":"0.1.94.31.6.255","obisFormatted":"0-1:94.31.6.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"Definable Load Profile-72","value":{"0":["2025-10-20 01 17:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"1":["2025-10-20 01 17:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"2":["2025-10-20 01 17:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"3":["2025-10-20 01 17:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"4":["2025-10-20 01 18:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"5":["2025-10-20 01 18:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"6":["2025-10-20 01 18:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"7":["2025-10-21 02 09:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"8":["2025-10-21 02 09:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"9":["2025-10-21 02 09:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"10":["2025-10-21 02 09:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"11":["2025-10-21 02 09:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"12":["2025-10-21 02 09:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"29"},{"$numberInt":"230"},{"$numberInt":"29"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"13":["2025-10-21 02 10:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"14":["2025-10-21 02 10:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"15":["2025-10-21 02 10:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"16":["2025-10-21 02 10:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"17":["2025-10-21 02 10:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"18":["2025-10-21 02 10:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"19":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"20":["2025-10-21 02 10:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"21":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"22":["2025-10-25 06 00:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"23":["2025-10-25 06 00:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"24":["2025-10-25 06 00:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"25":["2025-10-25 06 00:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"26":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"27":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"28":["2025-10-21 02 12:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"29":["2025-10-21 02 12:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"30":["2025-10-21 02 12:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"31":["2025-10-21 02 12:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"32":["2025-10-21 02 13:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"33":["2025-10-21 02 13:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"34":["2025-10-21 02 14:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"35":["2025-10-21 02 14:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"36":["2025-10-21 02 14:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"37":["2025-10-21 02 14:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"38":["2025-10-21 02 14:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"39":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"40":["2025-11-01 06 00:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"41":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"42":["2025-11-01 06 00:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"43":["2025-12-01 01 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"44":["2025-12-01 01 00:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"45":["2025-12-01 01 00:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"46":["2025-12-01 01 00:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"47":["2025-12-01 01 00:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"48":["2025-12-01 01 01:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"49":["2026-01-01 04 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"50":["2026-01-01 04 00:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"51":["2026-02-01 07 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"52":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"53":["2026-03-01 07 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"54":["2026-03-01 07 00:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"55":["2026-03-01 07 00:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"56":["2026-03-01 07 00:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"57":["2026-03-01 07 00:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"58":["2026-03-01 07 01:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"59":["2026-03-01 07 01:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"60":["2026-03-01 07 01:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"61":["2026-03-01 07 01:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"62":["2026-04-01 03 00:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"63":["2026-04-01 03 00:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"64":["2026-04-01 03 00:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"65":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"66":["2026-05-01 05 00:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"67":["2026-05-01 05 00:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"68":["2026-05-01 05 00:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"69":["2026-05-01 05 13:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"70":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"71":["2026-06-01 01 07:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"226"},{"$numberInt":"229"},{"$numberInt":"173"},{"$numberInt":"229"},{"$numberInt":"174"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"72":["2025-10-22 03 17:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"73":["2025-10-22 03 17:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"74":["2025-10-22 03 17:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"75":["2025-10-22 03 17:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"76":["2025-10-22 03 17:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"77":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"78":["2025-11-01 06 00:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"79":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"80":["2025-11-01 06 00:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"81":["2025-11-01 06 00:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"82":["2025-11-01 06 01:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"83":["2025-11-01 06 01:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"84":["2025-11-01 06 01:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"85":["2025-11-01 06 01:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"86":["2025-11-01 06 15:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"87":["2025-11-01 06 15:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"88":["2025-11-01 06 15:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"89":["2025-11-01 06 15:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"90":["2025-11-01 06 15:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"91":["2025-11-01 06 15:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"92":["2025-11-01 06 16:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"210"},{"$numberInt":"230"},{"$numberInt":"207"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"93":["2025-11-01 06 16:10:00 00,FFC4,00",{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"49"},{"$numberInt":"49"}],"94":["2025-11-01 06 16:20:00 00,FFC4,00",{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"49"},{"$numberInt":"49"},{"$numberInt":"49"}],"95":["2025-11-01 06 16:30:00 00,FFC4,00",{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"49"},{"$numberInt":"49"},{"$numberInt":"49"}],"96":["2025-11-01 06 16:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"97":["2025-11-08 06 15:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"98":["2025-11-08 06 15:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"42"},{"$numberInt":"0"},{"$numberInt":"42"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"99":["2025-11-08 06 15:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"100":["2025-11-08 06 16:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"101":["2025-11-08 06 16:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"102":["2025-11-08 06 16:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"103":["2025-11-08 06 16:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"110"},{"$numberInt":"230"},{"$numberInt":"110"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"104":["2025-11-08 06 16:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"105":["2025-11-08 06 17:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"106":["2025-11-08 06 17:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"107":["2025-11-08 06 17:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"108":["2025-11-08 06 17:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"204"},{"$numberInt":"0"},{"$numberInt":"205"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"109":["2025-11-08 06 17:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"110":["2025-11-08 06 17:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"111":["2025-11-08 06 18:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"112":["2025-11-08 06 18:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"113":["2025-11-08 06 18:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"114":["2025-11-08 06 18:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"115":["2025-11-08 06 18:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"116":["2025-11-08 06 18:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"117":["2025-11-08 06 19:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"118":["2025-11-08 06 19:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"119":["2025-11-08 06 19:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"120":["2025-11-08 06 19:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"121":["2025-11-08 06 19:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"122":["2025-11-08 06 19:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"123":["2025-11-08 06 20:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"124":["2025-11-08 06 20:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"125":["2025-11-08 06 20:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"177"},{"$numberInt":"230"},{"$numberInt":"177"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"126":["2025-11-08 06 20:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"127":["2025-11-08 06 20:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"228"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"128":["2025-11-08 06 20:50:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"232"},{"$numberInt":"234"},{"$numberInt":"232"},{"$numberInt":"234"},{"$numberInt":"232"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"129":["2025-11-08 06 21:00:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"130":["2025-11-08 06 21:10:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"131":["2025-11-08 06 21:20:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"132":["2025-11-08 06 21:30:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"133":["2025-11-08 06 21:40:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"134":["2025-11-08 06 21:50:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"135":["2025-11-08 06 22:00:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"136":["2025-11-08 06 22:10:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"137":["2025-11-09 07 14:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"231"},{"$numberInt":"229"},{"$numberInt":"231"},{"$numberInt":"229"},{"$numberInt":"231"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"138":["2025-11-09 07 14:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"139":["2025-11-09 07 15:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"140":["2025-11-09 07 15:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"141":["2025-11-09 07 20:10:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"220"},{"$numberInt":"0"},{"$numberInt":"74"},{"$numberInt":"0"},{"$numberInt":"74"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"142":["2025-11-09 07 20:20:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"143":["2025-11-09 07 20:30:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"144":["2025-11-09 07 20:50:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"145":["2025-11-09 07 21:00:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"146":["2025-11-09 07 21:10:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"147":["2025-11-09 07 21:20:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"148":["2025-11-09 07 21:30:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"149":["2025-11-09 07 21:40:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"150":["2025-11-09 07 21:50:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"151":["2025-11-09 07 22:00:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"152":["2025-11-09 07 22:10:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"153":["2025-11-09 07 22:20:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"154":["2025-11-09 07 22:30:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"155":["2025-11-09 07 22:40:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"156":["2025-11-09 07 22:50:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"157":["2025-11-09 07 23:00:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"158":["2025-11-09 07 23:10:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"159":["2025-11-10 01 00:10:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"160":["2025-11-10 01 00:20:00 00,FFC4,00",{"$numberInt":"217"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"161":["2025-11-10 01 00:30:00 00,FFC4,00",{"$numberInt":"217"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"162":["2025-11-10 01 15:40:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:38:32.936021","status":"success"},{"key":"Definable Load Profile.Definable Load Profile-72.Capture objects","classId":{"$numberInt":"7"},"obis":"0.1.94.31.6.255","obisFormatted":"0-1:94.31.6.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"Definable Load Profile-72","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"3"},"1-0:32.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:32.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:52.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:52.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:72.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"3"},"1-0:72.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"7":[{"$numberInt":"3"},"1-0:31.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"8":[{"$numberInt":"3"},"1-0:51.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"3"},"1-0:71.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:38:34.025312","status":"success"},{"key":"Definable Load Profile.Definable Load Profile-72.Capture period","classId":{"$numberInt":"7"},"obis":"0.1.94.31.6.255","obisFormatted":"0-1:94.31.6.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Definable Load Profile-72","value":{"$numberInt":"600"},"timestamp":"2025-11-01T09:38:34.635048","status":"success"},{"key":"Definable Load Profile.Definable Load Profile-72.Sort method","classId":{"$numberInt":"7"},"obis":"0.1.94.31.6.255","obisFormatted":"0-1:94.31.6.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"Definable Load Profile-72","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:38:35.217554","status":"success"},{"key":"Definable Load Profile.Definable Load Profile-72.Sort object","classId":{"$numberInt":"7"},"obis":"0.1.94.31.6.255","obisFormatted":"0-1:94.31.6.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"Definable Load Profile-72","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:38:35.843241","status":"success"},{"key":"Definable Load Profile.Definable Load Profile-72.Entries in use","classId":{"$numberInt":"7"},"obis":"0.1.94.31.6.255","obisFormatted":"0-1:94.31.6.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"Definable Load Profile-72","value":{"$numberInt":"163"},"timestamp":"2025-11-01T09:38:36.428558","status":"success"},{"key":"Definable Load Profile.Definable Load Profile-72.Profile entries","classId":{"$numberInt":"7"},"obis":"0.1.94.31.6.255","obisFormatted":"0-1:94.31.6.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"Definable Load Profile-72","value":{"$numberInt":"960"},"timestamp":"2025-11-01T09:38:37.058747","status":"success"}],"summary":{"total":{"$numberInt":"7"},"success":{"$numberInt":"7"},"failed":{"$numberInt":"0"}}},"Quality Profile":{"sheet_name":"Quality Profile","objects":[{"key":"Quality Profile.AMR Profile Status Code E meter - Power Quality profile 1 status.AMR Profile Status Code E meter - Power Quality profile 1 status","classId":{"$numberInt":"1"},"obis":"0.0.96.10.8.255","obisFormatted":"0-0:96.10.8.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code E meter - Power Quality profile 1 status","controlName":"AMR Profile Status Code E meter - Power Quality profile 1 status","value":{"$numberInt":"128"},"timestamp":"2025-11-01T09:38:37.838247","status":"success"},{"key":"Quality Profile.15 Minutes Power Quality Profile.Buffer","classId":{"$numberInt":"7"},"obis":"1.0.99.1.1.255","obisFormatted":"1-0:99.1.1.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"15 Minutes Power Quality Profile","value":{"0":["2025-09-22 01 11:15:00 00,FF88,80",{"$numberInt":"13"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["2025-09-22 01 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["2025-09-22 01 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"3":["2025-09-22 01 12:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"4":["2025-09-22 01 12:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"5":["2025-09-22 01 12:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"6":["2025-09-22 01 15:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"7":["2025-09-22 01 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"8":["2025-09-22 01 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"9":["2025-09-22 01 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"10":["2025-09-22 01 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"11":["2025-09-22 01 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"12":["2025-09-22 01 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"13":["2025-09-22 01 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"14":["2025-09-22 01 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"15":["2025-09-22 01 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"16":["2025-09-22 01 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"17":["2025-09-22 01 18:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"18":["2025-09-22 01 18:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"19":["2025-09-22 01 18:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"20":["2025-09-22 01 21:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"21":["2025-09-22 01 22:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"22":["2025-09-22 01 22:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"23":["2025-09-22 01 23:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"24":["2025-09-22 01 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"25":["2025-09-22 01 23:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"26":["2025-09-23 02 00:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"27":["2025-09-23 02 00:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"28":["2025-09-23 02 01:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"29":["2025-09-23 02 02:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"30":["2025-09-23 02 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"31":["2025-09-23 02 02:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"32":["2025-09-23 02 03:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"33":["2025-09-23 02 03:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"34":["2025-09-23 02 04:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"35":["2025-09-23 02 04:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"36":["2025-09-23 02 04:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"37":["2025-09-23 02 04:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"38":["2025-09-23 02 05:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"39":["2025-09-23 02 05:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"40":["2025-09-23 02 06:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"41":["2025-09-23 02 06:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"42":["2025-09-23 02 07:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"43":["2025-09-23 02 07:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"44":["2025-09-23 02 08:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"45":["2025-09-23 02 08:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"46":["2025-09-23 02 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"47":["2025-09-23 02 09:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"48":["2025-09-23 02 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"49":["2025-09-23 02 09:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"50":["2025-09-23 02 10:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"51":["2025-09-23 02 10:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"52":["2025-09-23 02 11:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"53":["2025-09-24 03 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"54":["2025-09-24 03 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"55":["2025-09-24 03 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"56":["2025-09-24 03 10:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"57":["2025-09-24 03 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"58":["2025-09-24 03 10:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"59":["2025-09-24 03 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"60":["2025-09-24 03 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"61":["2025-09-24 03 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"62":["2025-09-24 03 11:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"63":["2025-09-24 03 12:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"64":["2025-09-24 03 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"65":["2025-09-24 03 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"66":["2025-09-24 03 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"67":["2025-09-24 03 14:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"68":["2025-09-24 03 15:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"69":["2025-09-24 03 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"70":["2025-09-24 03 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"71":["2025-09-24 03 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"72":["2025-09-24 03 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"73":["2025-09-24 03 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"74":["2025-09-24 03 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"75":["2025-09-24 03 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"76":["2025-09-24 03 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"77":["2025-09-24 03 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"78":["2025-09-24 03 18:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"79":["2025-09-24 03 19:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"80":["2025-09-24 03 19:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"81":["2025-09-24 03 19:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"82":["2025-09-24 03 19:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"83":["2025-09-24 03 20:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"84":["2025-09-24 03 20:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"85":["2025-09-24 03 20:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"86":["2025-09-25 04 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"87":["2025-09-25 04 09:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"88":["2025-09-25 04 09:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"89":["2025-09-25 04 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"90":["2025-09-25 04 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"91":["2025-09-25 04 10:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"92":["2025-09-25 04 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"93":["2025-09-25 04 11:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"94":["2025-09-25 04 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"95":["2025-09-25 04 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"96":["2025-09-25 04 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"97":["2025-09-25 04 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"98":["2025-09-25 04 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"99":["2025-09-25 04 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"100":["2025-09-25 04 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"101":["2025-09-25 04 13:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"102":["2025-09-25 04 13:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"103":["2025-09-25 04 13:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"104":["2025-09-25 04 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"105":["2025-09-25 04 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"106":["2025-09-25 04 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"107":["2025-09-25 04 14:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"108":["2025-09-25 04 15:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"109":["2025-09-25 04 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"110":["2025-09-25 04 23:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"111":["2025-09-25 04 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"112":["2025-09-26 05 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"113":["2025-09-26 05 02:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"114":["2025-09-26 05 02:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"115":["2025-09-26 05 05:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"116":["2025-09-26 05 05:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"117":["2025-09-26 05 05:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"118":["2025-09-26 05 05:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"119":["2025-09-26 05 08:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"120":["2025-09-26 05 08:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"121":["2025-09-27 06 10:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"122":["2025-09-27 06 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"123":["2025-09-27 06 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"124":["2025-09-27 06 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"125":["2025-09-27 06 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"126":["2025-09-27 06 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"127":["2025-09-27 06 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"128":["2025-09-27 06 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"129":["2025-09-27 06 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"130":["2025-09-27 06 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"131":["2025-09-27 06 13:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"132":["2025-09-27 06 13:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"133":["2025-09-27 06 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"134":["2025-09-27 06 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"135":["2025-09-27 06 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"136":["2025-09-27 06 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"137":["2025-09-27 06 15:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"138":["2025-09-27 06 15:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"139":["2025-09-27 06 18:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"140":["2025-09-27 06 18:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"141":["2025-09-27 06 18:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"142":["2025-09-27 06 19:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"143":["2025-09-27 06 19:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"144":["2025-09-27 06 19:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"145":["2025-09-27 06 20:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"146":["2025-09-27 06 21:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"147":["2025-09-27 06 21:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"148":["2025-09-27 06 21:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"149":["2025-09-27 06 22:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"150":["2025-09-27 06 22:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"151":["2025-09-27 06 22:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"152":["2025-09-27 06 22:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"153":["2025-09-27 06 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"154":["2025-09-27 06 23:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"155":["2025-09-28 07 00:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"156":["2025-09-28 07 00:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"157":["2025-09-28 07 01:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"158":["2025-09-28 07 01:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"159":["2025-09-28 07 01:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"160":["2025-09-28 07 02:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"161":["2025-09-28 07 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"162":["2025-09-28 07 03:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"163":["2025-09-28 07 03:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"164":["2025-09-28 07 04:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"165":["2025-09-28 07 04:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"166":["2025-09-28 07 04:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"167":["2025-09-28 07 05:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"168":["2025-09-28 07 05:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"169":["2025-09-28 07 06:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"170":["2025-09-28 07 06:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"171":["2025-09-28 07 07:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"172":["2025-09-28 07 07:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"173":["2025-09-28 07 07:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"174":["2025-09-28 07 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"175":["2025-09-28 07 09:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"176":["2025-09-28 07 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"177":["2025-09-28 07 10:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"178":["2025-09-28 07 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"179":["2025-09-28 07 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"180":["2025-09-28 07 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"181":["2025-09-28 07 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"182":["2025-09-28 07 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"183":["2025-09-28 07 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"184":["2025-09-28 07 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"185":["2025-09-28 07 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"186":["2025-09-28 07 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"187":["2025-09-28 07 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"188":["2025-09-28 07 13:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"189":["2025-09-28 07 13:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"190":["2025-09-28 07 15:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"191":["2025-09-28 07 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"192":["2025-09-28 07 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"193":["2025-09-28 07 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"194":["2025-09-28 07 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"195":["2025-09-28 07 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"196":["2025-09-28 07 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"197":["2025-09-28 07 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"198":["2025-09-28 07 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"199":["2025-09-28 07 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"200":["2025-09-28 07 17:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"201":["2025-09-28 07 18:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"202":["2025-09-28 07 18:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"203":["2025-09-29 01 15:00:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"204":["2025-09-29 01 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"205":["2025-09-29 01 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"502"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"499"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"498"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"206":["2025-09-29 01 16:15:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"1083"},{"$numberInt":"112"},{"$numberInt":"1"},{"$numberInt":"0"},{"$numberInt":"1198"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1205"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"207":["2025-09-30 02 17:00:00 00,FF88,81",{"$numberInt":"142"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"208":["2025-09-30 02 17:15:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"209":["2025-09-30 02 17:30:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"210":["2025-09-30 02 17:45:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"211":["2025-09-30 02 18:00:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"212":["2025-09-30 02 18:15:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"213":["2025-09-30 02 18:30:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"214":["2025-09-30 02 18:45:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"215":["2025-10-20 01 11:45:00 00,FF88,80",{"$numberInt":"46"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"216":["2025-10-20 01 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"217":["2025-10-20 01 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"218":["2025-10-20 01 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"219":["2025-10-20 01 15:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"220":["2025-10-20 01 16:00:00 00,FF88,80",{"$numberInt":"13"},{"$numberInt":"908"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"908"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"908"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"221":["2025-10-20 01 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"222":["2025-10-20 01 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"223":["2025-10-20 01 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"224":["2025-10-20 01 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"225":["2025-10-20 01 17:30:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"226":["2025-10-20 01 17:45:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"227":["2025-10-20 01 18:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"228":["2025-10-21 02 09:00:00 00,FF88,80",{"$numberInt":"172"},{"$numberInt":"1140"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1139"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1140"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"229":["2025-10-21 02 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"230":["2025-10-21 02 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"231":["2025-10-21 02 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"232":["2025-10-21 02 10:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"233":["2025-10-21 02 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"234":["2025-10-21 02 10:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"235":["2025-10-21 02 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"236":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"237":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"238":["2025-10-25 06 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"239":["2025-10-25 06 00:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"240":["2025-10-25 06 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"593"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"593"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"593"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"241":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"242":["2025-10-21 02 12:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1148"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"243":["2025-10-21 02 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"4"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"244":["2025-10-21 02 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"245":["2025-10-21 02 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"246":["2025-10-21 02 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"247":["2025-10-21 02 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"248":["2025-10-21 02 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"166"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"167"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"166"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"249":["2025-11-01 06 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1148"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"250":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"251":["2025-11-01 06 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"252":["2025-12-01 01 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"253":["2025-12-01 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"254":["2025-12-01 01 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"255":["2025-12-01 01 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"256":["2026-01-01 04 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"257":["2026-02-01 07 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"258":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1150"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"259":["2026-03-01 07 00:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"260":["2026-03-01 07 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1150"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"261":["2026-03-01 07 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"615"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"615"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"615"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"262":["2026-03-01 07 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"263":["2026-03-01 07 01:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"264":["2026-03-01 07 01:30:00 00,FFC4,00",{"$numberInt":"5"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"265":["2026-04-01 03 00:15:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"266":["2026-04-01 03 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"267":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"268":["2026-05-01 05 00:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"269":["2026-05-01 05 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"270":["2026-05-01 05 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"271":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"77"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"77"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"77"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"272":["2026-06-01 01 07:30:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"854"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"853"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"853"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"273":["2025-10-22 03 17:15:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"274":["2025-10-22 03 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"11"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"11"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"11"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"275":["2025-10-22 03 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"276":["2025-11-01 06 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"277":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"278":["2025-11-01 06 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"279":["2025-11-01 06 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"280":["2025-11-01 06 01:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"281":["2025-11-01 06 01:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"282":["2025-11-01 06 15:00:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"283":["2025-11-01 06 15:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"284":["2025-11-01 06 15:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"116"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"116"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"116"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"285":["2025-11-01 06 15:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"123"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"127"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"130"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"286":["2025-11-01 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1480"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1"},{"$numberInt":"1477"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1"},{"$numberInt":"1476"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"2"}],"287":["2025-11-01 06 16:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"6849"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"9"},{"$numberInt":"6857"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"8"},{"$numberInt":"6912"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"5"}],"288":["2025-11-01 06 16:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"7963"},{"$numberInt":"0"},{"$numberInt":"1"},{"$numberInt":"11"},{"$numberInt":"7983"},{"$numberInt":"0"},{"$numberInt":"1"},{"$numberInt":"9"},{"$numberInt":"7953"},{"$numberInt":"0"},{"$numberInt":"1"},{"$numberInt":"6"}],"289":["2025-11-08 06 15:30:00 00,FFC4,00",{"$numberInt":"133"},{"$numberInt":"3113"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"3116"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"3119"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"3"}],"290":["2025-11-08 06 15:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"291":["2025-11-08 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"292":["2025-11-08 06 16:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"293":["2025-11-08 06 16:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"294":["2025-11-08 06 17:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"295":["2025-11-08 06 17:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"296":["2025-11-08 06 17:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"297":["2025-11-08 06 17:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"298":["2025-11-08 06 18:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"299":["2025-11-08 06 18:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"300":["2025-11-08 06 18:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"301":["2025-11-08 06 18:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"302":["2025-11-08 06 19:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"303":["2025-11-08 06 19:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"304":["2025-11-08 06 19:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"305":["2025-11-08 06 19:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"306":["2025-11-08 06 20:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"307":["2025-11-08 06 20:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"308":["2025-11-08 06 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"309":["2025-11-08 06 20:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"77"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"68"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"72"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"310":["2025-11-08 06 21:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"311":["2025-11-08 06 21:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"312":["2025-11-08 06 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"313":["2025-11-08 06 21:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"816"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"816"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"817"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"314":["2025-11-08 06 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1147"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1147"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1148"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"315":["2025-11-08 06 22:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1073"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1073"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1073"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"316":["2025-11-09 07 14:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"317":["2025-11-09 07 15:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"318":["2025-11-09 07 20:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"319":["2025-11-09 07 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"320":["2025-11-09 07 21:00:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"321":["2025-11-09 07 21:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"322":["2025-11-09 07 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"323":["2025-11-09 07 21:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"324":["2025-11-09 07 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"325":["2025-11-09 07 22:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"326":["2025-11-09 07 22:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"327":["2025-11-09 07 22:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"328":["2025-11-09 07 23:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"329":["2025-11-10 01 00:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"330":["2025-11-10 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:39:43.317298","status":"success"},{"key":"Quality Profile.15 Minutes Power Quality Profile.Capture objects","classId":{"$numberInt":"7"},"obis":"1.0.99.1.1.255","obisFormatted":"1-0:99.1.1.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"15 Minutes Power Quality Profile","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.10.8.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:21.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:22.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:23.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:24.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"3"},"1-0:41.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"7":[{"$numberInt":"3"},"1-0:42.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"8":[{"$numberInt":"3"},"1-0:43.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"3"},"1-0:44.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"10":[{"$numberInt":"3"},"1-0:61.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"11":[{"$numberInt":"3"},"1-0:62.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"12":[{"$numberInt":"3"},"1-0:63.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"13":[{"$numberInt":"3"},"1-0:64.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:39:44.739756","status":"success"},{"key":"Quality Profile.15 Minutes Power Quality Profile.Capture period","classId":{"$numberInt":"7"},"obis":"1.0.99.1.1.255","obisFormatted":"1-0:99.1.1.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"15 Minutes Power Quality Profile","value":{"$numberInt":"900"},"timestamp":"2025-11-01T09:39:45.307076","status":"success"},{"key":"Quality Profile.15 Minutes Power Quality Profile.Sort method","classId":{"$numberInt":"7"},"obis":"1.0.99.1.1.255","obisFormatted":"1-0:99.1.1.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"15 Minutes Power Quality Profile","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:39:45.922024","status":"success"},{"key":"Quality Profile.15 Minutes Power Quality Profile.Sort object","classId":{"$numberInt":"7"},"obis":"1.0.99.1.1.255","obisFormatted":"1-0:99.1.1.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"15 Minutes Power Quality Profile","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:39:46.550510","status":"success"},{"key":"Quality Profile.15 Minutes Power Quality Profile.Entries in use","classId":{"$numberInt":"7"},"obis":"1.0.99.1.1.255","obisFormatted":"1-0:99.1.1.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"15 Minutes Power Quality Profile","value":{"$numberInt":"331"},"timestamp":"2025-11-01T09:39:47.161946","status":"success"},{"key":"Quality Profile.15 Minutes Power Quality Profile.Profile entries","classId":{"$numberInt":"7"},"obis":"1.0.99.1.1.255","obisFormatted":"1-0:99.1.1.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"15 Minutes Power Quality Profile","value":{"$numberInt":"960"},"timestamp":"2025-11-01T09:39:47.764142","status":"success"},{"key":"Quality Profile.AMR Profile Status Code E meter - Power Quality profile 2 status.AMR Profile Status Code E meter - Power Quality profile 2 status","classId":{"$numberInt":"1"},"obis":"0.0.96.10.9.255","obisFormatted":"0-0:96.10.9.255","attributeId":{"$numberInt":"2"},"attributeName":"AMR Profile Status Code E meter - Power Quality profile 2 status","controlName":"AMR Profile Status Code E meter - Power Quality profile 2 status","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:39:48.454851","status":"success"},{"key":"Quality Profile.10 Minutes Power Quality Profile.Buffer","classId":{"$numberInt":"7"},"obis":"1.0.99.1.2.255","obisFormatted":"1-0:99.1.2.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"10 Minutes Power Quality Profile","value":{"0":["2025-10-20 01 17:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"1":["2025-10-20 01 17:20:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"2":["2025-10-20 01 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"3":["2025-10-20 01 17:40:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"4":["2025-10-20 01 17:50:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"5":["2025-10-20 01 18:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"6":["2025-10-20 01 18:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"7":["2025-10-20 01 18:20:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"8":["2025-10-21 02 09:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"405"},{"$numberInt":"406"},{"$numberInt":"407"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"9":["2025-10-21 02 09:10:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"586"},{"$numberInt":"497"},{"$numberInt":"586"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"10":["2025-10-21 02 09:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"11":["2025-10-21 02 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"12":["2025-10-21 02 09:40:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"13":["2025-10-21 02 09:50:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"29"},{"$numberInt":"0"},{"$numberInt":"29"},{"$numberInt":"0"},{"$numberInt":"166"},{"$numberInt":"621"},{"$numberInt":"166"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"14":["2025-10-21 02 10:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"15":["2025-10-21 02 10:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"16":["2025-10-21 02 10:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"17":["2025-10-21 02 10:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"18":["2025-10-21 02 10:40:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"19":["2025-10-21 02 10:50:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"20":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"21":["2025-10-21 02 10:50:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"22":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"23":["2025-10-25 06 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"24":["2025-10-25 06 00:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"25":["2025-10-25 06 00:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"26":["2025-10-25 06 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"3"},{"$numberInt":"229"},{"$numberInt":"3"},{"$numberInt":"230"},{"$numberInt":"3"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"27":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"28":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"29":["2025-10-21 02 12:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"30":["2025-10-21 02 12:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"31":["2025-10-21 02 12:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"32":["2025-10-21 02 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"33":["2025-10-21 02 13:40:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"399"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"34":["2025-10-21 02 13:50:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"35":["2025-10-21 02 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"36":["2025-10-21 02 14:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"37":["2025-10-21 02 14:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"38":["2025-10-21 02 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"1"},{"$numberInt":"229"},{"$numberInt":"1"},{"$numberInt":"230"},{"$numberInt":"1"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"}],"39":["2025-10-21 02 14:40:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"40":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"41":["2025-11-01 06 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"42":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"43":["2025-11-01 06 00:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"44":["2025-12-01 01 00:10:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"400"},{"$numberInt":"400"},{"$numberInt":"400"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"45":["2025-12-01 01 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"46":["2025-12-01 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"47":["2025-12-01 01 00:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"48":["2025-12-01 01 00:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"49":["2025-12-01 01 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"50":["2026-01-01 04 00:10:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"401"},{"$numberInt":"402"},{"$numberInt":"401"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"51":["2026-01-01 04 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"52":["2026-02-01 07 00:10:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"53":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3445"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"}],"54":["2026-03-01 07 00:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"403"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"55":["2026-03-01 07 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"56":["2026-03-01 07 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"57":["2026-03-01 07 00:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"58":["2026-03-01 07 00:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"59":["2026-03-01 07 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"60":["2026-03-01 07 01:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"61":["2026-03-01 07 01:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"62":["2026-03-01 07 01:30:00 00,FFC4,00",{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"63":["2026-04-01 03 00:10:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"64":["2026-04-01 03 00:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"65":["2026-04-01 03 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"66":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"67":["2026-05-01 05 00:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"68":["2026-05-01 05 00:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"69":["2026-05-01 05 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"70":["2026-05-01 05 13:50:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"71":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3448"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"229"}],"72":["2026-06-01 01 07:30:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"226"},{"$numberInt":"3"},{"$numberInt":"173"},{"$numberInt":"3"},{"$numberInt":"174"},{"$numberInt":"3"},{"$numberInt":"513"},{"$numberInt":"460"},{"$numberInt":"514"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"73":["2025-10-22 03 17:10:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"405"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"74":["2025-10-22 03 17:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"75":["2025-10-22 03 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"403"},{"$numberInt":"403"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"76":["2025-10-22 03 17:40:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"77":["2025-10-22 03 17:50:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"78":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"400"},{"$numberInt":"400"},{"$numberInt":"401"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"79":["2025-11-01 06 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"80":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"81":["2025-11-01 06 00:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"82":["2025-11-01 06 00:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"83":["2025-11-01 06 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"84":["2025-11-01 06 01:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"85":["2025-11-01 06 01:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"86":["2025-11-01 06 01:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"87":["2025-11-01 06 15:00:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"88":["2025-11-01 06 15:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"89":["2025-11-01 06 15:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"90":["2025-11-01 06 15:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"91":["2025-11-01 06 15:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"92":["2025-11-01 06 15:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"10"},{"$numberInt":"229"},{"$numberInt":"10"},{"$numberInt":"229"},{"$numberInt":"10"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"93":["2025-11-01 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"210"},{"$numberInt":"0"},{"$numberInt":"207"},{"$numberInt":"0"},{"$numberInt":"439"},{"$numberInt":"426"},{"$numberInt":"446"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"94":["2025-11-01 06 16:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"20"},{"$numberInt":"229"},{"$numberInt":"20"},{"$numberInt":"229"},{"$numberInt":"20"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"405"},{"$numberInt":"34432"},{"$numberInt":"0"},{"$numberInt":"49"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"229"}],"95":["2025-11-01 06 16:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"30"},{"$numberInt":"229"},{"$numberInt":"29"},{"$numberInt":"230"},{"$numberInt":"29"},{"$numberInt":"410"},{"$numberInt":"410"},{"$numberInt":"410"},{"$numberInt":"34406"},{"$numberInt":"0"},{"$numberInt":"49"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"229"}],"96":["2025-11-01 06 16:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"46"},{"$numberInt":"229"},{"$numberInt":"46"},{"$numberInt":"230"},{"$numberInt":"46"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"403"},{"$numberInt":"34445"},{"$numberInt":"0"},{"$numberInt":"49"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"230"},{"$numberInt":"49"},{"$numberInt":"230"}],"97":["2025-11-01 06 16:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"19"},{"$numberInt":"230"},{"$numberInt":"19"},{"$numberInt":"230"},{"$numberInt":"19"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"98":["2025-11-08 06 15:30:00 00,FFC4,00",{"$numberInt":"133"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"404"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"99":["2025-11-08 06 15:40:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"42"},{"$numberInt":"0"},{"$numberInt":"42"},{"$numberInt":"0"},{"$numberInt":"139"},{"$numberInt":"607"},{"$numberInt":"139"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"100":["2025-11-08 06 15:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"101":["2025-11-08 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"102":["2025-11-08 06 16:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"103":["2025-11-08 06 16:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"104":["2025-11-08 06 16:40:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"110"},{"$numberInt":"0"},{"$numberInt":"110"},{"$numberInt":"0"},{"$numberInt":"651"},{"$numberInt":"532"},{"$numberInt":"651"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"105":["2025-11-08 06 16:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"106":["2025-11-08 06 17:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"399"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"107":["2025-11-08 06 17:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"399"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"108":["2025-11-08 06 17:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"109":["2025-11-08 06 17:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"204"},{"$numberInt":"0"},{"$numberInt":"205"},{"$numberInt":"0"},{"$numberInt":"452"},{"$numberInt":"428"},{"$numberInt":"450"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"110":["2025-11-08 06 17:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"111":["2025-11-08 06 17:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"112":["2025-11-08 06 18:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"113":["2025-11-08 06 18:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"114":["2025-11-08 06 18:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"115":["2025-11-08 06 18:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"116":["2025-11-08 06 18:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"117":["2025-11-08 06 18:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"118":["2025-11-08 06 19:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"119":["2025-11-08 06 19:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"120":["2025-11-08 06 19:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"121":["2025-11-08 06 19:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"122":["2025-11-08 06 19:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"123":["2025-11-08 06 19:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"124":["2025-11-08 06 20:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"125":["2025-11-08 06 20:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"126":["2025-11-08 06 20:20:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"177"},{"$numberInt":"0"},{"$numberInt":"177"},{"$numberInt":"0"},{"$numberInt":"509"},{"$numberInt":"457"},{"$numberInt":"509"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"127":["2025-11-08 06 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"128":["2025-11-08 06 20:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"228"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"397"},{"$numberInt":"397"},{"$numberInt":"397"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"129":["2025-11-08 06 20:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"232"},{"$numberInt":"0"},{"$numberInt":"232"},{"$numberInt":"0"},{"$numberInt":"232"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"403"},{"$numberInt":"403"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"}],"130":["2025-11-08 06 21:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"}],"131":["2025-11-08 06 21:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"}],"132":["2025-11-08 06 21:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"}],"133":["2025-11-08 06 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"}],"134":["2025-11-08 06 21:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"2"},{"$numberInt":"234"},{"$numberInt":"2"},{"$numberInt":"234"},{"$numberInt":"2"},{"$numberInt":"405"},{"$numberInt":"405"},{"$numberInt":"405"},{"$numberInt":"3446"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"}],"135":["2025-11-08 06 21:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"3445"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"}],"136":["2025-11-08 06 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"3444"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"}],"137":["2025-11-08 06 22:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"3443"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"}],"138":["2025-11-09 07 14:40:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"231"},{"$numberInt":"1"},{"$numberInt":"231"},{"$numberInt":"1"},{"$numberInt":"231"},{"$numberInt":"1"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"139":["2025-11-09 07 14:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"140":["2025-11-09 07 15:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"141":["2025-11-09 07 15:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"142":["2025-11-09 07 20:10:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"220"},{"$numberInt":"0"},{"$numberInt":"74"},{"$numberInt":"0"},{"$numberInt":"74"},{"$numberInt":"0"},{"$numberInt":"63"},{"$numberInt":"572"},{"$numberInt":"63"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"143":["2025-11-09 07 20:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"144":["2025-11-09 07 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"145":["2025-11-09 07 20:50:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"146":["2025-11-09 07 21:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"147":["2025-11-09 07 21:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"148":["2025-11-09 07 21:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"149":["2025-11-09 07 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"150":["2025-11-09 07 21:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"151":["2025-11-09 07 21:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"152":["2025-11-09 07 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"153":["2025-11-09 07 22:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"154":["2025-11-09 07 22:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"155":["2025-11-09 07 22:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"156":["2025-11-09 07 22:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"157":["2025-11-09 07 22:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"158":["2025-11-09 07 23:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"159":["2025-11-09 07 23:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"160":["2025-11-10 01 00:10:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"161":["2025-11-10 01 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"162":["2025-11-10 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"163":["2025-11-10 01 15:40:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:40:31.656015","status":"success"},{"key":"Quality Profile.10 Minutes Power Quality Profile.Capture objects","classId":{"$numberInt":"7"},"obis":"1.0.99.1.2.255","obisFormatted":"1-0:99.1.2.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"10 Minutes Power Quality Profile","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.10.9.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:32.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:31.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:52.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:51.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"3"},"1-0:72.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"7":[{"$numberInt":"3"},"1-0:71.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"8":[{"$numberInt":"3"},"1-0:124.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"3"},"1-0:125.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"10":[{"$numberInt":"3"},"1-0:126.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"11":[{"$numberInt":"3"},"1-0:1.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"12":[{"$numberInt":"3"},"1-0:10.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"13":[{"$numberInt":"3"},"1-0:31.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"14":[{"$numberInt":"3"},"1-0:32.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"15":[{"$numberInt":"3"},"1-0:51.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"16":[{"$numberInt":"3"},"1-0:52.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"17":[{"$numberInt":"3"},"1-0:71.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"18":[{"$numberInt":"3"},"1-0:72.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:40:33.206089","status":"success"},{"key":"Quality Profile.10 Minutes Power Quality Profile.Capture period","classId":{"$numberInt":"7"},"obis":"1.0.99.1.2.255","obisFormatted":"1-0:99.1.2.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"10 Minutes Power Quality Profile","value":{"$numberInt":"600"},"timestamp":"2025-11-01T09:40:33.833181","status":"success"},{"key":"Quality Profile.10 Minutes Power Quality Profile.Sort method","classId":{"$numberInt":"7"},"obis":"1.0.99.1.2.255","obisFormatted":"1-0:99.1.2.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"10 Minutes Power Quality Profile","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:40:34.455483","status":"success"},{"key":"Quality Profile.10 Minutes Power Quality Profile.Sort object","classId":{"$numberInt":"7"},"obis":"1.0.99.1.2.255","obisFormatted":"1-0:99.1.2.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"10 Minutes Power Quality Profile","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:40:35.080536","status":"success"},{"key":"Quality Profile.10 Minutes Power Quality Profile.Entries in use","classId":{"$numberInt":"7"},"obis":"1.0.99.1.2.255","obisFormatted":"1-0:99.1.2.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"10 Minutes Power Quality Profile","value":{"$numberInt":"164"},"timestamp":"2025-11-01T09:40:35.726765","status":"success"},{"key":"Quality Profile.10 Minutes Power Quality Profile.Profile entries","classId":{"$numberInt":"7"},"obis":"1.0.99.1.2.255","obisFormatted":"1-0:99.1.2.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"10 Minutes Power Quality Profile","value":{"$numberInt":"1440"},"timestamp":"2025-11-01T09:40:36.338522","status":"success"}],"summary":{"total":{"$numberInt":"16"},"success":{"$numberInt":"16"},"failed":{"$numberInt":"0"}}},"Power Quality":{"sheet_name":"Power Quality","objects":[{"key":"Power Quality.Time threshold for long power failure.Value","classId":{"$numberInt":"3"},"obis":"0.0.96.7.20.255","obisFormatted":"0-0:96.7.20.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Time threshold for long power failure","value":{"$numberInt":"180"},"timestamp":"2025-11-01T09:40:36.950007","status":"success"},{"key":"Power Quality.Value threshold for voltage sag.Value","classId":{"$numberInt":"3"},"obis":"1.0.12.31.0.255","obisFormatted":"1-0:12.31.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Value threshold for voltage sag","value":{"$numberInt":"207"},"timestamp":"2025-11-01T09:40:37.652723","status":"success"},{"key":"Power Quality.Time threshold for voltage sag.Value","classId":{"$numberInt":"3"},"obis":"1.0.12.43.0.255","obisFormatted":"1-0:12.43.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Time threshold for voltage sag","value":{"$numberInt":"30"},"timestamp":"2025-11-01T09:40:38.345061","status":"success"},{"key":"Power Quality.Value threshold for short voltage sag.Value","classId":{"$numberInt":"3"},"obis":"1.1.12.31.0.255","obisFormatted":"1-1:12.31.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Value threshold for short voltage sag","value":{"$numberInt":"207"},"timestamp":"2025-11-01T09:40:39.078429","status":"success"},{"key":"Power Quality.Time threshold for short voltage sag.Value","classId":{"$numberInt":"3"},"obis":"1.1.12.43.0.255","obisFormatted":"1-1:12.43.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Time threshold for short voltage sag","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:40:39.806536","status":"success"},{"key":"Power Quality.Value threshold for PV voltage sag.Value","classId":{"$numberInt":"3"},"obis":"1.2.12.31.0.255","obisFormatted":"1-2:12.31.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Value threshold for PV voltage sag","value":{"$numberInt":"212"},"timestamp":"2025-11-01T09:40:40.533748","status":"success"},{"key":"Power Quality.Time threshold for PV voltage sag.Value","classId":{"$numberInt":"3"},"obis":"1.2.12.43.0.255","obisFormatted":"1-2:12.43.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Time threshold for PV voltage sag","value":{"$numberInt":"2"},"timestamp":"2025-11-01T09:40:41.273292","status":"success"},{"key":"Power Quality.Value threshold for voltage swell.Value","classId":{"$numberInt":"3"},"obis":"1.0.12.35.0.255","obisFormatted":"1-0:12.35.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Value threshold for voltage swell","value":{"$numberInt":"253"},"timestamp":"2025-11-01T09:40:41.893023","status":"success"},{"key":"Power Quality.Time threshold for voltage swell.Value","classId":{"$numberInt":"3"},"obis":"1.0.12.44.0.255","obisFormatted":"1-0:12.44.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Time threshold for voltage swell","value":{"$numberInt":"30"},"timestamp":"2025-11-01T09:40:42.640737","status":"success"},{"key":"Power Quality.Value threshold for PV voltage swell.Value","classId":{"$numberInt":"3"},"obis":"1.2.12.35.0.255","obisFormatted":"1-2:12.35.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Value threshold for PV voltage swell","value":{"$numberInt":"248"},"timestamp":"2025-11-01T09:40:43.240640","status":"success"},{"key":"Power Quality.Time threshold for PV voltage swell.Value","classId":{"$numberInt":"3"},"obis":"1.2.12.44.0.255","obisFormatted":"1-2:12.44.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Time threshold for PV voltage swell","value":{"$numberInt":"2"},"timestamp":"2025-11-01T09:40:43.937108","status":"success"},{"key":"Power Quality.Number of voltage sags in phase L1.L1 sag number","classId":{"$numberInt":"1"},"obis":"1.0.32.32.0.255","obisFormatted":"1-0:32.32.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L1 sag number","controlName":"Number of voltage sags in phase L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:44.594162","status":"success"},{"key":"Power Quality.Number of voltage sags in phase L2.L2 sag number","classId":{"$numberInt":"1"},"obis":"1.0.52.32.0.255","obisFormatted":"1-0:52.32.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L2 sag number","controlName":"Number of voltage sags in phase L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:45.191307","status":"success"},{"key":"Power Quality.Number of voltage sags in phase L3.L3 sag number","classId":{"$numberInt":"1"},"obis":"1.0.72.32.0.255","obisFormatted":"1-0:72.32.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L3 sag number","controlName":"Number of voltage sags in phase L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:45.802673","status":"success"},{"key":"Power Quality.Duration of last voltage sag in phase L1.L1 sag number","classId":{"$numberInt":"3"},"obis":"1.0.32.33.0.255","obisFormatted":"1-0:32.33.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L1 sag number","controlName":"Duration of last voltage sag in phase L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:46.509254","status":"success"},{"key":"Power Quality.Duration of last voltage sag in phase L2.L2 sag number","classId":{"$numberInt":"3"},"obis":"1.0.52.33.0.255","obisFormatted":"1-0:52.33.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L2 sag number","controlName":"Duration of last voltage sag in phase L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:47.175805","status":"success"},{"key":"Power Quality.Duration of last voltage sag in phase L3.L3 sag number","classId":{"$numberInt":"3"},"obis":"1.0.72.33.0.255","obisFormatted":"1-0:72.33.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L3 sag number","controlName":"Duration of last voltage sag in phase L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:47.875422","status":"success"},{"key":"Power Quality.Magnitude of last voltage sag in phase L1.L1 sag number","classId":{"$numberInt":"3"},"obis":"1.0.32.34.0.255","obisFormatted":"1-0:32.34.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L1 sag number","controlName":"Magnitude of last voltage sag in phase L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:48.570629","status":"success"},{"key":"Power Quality.Magnitude of last voltage sag in phase L2.L2 sag number","classId":{"$numberInt":"3"},"obis":"1.0.52.34.0.255","obisFormatted":"1-0:52.34.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L2 sag number","controlName":"Magnitude of last voltage sag in phase L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:49.332737","status":"success"},{"key":"Power Quality.Magnitude of last voltage sag in phase L3.L3 sag number","classId":{"$numberInt":"3"},"obis":"1.0.72.34.0.255","obisFormatted":"1-0:72.34.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L3 sag number","controlName":"Magnitude of last voltage sag in phase L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:50.076078","status":"success"},{"key":"Power Quality.L1 PV sag number.L1 sag number","classId":{"$numberInt":"1"},"obis":"1.2.32.32.0.255","obisFormatted":"1-2:32.32.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L1 sag number","controlName":"L1 PV sag number","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:40:50.848070","status":"success"},{"key":"Power Quality.L2 PV sag number.L2 sag number","classId":{"$numberInt":"1"},"obis":"1.2.52.32.0.255","obisFormatted":"1-2:52.32.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L2 sag number","controlName":"L2 PV sag number","value":{"$numberInt":"3"},"timestamp":"2025-11-01T09:40:51.612975","status":"success"},{"key":"Power Quality.L3 PV sag number.L3 sag number","classId":{"$numberInt":"1"},"obis":"1.2.72.32.0.255","obisFormatted":"1-2:72.32.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L3 sag number","controlName":"L3 PV sag number","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:40:52.346422","status":"success"},{"key":"Power Quality.L1 Short sag number.L1 sag number","classId":{"$numberInt":"1"},"obis":"1.1.32.32.0.255","obisFormatted":"1-1:32.32.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L1 sag number","controlName":"L1 Short sag number","value":{"$numberInt":"7958"},"timestamp":"2025-11-01T09:40:53.099398","status":"success"},{"key":"Power Quality.L2 Short sag number.L2 sag number","classId":{"$numberInt":"1"},"obis":"1.1.52.32.0.255","obisFormatted":"1-1:52.32.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L2 sag number","controlName":"L2 Short sag number","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:53.866491","status":"success"},{"key":"Power Quality.L3 Short sag number.L3 sag number","classId":{"$numberInt":"1"},"obis":"1.1.72.32.0.255","obisFormatted":"1-1:72.32.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L3 sag number","controlName":"L3 Short sag number","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:54.618322","status":"success"},{"key":"Power Quality.Number of voltage swells in phase L1.L1 swell number","classId":{"$numberInt":"1"},"obis":"1.0.32.36.0.255","obisFormatted":"1-0:32.36.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L1 swell number","controlName":"Number of voltage swells in phase L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:55.242569","status":"success"},{"key":"Power Quality.Number of voltage swells in phase L2.L2 swell number","classId":{"$numberInt":"1"},"obis":"1.0.52.36.0.255","obisFormatted":"1-0:52.36.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L2 swell number","controlName":"Number of voltage swells in phase L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:55.841682","status":"success"},{"key":"Power Quality.Number of voltage swells in phase L3.L3 swell number","classId":{"$numberInt":"1"},"obis":"1.0.72.36.0.255","obisFormatted":"1-0:72.36.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L3 swell number","controlName":"Number of voltage swells in phase L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:56.429238","status":"success"},{"key":"Power Quality.Duration of last voltage swell in phase L1.L1 sag number","classId":{"$numberInt":"3"},"obis":"1.0.32.37.0.255","obisFormatted":"1-0:32.37.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L1 sag number","controlName":"Duration of last voltage swell in phase L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:57.164325","status":"success"},{"key":"Power Quality.Duration of last voltage swell in phase L2.L2 sag number","classId":{"$numberInt":"3"},"obis":"1.0.52.37.0.255","obisFormatted":"1-0:52.37.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L2 sag number","controlName":"Duration of last voltage swell in phase L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:57.911791","status":"success"},{"key":"Power Quality.Duration of last voltage swell in phase L3.L3 sag number","classId":{"$numberInt":"3"},"obis":"1.0.72.37.0.255","obisFormatted":"1-0:72.37.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L3 sag number","controlName":"Duration of last voltage swell in phase L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:58.694911","status":"success"},{"key":"Power Quality.Magnitude of last voltage swell in phase L1.L1 sag number","classId":{"$numberInt":"3"},"obis":"1.0.32.38.0.255","obisFormatted":"1-0:32.38.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L1 sag number","controlName":"Magnitude of last voltage swell in phase L1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:40:59.431037","status":"success"},{"key":"Power Quality.Magnitude of last voltage swell in phase L2.L2 sag number","classId":{"$numberInt":"3"},"obis":"1.0.52.38.0.255","obisFormatted":"1-0:52.38.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L2 sag number","controlName":"Magnitude of last voltage swell in phase L2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:00.113918","status":"success"},{"key":"Power Quality.Magnitude of last voltage swell in phase L3.L3 sag number","classId":{"$numberInt":"3"},"obis":"1.0.72.38.0.255","obisFormatted":"1-0:72.38.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L3 sag number","controlName":"Magnitude of last voltage swell in phase L3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:00.848928","status":"success"},{"key":"Power Quality.L1 PV swell number.L1 swell number","classId":{"$numberInt":"1"},"obis":"1.2.32.36.0.255","obisFormatted":"1-2:32.36.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L1 swell number","controlName":"L1 PV swell number","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:01.579922","status":"success"},{"key":"Power Quality.L2 PV swell number.L2 swell number","classId":{"$numberInt":"1"},"obis":"1.2.52.36.0.255","obisFormatted":"1-2:52.36.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L2 swell number","controlName":"L2 PV swell number","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:02.330177","status":"success"},{"key":"Power Quality.L3 PV swell number.L3 swell number","classId":{"$numberInt":"1"},"obis":"1.2.72.36.0.255","obisFormatted":"1-2:72.36.0.255","attributeId":{"$numberInt":"2"},"attributeName":"L3 swell number","controlName":"L3 PV swell number","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:03.014628","status":"success"},{"key":"Power Quality.Number of power failures in any phases.Number of power failures in any phases","classId":{"$numberInt":"1"},"obis":"0.0.96.7.21.255","obisFormatted":"0-0:96.7.21.255","attributeId":{"$numberInt":"2"},"attributeName":"Number of power failures in any phases","controlName":"Number of power failures in any phases","value":{"$numberInt":"2"},"timestamp":"2025-11-01T09:41:03.642534","status":"success"},{"key":"Power Quality.Number of long power failures in any phases.Number of long power failures in any phases","classId":{"$numberInt":"1"},"obis":"0.0.96.7.9.255","obisFormatted":"0-0:96.7.9.255","attributeId":{"$numberInt":"2"},"attributeName":"Number of long power failures in any phases","controlName":"Number of long power failures in any phases","value":{"$numberInt":"13"},"timestamp":"2025-11-01T09:41:04.271329","status":"success"}],"summary":{"total":{"$numberInt":"40"},"success":{"$numberInt":"40"},"failed":{"$numberInt":"0"}}},"Event Record":{"sheet_name":"Event Record","objects":[{"key":"Event Record.Standard event log code.Standard event log code","classId":{"$numberInt":"1"},"obis":"0.0.96.11.0.255","obisFormatted":"0-0:96.11.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Standard event log code","controlName":"Standard event log code","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:41:04.972256","status":"success"},{"key":"Event Record.0-Standard.Buffer","classId":{"$numberInt":"7"},"obis":"0.0.99.98.0.255","obisFormatted":"0-0:99.98.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"0-Standard","value":{"0":["2026-03-31 02 23:58:24 00,FF88,80",{"$numberInt":"5"}],"1":["2026-04-01 03 00:00:04 00,FF88,80",{"$numberInt":"18"}],"2":["2026-04-01 03 00:00:04 00,FF88,80",{"$numberInt":"20"}],"3":["2026-04-01 03 00:17:59 00,FF88,80",{"$numberInt":"17"}],"4":["2026-04-01 03 00:35:01 00,FF88,80",{"$numberInt":"4"}],"5":["2026-04-30 04 23:59:25 00,FF88,80",{"$numberInt":"5"}],"6":["2026-05-01 05 00:01:04 00,FF88,80",{"$numberInt":"18"}],"7":["2026-05-01 05 00:01:04 00,FF88,80",{"$numberInt":"20"}],"8":["2026-05-01 05 00:19:16 00,FF88,80",{"$numberInt":"17"}],"9":["2026-05-01 05 00:31:29 00,FF88,80",{"$numberInt":"1"}],"10":["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"2"}],"11":["2026-05-01 05 13:57:22 00,FF88,80",{"$numberInt":"4"}],"12":["2026-05-31 07 23:59:00 00,FF88,80",{"$numberInt":"5"}],"13":["2026-06-01 01 00:05:30 00,FF88,80",{"$numberInt":"1"}],"14":["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"2"}],"15":["2026-06-01 01 07:31:28 00,FF88,80",{"$numberInt":"4"}],"16":["2025-10-22 03 17:00:28 00,FF88,80",{"$numberInt":"5"}],"17":["2025-10-22 03 17:02:22 00,FF88,80",{"$numberInt":"17"}],"18":["2025-10-22 03 17:03:07 00,FF88,80",{"$numberInt":"18"}],"19":["2025-10-22 03 17:03:07 00,FF88,80",{"$numberInt":"20"}],"20":["2025-10-22 03 17:03:08 00,FF88,80",{"$numberInt":"2"}],"21":["2025-10-22 03 17:05:36 00,FF88,80",{"$numberInt":"17"}],"22":["2025-10-22 03 17:05:54 00,FF88,80",{"$numberInt":"18"}],"23":["2025-10-22 03 17:05:54 00,FF88,80",{"$numberInt":"20"}],"24":["2025-10-22 03 17:05:55 00,FF88,80",{"$numberInt":"2"}],"25":["2025-10-22 03 17:20:45 00,FF88,80",{"$numberInt":"17"}],"26":["2025-10-22 03 17:22:40 00,FF88,80",{"$numberInt":"18"}],"27":["2025-10-22 03 17:22:40 00,FF88,80",{"$numberInt":"20"}],"28":["2025-10-22 03 17:22:41 00,FF88,80",{"$numberInt":"2"}],"29":["2025-10-22 03 17:50:38 00,FF88,80",{"$numberInt":"17"}],"30":["2025-10-22 03 17:53:45 00,FF88,80",{"$numberInt":"4"}],"31":["2025-10-31 05 23:58:25 00,FFC4,00",{"$numberInt":"5"}],"32":["2025-11-01 06 00:00:05 00,FFC4,00",{"$numberInt":"18"}],"33":["2025-11-01 06 00:00:05 00,FFC4,00",{"$numberInt":"20"}],"34":["2025-11-01 06 00:00:06 00,FFC4,00",{"$numberInt":"2"}],"35":["2025-11-01 06 01:36:49 00,FFC4,00",{"$numberInt":"1"}],"36":["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"2"}],"37":["2025-11-01 06 15:12:33 00,FFC4,00",{"$numberInt":"17"}],"38":["2025-11-01 06 15:17:14 00,FFC4,00",{"$numberInt":"18"}],"39":["2025-11-01 06 15:17:14 00,FFC4,00",{"$numberInt":"20"}],"40":["2025-11-01 06 15:38:52 00,FFC4,00",{"$numberInt":"17"}],"41":["2025-11-01 06 15:46:23 00,FFC4,00",{"$numberInt":"18"}],"42":["2025-11-01 06 15:46:23 00,FFC4,00",{"$numberInt":"20"}],"43":["2025-11-01 06 15:56:56 00,FFC4,00",{"$numberInt":"1"}],"44":["2025-11-01 06 15:57:55 00,FFC4,00",{"$numberInt":"2"}],"45":["2025-11-01 06 16:01:36 00,FFC4,00",{"$numberInt":"17"}],"46":["2025-11-01 06 16:01:51 00,FFC4,00",{"$numberInt":"18"}],"47":["2025-11-01 06 16:01:51 00,FFC4,00",{"$numberInt":"20"}],"48":["2025-11-01 06 16:07:14 00,FFC4,00",{"$numberInt":"17"}],"49":["2025-11-01 06 16:07:30 00,FFC4,00",{"$numberInt":"18"}],"50":["2025-11-01 06 16:07:30 00,FFC4,00",{"$numberInt":"20"}],"51":["2025-11-01 06 16:09:50 00,FFC4,00",{"$numberInt":"17"}],"52":["2025-11-01 06 16:10:15 00,FFC4,00",{"$numberInt":"18"}],"53":["2025-11-01 06 16:10:15 00,FFC4,00",{"$numberInt":"20"}],"54":["2025-11-01 06 16:11:56 00,FFC4,00",{"$numberInt":"17"}],"55":["2025-11-01 06 16:12:10 00,FFC4,00",{"$numberInt":"18"}],"56":["2025-11-01 06 16:12:10 00,FFC4,00",{"$numberInt":"20"}],"57":["2025-11-01 06 16:14:19 00,FFC4,00",{"$numberInt":"17"}],"58":["2025-11-01 06 16:14:33 00,FFC4,00",{"$numberInt":"18"}],"59":["2025-11-01 06 16:14:33 00,FFC4,00",{"$numberInt":"20"}],"60":["2025-11-01 06 16:19:44 00,FFC4,00",{"$numberInt":"17"}],"61":["2025-11-01 06 16:19:58 00,FFC4,00",{"$numberInt":"18"}],"62":["2025-11-01 06 16:19:58 00,FFC4,00",{"$numberInt":"20"}],"63":["2025-11-01 06 16:37:35 00,FFC4,00",{"$numberInt":"17"}],"64":["2025-11-01 06 16:37:48 00,FFC4,00",{"$numberInt":"18"}],"65":["2025-11-01 06 16:37:48 00,FFC4,00",{"$numberInt":"20"}],"66":["2025-11-01 06 16:42:08 00,FFC4,00",{"$numberInt":"17"}],"67":["2025-11-01 06 16:42:22 00,FFC4,00",{"$numberInt":"18"}],"68":["2025-11-01 06 16:42:22 00,FFC4,00",{"$numberInt":"20"}],"69":["2025-11-01 06 16:42:28 00,FFC4,00",{"$numberInt":"1"}],"70":["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"2"}],"71":["2025-11-08 06 15:31:48 00,FFC4,00",{"$numberInt":"1"}],"72":["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"2"}],"73":["2025-11-08 06 16:47:04 00,FFC4,00",{"$numberInt":"17"}],"74":["2025-11-08 06 16:59:12 00,FFC4,00",{"$numberInt":"18"}],"75":["2025-11-08 06 16:59:12 00,FFC4,00",{"$numberInt":"20"}],"76":["2025-11-08 06 16:59:13 00,FFC4,00",{"$numberInt":"2"}],"77":["2025-11-08 06 17:02:51 00,FFC4,00",{"$numberInt":"17"}],"78":["2025-11-08 06 17:03:05 00,FFC4,00",{"$numberInt":"18"}],"79":["2025-11-08 06 17:03:05 00,FFC4,00",{"$numberInt":"20"}],"80":["2025-11-08 06 17:03:06 00,FFC4,00",{"$numberInt":"2"}],"81":["2025-11-08 06 17:03:29 00,FFC4,00",{"$numberInt":"17"}],"82":["2025-11-08 06 17:03:44 00,FFC4,00",{"$numberInt":"18"}],"83":["2025-11-08 06 17:03:44 00,FFC4,00",{"$numberInt":"20"}],"84":["2025-11-08 06 17:03:45 00,FFC4,00",{"$numberInt":"2"}],"85":["2025-11-08 06 17:04:05 00,FFC4,00",{"$numberInt":"17"}],"86":["2025-11-08 06 17:04:20 00,FFC4,00",{"$numberInt":"18"}],"87":["2025-11-08 06 17:04:20 00,FFC4,00",{"$numberInt":"20"}],"88":["2025-11-08 06 17:04:21 00,FFC4,00",{"$numberInt":"2"}],"89":["2025-11-08 06 17:28:54 00,FFC4,00",{"$numberInt":"1"}],"90":["2025-11-08 06 17:29:49 00,FFC4,00",{"$numberInt":"17"}],"91":["2025-11-08 06 17:30:04 00,FFC4,00",{"$numberInt":"18"}],"92":["2025-11-08 06 17:30:04 00,FFC4,00",{"$numberInt":"20"}],"93":["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"2"}],"94":["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"1"}],"95":["2025-11-08 06 20:12:40 00,FFC4,00",{"$numberInt":"2"}],"96":["2025-11-08 06 21:37:53 00,FFC4,00",{"$numberInt":"10"}],"97":["2025-11-08 06 22:19:46 00,FFC4,00",{"$numberInt":"1"}],"98":["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"2"}],"99":["2025-11-09 07 15:14:43 00,FFC4,00",{"$numberInt":"1"}]},"timestamp":"2025-11-01T09:41:11.872750","status":"success"},{"key":"Event Record.0-Standard.Capture objects","classId":{"$numberInt":"7"},"obis":"0.0.99.98.0.255","obisFormatted":"0-0:99.98.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"0-Standard","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.11.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:41:12.480162","status":"success"},{"key":"Event Record.0-Standard.Capture period","classId":{"$numberInt":"7"},"obis":"0.0.99.98.0.255","obisFormatted":"0-0:99.98.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"0-Standard","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:13.093294","status":"success"},{"key":"Event Record.0-Standard.Sort method","classId":{"$numberInt":"7"},"obis":"0.0.99.98.0.255","obisFormatted":"0-0:99.98.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"0-Standard","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:41:13.707915","status":"success"},{"key":"Event Record.0-Standard.Sort object","classId":{"$numberInt":"7"},"obis":"0.0.99.98.0.255","obisFormatted":"0-0:99.98.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"0-Standard","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:41:14.348023","status":"success"},{"key":"Event Record.0-Standard.Entries in use","classId":{"$numberInt":"7"},"obis":"0.0.99.98.0.255","obisFormatted":"0-0:99.98.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"0-Standard","value":{"$numberInt":"100"},"timestamp":"2025-11-01T09:41:14.973016","status":"success"},{"key":"Event Record.0-Standard.Profile entries","classId":{"$numberInt":"7"},"obis":"0.0.99.98.0.255","obisFormatted":"0-0:99.98.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"0-Standard","value":{"$numberInt":"100"},"timestamp":"2025-11-01T09:41:15.566153","status":"success"},{"key":"Event Record.Fraud event log code.Fraud event log code","classId":{"$numberInt":"1"},"obis":"0.0.96.11.1.255","obisFormatted":"0-0:96.11.1.255","attributeId":{"$numberInt":"2"},"attributeName":"Fraud event log code","controlName":"Fraud event log code","value":{"$numberInt":"47"},"timestamp":"2025-11-01T09:41:16.269400","status":"success"},{"key":"Event Record.1-Fraud detect.Buffer","classId":{"$numberInt":"7"},"obis":"0.0.99.98.1.255","obisFormatted":"0-0:99.98.1.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"1-Fraud detect","value":{"0":["2025-09-22 01 11:10:01 00,FF88,80",{"$numberInt":"40"}],"1":["2025-09-29 01 14:54:25 00,FF88,80",{"$numberInt":"47"}],"2":["2025-09-29 01 14:55:12 00,FF88,80",{"$numberInt":"46"}],"3":["2025-09-29 01 16:09:53 00,FF88,80",{"$numberInt":"46"}],"4":["2025-09-30 02 13:56:08 00,FF88,80",{"$numberInt":"44"}],"5":["2025-09-30 02 14:52:40 00,FF88,80",{"$numberInt":"45"}],"6":["2025-09-30 02 16:18:25 00,FF88,81",{"$numberInt":"44"}],"7":["2025-09-30 02 16:48:22 00,FF88,81",{"$numberInt":"45"}],"8":["2025-10-20 01 15:44:59 00,FF88,80",{"$numberInt":"41"}],"9":["2025-10-20 01 15:45:02 00,FF88,80",{"$numberInt":"40"}],"10":["2025-10-20 01 15:45:19 00,FF88,80",{"$numberInt":"41"}],"11":["2025-10-20 01 15:46:10 00,FF88,80",{"$numberInt":"40"}],"12":["2025-10-20 01 15:46:30 00,FF88,80",{"$numberInt":"41"}],"13":["2025-10-20 01 17:06:22 00,FF88,80",{"$numberInt":"47"}],"14":["2025-10-20 01 17:12:00 00,FF88,80",{"$numberInt":"47"}],"15":["2025-10-20 01 17:57:50 00,FF88,80",{"$numberInt":"47"}],"16":["2025-10-20 01 17:59:25 00,FF88,80",{"$numberInt":"47"}],"17":["2026-03-01 07 01:28:18 00,FFC4,00",{"$numberInt":"46"}],"18":["2026-06-01 01 00:06:33 00,FF88,80",{"$numberInt":"40"}],"19":["2025-10-22 03 17:11:25 00,FF88,80",{"$numberInt":"41"}],"20":["2025-11-01 06 20:00:05 00,FFC4,00",{"$numberInt":"40"}],"21":["2025-11-08 06 19:51:43 00,FFC4,00",{"$numberInt":"47"}],"22":["2025-11-08 06 20:15:18 00,FFC4,00",{"$numberInt":"47"}]},"timestamp":"2025-11-01T09:41:18.204584","status":"success"},{"key":"Event Record.1-Fraud detect.Capture objects","classId":{"$numberInt":"7"},"obis":"0.0.99.98.1.255","obisFormatted":"0-0:99.98.1.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"1-Fraud detect","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.11.1.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:41:18.845240","status":"success"},{"key":"Event Record.1-Fraud detect.Capture period","classId":{"$numberInt":"7"},"obis":"0.0.99.98.1.255","obisFormatted":"0-0:99.98.1.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"1-Fraud detect","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:19.485112","status":"success"},{"key":"Event Record.1-Fraud detect.Sort method","classId":{"$numberInt":"7"},"obis":"0.0.99.98.1.255","obisFormatted":"0-0:99.98.1.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"1-Fraud detect","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:41:20.123523","status":"success"},{"key":"Event Record.1-Fraud detect.Sort object","classId":{"$numberInt":"7"},"obis":"0.0.99.98.1.255","obisFormatted":"0-0:99.98.1.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"1-Fraud detect","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:41:20.764725","status":"success"},{"key":"Event Record.1-Fraud detect.Entries in use","classId":{"$numberInt":"7"},"obis":"0.0.99.98.1.255","obisFormatted":"0-0:99.98.1.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"1-Fraud detect","value":{"$numberInt":"23"},"timestamp":"2025-11-01T09:41:21.375552","status":"success"},{"key":"Event Record.1-Fraud detect.Profile entries","classId":{"$numberInt":"7"},"obis":"0.0.99.98.1.255","obisFormatted":"0-0:99.98.1.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"1-Fraud detect","value":{"$numberInt":"30"},"timestamp":"2025-11-01T09:41:21.981220","status":"success"},{"key":"Event Record.Event Counter Meter Readings E(73).E-meter Logic device name","classId":{"$numberInt":"1"},"obis":"0.0.96.15.11.255","obisFormatted":"0-0:96.15.11.255","attributeId":{"$numberInt":"2"},"attributeName":"E-meter Logic device name","controlName":"Event Counter Meter Readings E(73)","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:41:22.713440","status":"success"},{"key":"Event Record.Event Counter Meter Readings G(74).E-meter Logic device name","classId":{"$numberInt":"1"},"obis":"0.0.96.15.12.255","obisFormatted":"0-0:96.15.12.255","attributeId":{"$numberInt":"2"},"attributeName":"E-meter Logic device name","controlName":"Event Counter Meter Readings G(74)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:23.445622","status":"success"},{"key":"Event Record.Event Counter Interval Data E(75).E-meter Logic device name","classId":{"$numberInt":"1"},"obis":"0.0.96.15.13.255","obisFormatted":"0-0:96.15.13.255","attributeId":{"$numberInt":"2"},"attributeName":"E-meter Logic device name","controlName":"Event Counter Interval Data E(75)","value":{"$numberInt":"331"},"timestamp":"2025-11-01T09:41:24.177381","status":"success"},{"key":"Event Record.Event Counter Interval Data G(76).E-meter Logic device name","classId":{"$numberInt":"1"},"obis":"0.0.96.15.14.255","obisFormatted":"0-0:96.15.14.255","attributeId":{"$numberInt":"2"},"attributeName":"E-meter Logic device name","controlName":"Event Counter Interval Data G(76)","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:24.929911","status":"success"},{"key":"Event Record.Event Counter Communication Sessions Log.E-meter Logic device name","classId":{"$numberInt":"1"},"obis":"0.0.96.15.4.255","obisFormatted":"0-0:96.15.4.255","attributeId":{"$numberInt":"2"},"attributeName":"E-meter Logic device name","controlName":"Event Counter Communication Sessions Log","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:25.663109","status":"success"},{"key":"Event Record.Communication event log code.Communication event log code","classId":{"$numberInt":"1"},"obis":"0.0.96.11.4.255","obisFormatted":"0-0:96.11.4.255","attributeId":{"$numberInt":"2"},"attributeName":"Communication event log code","controlName":"Communication event log code","value":{"$numberInt":"71"},"timestamp":"2025-11-01T09:41:26.367349","status":"success"},{"key":"Event Record.2-Com log.Buffer","classId":{"$numberInt":"7"},"obis":"0.0.99.98.4.255","obisFormatted":"0-0:99.98.4.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"2-Com log","value":{"0":["2025-09-22 01 11:10:26 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"1":["2025-09-22 01 11:11:10 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"2":["2025-09-22 01 11:12:31 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"3":["2025-09-22 01 11:13:58 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"4":["2025-09-22 01 11:13:58 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"5":["2025-09-24 03 11:02:58 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"6":["2025-09-24 03 11:22:08 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"7":["2025-09-24 03 11:22:08 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"8":["2025-09-24 03 11:22:08 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"1"}],"9":["2025-09-24 03 11:22:08 00,FF88,80",{"$numberInt":"75"},{"$numberInt":"61"}],"10":["2025-09-24 03 13:42:53 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"11":["2025-09-24 03 13:56:47 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"12":["2025-09-24 03 13:56:47 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"13":["2025-09-24 03 13:56:47 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"1"}],"14":["2025-09-24 03 13:56:47 00,FF88,80",{"$numberInt":"75"},{"$numberInt":"67"}],"15":["2025-09-24 03 15:26:06 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"16":["2025-09-25 04 08:33:13 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"17":["2025-09-25 04 13:43:01 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"18":["2025-09-27 06 11:43:13 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"19":["2025-09-27 06 11:51:22 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"20":["2025-09-27 06 11:51:22 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"21":["2025-09-27 06 11:51:22 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"1"}],"22":["2025-09-27 06 11:51:22 00,FF88,80",{"$numberInt":"75"},{"$numberInt":"126"}],"23":["2025-09-28 07 12:01:00 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"24":["2025-09-28 07 12:38:25 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"25":["2025-09-28 07 12:38:25 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"26":["2025-09-28 07 12:38:25 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"1"}],"27":["2025-09-28 07 12:38:25 00,FF88,80",{"$numberInt":"75"},{"$numberInt":"184"}],"28":["2025-09-28 07 17:01:47 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"29":["2025-09-28 07 17:19:33 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"30":["2025-09-29 01 14:51:28 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"31":["2025-09-29 01 14:52:16 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"32":["2025-09-29 01 14:54:31 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"33":["2025-09-29 01 14:59:37 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"34":["2025-09-29 01 15:39:57 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"35":["2025-09-29 01 15:39:57 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"36":["2025-09-29 01 15:39:57 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"1"}],"37":["2025-09-29 01 15:39:57 00,FF88,80",{"$numberInt":"75"},{"$numberInt":"314"}],"38":["2025-09-29 01 16:15:59 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"39":["2025-09-30 02 17:12:31 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"40":["2025-09-30 02 17:22:25 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"41":["2025-09-30 02 17:23:09 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"42":["2025-09-30 02 17:42:58 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"43":["2025-09-30 02 17:49:06 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"44":["2025-09-30 02 17:49:26 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"45":["2025-09-30 02 18:58:56 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"46":["2025-10-20 01 15:36:15 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"47":["2025-10-20 01 15:41:33 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"48":["2025-10-20 01 15:45:22 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"49":["2025-10-20 01 18:20:19 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"50":["2025-10-20 01 18:25:44 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"51":["2025-10-20 01 18:25:44 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"52":["2025-10-21 02 08:59:59 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"53":["2025-10-21 02 09:06:22 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"54":["2025-10-21 02 09:48:16 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"55":["2025-10-21 02 09:49:44 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"56":["2025-10-21 02 10:50:11 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"57":["2025-10-21 02 11:06:27 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"58":["2025-10-21 02 10:45:35 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"59":["2025-10-21 02 10:45:43 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"60":["2025-10-21 02 10:45:58 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"61":["2025-10-21 02 10:46:05 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"62":["2025-10-21 02 10:46:14 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"63":["2025-10-21 02 10:46:38 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"64":["2025-10-21 02 10:46:54 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"65":["2025-10-21 02 10:47:11 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"66":["2025-10-21 02 10:49:11 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"67":["2025-10-21 02 10:49:11 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"68":["2025-10-21 02 10:49:17 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"69":["2025-10-21 02 10:49:47 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"70":["2025-10-21 02 11:00:54 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"71":["2025-10-25 06 00:00:12 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"72":["2025-11-01 06 00:00:02 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"73":["2025-11-01 06 00:00:02 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"74":["2025-11-01 06 00:00:03 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"75":["2025-11-01 06 00:00:15 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"76":["2025-10-21 02 12:31:27 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"77":["2025-10-21 02 12:31:27 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"78":["2025-10-21 02 12:31:27 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"2"}],"79":["2025-10-21 02 13:33:05 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"80":["2025-10-21 02 13:43:33 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"81":["2025-10-21 02 14:05:45 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"82":["2025-10-21 02 14:05:56 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"83":["2025-10-21 02 14:06:35 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"84":["2025-10-21 02 14:25:59 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"85":["2025-11-01 06 00:06:46 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"86":["2025-11-01 06 00:21:17 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"87":["2025-11-01 06 00:21:17 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"88":["2025-11-01 06 00:21:17 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"2"}],"89":["2025-11-01 06 00:21:17 00,FFC4,00",{"$numberInt":"75"},{"$numberInt":"249"}],"90":["2025-11-01 06 00:27:07 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"91":["2025-11-01 06 00:29:28 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"92":["2025-12-01 01 00:00:26 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"93":["2026-01-01 04 00:00:13 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"94":["2026-02-01 07 00:00:25 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"95":["2026-03-01 07 00:00:10 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"96":["2026-03-01 07 01:06:35 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"97":["2026-03-01 07 01:06:35 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"98":["2026-03-01 07 01:06:35 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"3"}],"99":["2026-03-01 07 01:06:35 00,FFC4,00",{"$numberInt":"75"},{"$numberInt":"424"}],"100":["2026-03-01 07 01:28:40 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"101":["2026-04-01 03 00:00:58 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"102":["2026-04-01 03 00:01:08 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"103":["2026-04-01 03 00:01:37 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"104":["2026-05-01 05 00:03:03 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"105":["2026-05-01 05 13:44:09 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"106":["2026-06-01 01 00:05:25 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"107":["2026-06-01 01 00:05:25 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"108":["2026-06-01 01 00:05:25 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"4"}],"109":["2026-06-01 01 07:23:35 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"110":["2026-06-01 01 07:24:17 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"111":["2026-06-01 01 07:30:00 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"112":["2025-10-22 03 17:03:14 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"113":["2025-10-22 03 17:05:58 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"114":["2025-10-22 03 17:23:50 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"115":["2025-11-01 06 00:00:13 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"116":["2025-11-01 06 14:56:17 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"117":["2025-11-01 06 15:18:41 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"118":["2025-11-01 06 15:47:41 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"119":["2025-11-01 06 16:04:33 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"120":["2025-11-01 06 16:08:02 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"121":["2025-11-01 06 16:10:06 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"122":["2025-11-01 06 16:10:29 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"123":["2025-11-01 06 16:12:00 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"124":["2025-11-01 06 16:12:34 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"125":["2025-11-01 06 16:14:24 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"126":["2025-11-01 06 16:15:21 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"127":["2025-11-01 06 16:19:49 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"128":["2025-11-01 06 16:19:49 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"1"}],"129":["2025-11-01 06 16:20:33 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"130":["2025-11-01 06 16:37:39 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"131":["2025-11-01 06 16:37:39 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"1"}],"132":["2025-11-01 06 16:38:35 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"133":["2025-11-01 06 16:42:12 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"134":["2025-11-01 06 16:42:12 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"1"}],"135":["2025-11-08 06 15:28:28 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"136":["2025-11-08 06 15:31:30 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"137":["2025-11-08 06 15:31:43 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"138":["2025-11-08 06 15:32:02 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"139":["2025-11-08 06 15:32:22 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"140":["2025-11-08 06 15:32:34 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"141":["2025-11-08 06 15:35:18 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"142":["2025-11-08 06 16:29:39 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"143":["2025-11-08 06 16:31:04 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"144":["2025-11-08 06 16:57:37 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"145":["2025-11-08 06 16:59:16 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"146":["2025-11-08 06 17:02:56 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"147":["2025-11-08 06 17:03:09 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"148":["2025-11-08 06 17:03:35 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"149":["2025-11-08 06 17:03:50 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"150":["2025-11-08 06 17:04:10 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"151":["2025-11-08 06 17:04:23 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"152":["2025-11-08 06 17:29:55 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"153":["2025-11-08 06 17:29:55 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"154":["2025-11-08 06 17:30:11 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"155":["2025-11-08 06 17:43:47 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"156":["2025-11-08 06 17:48:22 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"157":["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"158":["2025-11-08 06 20:13:05 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"159":["2025-11-08 06 20:20:35 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"160":["2025-11-08 06 20:21:12 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"161":["2025-11-08 06 20:38:04 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"162":["2025-11-08 06 20:38:12 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"163":["2025-11-08 06 21:37:29 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"164":["2025-11-08 06 21:37:29 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"165":["2025-11-08 06 21:37:31 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"166":["2025-11-08 06 21:40:32 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"167":["2025-11-08 06 21:40:32 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"168":["2025-11-09 07 14:42:59 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"169":["2025-11-09 07 15:14:40 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"170":["2025-11-10 01 00:13:22 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"171":["2025-11-10 01 00:16:14 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"172":["2025-11-10 01 00:17:09 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"173":["2025-11-10 01 00:22:55 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"174":["2025-11-10 01 00:34:55 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"175":["2025-11-10 01 00:34:55 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"176":["2025-11-10 01 00:34:55 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"6"}],"177":["2025-11-10 01 00:34:55 00,FFC4,00",{"$numberInt":"75"},{"$numberInt":"330"}],"178":["2025-11-10 01 15:35:32 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"179":["2025-11-10 01 15:37:25 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"180":["2025-11-10 01 15:37:25 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"181":["2025-11-10 01 15:38:35 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:41:40.557343","status":"success"},{"key":"Event Record.2-Com log.Capture objects","classId":{"$numberInt":"7"},"obis":"0.0.99.98.4.255","obisFormatted":"0-0:99.98.4.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"2-Com log","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.11.4.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"1"},"0-0:96.15.4.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:41:41.158333","status":"success"},{"key":"Event Record.2-Com log.Capture period","classId":{"$numberInt":"7"},"obis":"0.0.99.98.4.255","obisFormatted":"0-0:99.98.4.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"2-Com log","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:41.727152","status":"success"},{"key":"Event Record.2-Com log.Sort method","classId":{"$numberInt":"7"},"obis":"0.0.99.98.4.255","obisFormatted":"0-0:99.98.4.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"2-Com log","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:41:42.293475","status":"success"},{"key":"Event Record.2-Com log.Sort object","classId":{"$numberInt":"7"},"obis":"0.0.99.98.4.255","obisFormatted":"0-0:99.98.4.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"2-Com log","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:41:42.861702","status":"success"},{"key":"Event Record.2-Com log.Entries in use","classId":{"$numberInt":"7"},"obis":"0.0.99.98.4.255","obisFormatted":"0-0:99.98.4.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"2-Com log","value":{"$numberInt":"182"},"timestamp":"2025-11-01T09:41:43.482964","status":"success"},{"key":"Event Record.2-Com log.Profile entries","classId":{"$numberInt":"7"},"obis":"0.0.99.98.4.255","obisFormatted":"0-0:99.98.4.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"2-Com log","value":{"$numberInt":"2190"},"timestamp":"2025-11-01T09:41:44.124826","status":"success"},{"key":"Event Record.Power quality event log code.Power quality event log code","classId":{"$numberInt":"1"},"obis":"0.0.96.11.5.255","obisFormatted":"0-0:96.11.5.255","attributeId":{"$numberInt":"2"},"attributeName":"Power quality event log code","controlName":"Power quality event log code","value":{"$numberInt":"90"},"timestamp":"2025-11-01T09:41:44.813053","status":"success"},{"key":"Event Record.3-Power quality.Buffer","classId":{"$numberInt":"7"},"obis":"0.0.99.98.5.255","obisFormatted":"0-0:99.98.5.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"3-Power quality","value":{"0":["2025-09-30 02 16:18:25 00,FF88,80",{"$numberInt":"86"}],"1":["2025-09-30 02 16:19:48 00,FF88,81",{"$numberInt":"90"}],"2":["2025-09-30 02 16:20:37 00,FF88,81",{"$numberInt":"86"}],"3":["2025-09-30 02 16:45:27 00,FF88,81",{"$numberInt":"90"}],"4":["2025-09-30 02 16:48:22 00,FF88,81",{"$numberInt":"86"}],"5":["2025-09-30 02 16:48:22 00,FF88,81",{"$numberInt":"90"}],"6":["2025-09-30 02 16:48:22 00,FF88,81",{"$numberInt":"91"}],"7":["2025-09-30 02 16:48:22 00,FF88,81",{"$numberInt":"92"}],"8":["2025-10-20 01 12:38:43 00,FF88,80",{"$numberInt":"86"}],"9":["2025-10-20 01 12:38:43 00,FF88,80",{"$numberInt":"87"}],"10":["2025-10-20 01 12:38:43 00,FF88,80",{"$numberInt":"88"}],"11":["2025-10-20 01 15:30:04 00,FF88,80",{"$numberInt":"90"}],"12":["2025-10-20 01 15:30:04 00,FF88,80",{"$numberInt":"91"}],"13":["2025-10-20 01 15:30:04 00,FF88,80",{"$numberInt":"92"}],"14":["2025-10-20 01 18:25:49 00,FF88,80",{"$numberInt":"86"}],"15":["2025-10-20 01 18:25:49 00,FF88,80",{"$numberInt":"87"}],"16":["2025-10-20 01 18:25:49 00,FF88,80",{"$numberInt":"88"}],"17":["2025-10-21 02 08:59:49 00,FF88,80",{"$numberInt":"90"}],"18":["2025-10-21 02 08:59:49 00,FF88,80",{"$numberInt":"91"}],"19":["2025-10-21 02 08:59:49 00,FF88,80",{"$numberInt":"92"}],"20":["2025-10-21 02 09:06:00 00,FF88,80",{"$numberInt":"86"}],"21":["2025-10-21 02 09:06:00 00,FF88,80",{"$numberInt":"87"}],"22":["2025-10-21 02 09:06:00 00,FF88,80",{"$numberInt":"88"}],"23":["2025-10-21 02 09:06:13 00,FF88,80",{"$numberInt":"90"}],"24":["2025-10-21 02 09:48:21 00,FF88,80",{"$numberInt":"86"}],"25":["2025-10-21 02 09:48:44 00,FF88,80",{"$numberInt":"90"}],"26":["2025-10-21 02 09:48:44 00,FF88,80",{"$numberInt":"91"}],"27":["2025-10-21 02 09:48:44 00,FF88,80",{"$numberInt":"92"}],"28":["2025-10-21 02 12:35:03 00,FF88,80",{"$numberInt":"86"}],"29":["2025-10-21 02 12:35:03 00,FF88,80",{"$numberInt":"87"}],"30":["2025-10-21 02 12:35:03 00,FF88,80",{"$numberInt":"88"}],"31":["2025-10-21 02 13:32:55 00,FF88,80",{"$numberInt":"90"}],"32":["2025-10-21 02 13:32:55 00,FF88,80",{"$numberInt":"91"}],"33":["2025-10-21 02 13:32:55 00,FF88,80",{"$numberInt":"92"}],"34":["2026-05-01 05 00:31:29 00,FF88,80",{"$numberInt":"86"}],"35":["2026-05-01 05 00:31:29 00,FF88,80",{"$numberInt":"87"}],"36":["2026-05-01 05 00:31:29 00,FF88,80",{"$numberInt":"88"}],"37":["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"90"}],"38":["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"91"}],"39":["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"92"}],"40":["2026-06-01 01 00:05:30 00,FF88,80",{"$numberInt":"86"}],"41":["2026-06-01 01 00:05:30 00,FF88,80",{"$numberInt":"87"}],"42":["2026-06-01 01 00:05:30 00,FF88,80",{"$numberInt":"88"}],"43":["2026-06-01 01 07:22:30 00,FF88,80",{"$numberInt":"90"}],"44":["2026-06-01 01 07:24:19 00,FF88,80",{"$numberInt":"86"}],"45":["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"90"}],"46":["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"91"}],"47":["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"92"}],"48":["2025-11-01 06 01:36:49 00,FFC4,00",{"$numberInt":"86"}],"49":["2025-11-01 06 01:36:49 00,FFC4,00",{"$numberInt":"87"}],"50":["2025-11-01 06 01:36:49 00,FFC4,00",{"$numberInt":"88"}],"51":["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"90"}],"52":["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"91"}],"53":["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"92"}],"54":["2025-11-01 06 15:56:58 00,FFC4,00",{"$numberInt":"88"}],"55":["2025-11-01 06 15:57:04 00,FFC4,00",{"$numberInt":"87"}],"56":["2025-11-01 06 15:57:53 00,FFC4,00",{"$numberInt":"91"}],"57":["2025-11-01 06 15:57:55 00,FFC4,00",{"$numberInt":"92"}],"58":["2025-11-01 06 16:42:28 00,FFC4,00",{"$numberInt":"86"}],"59":["2025-11-01 06 16:42:28 00,FFC4,00",{"$numberInt":"87"}],"60":["2025-11-01 06 16:42:28 00,FFC4,00",{"$numberInt":"88"}],"61":["2025-11-01 06 16:47:20 00,FFC4,00",{"$numberInt":"81"}],"62":["2025-11-01 06 16:47:20 00,FFC4,00",{"$numberInt":"82"}],"63":["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"90"}],"64":["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"91"}],"65":["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"92"}],"66":["2025-11-08 06 15:31:48 00,FFC4,00",{"$numberInt":"86"}],"67":["2025-11-08 06 15:31:48 00,FFC4,00",{"$numberInt":"87"}],"68":["2025-11-08 06 15:31:48 00,FFC4,00",{"$numberInt":"88"}],"69":["2025-11-08 06 15:32:00 00,FFC4,00",{"$numberInt":"90"}],"70":["2025-11-08 06 15:32:24 00,FFC4,00",{"$numberInt":"86"}],"71":["2025-11-08 06 15:32:32 00,FFC4,00",{"$numberInt":"90"}],"72":["2025-11-08 06 16:29:47 00,FFC4,00",{"$numberInt":"86"}],"73":["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"90"}],"74":["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"91"}],"75":["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"92"}],"76":["2025-11-08 06 17:28:56 00,FFC4,00",{"$numberInt":"87"}],"77":["2025-11-08 06 17:28:59 00,FFC4,00",{"$numberInt":"88"}],"78":["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"86"}],"79":["2025-11-08 06 20:12:40 00,FFC4,00",{"$numberInt":"90"}],"80":["2025-11-08 06 20:12:40 00,FFC4,00",{"$numberInt":"91"}],"81":["2025-11-08 06 20:12:40 00,FFC4,00",{"$numberInt":"92"}],"82":["2025-11-08 06 20:39:01 00,FFC4,00",{"$numberInt":"81"}],"83":["2025-11-08 06 20:39:41 00,FFC4,00",{"$numberInt":"81"}],"84":["2025-11-08 06 22:19:46 00,FFC4,00",{"$numberInt":"86"}],"85":["2025-11-08 06 22:19:46 00,FFC4,00",{"$numberInt":"87"}],"86":["2025-11-08 06 22:19:46 00,FFC4,00",{"$numberInt":"88"}],"87":["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"90"}],"88":["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"91"}],"89":["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"92"}],"90":["2025-11-09 07 15:14:43 00,FFC4,00",{"$numberInt":"86"}],"91":["2025-11-09 07 15:14:43 00,FFC4,00",{"$numberInt":"87"}],"92":["2025-11-09 07 15:14:43 00,FFC4,00",{"$numberInt":"88"}],"93":["2025-11-09 07 20:00:04 00,FFC4,00",{"$numberInt":"90"}],"94":["2025-11-09 07 20:34:00 00,FFC4,00",{"$numberInt":"86"}],"95":["2025-11-09 07 20:47:21 00,FFC4,00",{"$numberInt":"90"}],"96":["2025-11-09 07 23:10:14 00,FFC4,00",{"$numberInt":"86"}],"97":["2025-11-10 01 00:00:58 00,FFC4,00",{"$numberInt":"90"}],"98":["2025-11-10 01 00:35:00 00,FFC4,00",{"$numberInt":"86"}],"99":["2025-11-10 01 15:34:07 00,FFC4,00",{"$numberInt":"90"}]},"timestamp":"2025-11-01T09:41:51.616248","status":"success"},{"key":"Event Record.3-Power quality.Capture objects","classId":{"$numberInt":"7"},"obis":"0.0.99.98.5.255","obisFormatted":"0-0:99.98.5.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"3-Power quality","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.11.5.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:41:52.252993","status":"success"},{"key":"Event Record.3-Power quality.Capture period","classId":{"$numberInt":"7"},"obis":"0.0.99.98.5.255","obisFormatted":"0-0:99.98.5.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"3-Power quality","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:52.869656","status":"success"},{"key":"Event Record.3-Power quality.Sort method","classId":{"$numberInt":"7"},"obis":"0.0.99.98.5.255","obisFormatted":"0-0:99.98.5.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"3-Power quality","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:41:53.502902","status":"success"},{"key":"Event Record.3-Power quality.Sort object","classId":{"$numberInt":"7"},"obis":"0.0.99.98.5.255","obisFormatted":"0-0:99.98.5.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"3-Power quality","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:41:54.087797","status":"success"},{"key":"Event Record.3-Power quality.Entries in use","classId":{"$numberInt":"7"},"obis":"0.0.99.98.5.255","obisFormatted":"0-0:99.98.5.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"3-Power quality","value":{"$numberInt":"100"},"timestamp":"2025-11-01T09:41:54.677746","status":"success"},{"key":"Event Record.3-Power quality.Profile entries","classId":{"$numberInt":"7"},"obis":"0.0.99.98.5.255","obisFormatted":"0-0:99.98.5.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"3-Power quality","value":{"$numberInt":"100"},"timestamp":"2025-11-01T09:41:55.297597","status":"success"},{"key":"Event Record.Power quality extended event log code.Power quality extended event log code","classId":{"$numberInt":"1"},"obis":"0.0.96.11.7.255","obisFormatted":"0-0:96.11.7.255","attributeId":{"$numberInt":"2"},"attributeName":"Power quality extended event log code","controlName":"Power quality extended event log code","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:56.015116","status":"success"},{"key":"Event Record.Power quality extended magnitude.Power quality extended magnitude","classId":{"$numberInt":"1"},"obis":"0.0.96.11.20.255","obisFormatted":"0-0:96.11.20.255","attributeId":{"$numberInt":"2"},"attributeName":"Power quality extended magnitude","controlName":"Power quality extended magnitude","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:56.784940","status":"success"},{"key":"Event Record.Power quality extended duration.Power quality extended duration","classId":{"$numberInt":"1"},"obis":"0.0.96.11.21.255","obisFormatted":"0-0:96.11.21.255","attributeId":{"$numberInt":"2"},"attributeName":"Power quality extended duration","controlName":"Power quality extended duration","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:57.509722","status":"success"},{"key":"Event Record.4-Power quality extended.Buffer","classId":{"$numberInt":"7"},"obis":"0.0.99.98.7.255","obisFormatted":"0-0:99.98.7.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"4-Power quality extended","value":{},"timestamp":"2025-11-01T09:41:58.090218","status":"success"},{"key":"Event Record.4-Power quality extended.Capture objects","classId":{"$numberInt":"7"},"obis":"0.0.99.98.7.255","obisFormatted":"0-0:99.98.7.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"4-Power quality extended","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.11.7.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"1"},"0-0:96.11.20.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"1"},"0-0:96.11.21.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:41:58.741258","status":"success"},{"key":"Event Record.4-Power quality extended.Capture period","classId":{"$numberInt":"7"},"obis":"0.0.99.98.7.255","obisFormatted":"0-0:99.98.7.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"4-Power quality extended","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:41:59.362065","status":"success"},{"key":"Event Record.4-Power quality extended.Sort method","classId":{"$numberInt":"7"},"obis":"0.0.99.98.7.255","obisFormatted":"0-0:99.98.7.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"4-Power quality extended","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:42:00.014648","status":"success"},{"key":"Event Record.4-Power quality extended.Sort object","classId":{"$numberInt":"7"},"obis":"0.0.99.98.7.255","obisFormatted":"0-0:99.98.7.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"4-Power quality extended","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:00.630616","status":"success"},{"key":"Event Record.4-Power quality extended.Entries in use","classId":{"$numberInt":"7"},"obis":"0.0.99.98.7.255","obisFormatted":"0-0:99.98.7.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"4-Power quality extended","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:01.220937","status":"success"},{"key":"Event Record.4-Power quality extended.Profile entries","classId":{"$numberInt":"7"},"obis":"0.0.99.98.7.255","obisFormatted":"0-0:99.98.7.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"4-Power quality extended","value":{"$numberInt":"100"},"timestamp":"2025-11-01T09:42:01.832861","status":"success"},{"key":"Event Record.M-BUS event log code.M-BUS event log code","classId":{"$numberInt":"1"},"obis":"0.1.96.11.3.255","obisFormatted":"0-1:96.11.3.255","attributeId":{"$numberInt":"2"},"attributeName":"M-BUS event log code","controlName":"M-BUS event log code","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:02.559287","status":"success"},{"key":"Event Record.5-MBus.Buffer","classId":{"$numberInt":"7"},"obis":"0.1.99.98.3.255","obisFormatted":"0-1:99.98.3.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"5-MBus","value":{},"timestamp":"2025-11-01T09:42:03.142811","status":"success"},{"key":"Event Record.5-MBus.Capture objects","classId":{"$numberInt":"7"},"obis":"0.1.99.98.3.255","obisFormatted":"0-1:99.98.3.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"5-MBus","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-1:96.11.3.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:03.762685","status":"success"},{"key":"Event Record.5-MBus.Capture period","classId":{"$numberInt":"7"},"obis":"0.1.99.98.3.255","obisFormatted":"0-1:99.98.3.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"5-MBus","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:04.356356","status":"success"},{"key":"Event Record.5-MBus.Sort method","classId":{"$numberInt":"7"},"obis":"0.1.99.98.3.255","obisFormatted":"0-1:99.98.3.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"5-MBus","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:42:04.989652","status":"success"},{"key":"Event Record.5-MBus.Sort object","classId":{"$numberInt":"7"},"obis":"0.1.99.98.3.255","obisFormatted":"0-1:99.98.3.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"5-MBus","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:05.579594","status":"success"},{"key":"Event Record.5-MBus.Entries in use","classId":{"$numberInt":"7"},"obis":"0.1.99.98.3.255","obisFormatted":"0-1:99.98.3.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"5-MBus","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:06.179629","status":"success"},{"key":"Event Record.5-MBus.Profile entries","classId":{"$numberInt":"7"},"obis":"0.1.99.98.3.255","obisFormatted":"0-1:99.98.3.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"5-MBus","value":{"$numberInt":"60"},"timestamp":"2025-11-01T09:42:06.780369","status":"success"},{"key":"Event Record.M-BUS event log code.M-BUS event log code","classId":{"$numberInt":"1"},"obis":"0.2.96.11.3.255","obisFormatted":"0-2:96.11.3.255","attributeId":{"$numberInt":"2"},"attributeName":"M-BUS event log code","controlName":"M-BUS event log code","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:07.472031","status":"success"},{"key":"Event Record.5-MBus.Buffer","classId":{"$numberInt":"7"},"obis":"0.2.99.98.3.255","obisFormatted":"0-2:99.98.3.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"5-MBus","value":{},"timestamp":"2025-11-01T09:42:08.064873","status":"success"},{"key":"Event Record.5-MBus.Capture objects","classId":{"$numberInt":"7"},"obis":"0.2.99.98.3.255","obisFormatted":"0-2:99.98.3.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"5-MBus","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-2:96.11.3.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:08.721891","status":"success"},{"key":"Event Record.5-MBus.Capture period","classId":{"$numberInt":"7"},"obis":"0.2.99.98.3.255","obisFormatted":"0-2:99.98.3.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"5-MBus","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:09.340442","status":"success"},{"key":"Event Record.5-MBus.Sort method","classId":{"$numberInt":"7"},"obis":"0.2.99.98.3.255","obisFormatted":"0-2:99.98.3.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"5-MBus","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:42:09.950070","status":"success"},{"key":"Event Record.5-MBus.Sort object","classId":{"$numberInt":"7"},"obis":"0.2.99.98.3.255","obisFormatted":"0-2:99.98.3.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"5-MBus","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:10.577373","status":"success"},{"key":"Event Record.5-MBus.Entries in use","classId":{"$numberInt":"7"},"obis":"0.2.99.98.3.255","obisFormatted":"0-2:99.98.3.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"5-MBus","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:11.227171","status":"success"},{"key":"Event Record.5-MBus.Profile entries","classId":{"$numberInt":"7"},"obis":"0.2.99.98.3.255","obisFormatted":"0-2:99.98.3.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"5-MBus","value":{"$numberInt":"60"},"timestamp":"2025-11-01T09:42:11.852291","status":"success"},{"key":"Event Record.M-BUS event log code.M-BUS event log code","classId":{"$numberInt":"1"},"obis":"0.3.96.11.3.255","obisFormatted":"0-3:96.11.3.255","attributeId":{"$numberInt":"2"},"attributeName":"M-BUS event log code","controlName":"M-BUS event log code","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:12.593373","status":"success"},{"key":"Event Record.5-MBus.Buffer","classId":{"$numberInt":"7"},"obis":"0.3.99.98.3.255","obisFormatted":"0-3:99.98.3.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"5-MBus","value":{},"timestamp":"2025-11-01T09:42:13.180538","status":"success"},{"key":"Event Record.5-MBus.Capture objects","classId":{"$numberInt":"7"},"obis":"0.3.99.98.3.255","obisFormatted":"0-3:99.98.3.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"5-MBus","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-3:96.11.3.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:13.803717","status":"success"},{"key":"Event Record.5-MBus.Capture period","classId":{"$numberInt":"7"},"obis":"0.3.99.98.3.255","obisFormatted":"0-3:99.98.3.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"5-MBus","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:14.424344","status":"success"},{"key":"Event Record.5-MBus.Sort method","classId":{"$numberInt":"7"},"obis":"0.3.99.98.3.255","obisFormatted":"0-3:99.98.3.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"5-MBus","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:42:15.033031","status":"success"},{"key":"Event Record.5-MBus.Sort object","classId":{"$numberInt":"7"},"obis":"0.3.99.98.3.255","obisFormatted":"0-3:99.98.3.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"5-MBus","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:15.658305","status":"success"},{"key":"Event Record.5-MBus.Entries in use","classId":{"$numberInt":"7"},"obis":"0.3.99.98.3.255","obisFormatted":"0-3:99.98.3.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"5-MBus","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:16.266098","status":"success"},{"key":"Event Record.5-MBus.Profile entries","classId":{"$numberInt":"7"},"obis":"0.3.99.98.3.255","obisFormatted":"0-3:99.98.3.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"5-MBus","value":{"$numberInt":"60"},"timestamp":"2025-11-01T09:42:16.862659","status":"success"},{"key":"Event Record.M-BUS event log code.M-BUS event log code","classId":{"$numberInt":"1"},"obis":"0.4.96.11.3.255","obisFormatted":"0-4:96.11.3.255","attributeId":{"$numberInt":"2"},"attributeName":"M-BUS event log code","controlName":"M-BUS event log code","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:17.552346","status":"success"},{"key":"Event Record.5-MBus.Buffer","classId":{"$numberInt":"7"},"obis":"0.4.99.98.3.255","obisFormatted":"0-4:99.98.3.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"5-MBus","value":{},"timestamp":"2025-11-01T09:42:18.135236","status":"success"},{"key":"Event Record.5-MBus.Capture objects","classId":{"$numberInt":"7"},"obis":"0.4.99.98.3.255","obisFormatted":"0-4:99.98.3.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"5-MBus","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-4:96.11.3.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:18.766500","status":"success"},{"key":"Event Record.5-MBus.Capture period","classId":{"$numberInt":"7"},"obis":"0.4.99.98.3.255","obisFormatted":"0-4:99.98.3.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"5-MBus","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:19.367253","status":"success"},{"key":"Event Record.5-MBus.Sort method","classId":{"$numberInt":"7"},"obis":"0.4.99.98.3.255","obisFormatted":"0-4:99.98.3.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"5-MBus","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:42:19.973058","status":"success"},{"key":"Event Record.5-MBus.Sort object","classId":{"$numberInt":"7"},"obis":"0.4.99.98.3.255","obisFormatted":"0-4:99.98.3.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"5-MBus","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:20.575614","status":"success"},{"key":"Event Record.5-MBus.Entries in use","classId":{"$numberInt":"7"},"obis":"0.4.99.98.3.255","obisFormatted":"0-4:99.98.3.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"5-MBus","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:21.180642","status":"success"},{"key":"Event Record.5-MBus.Profile entries","classId":{"$numberInt":"7"},"obis":"0.4.99.98.3.255","obisFormatted":"0-4:99.98.3.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"5-MBus","value":{"$numberInt":"60"},"timestamp":"2025-11-01T09:42:21.770875","status":"success"},{"key":"Event Record.6-Power failure.Buffer","classId":{"$numberInt":"7"},"obis":"1.0.99.97.0.255","obisFormatted":"1-0:99.97.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Buffer","controlName":"6-Power failure","value":{"0":["2025-10-21 02 08:59:49 00,FF88,80",{"$numberInt":"52439"}],"1":["2025-10-21 02 09:48:44 00,FF88,80",{"$numberInt":"2563"}],"2":["2025-10-21 02 13:32:55 00,FF88,80",{"$numberInt":"3471"}],"3":["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"47553"}],"4":["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"26662"}],"5":["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"47891"}],"6":["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"600348"}],"7":["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"3549"}],"8":["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"9793"}],"9":["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"58764"}]},"timestamp":"2025-11-01T09:42:22.842324","status":"success"},{"key":"Event Record.6-Power failure.Capture objects","classId":{"$numberInt":"7"},"obis":"1.0.99.97.0.255","obisFormatted":"1-0:99.97.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture objects","controlName":"6-Power failure","value":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"3"},"0-0:96.7.19.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:23.452209","status":"success"},{"key":"Event Record.6-Power failure.Capture period","classId":{"$numberInt":"7"},"obis":"1.0.99.97.0.255","obisFormatted":"1-0:99.97.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"6-Power failure","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:24.122971","status":"success"},{"key":"Event Record.6-Power failure.Sort method","classId":{"$numberInt":"7"},"obis":"1.0.99.97.0.255","obisFormatted":"1-0:99.97.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Sort method","controlName":"6-Power failure","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:42:24.716929","status":"success"},{"key":"Event Record.6-Power failure.Sort object","classId":{"$numberInt":"7"},"obis":"1.0.99.97.0.255","obisFormatted":"1-0:99.97.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Sort object","controlName":"6-Power failure","value":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:42:25.317782","status":"success"},{"key":"Event Record.6-Power failure.Entries in use","classId":{"$numberInt":"7"},"obis":"1.0.99.97.0.255","obisFormatted":"1-0:99.97.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Entries in use","controlName":"6-Power failure","value":{"$numberInt":"10"},"timestamp":"2025-11-01T09:42:25.929475","status":"success"},{"key":"Event Record.6-Power failure.Profile entries","classId":{"$numberInt":"7"},"obis":"1.0.99.97.0.255","obisFormatted":"1-0:99.97.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Profile entries","controlName":"6-Power failure","value":{"$numberInt":"10"},"timestamp":"2025-11-01T09:42:26.536348","status":"success"}],"summary":{"total":{"$numberInt":"86"},"success":{"$numberInt":"86"},"failed":{"$numberInt":"0"}}},"Single Action Schedule":{"sheet_name":"Single Action Schedule","objects":[{"key":"Single Action Schedule.Phase Outage scheduler.Executed script","classId":{"$numberInt":"22"},"obis":"0.0.15.1.4.255","obisFormatted":"0-0:15.1.4.255","attributeId":{"$numberInt":"2"},"attributeName":"Executed script","controlName":"Phase Outage scheduler","value":{"0":["0-0:10.1.108.255",{"$numberInt":"1"}]},"timestamp":"2025-11-01T09:42:27.185233","status":"success"},{"key":"Single Action Schedule.Phase Outage scheduler.Type","classId":{"$numberInt":"22"},"obis":"0.0.15.1.4.255","obisFormatted":"0-0:15.1.4.255","attributeId":{"$numberInt":"3"},"attributeName":"Type","controlName":"Phase Outage scheduler","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:42:27.824555","status":"success"},{"key":"Single Action Schedule.Phase Outage scheduler.Execution time","classId":{"$numberInt":"22"},"obis":"0.0.15.1.4.255","obisFormatted":"0-0:15.1.4.255","attributeId":{"$numberInt":"4"},"attributeName":"Execution time","controlName":"Phase Outage scheduler","value":{},"timestamp":"2025-11-01T09:42:28.449911","status":"success"}],"summary":{"total":{"$numberInt":"3"},"success":{"$numberInt":"3"},"failed":{"$numberInt":"0"}}},"Image Transfer":{"sheet_name":"Image Transfer","objects":[{"key":"Image Transfer.Image Transfer.Image block size","classId":{"$numberInt":"18"},"obis":"0.0.44.0.0.255","obisFormatted":"0-0:44.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Image block size","controlName":"Image Transfer","value":{"$numberInt":"1152"},"timestamp":"2025-11-01T09:42:29.246480","status":"success"},{"key":"Image Transfer.Image Transfer.Image transferred blocks status","classId":{"$numberInt":"18"},"obis":"0.0.44.0.0.255","obisFormatted":"0-0:44.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Image transferred blocks status","controlName":"Image Transfer","value":"1111111111111111111111111111111","timestamp":"2025-11-01T09:42:29.999003","status":"success"},{"key":"Image Transfer.Image Transfer.Image first not transferred block number","classId":{"$numberInt":"18"},"obis":"0.0.44.0.0.255","obisFormatted":"0-0:44.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Image first not transferred block number","controlName":"Image Transfer","value":{"$numberInt":"31"},"timestamp":"2025-11-01T09:42:30.724657","status":"success"},{"key":"Image Transfer.Image Transfer.Image transfer enabled","classId":{"$numberInt":"18"},"obis":"0.0.44.0.0.255","obisFormatted":"0-0:44.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Image transfer enabled","controlName":"Image Transfer","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:42:31.488650","status":"success"},{"key":"Image Transfer.Image Transfer.Image transfer status","classId":{"$numberInt":"18"},"obis":"0.0.44.0.0.255","obisFormatted":"0-0:44.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Image transfer status","controlName":"Image Transfer","value":{"$numberInt":"6"},"timestamp":"2025-11-01T09:42:32.179984","status":"success"},{"key":"Image Transfer.Image Transfer.Image to activate info","classId":{"$numberInt":"18"},"obis":"0.0.44.0.0.255","obisFormatted":"0-0:44.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Image to activate info","controlName":"Image Transfer","value":{"0":[{"$numberInt":"34576"},"KFM-03","7E74BA05F40E05B0F6E39B050A03B3A9C9DBB513AD836AE4775A34404D94338BF426DCB6B2F6902F22DFF21AD38EA1C1F8B816F34679F676C63C54FE710EA6F9"]},"timestamp":"2025-11-01T09:42:32.956144","status":"success"},{"key":"Image Transfer.LTE Image Transfer.Image block size","classId":{"$numberInt":"18"},"obis":"0.5.44.0.0.255","obisFormatted":"0-5:44.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Image block size","controlName":"LTE Image Transfer","value":{"$numberInt":"1152"},"timestamp":"2025-11-01T09:42:33.682498","status":"success"},{"key":"Image Transfer.LTE Image Transfer.Image transferred blocks status","classId":{"$numberInt":"18"},"obis":"0.5.44.0.0.255","obisFormatted":"0-5:44.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Image transferred blocks status","controlName":"LTE Image Transfer","value":"","timestamp":"2025-11-01T09:42:34.393395","status":"success"},{"key":"Image Transfer.LTE Image Transfer.Image first not transferred block number","classId":{"$numberInt":"18"},"obis":"0.5.44.0.0.255","obisFormatted":"0-5:44.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Image first not transferred block number","controlName":"LTE Image Transfer","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:35.153497","status":"success"},{"key":"Image Transfer.LTE Image Transfer.Image transfer enabled","classId":{"$numberInt":"18"},"obis":"0.5.44.0.0.255","obisFormatted":"0-5:44.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Image transfer enabled","controlName":"LTE Image Transfer","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:35.829495","status":"success"},{"key":"Image Transfer.LTE Image Transfer.Image transfer status","classId":{"$numberInt":"18"},"obis":"0.5.44.0.0.255","obisFormatted":"0-5:44.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Image transfer status","controlName":"LTE Image Transfer","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:36.566412","status":"success"},{"key":"Image Transfer.LTE Image Transfer.Image to activate info","classId":{"$numberInt":"18"},"obis":"0.5.44.0.0.255","obisFormatted":"0-5:44.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Image to activate info","controlName":"LTE Image Transfer","value":{},"timestamp":"2025-11-01T09:42:37.264652","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 1.Image block size","classId":{"$numberInt":"18"},"obis":"0.1.44.0.0.255","obisFormatted":"0-1:44.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Image block size","controlName":"MBUS Image Transfer channel 1","value":{"$numberInt":"1152"},"timestamp":"2025-11-01T09:42:37.993547","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 1.Image transferred blocks status","classId":{"$numberInt":"18"},"obis":"0.1.44.0.0.255","obisFormatted":"0-1:44.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Image transferred blocks status","controlName":"MBUS Image Transfer channel 1","value":"","timestamp":"2025-11-01T09:42:38.673460","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 1.Image first not transferred block number","classId":{"$numberInt":"18"},"obis":"0.1.44.0.0.255","obisFormatted":"0-1:44.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Image first not transferred block number","controlName":"MBUS Image Transfer channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:39.397093","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 1.Image transfer enabled","classId":{"$numberInt":"18"},"obis":"0.1.44.0.0.255","obisFormatted":"0-1:44.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Image transfer enabled","controlName":"MBUS Image Transfer channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:40.151596","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 1.Image transfer status","classId":{"$numberInt":"18"},"obis":"0.1.44.0.0.255","obisFormatted":"0-1:44.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Image transfer status","controlName":"MBUS Image Transfer channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:40.833700","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 1.Image to activate info","classId":{"$numberInt":"18"},"obis":"0.1.44.0.0.255","obisFormatted":"0-1:44.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Image to activate info","controlName":"MBUS Image Transfer channel 1","value":{},"timestamp":"2025-11-01T09:42:41.538197","status":"success"},{"key":"Image Transfer.Firmware upgrade status on MBus level.nan","classId":{"$numberInt":"18"},"obis":"0.1.44.0.0.255","obisFormatted":"0-1:44.0.0.255","attributeId":{"$numberInt":"-1"},"attributeName":"","controlName":"Firmware upgrade status on MBus level","value":"ScopeOfAccessViolated","timestamp":"2025-11-01T09:42:42.219676","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 2.Image block size","classId":{"$numberInt":"18"},"obis":"0.2.44.0.0.255","obisFormatted":"0-2:44.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Image block size","controlName":"MBUS Image Transfer channel 2","value":{"$numberInt":"1152"},"timestamp":"2025-11-01T09:42:42.904899","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 2.Image transferred blocks status","classId":{"$numberInt":"18"},"obis":"0.2.44.0.0.255","obisFormatted":"0-2:44.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Image transferred blocks status","controlName":"MBUS Image Transfer channel 2","value":"","timestamp":"2025-11-01T09:42:43.597579","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 2.Image first not transferred block number","classId":{"$numberInt":"18"},"obis":"0.2.44.0.0.255","obisFormatted":"0-2:44.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Image first not transferred block number","controlName":"MBUS Image Transfer channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:44.309920","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 2.Image transfer enabled","classId":{"$numberInt":"18"},"obis":"0.2.44.0.0.255","obisFormatted":"0-2:44.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Image transfer enabled","controlName":"MBUS Image Transfer channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:45.030127","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 2.Image transfer status","classId":{"$numberInt":"18"},"obis":"0.2.44.0.0.255","obisFormatted":"0-2:44.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Image transfer status","controlName":"MBUS Image Transfer channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:45.815156","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 2.Image to activate info","classId":{"$numberInt":"18"},"obis":"0.2.44.0.0.255","obisFormatted":"0-2:44.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Image to activate info","controlName":"MBUS Image Transfer channel 2","value":{},"timestamp":"2025-11-01T09:42:46.534806","status":"success"},{"key":"Image Transfer.Firmware upgrade status on MBus level.nan","classId":{"$numberInt":"18"},"obis":"0.2.44.0.0.255","obisFormatted":"0-2:44.0.0.255","attributeId":{"$numberInt":"-1"},"attributeName":"","controlName":"Firmware upgrade status on MBus level","value":"ScopeOfAccessViolated","timestamp":"2025-11-01T09:42:47.197134","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 3.Image block size","classId":{"$numberInt":"18"},"obis":"0.3.44.0.0.255","obisFormatted":"0-3:44.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Image block size","controlName":"MBUS Image Transfer channel 3","value":{"$numberInt":"1152"},"timestamp":"2025-11-01T09:42:47.930918","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 3.Image transferred blocks status","classId":{"$numberInt":"18"},"obis":"0.3.44.0.0.255","obisFormatted":"0-3:44.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Image transferred blocks status","controlName":"MBUS Image Transfer channel 3","value":"","timestamp":"2025-11-01T09:42:48.616881","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 3.Image first not transferred block number","classId":{"$numberInt":"18"},"obis":"0.3.44.0.0.255","obisFormatted":"0-3:44.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Image first not transferred block number","controlName":"MBUS Image Transfer channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:49.316171","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 3.Image transfer enabled","classId":{"$numberInt":"18"},"obis":"0.3.44.0.0.255","obisFormatted":"0-3:44.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Image transfer enabled","controlName":"MBUS Image Transfer channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:50.085477","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 3.Image transfer status","classId":{"$numberInt":"18"},"obis":"0.3.44.0.0.255","obisFormatted":"0-3:44.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Image transfer status","controlName":"MBUS Image Transfer channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:50.766508","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 3.Image to activate info","classId":{"$numberInt":"18"},"obis":"0.3.44.0.0.255","obisFormatted":"0-3:44.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Image to activate info","controlName":"MBUS Image Transfer channel 3","value":{},"timestamp":"2025-11-01T09:42:51.440317","status":"success"},{"key":"Image Transfer.Firmware upgrade status on MBus level.nan","classId":{"$numberInt":"18"},"obis":"0.3.44.0.0.255","obisFormatted":"0-3:44.0.0.255","attributeId":{"$numberInt":"-1"},"attributeName":"","controlName":"Firmware upgrade status on MBus level","value":"ScopeOfAccessViolated","timestamp":"2025-11-01T09:42:52.142696","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 4.Image block size","classId":{"$numberInt":"18"},"obis":"0.4.44.0.0.255","obisFormatted":"0-4:44.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Image block size","controlName":"MBUS Image Transfer channel 4","value":{"$numberInt":"1152"},"timestamp":"2025-11-01T09:42:52.853183","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 4.Image transferred blocks status","classId":{"$numberInt":"18"},"obis":"0.4.44.0.0.255","obisFormatted":"0-4:44.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Image transferred blocks status","controlName":"MBUS Image Transfer channel 4","value":"","timestamp":"2025-11-01T09:42:53.509298","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 4.Image first not transferred block number","classId":{"$numberInt":"18"},"obis":"0.4.44.0.0.255","obisFormatted":"0-4:44.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Image first not transferred block number","controlName":"MBUS Image Transfer channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:54.195647","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 4.Image transfer enabled","classId":{"$numberInt":"18"},"obis":"0.4.44.0.0.255","obisFormatted":"0-4:44.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Image transfer enabled","controlName":"MBUS Image Transfer channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:54.885649","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 4.Image transfer status","classId":{"$numberInt":"18"},"obis":"0.4.44.0.0.255","obisFormatted":"0-4:44.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Image transfer status","controlName":"MBUS Image Transfer channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:55.565801","status":"success"},{"key":"Image Transfer.MBUS Image Transfer channel 4.Image to activate info","classId":{"$numberInt":"18"},"obis":"0.4.44.0.0.255","obisFormatted":"0-4:44.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Image to activate info","controlName":"MBUS Image Transfer channel 4","value":{},"timestamp":"2025-11-01T09:42:56.275997","status":"success"},{"key":"Image Transfer.Firmware upgrade status on MBus level.nan","classId":{"$numberInt":"18"},"obis":"0.4.44.0.0.255","obisFormatted":"0-4:44.0.0.255","attributeId":{"$numberInt":"-1"},"attributeName":"","controlName":"Firmware upgrade status on MBus level","value":"ScopeOfAccessViolated","timestamp":"2025-11-01T09:42:56.992487","status":"success"}],"summary":{"total":{"$numberInt":"40"},"success":{"$numberInt":"40"},"failed":{"$numberInt":"0"}}},"Communication port configuratio":{"sheet_name":"Communication port configuratio","objects":[{"key":"Communication port configuratio.Configuration object.nan","classId":{"$numberInt":"1"},"obis":"0.1.94.31.3.255","obisFormatted":"0-1:94.31.3.255","attributeId":{"$numberInt":"2"},"attributeName":"","controlName":"Configuration object","value":{"0":["0000001000000000"]},"timestamp":"2025-11-01T09:42:57.703084","status":"success"},{"key":"Communication port configuratio.Local Port.Default mode","classId":{"$numberInt":"19"},"obis":"0.0.20.0.0.255","obisFormatted":"0-0:20.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Default mode","controlName":"Local Port","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:42:58.325048","status":"success"},{"key":"Communication port configuratio.Local Port.Default baud (","classId":{"$numberInt":"19"},"obis":"0.0.20.0.0.255","obisFormatted":"0-0:20.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Default baud (","controlName":"Local Port","value":{"$numberInt":"5"},"timestamp":"2025-11-01T09:42:58.919420","status":"success"},{"key":"Communication port configuratio.Local Port.Prop baud","classId":{"$numberInt":"19"},"obis":"0.0.20.0.0.255","obisFormatted":"0-0:20.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Prop baud","controlName":"Local Port","value":{"$numberInt":"5"},"timestamp":"2025-11-01T09:42:59.526569","status":"success"},{"key":"Communication port configuratio.Local Port.Response_time","classId":{"$numberInt":"19"},"obis":"0.0.20.0.0.255","obisFormatted":"0-0:20.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Response_time","controlName":"Local Port","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:43:00.149128","status":"success"},{"key":"Communication port configuratio.Local Port.Device addr","classId":{"$numberInt":"19"},"obis":"0.0.20.0.0.255","obisFormatted":"0-0:20.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Device addr","controlName":"Local Port","value":"17","timestamp":"2025-11-01T09:43:00.778474","status":"success"},{"key":"Communication port configuratio.Optical Setup.Comm speed","classId":{"$numberInt":"23"},"obis":"0.0.22.0.0.255","obisFormatted":"0-0:22.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Comm speed","controlName":"Optical Setup","value":{"$numberInt":"5"},"timestamp":"2025-11-01T09:43:01.375372","status":"success"},{"key":"Communication port configuratio.Optical Setup.Window size transmit","classId":{"$numberInt":"23"},"obis":"0.0.22.0.0.255","obisFormatted":"0-0:22.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Window size transmit","controlName":"Optical Setup","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:43:01.999466","status":"success"},{"key":"Communication port configuratio.Optical Setup.Window size receive","classId":{"$numberInt":"23"},"obis":"0.0.22.0.0.255","obisFormatted":"0-0:22.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Window size receive","controlName":"Optical Setup","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:43:02.544446","status":"success"},{"key":"Communication port configuratio.Optical Setup.Max info field length transmit","classId":{"$numberInt":"23"},"obis":"0.0.22.0.0.255","obisFormatted":"0-0:22.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Max info field length transmit","controlName":"Optical Setup","value":{"$numberInt":"128"},"timestamp":"2025-11-01T09:43:03.160615","status":"success"},{"key":"Communication port configuratio.Optical Setup.Max info field length receive","classId":{"$numberInt":"23"},"obis":"0.0.22.0.0.255","obisFormatted":"0-0:22.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Max info field length receive","controlName":"Optical Setup","value":{"$numberInt":"128"},"timestamp":"2025-11-01T09:43:03.762768","status":"success"},{"key":"Communication port configuratio.Optical Setup.Inter octet time out","classId":{"$numberInt":"23"},"obis":"0.0.22.0.0.255","obisFormatted":"0-0:22.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Inter octet time out","controlName":"Optical Setup","value":{"$numberInt":"25"},"timestamp":"2025-11-01T09:43:04.375077","status":"success"},{"key":"Communication port configuratio.Optical Setup.Inactivity time out","classId":{"$numberInt":"23"},"obis":"0.0.22.0.0.255","obisFormatted":"0-0:22.0.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Inactivity time out","controlName":"Optical Setup","value":{"$numberInt":"120"},"timestamp":"2025-11-01T09:43:04.946820","status":"success"},{"key":"Communication port configuratio.Optical Setup.Device address","classId":{"$numberInt":"23"},"obis":"0.0.22.0.0.255","obisFormatted":"0-0:22.0.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Device address","controlName":"Optical Setup","value":{"$numberInt":"17"},"timestamp":"2025-11-01T09:43:05.557169","status":"success"}],"summary":{"total":{"$numberInt":"14"},"success":{"$numberInt":"14"},"failed":{"$numberInt":"0"}}},"M-Bus":{"sheet_name":"M-Bus","objects":[{"key":"M-Bus.Channel 1.M-Bus port reference","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"M-Bus port reference","controlName":"Channel 1","value":"0-0:24.6.0.255","timestamp":"2025-11-01T09:43:06.198052","status":"success"},{"key":"M-Bus.Channel 1.Capture definition","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture definition","controlName":"Channel 1","value":{},"timestamp":"2025-11-01T09:43:06.820384","status":"success"},{"key":"M-Bus.Channel 1.Capture period","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:07.420352","status":"success"},{"key":"M-Bus.Channel 1.Primary address","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Primary address","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:08.047833","status":"success"},{"key":"M-Bus.Channel 1.Identification number","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Identification number","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:08.679885","status":"success"},{"key":"M-Bus.Channel 1.Manufacturer id","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Manufacturer id","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:09.268775","status":"success"},{"key":"M-Bus.Channel 1.Version","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Version","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:09.867870","status":"success"},{"key":"M-Bus.Channel 1.Device type","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Device type","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:10.469635","status":"success"},{"key":"M-Bus.Channel 1.Access number","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"10"},"attributeName":"Access number","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:11.088873","status":"success"},{"key":"M-Bus.Channel 1.Status","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"11"},"attributeName":"Status","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:11.736742","status":"success"},{"key":"M-Bus.Channel 1.Alarm","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"12"},"attributeName":"Alarm","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:12.358246","status":"success"},{"key":"M-Bus.Channel 1.Configuration","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"13"},"attributeName":"Configuration","controlName":"Channel 1","value":{"$numberInt":"99"},"timestamp":"2025-11-01T09:43:12.962443","status":"success"},{"key":"M-Bus.Channel 1.Encryption key status","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"14"},"attributeName":"Encryption key status","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:13.576514","status":"success"},{"key":"M-Bus.Channel 1.FUAK status","classId":{"$numberInt":"72"},"obis":"0.1.24.1.0.255","obisFormatted":"0-1:24.1.0.255","attributeId":{"$numberInt":"-1"},"attributeName":"FUAK status","controlName":"Channel 1","value":"ScopeOfAccessViolated","timestamp":"2025-11-01T09:43:14.173491","status":"success"},{"key":"M-Bus.Channel 2.M-Bus port reference","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"M-Bus port reference","controlName":"Channel 2","value":"0-0:24.6.0.255","timestamp":"2025-11-01T09:43:14.807533","status":"success"},{"key":"M-Bus.Channel 2.Capture definition","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture definition","controlName":"Channel 2","value":{},"timestamp":"2025-11-01T09:43:15.367061","status":"success"},{"key":"M-Bus.Channel 2.Capture period","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:15.972950","status":"success"},{"key":"M-Bus.Channel 2.Primary address","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Primary address","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:16.632251","status":"success"},{"key":"M-Bus.Channel 2.Identification number","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Identification number","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:17.246084","status":"success"},{"key":"M-Bus.Channel 2.Manufacturer id","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Manufacturer id","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:17.860602","status":"success"},{"key":"M-Bus.Channel 2.Version","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Version","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:18.475567","status":"success"},{"key":"M-Bus.Channel 2.Device type","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Device type","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:19.067760","status":"success"},{"key":"M-Bus.Channel 2.Access number","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"10"},"attributeName":"Access number","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:19.695492","status":"success"},{"key":"M-Bus.Channel 2.Status","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"11"},"attributeName":"Status","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:20.278389","status":"success"},{"key":"M-Bus.Channel 2.Alarm","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"12"},"attributeName":"Alarm","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:20.883264","status":"success"},{"key":"M-Bus.Channel 2.Configuration","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"13"},"attributeName":"Configuration","controlName":"Channel 2","value":{"$numberInt":"99"},"timestamp":"2025-11-01T09:43:21.510318","status":"success"},{"key":"M-Bus.Channel 2.Encryption key status","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"14"},"attributeName":"Encryption key status","controlName":"Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:22.119694","status":"success"},{"key":"M-Bus.Channel 2.FUAK status","classId":{"$numberInt":"72"},"obis":"0.2.24.1.0.255","obisFormatted":"0-2:24.1.0.255","attributeId":{"$numberInt":"-1"},"attributeName":"FUAK status","controlName":"Channel 2","value":"ScopeOfAccessViolated","timestamp":"2025-11-01T09:43:22.699194","status":"success"},{"key":"M-Bus.Channel 3.M-Bus port reference","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"M-Bus port reference","controlName":"Channel 3","value":"0-0:24.6.0.255","timestamp":"2025-11-01T09:43:23.331396","status":"success"},{"key":"M-Bus.Channel 3.Capture definition","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture definition","controlName":"Channel 3","value":{},"timestamp":"2025-11-01T09:43:23.984661","status":"success"},{"key":"M-Bus.Channel 3.Capture period","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:24.599784","status":"success"},{"key":"M-Bus.Channel 3.Primary address","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Primary address","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:25.219488","status":"success"},{"key":"M-Bus.Channel 3.Identification number","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Identification number","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:25.829600","status":"success"},{"key":"M-Bus.Channel 3.Manufacturer id","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Manufacturer id","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:26.471280","status":"success"},{"key":"M-Bus.Channel 3.Version","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Version","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:27.074407","status":"success"},{"key":"M-Bus.Channel 3.Device type","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Device type","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:27.704553","status":"success"},{"key":"M-Bus.Channel 3.Access number","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"10"},"attributeName":"Access number","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:28.324237","status":"success"},{"key":"M-Bus.Channel 3.Status","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"11"},"attributeName":"Status","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:28.939670","status":"success"},{"key":"M-Bus.Channel 3.Alarm","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"12"},"attributeName":"Alarm","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:29.576951","status":"success"},{"key":"M-Bus.Channel 3.Configuration","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"13"},"attributeName":"Configuration","controlName":"Channel 3","value":{"$numberInt":"99"},"timestamp":"2025-11-01T09:43:30.186770","status":"success"},{"key":"M-Bus.Channel 3.Encryption key status","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"14"},"attributeName":"Encryption key status","controlName":"Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:30.776081","status":"success"},{"key":"M-Bus.Channel 3.FUAK status","classId":{"$numberInt":"72"},"obis":"0.3.24.1.0.255","obisFormatted":"0-3:24.1.0.255","attributeId":{"$numberInt":"-1"},"attributeName":"FUAK status","controlName":"Channel 3","value":"ScopeOfAccessViolated","timestamp":"2025-11-01T09:43:31.355925","status":"success"},{"key":"M-Bus.Channel 4.M-Bus port reference","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"M-Bus port reference","controlName":"Channel 4","value":"0-0:24.6.0.255","timestamp":"2025-11-01T09:43:31.979448","status":"success"},{"key":"M-Bus.Channel 4.Capture definition","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Capture definition","controlName":"Channel 4","value":{},"timestamp":"2025-11-01T09:43:32.631764","status":"success"},{"key":"M-Bus.Channel 4.Capture period","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Capture period","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:33.205506","status":"success"},{"key":"M-Bus.Channel 4.Primary address","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Primary address","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:33.773284","status":"success"},{"key":"M-Bus.Channel 4.Identification number","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Identification number","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:34.390310","status":"success"},{"key":"M-Bus.Channel 4.Manufacturer id","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Manufacturer id","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:34.980257","status":"success"},{"key":"M-Bus.Channel 4.Version","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Version","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:35.596268","status":"success"},{"key":"M-Bus.Channel 4.Device type","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Device type","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:36.224244","status":"success"},{"key":"M-Bus.Channel 4.Access number","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"10"},"attributeName":"Access number","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:36.791172","status":"success"},{"key":"M-Bus.Channel 4.Status","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"11"},"attributeName":"Status","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:37.389387","status":"success"},{"key":"M-Bus.Channel 4.Alarm","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"12"},"attributeName":"Alarm","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:37.973412","status":"success"},{"key":"M-Bus.Channel 4.Configuration","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"13"},"attributeName":"Configuration","controlName":"Channel 4","value":{"$numberInt":"99"},"timestamp":"2025-11-01T09:43:38.572333","status":"success"},{"key":"M-Bus.Channel 4.Encryption key status","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"14"},"attributeName":"Encryption key status","controlName":"Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:39.211473","status":"success"},{"key":"M-Bus.Channel 4.FUAK status","classId":{"$numberInt":"72"},"obis":"0.4.24.1.0.255","obisFormatted":"0-4:24.1.0.255","attributeId":{"$numberInt":"-1"},"attributeName":"FUAK status","controlName":"Channel 4","value":"ScopeOfAccessViolated","timestamp":"2025-11-01T09:43:39.789400","status":"success"},{"key":"M-Bus.Device ID 1.Device ID 1","classId":{"$numberInt":"1"},"obis":"0.1.96.1.0.255","obisFormatted":"0-1:96.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Device ID 1","controlName":"Device ID 1","value":"","timestamp":"2025-11-01T09:43:40.523851","status":"success"},{"key":"M-Bus.Device ID 2.Device ID 2","classId":{"$numberInt":"1"},"obis":"0.2.96.1.0.255","obisFormatted":"0-2:96.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Device ID 2","controlName":"Device ID 2","value":"","timestamp":"2025-11-01T09:43:41.183884","status":"success"},{"key":"M-Bus.Device ID 3.Device ID 3","classId":{"$numberInt":"1"},"obis":"0.3.96.1.0.255","obisFormatted":"0-3:96.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Device ID 3","controlName":"Device ID 3","value":"","timestamp":"2025-11-01T09:43:41.918134","status":"success"},{"key":"M-Bus.Device ID 4.Device ID 4","classId":{"$numberInt":"1"},"obis":"0.4.96.1.0.255","obisFormatted":"0-4:96.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Device ID 4","controlName":"Device ID 4","value":"","timestamp":"2025-11-01T09:43:42.578039","status":"success"},{"key":"M-Bus.M-Bus Master Channel 1.Status","classId":{"$numberInt":"4"},"obis":"0.1.24.2.1.255","obisFormatted":"0-1:24.2.1.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master Channel 1","value":"00","timestamp":"2025-11-01T09:43:43.219538","status":"success"},{"key":"M-Bus.M-Bus Master Channel 1.Capture time","classId":{"$numberInt":"4"},"obis":"0.1.24.2.1.255","obisFormatted":"0-1:24.2.1.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master Channel 1","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:43.793753","status":"success"},{"key":"M-Bus.M-Bus Master Channel 2.Status","classId":{"$numberInt":"4"},"obis":"0.2.24.2.1.255","obisFormatted":"0-2:24.2.1.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master Channel 2","value":"00","timestamp":"2025-11-01T09:43:44.364327","status":"success"},{"key":"M-Bus.M-Bus Master Channel 2.Capture time","classId":{"$numberInt":"4"},"obis":"0.2.24.2.1.255","obisFormatted":"0-2:24.2.1.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master Channel 2","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:44.972435","status":"success"},{"key":"M-Bus.M-Bus Master Channel 3.Status","classId":{"$numberInt":"4"},"obis":"0.3.24.2.1.255","obisFormatted":"0-3:24.2.1.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master Channel 3","value":"00","timestamp":"2025-11-01T09:43:45.591825","status":"success"},{"key":"M-Bus.M-Bus Master Channel 3.Capture time","classId":{"$numberInt":"4"},"obis":"0.3.24.2.1.255","obisFormatted":"0-3:24.2.1.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master Channel 3","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:46.189526","status":"success"},{"key":"M-Bus.M-Bus Master Channel 4.Status","classId":{"$numberInt":"4"},"obis":"0.4.24.2.1.255","obisFormatted":"0-4:24.2.1.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master Channel 4","value":"00","timestamp":"2025-11-01T09:43:46.738502","status":"success"},{"key":"M-Bus.M-Bus Master Channel 4.Capture time","classId":{"$numberInt":"4"},"obis":"0.4.24.2.1.255","obisFormatted":"0-4:24.2.1.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master Channel 4","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:47.377569","status":"success"},{"key":"M-Bus.M-Bus Master Channel 1.Status","classId":{"$numberInt":"4"},"obis":"0.1.24.2.3.255","obisFormatted":"0-1:24.2.3.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master Channel 1","value":"00","timestamp":"2025-11-01T09:43:47.985516","status":"success"},{"key":"M-Bus.M-Bus Master Channel 1.Capture time","classId":{"$numberInt":"4"},"obis":"0.1.24.2.3.255","obisFormatted":"0-1:24.2.3.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master Channel 1","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:48.573067","status":"success"},{"key":"M-Bus.M-Bus Master Channel 2.Status","classId":{"$numberInt":"4"},"obis":"0.2.24.2.3.255","obisFormatted":"0-2:24.2.3.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master Channel 2","value":"00","timestamp":"2025-11-01T09:43:49.155016","status":"success"},{"key":"M-Bus.M-Bus Master Channel 2.Capture time","classId":{"$numberInt":"4"},"obis":"0.2.24.2.3.255","obisFormatted":"0-2:24.2.3.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master Channel 2","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:49.779908","status":"success"},{"key":"M-Bus.M-Bus Master Channel 3.Status","classId":{"$numberInt":"4"},"obis":"0.3.24.2.3.255","obisFormatted":"0-3:24.2.3.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master Channel 3","value":"00","timestamp":"2025-11-01T09:43:50.373310","status":"success"},{"key":"M-Bus.M-Bus Master Channel 3.Capture time","classId":{"$numberInt":"4"},"obis":"0.3.24.2.3.255","obisFormatted":"0-3:24.2.3.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master Channel 3","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:50.965848","status":"success"},{"key":"M-Bus.M-Bus Master Channel 4.Status","classId":{"$numberInt":"4"},"obis":"0.4.24.2.3.255","obisFormatted":"0-4:24.2.3.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master Channel 4","value":"00","timestamp":"2025-11-01T09:43:51.555280","status":"success"},{"key":"M-Bus.M-Bus Master Channel 4.Capture time","classId":{"$numberInt":"4"},"obis":"0.4.24.2.3.255","obisFormatted":"0-4:24.2.3.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master Channel 4","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:52.198583","status":"success"},{"key":"M-Bus.M-Bus Master 1.Value","classId":{"$numberInt":"4"},"obis":"0.1.24.2.2.255","obisFormatted":"0-1:24.2.2.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"M-Bus Master 1","value":"00","timestamp":"2025-11-01T09:43:52.753332","status":"success"},{"key":"M-Bus.M-Bus Master 1.Status","classId":{"$numberInt":"4"},"obis":"0.1.24.2.2.255","obisFormatted":"0-1:24.2.2.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master 1","value":"00","timestamp":"2025-11-01T09:43:53.388997","status":"success"},{"key":"M-Bus.M-Bus Master 1.Capture time","classId":{"$numberInt":"4"},"obis":"0.1.24.2.2.255","obisFormatted":"0-1:24.2.2.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master 1","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:54.005547","status":"success"},{"key":"M-Bus.M-Bus Master 2.Value","classId":{"$numberInt":"4"},"obis":"0.2.24.2.2.255","obisFormatted":"0-2:24.2.2.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"M-Bus Master 2","value":"00","timestamp":"2025-11-01T09:43:54.598391","status":"success"},{"key":"M-Bus.M-Bus Master 2.Status","classId":{"$numberInt":"4"},"obis":"0.2.24.2.2.255","obisFormatted":"0-2:24.2.2.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master 2","value":"00","timestamp":"2025-11-01T09:43:55.203991","status":"success"},{"key":"M-Bus.M-Bus Master 2.Capture time","classId":{"$numberInt":"4"},"obis":"0.2.24.2.2.255","obisFormatted":"0-2:24.2.2.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master 2","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:55.847945","status":"success"},{"key":"M-Bus.M-Bus Master 3.Value","classId":{"$numberInt":"4"},"obis":"0.3.24.2.2.255","obisFormatted":"0-3:24.2.2.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"M-Bus Master 3","value":"00","timestamp":"2025-11-01T09:43:56.437884","status":"success"},{"key":"M-Bus.M-Bus Master 3.Status","classId":{"$numberInt":"4"},"obis":"0.3.24.2.2.255","obisFormatted":"0-3:24.2.2.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master 3","value":"00","timestamp":"2025-11-01T09:43:57.025718","status":"success"},{"key":"M-Bus.M-Bus Master 3.Capture time","classId":{"$numberInt":"4"},"obis":"0.3.24.2.2.255","obisFormatted":"0-3:24.2.2.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master 3","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:57.625550","status":"success"},{"key":"M-Bus.M-Bus Master 4.Value","classId":{"$numberInt":"4"},"obis":"0.4.24.2.2.255","obisFormatted":"0-4:24.2.2.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"M-Bus Master 4","value":"00","timestamp":"2025-11-01T09:43:58.236311","status":"success"},{"key":"M-Bus.M-Bus Master 4.Status","classId":{"$numberInt":"4"},"obis":"0.4.24.2.2.255","obisFormatted":"0-4:24.2.2.255","attributeId":{"$numberInt":"4"},"attributeName":"Status","controlName":"M-Bus Master 4","value":"00","timestamp":"2025-11-01T09:43:58.807372","status":"success"},{"key":"M-Bus.M-Bus Master 4.Capture time","classId":{"$numberInt":"4"},"obis":"0.4.24.2.2.255","obisFormatted":"0-4:24.2.2.255","attributeId":{"$numberInt":"5"},"attributeName":"Capture time","controlName":"M-Bus Master 4","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:43:59.387388","status":"success"},{"key":"M-Bus.Channel 1.received-signal-strength","classId":{"$numberInt":"77"},"obis":"0.1.24.9.1.255","obisFormatted":"0-1:24.9.1.255","attributeId":{"$numberInt":"2"},"attributeName":"received-signal-strength","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:43:59.994841","status":"success"},{"key":"M-Bus.Channel 1.channel_Id","classId":{"$numberInt":"77"},"obis":"0.1.24.9.1.255","obisFormatted":"0-1:24.9.1.255","attributeId":{"$numberInt":"3"},"attributeName":"channel_Id","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:00.521501","status":"success"},{"key":"M-Bus.Channel 1.link_status","classId":{"$numberInt":"77"},"obis":"0.1.24.9.1.255","obisFormatted":"0-1:24.9.1.255","attributeId":{"$numberInt":"4"},"attributeName":"link_status","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:01.105614","status":"success"},{"key":"M-Bus.Channel 1.broadcast_frames_counter","classId":{"$numberInt":"77"},"obis":"0.1.24.9.1.255","obisFormatted":"0-1:24.9.1.255","attributeId":{"$numberInt":"5"},"attributeName":"broadcast_frames_counter","controlName":"Channel 1","value":{},"timestamp":"2025-11-01T09:44:01.706229","status":"success"},{"key":"M-Bus.Channel 1.transmissions_counter","classId":{"$numberInt":"77"},"obis":"0.1.24.9.1.255","obisFormatted":"0-1:24.9.1.255","attributeId":{"$numberInt":"6"},"attributeName":"transmissions_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:02.282233","status":"success"},{"key":"M-Bus.Channel 1.FCS_OK_frames_counter","classId":{"$numberInt":"77"},"obis":"0.1.24.9.1.255","obisFormatted":"0-1:24.9.1.255","attributeId":{"$numberInt":"7"},"attributeName":"FCS_OK_frames_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:02.884499","status":"success"},{"key":"M-Bus.Channel 1.FCS_NOK_frames_counter","classId":{"$numberInt":"77"},"obis":"0.1.24.9.1.255","obisFormatted":"0-1:24.9.1.255","attributeId":{"$numberInt":"8"},"attributeName":"FCS_NOK_frames_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:03.464130","status":"success"},{"key":"M-Bus.Channel 1.capture_time","classId":{"$numberInt":"77"},"obis":"0.1.24.9.1.255","obisFormatted":"0-1:24.9.1.255","attributeId":{"$numberInt":"9"},"attributeName":"capture_time","controlName":"Channel 1","value":{"0":[{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF"]},"timestamp":"2025-11-01T09:44:04.077553","status":"success"},{"key":"M-Bus.Channel 1.received-signal-strength","classId":{"$numberInt":"77"},"obis":"0.2.24.9.1.255","obisFormatted":"0-2:24.9.1.255","attributeId":{"$numberInt":"2"},"attributeName":"received-signal-strength","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:04.673830","status":"success"},{"key":"M-Bus.Channel 1.channel_Id","classId":{"$numberInt":"77"},"obis":"0.2.24.9.1.255","obisFormatted":"0-2:24.9.1.255","attributeId":{"$numberInt":"3"},"attributeName":"channel_Id","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:05.304653","status":"success"},{"key":"M-Bus.Channel 1.link_status","classId":{"$numberInt":"77"},"obis":"0.2.24.9.1.255","obisFormatted":"0-2:24.9.1.255","attributeId":{"$numberInt":"4"},"attributeName":"link_status","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:05.901043","status":"success"},{"key":"M-Bus.Channel 1.broadcast_frames_counter","classId":{"$numberInt":"77"},"obis":"0.2.24.9.1.255","obisFormatted":"0-2:24.9.1.255","attributeId":{"$numberInt":"5"},"attributeName":"broadcast_frames_counter","controlName":"Channel 1","value":{},"timestamp":"2025-11-01T09:44:06.504122","status":"success"},{"key":"M-Bus.Channel 1.transmissions_counter","classId":{"$numberInt":"77"},"obis":"0.2.24.9.1.255","obisFormatted":"0-2:24.9.1.255","attributeId":{"$numberInt":"6"},"attributeName":"transmissions_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:07.109544","status":"success"},{"key":"M-Bus.Channel 1.FCS_OK_frames_counter","classId":{"$numberInt":"77"},"obis":"0.2.24.9.1.255","obisFormatted":"0-2:24.9.1.255","attributeId":{"$numberInt":"7"},"attributeName":"FCS_OK_frames_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:07.716282","status":"success"},{"key":"M-Bus.Channel 1.FCS_NOK_frames_counter","classId":{"$numberInt":"77"},"obis":"0.2.24.9.1.255","obisFormatted":"0-2:24.9.1.255","attributeId":{"$numberInt":"8"},"attributeName":"FCS_NOK_frames_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:08.321223","status":"success"},{"key":"M-Bus.Channel 1.capture_time","classId":{"$numberInt":"77"},"obis":"0.2.24.9.1.255","obisFormatted":"0-2:24.9.1.255","attributeId":{"$numberInt":"9"},"attributeName":"capture_time","controlName":"Channel 1","value":{"0":[{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF"]},"timestamp":"2025-11-01T09:44:08.885500","status":"success"},{"key":"M-Bus.Channel 1.received-signal-strength","classId":{"$numberInt":"77"},"obis":"0.3.24.9.1.255","obisFormatted":"0-3:24.9.1.255","attributeId":{"$numberInt":"2"},"attributeName":"received-signal-strength","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:09.482565","status":"success"},{"key":"M-Bus.Channel 1.channel_Id","classId":{"$numberInt":"77"},"obis":"0.3.24.9.1.255","obisFormatted":"0-3:24.9.1.255","attributeId":{"$numberInt":"3"},"attributeName":"channel_Id","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:10.074161","status":"success"},{"key":"M-Bus.Channel 1.link_status","classId":{"$numberInt":"77"},"obis":"0.3.24.9.1.255","obisFormatted":"0-3:24.9.1.255","attributeId":{"$numberInt":"4"},"attributeName":"link_status","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:10.678733","status":"success"},{"key":"M-Bus.Channel 1.broadcast_frames_counter","classId":{"$numberInt":"77"},"obis":"0.3.24.9.1.255","obisFormatted":"0-3:24.9.1.255","attributeId":{"$numberInt":"5"},"attributeName":"broadcast_frames_counter","controlName":"Channel 1","value":{},"timestamp":"2025-11-01T09:44:11.298916","status":"success"},{"key":"M-Bus.Channel 1.transmissions_counter","classId":{"$numberInt":"77"},"obis":"0.3.24.9.1.255","obisFormatted":"0-3:24.9.1.255","attributeId":{"$numberInt":"6"},"attributeName":"transmissions_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:11.878826","status":"success"},{"key":"M-Bus.Channel 1.FCS_OK_frames_counter","classId":{"$numberInt":"77"},"obis":"0.3.24.9.1.255","obisFormatted":"0-3:24.9.1.255","attributeId":{"$numberInt":"7"},"attributeName":"FCS_OK_frames_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:12.473391","status":"success"},{"key":"M-Bus.Channel 1.FCS_NOK_frames_counter","classId":{"$numberInt":"77"},"obis":"0.3.24.9.1.255","obisFormatted":"0-3:24.9.1.255","attributeId":{"$numberInt":"8"},"attributeName":"FCS_NOK_frames_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:13.089295","status":"success"},{"key":"M-Bus.Channel 1.capture_time","classId":{"$numberInt":"77"},"obis":"0.3.24.9.1.255","obisFormatted":"0-3:24.9.1.255","attributeId":{"$numberInt":"9"},"attributeName":"capture_time","controlName":"Channel 1","value":{"0":[{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF"]},"timestamp":"2025-11-01T09:44:13.680102","status":"success"},{"key":"M-Bus.Channel 1.received-signal-strength","classId":{"$numberInt":"77"},"obis":"0.4.24.9.1.255","obisFormatted":"0-4:24.9.1.255","attributeId":{"$numberInt":"2"},"attributeName":"received-signal-strength","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:14.300120","status":"success"},{"key":"M-Bus.Channel 1.channel_Id","classId":{"$numberInt":"77"},"obis":"0.4.24.9.1.255","obisFormatted":"0-4:24.9.1.255","attributeId":{"$numberInt":"3"},"attributeName":"channel_Id","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:14.898348","status":"success"},{"key":"M-Bus.Channel 1.link_status","classId":{"$numberInt":"77"},"obis":"0.4.24.9.1.255","obisFormatted":"0-4:24.9.1.255","attributeId":{"$numberInt":"4"},"attributeName":"link_status","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:15.491663","status":"success"},{"key":"M-Bus.Channel 1.broadcast_frames_counter","classId":{"$numberInt":"77"},"obis":"0.4.24.9.1.255","obisFormatted":"0-4:24.9.1.255","attributeId":{"$numberInt":"5"},"attributeName":"broadcast_frames_counter","controlName":"Channel 1","value":{},"timestamp":"2025-11-01T09:44:16.062162","status":"success"},{"key":"M-Bus.Channel 1.transmissions_counter","classId":{"$numberInt":"77"},"obis":"0.4.24.9.1.255","obisFormatted":"0-4:24.9.1.255","attributeId":{"$numberInt":"6"},"attributeName":"transmissions_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:16.658499","status":"success"},{"key":"M-Bus.Channel 1.FCS_OK_frames_counter","classId":{"$numberInt":"77"},"obis":"0.4.24.9.1.255","obisFormatted":"0-4:24.9.1.255","attributeId":{"$numberInt":"7"},"attributeName":"FCS_OK_frames_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:17.256492","status":"success"},{"key":"M-Bus.Channel 1.FCS_NOK_frames_counter","classId":{"$numberInt":"77"},"obis":"0.4.24.9.1.255","obisFormatted":"0-4:24.9.1.255","attributeId":{"$numberInt":"8"},"attributeName":"FCS_NOK_frames_counter","controlName":"Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:17.888246","status":"success"},{"key":"M-Bus.Channel 1.capture_time","classId":{"$numberInt":"77"},"obis":"0.4.24.9.1.255","obisFormatted":"0-4:24.9.1.255","attributeId":{"$numberInt":"9"},"attributeName":"capture_time","controlName":"Channel 1","value":{"0":[{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF"]},"timestamp":"2025-11-01T09:44:18.532585","status":"success"},{"key":"M-Bus.Number of missed C Message Channel 1.Value","classId":{"$numberInt":"3"},"obis":"0.1.128.1.0.255","obisFormatted":"0-1:128.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Number of missed C Message Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:19.179921","status":"success"},{"key":"M-Bus.Number of missed C Message Channel 2.Value","classId":{"$numberInt":"3"},"obis":"0.2.128.1.0.255","obisFormatted":"0-2:128.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Number of missed C Message Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:19.813464","status":"success"},{"key":"M-Bus.Number of missed C Message Channel 3.Value","classId":{"$numberInt":"3"},"obis":"0.3.128.1.0.255","obisFormatted":"0-3:128.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Number of missed C Message Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:20.412844","status":"success"},{"key":"M-Bus.Number of missed C Message Channel 4.Value","classId":{"$numberInt":"3"},"obis":"0.4.128.1.0.255","obisFormatted":"0-4:128.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Number of missed C Message Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:21.018933","status":"success"},{"key":"M-Bus.Number of missed T Message Channel 1.Value","classId":{"$numberInt":"3"},"obis":"0.1.128.2.0.255","obisFormatted":"0-1:128.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Number of missed T Message Channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:21.616064","status":"success"},{"key":"M-Bus.Number of missed T Message Channel 2.Value","classId":{"$numberInt":"3"},"obis":"0.2.128.2.0.255","obisFormatted":"0-2:128.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Number of missed T Message Channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:22.194098","status":"success"},{"key":"M-Bus.Number of missed T Message Channel 3.Value","classId":{"$numberInt":"3"},"obis":"0.3.128.2.0.255","obisFormatted":"0-3:128.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Number of missed T Message Channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:22.803893","status":"success"},{"key":"M-Bus.Number of missed T Message Channel 4.Value","classId":{"$numberInt":"3"},"obis":"0.4.128.2.0.255","obisFormatted":"0-4:128.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Value","controlName":"Number of missed T Message Channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:23.422895","status":"success"},{"key":"M-Bus.Average number of missed C message channel 1.Current average value","classId":{"$numberInt":"5"},"obis":"0.1.129.1.0.255","obisFormatted":"0-1:129.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Current average value","controlName":"Average number of missed C message channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:24.033653","status":"success"},{"key":"M-Bus.Average number of missed C message channel 1.Last average value","classId":{"$numberInt":"5"},"obis":"0.1.129.1.0.255","obisFormatted":"0-1:129.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Last average value","controlName":"Average number of missed C message channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:24.675699","status":"success"},{"key":"M-Bus.Average number of missed C message channel 1.Scaler unit","classId":{"$numberInt":"5"},"obis":"0.1.129.1.0.255","obisFormatted":"0-1:129.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Scaler unit","controlName":"Average number of missed C message channel 1","value":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"timestamp":"2025-11-01T09:44:25.265683","status":"success"},{"key":"M-Bus.Average number of missed C message channel 1.Status","classId":{"$numberInt":"5"},"obis":"0.1.129.1.0.255","obisFormatted":"0-1:129.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Status","controlName":"Average number of missed C message channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:25.875491","status":"success"},{"key":"M-Bus.Average number of missed C message channel 1.Capture time","classId":{"$numberInt":"5"},"obis":"0.1.129.1.0.255","obisFormatted":"0-1:129.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Capture time","controlName":"Average number of missed C message channel 1","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:26.505661","status":"success"},{"key":"M-Bus.Average number of missed C message channel 1.Start time current","classId":{"$numberInt":"5"},"obis":"0.1.129.1.0.255","obisFormatted":"0-1:129.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Start time current","controlName":"Average number of missed C message channel 1","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:27.115952","status":"success"},{"key":"M-Bus.Average number of missed C message channel 1.Period","classId":{"$numberInt":"5"},"obis":"0.1.129.1.0.255","obisFormatted":"0-1:129.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Period","controlName":"Average number of missed C message channel 1","value":{"$numberInt":"10"},"timestamp":"2025-11-01T09:44:27.734231","status":"success"},{"key":"M-Bus.Average number of missed C message channel 1.Number of periods","classId":{"$numberInt":"5"},"obis":"0.1.129.1.0.255","obisFormatted":"0-1:129.1.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Number of periods","controlName":"Average number of missed C message channel 1","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:44:28.330919","status":"success"},{"key":"M-Bus.Average number of missed C message channel 2.Current average value","classId":{"$numberInt":"5"},"obis":"0.2.129.1.0.255","obisFormatted":"0-2:129.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Current average value","controlName":"Average number of missed C message channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:28.991916","status":"success"},{"key":"M-Bus.Average number of missed C message channel 2.Last average value","classId":{"$numberInt":"5"},"obis":"0.2.129.1.0.255","obisFormatted":"0-2:129.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Last average value","controlName":"Average number of missed C message channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:29.608003","status":"success"},{"key":"M-Bus.Average number of missed C message channel 2.Scaler unit","classId":{"$numberInt":"5"},"obis":"0.2.129.1.0.255","obisFormatted":"0-2:129.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Scaler unit","controlName":"Average number of missed C message channel 2","value":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"timestamp":"2025-11-01T09:44:30.227901","status":"success"},{"key":"M-Bus.Average number of missed C message channel 2.Status","classId":{"$numberInt":"5"},"obis":"0.2.129.1.0.255","obisFormatted":"0-2:129.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Status","controlName":"Average number of missed C message channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:30.836184","status":"success"},{"key":"M-Bus.Average number of missed C message channel 2.Capture time","classId":{"$numberInt":"5"},"obis":"0.2.129.1.0.255","obisFormatted":"0-2:129.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Capture time","controlName":"Average number of missed C message channel 2","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:31.461061","status":"success"},{"key":"M-Bus.Average number of missed C message channel 2.Start time current","classId":{"$numberInt":"5"},"obis":"0.2.129.1.0.255","obisFormatted":"0-2:129.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Start time current","controlName":"Average number of missed C message channel 2","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:32.062510","status":"success"},{"key":"M-Bus.Average number of missed C message channel 2.Period","classId":{"$numberInt":"5"},"obis":"0.2.129.1.0.255","obisFormatted":"0-2:129.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Period","controlName":"Average number of missed C message channel 2","value":{"$numberInt":"10"},"timestamp":"2025-11-01T09:44:32.689465","status":"success"},{"key":"M-Bus.Average number of missed C message channel 2.Number of periods","classId":{"$numberInt":"5"},"obis":"0.2.129.1.0.255","obisFormatted":"0-2:129.1.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Number of periods","controlName":"Average number of missed C message channel 2","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:44:33.295378","status":"success"},{"key":"M-Bus.Average number of missed C message channel 3.Current average value","classId":{"$numberInt":"5"},"obis":"0.3.129.1.0.255","obisFormatted":"0-3:129.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Current average value","controlName":"Average number of missed C message channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:33.899601","status":"success"},{"key":"M-Bus.Average number of missed C message channel 3.Last average value","classId":{"$numberInt":"5"},"obis":"0.3.129.1.0.255","obisFormatted":"0-3:129.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Last average value","controlName":"Average number of missed C message channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:34.463174","status":"success"},{"key":"M-Bus.Average number of missed C message channel 3.Scaler unit","classId":{"$numberInt":"5"},"obis":"0.3.129.1.0.255","obisFormatted":"0-3:129.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Scaler unit","controlName":"Average number of missed C message channel 3","value":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"timestamp":"2025-11-01T09:44:35.088182","status":"success"},{"key":"M-Bus.Average number of missed C message channel 3.Status","classId":{"$numberInt":"5"},"obis":"0.3.129.1.0.255","obisFormatted":"0-3:129.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Status","controlName":"Average number of missed C message channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:35.748995","status":"success"},{"key":"M-Bus.Average number of missed C message channel 3.Capture time","classId":{"$numberInt":"5"},"obis":"0.3.129.1.0.255","obisFormatted":"0-3:129.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Capture time","controlName":"Average number of missed C message channel 3","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:36.362668","status":"success"},{"key":"M-Bus.Average number of missed C message channel 3.Start time current","classId":{"$numberInt":"5"},"obis":"0.3.129.1.0.255","obisFormatted":"0-3:129.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Start time current","controlName":"Average number of missed C message channel 3","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:37.018614","status":"success"},{"key":"M-Bus.Average number of missed C message channel 3.Period","classId":{"$numberInt":"5"},"obis":"0.3.129.1.0.255","obisFormatted":"0-3:129.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Period","controlName":"Average number of missed C message channel 3","value":{"$numberInt":"10"},"timestamp":"2025-11-01T09:44:37.615315","status":"success"},{"key":"M-Bus.Average number of missed C message channel 3.Number of periods","classId":{"$numberInt":"5"},"obis":"0.3.129.1.0.255","obisFormatted":"0-3:129.1.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Number of periods","controlName":"Average number of missed C message channel 3","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:44:38.211155","status":"success"},{"key":"M-Bus.Average number of missed C message channel 4.Current average value","classId":{"$numberInt":"5"},"obis":"0.4.129.1.0.255","obisFormatted":"0-4:129.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Current average value","controlName":"Average number of missed C message channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:38.814049","status":"success"},{"key":"M-Bus.Average number of missed C message channel 4.Last average value","classId":{"$numberInt":"5"},"obis":"0.4.129.1.0.255","obisFormatted":"0-4:129.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Last average value","controlName":"Average number of missed C message channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:39.436449","status":"success"},{"key":"M-Bus.Average number of missed C message channel 4.Scaler unit","classId":{"$numberInt":"5"},"obis":"0.4.129.1.0.255","obisFormatted":"0-4:129.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Scaler unit","controlName":"Average number of missed C message channel 4","value":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"timestamp":"2025-11-01T09:44:40.095214","status":"success"},{"key":"M-Bus.Average number of missed C message channel 4.Status","classId":{"$numberInt":"5"},"obis":"0.4.129.1.0.255","obisFormatted":"0-4:129.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Status","controlName":"Average number of missed C message channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:40.718904","status":"success"},{"key":"M-Bus.Average number of missed C message channel 4.Capture time","classId":{"$numberInt":"5"},"obis":"0.4.129.1.0.255","obisFormatted":"0-4:129.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Capture time","controlName":"Average number of missed C message channel 4","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:41.394391","status":"success"},{"key":"M-Bus.Average number of missed C message channel 4.Start time current","classId":{"$numberInt":"5"},"obis":"0.4.129.1.0.255","obisFormatted":"0-4:129.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Start time current","controlName":"Average number of missed C message channel 4","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:41.985670","status":"success"},{"key":"M-Bus.Average number of missed C message channel 4.Period","classId":{"$numberInt":"5"},"obis":"0.4.129.1.0.255","obisFormatted":"0-4:129.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Period","controlName":"Average number of missed C message channel 4","value":{"$numberInt":"10"},"timestamp":"2025-11-01T09:44:42.613767","status":"success"},{"key":"M-Bus.Average number of missed C message channel 4.Number of periods","classId":{"$numberInt":"5"},"obis":"0.4.129.1.0.255","obisFormatted":"0-4:129.1.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Number of periods","controlName":"Average number of missed C message channel 4","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:44:43.240685","status":"success"},{"key":"M-Bus.Average number of missed T message channel 1.Current average value","classId":{"$numberInt":"5"},"obis":"0.1.129.2.0.255","obisFormatted":"0-1:129.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Current average value","controlName":"Average number of missed T message channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:43.857282","status":"success"},{"key":"M-Bus.Average number of missed T message channel 1.Last average value","classId":{"$numberInt":"5"},"obis":"0.1.129.2.0.255","obisFormatted":"0-1:129.2.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Last average value","controlName":"Average number of missed T message channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:44.452535","status":"success"},{"key":"M-Bus.Average number of missed T message channel 1.Scaler unit","classId":{"$numberInt":"5"},"obis":"0.1.129.2.0.255","obisFormatted":"0-1:129.2.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Scaler unit","controlName":"Average number of missed T message channel 1","value":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"timestamp":"2025-11-01T09:44:45.052224","status":"success"},{"key":"M-Bus.Average number of missed T message channel 1.Status","classId":{"$numberInt":"5"},"obis":"0.1.129.2.0.255","obisFormatted":"0-1:129.2.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Status","controlName":"Average number of missed T message channel 1","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:45.661791","status":"success"},{"key":"M-Bus.Average number of missed T message channel 1.Capture time","classId":{"$numberInt":"5"},"obis":"0.1.129.2.0.255","obisFormatted":"0-1:129.2.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Capture time","controlName":"Average number of missed T message channel 1","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:46.260284","status":"success"},{"key":"M-Bus.Average number of missed T message channel 1.Start time current","classId":{"$numberInt":"5"},"obis":"0.1.129.2.0.255","obisFormatted":"0-1:129.2.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Start time current","controlName":"Average number of missed T message channel 1","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:46.862281","status":"success"},{"key":"M-Bus.Average number of missed T message channel 1.Period","classId":{"$numberInt":"5"},"obis":"0.1.129.2.0.255","obisFormatted":"0-1:129.2.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Period","controlName":"Average number of missed T message channel 1","value":{"$numberInt":"10"},"timestamp":"2025-11-01T09:44:47.461956","status":"success"},{"key":"M-Bus.Average number of missed T message channel 1.Number of periods","classId":{"$numberInt":"5"},"obis":"0.1.129.2.0.255","obisFormatted":"0-1:129.2.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Number of periods","controlName":"Average number of missed T message channel 1","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:44:48.055087","status":"success"},{"key":"M-Bus.Average number of missed T message channel 2.Current average value","classId":{"$numberInt":"5"},"obis":"0.2.129.2.0.255","obisFormatted":"0-2:129.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Current average value","controlName":"Average number of missed T message channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:48.684655","status":"success"},{"key":"M-Bus.Average number of missed T message channel 2.Last average value","classId":{"$numberInt":"5"},"obis":"0.2.129.2.0.255","obisFormatted":"0-2:129.2.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Last average value","controlName":"Average number of missed T message channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:49.248591","status":"success"},{"key":"M-Bus.Average number of missed T message channel 2.Scaler unit","classId":{"$numberInt":"5"},"obis":"0.2.129.2.0.255","obisFormatted":"0-2:129.2.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Scaler unit","controlName":"Average number of missed T message channel 2","value":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"timestamp":"2025-11-01T09:44:49.856087","status":"success"},{"key":"M-Bus.Average number of missed T message channel 2.Status","classId":{"$numberInt":"5"},"obis":"0.2.129.2.0.255","obisFormatted":"0-2:129.2.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Status","controlName":"Average number of missed T message channel 2","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:50.467595","status":"success"},{"key":"M-Bus.Average number of missed T message channel 2.Capture time","classId":{"$numberInt":"5"},"obis":"0.2.129.2.0.255","obisFormatted":"0-2:129.2.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Capture time","controlName":"Average number of missed T message channel 2","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:51.059337","status":"success"},{"key":"M-Bus.Average number of missed T message channel 2.Start time current","classId":{"$numberInt":"5"},"obis":"0.2.129.2.0.255","obisFormatted":"0-2:129.2.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Start time current","controlName":"Average number of missed T message channel 2","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:51.680262","status":"success"},{"key":"M-Bus.Average number of missed T message channel 2.Period","classId":{"$numberInt":"5"},"obis":"0.2.129.2.0.255","obisFormatted":"0-2:129.2.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Period","controlName":"Average number of missed T message channel 2","value":{"$numberInt":"10"},"timestamp":"2025-11-01T09:44:52.273157","status":"success"},{"key":"M-Bus.Average number of missed T message channel 2.Number of periods","classId":{"$numberInt":"5"},"obis":"0.2.129.2.0.255","obisFormatted":"0-2:129.2.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Number of periods","controlName":"Average number of missed T message channel 2","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:44:52.872053","status":"success"},{"key":"M-Bus.Average number of missed T message channel 3.Current average value","classId":{"$numberInt":"5"},"obis":"0.3.129.2.0.255","obisFormatted":"0-3:129.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Current average value","controlName":"Average number of missed T message channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:53.475738","status":"success"},{"key":"M-Bus.Average number of missed T message channel 3.Last average value","classId":{"$numberInt":"5"},"obis":"0.3.129.2.0.255","obisFormatted":"0-3:129.2.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Last average value","controlName":"Average number of missed T message channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:54.084477","status":"success"},{"key":"M-Bus.Average number of missed T message channel 3.Scaler unit","classId":{"$numberInt":"5"},"obis":"0.3.129.2.0.255","obisFormatted":"0-3:129.2.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Scaler unit","controlName":"Average number of missed T message channel 3","value":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"timestamp":"2025-11-01T09:44:54.700321","status":"success"},{"key":"M-Bus.Average number of missed T message channel 3.Status","classId":{"$numberInt":"5"},"obis":"0.3.129.2.0.255","obisFormatted":"0-3:129.2.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Status","controlName":"Average number of missed T message channel 3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:55.321106","status":"success"},{"key":"M-Bus.Average number of missed T message channel 3.Capture time","classId":{"$numberInt":"5"},"obis":"0.3.129.2.0.255","obisFormatted":"0-3:129.2.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Capture time","controlName":"Average number of missed T message channel 3","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:55.943104","status":"success"},{"key":"M-Bus.Average number of missed T message channel 3.Start time current","classId":{"$numberInt":"5"},"obis":"0.3.129.2.0.255","obisFormatted":"0-3:129.2.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Start time current","controlName":"Average number of missed T message channel 3","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:44:56.554955","status":"success"},{"key":"M-Bus.Average number of missed T message channel 3.Period","classId":{"$numberInt":"5"},"obis":"0.3.129.2.0.255","obisFormatted":"0-3:129.2.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Period","controlName":"Average number of missed T message channel 3","value":{"$numberInt":"10"},"timestamp":"2025-11-01T09:44:57.155999","status":"success"},{"key":"M-Bus.Average number of missed T message channel 3.Number of periods","classId":{"$numberInt":"5"},"obis":"0.3.129.2.0.255","obisFormatted":"0-3:129.2.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Number of periods","controlName":"Average number of missed T message channel 3","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:44:57.770231","status":"success"},{"key":"M-Bus.Average number of missed T message channel 4.Current average value","classId":{"$numberInt":"5"},"obis":"0.4.129.2.0.255","obisFormatted":"0-4:129.2.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Current average value","controlName":"Average number of missed T message channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:58.363931","status":"success"},{"key":"M-Bus.Average number of missed T message channel 4.Last average value","classId":{"$numberInt":"5"},"obis":"0.4.129.2.0.255","obisFormatted":"0-4:129.2.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Last average value","controlName":"Average number of missed T message channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:44:58.975662","status":"success"},{"key":"M-Bus.Average number of missed T message channel 4.Scaler unit","classId":{"$numberInt":"5"},"obis":"0.4.129.2.0.255","obisFormatted":"0-4:129.2.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Scaler unit","controlName":"Average number of missed T message channel 4","value":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"timestamp":"2025-11-01T09:44:59.575347","status":"success"},{"key":"M-Bus.Average number of missed T message channel 4.Status","classId":{"$numberInt":"5"},"obis":"0.4.129.2.0.255","obisFormatted":"0-4:129.2.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Status","controlName":"Average number of missed T message channel 4","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:00.180002","status":"success"},{"key":"M-Bus.Average number of missed T message channel 4.Capture time","classId":{"$numberInt":"5"},"obis":"0.4.129.2.0.255","obisFormatted":"0-4:129.2.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Capture time","controlName":"Average number of missed T message channel 4","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:45:00.777205","status":"success"},{"key":"M-Bus.Average number of missed T message channel 4.Start time current","classId":{"$numberInt":"5"},"obis":"0.4.129.2.0.255","obisFormatted":"0-4:129.2.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Start time current","controlName":"Average number of missed T message channel 4","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:45:01.401137","status":"success"},{"key":"M-Bus.Average number of missed T message channel 4.Period","classId":{"$numberInt":"5"},"obis":"0.4.129.2.0.255","obisFormatted":"0-4:129.2.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Period","controlName":"Average number of missed T message channel 4","value":{"$numberInt":"10"},"timestamp":"2025-11-01T09:45:01.944992","status":"success"},{"key":"M-Bus.Average number of missed T message channel 4.Number of periods","classId":{"$numberInt":"5"},"obis":"0.4.129.2.0.255","obisFormatted":"0-4:129.2.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Number of periods","controlName":"Average number of missed T message channel 4","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:45:02.534072","status":"success"}],"summary":{"total":{"$numberInt":"192"},"success":{"$numberInt":"192"},"failed":{"$numberInt":"0"}}},"LTE Communication Setup":{"sheet_name":"LTE Communication Setup","objects":[{"key":"LTE Communication Setup.eUICCID.eUICCID","classId":{"$numberInt":"1"},"obis":"0.1.94.31.19.255","obisFormatted":"0-1:94.31.19.255","attributeId":{"$numberInt":"2"},"attributeName":"eUICCID","controlName":"eUICCID","value":"3335303630303030303030303030303030303234303030303331333031373237","timestamp":"2025-11-01T09:45:03.218339","status":"success"},{"key":"LTE Communication Setup.ICCID.ICCID","classId":{"$numberInt":"1"},"obis":"0.1.94.31.20.255","obisFormatted":"0-1:94.31.20.255","attributeId":{"$numberInt":"2"},"attributeName":"ICCID","controlName":"ICCID","value":"89860110611108096225","timestamp":"2025-11-01T09:45:03.847222","status":"success"},{"key":"LTE Communication Setup.Administrative in/out P3.nan","classId":{"$numberInt":"1"},"obis":"0.1.94.31.0.255","obisFormatted":"0-1:94.31.0.255","attributeId":{"$numberInt":"2"},"attributeName":"","controlName":"Administrative in/out P3","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:04.578543","status":"success"},{"key":"LTE Communication Setup.connection watchdog timer P3.nan","classId":{"$numberInt":"1"},"obis":"0.1.94.31.2.255","obisFormatted":"0-1:94.31.2.255","attributeId":{"$numberInt":"2"},"attributeName":"","controlName":"connection watchdog timer P3","value":{"$numberInt":"36"},"timestamp":"2025-11-01T09:45:05.185793","status":"success"},{"key":"LTE Communication Setup.LTE FW Location.nan","classId":{"$numberInt":"1"},"obis":"0.65.44.0.0.255","obisFormatted":"0-65:44.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"","controlName":"LTE FW Location","value":"35.181.240.196:8080","timestamp":"2025-11-01T09:45:05.861557","status":"success"},{"key":"LTE Communication Setup.LTE FW Download time.nan","classId":{"$numberInt":"1"},"obis":"0.65.44.0.1.255","obisFormatted":"0-65:44.0.1.255","attributeId":{"$numberInt":"2"},"attributeName":"","controlName":"LTE FW Download time","value":{"$numberInt":"600"},"timestamp":"2025-11-01T09:45:06.550905","status":"success"},{"key":"LTE Communication Setup.LTE Frequency configuration.LTE Frequency configuration","classId":{"$numberInt":"1"},"obis":"0.1.94.31.8.255","obisFormatted":"0-1:94.31.8.255","attributeId":{"$numberInt":"2"},"attributeName":"LTE Frequency configuration","controlName":"LTE Frequency configuration","value":"00111100","timestamp":"2025-11-01T09:45:07.305721","status":"success"},{"key":"LTE Communication Setup.Ping address.nan","classId":{"$numberInt":"1"},"obis":"0.65.44.0.2.255","obisFormatted":"0-65:44.0.2.255","attributeId":{"$numberInt":"2"},"attributeName":"","controlName":"Ping address","value":{"0":["10.254.253.4","8082"]},"timestamp":"2025-11-01T09:45:08.096397","status":"success"},{"key":"LTE Communication Setup.PHY Randomisation.nan","classId":{"$numberInt":"1"},"obis":"0.1.94.31.12.255","obisFormatted":"0-1:94.31.12.255","attributeId":{"$numberInt":"2"},"attributeName":"","controlName":"PHY Randomisation","value":{"0":[{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:45:08.836565","status":"success"},{"key":"LTE Communication Setup.PPP Setup.PHY reference","classId":{"$numberInt":"44"},"obis":"0.0.25.3.0.255","obisFormatted":"0-0:25.3.0.255","attributeId":{"$numberInt":"2"},"attributeName":"PHY reference","controlName":"PPP Setup","value":"0-1:25.4.0.255","timestamp":"2025-11-01T09:45:09.537027","status":"success"},{"key":"LTE Communication Setup.PPP Setup.LCP options","classId":{"$numberInt":"44"},"obis":"0.0.25.3.0.255","obisFormatted":"0-0:25.3.0.255","attributeId":{"$numberInt":"3"},"attributeName":"LCP options","controlName":"PPP Setup","value":{"0":[{"$numberInt":"1"},{"$numberInt":"2"},{"$numberInt":"1500"}],"1":[{"$numberInt":"3"},{"$numberInt":"2"},{"$numberInt":"49187"}]},"timestamp":"2025-11-01T09:45:10.177073","status":"success"},{"key":"LTE Communication Setup.PPP Setup.IPCP options","classId":{"$numberInt":"44"},"obis":"0.0.25.3.0.255","obisFormatted":"0-0:25.3.0.255","attributeId":{"$numberInt":"4"},"attributeName":"IPCP options","controlName":"PPP Setup","value":{},"timestamp":"2025-11-01T09:45:10.743882","status":"success"},{"key":"LTE Communication Setup.PPP Setup.PPP authentication","classId":{"$numberInt":"44"},"obis":"0.0.25.3.0.255","obisFormatted":"0-0:25.3.0.255","attributeId":{"$numberInt":"5"},"attributeName":"PPP authentication","controlName":"PPP Setup","value":{"0":["kaifa","123123"]},"timestamp":"2025-11-01T09:45:11.459470","status":"success"},{"key":"LTE Communication Setup.TCP-UDP Setup.TCP-UDP port","classId":{"$numberInt":"41"},"obis":"0.0.25.0.0.255","obisFormatted":"0-0:25.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"TCP-UDP port","controlName":"TCP-UDP Setup","value":{"$numberInt":"4059"},"timestamp":"2025-11-01T09:45:12.069606","status":"success"},{"key":"LTE Communication Setup.TCP-UDP Setup.IP reference","classId":{"$numberInt":"41"},"obis":"0.0.25.0.0.255","obisFormatted":"0-0:25.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"IP reference","controlName":"TCP-UDP Setup","value":"0-0:25.1.0.255","timestamp":"2025-11-01T09:45:12.696821","status":"success"},{"key":"LTE Communication Setup.TCP-UDP Setup.MSS","classId":{"$numberInt":"41"},"obis":"0.0.25.0.0.255","obisFormatted":"0-0:25.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"MSS","controlName":"TCP-UDP Setup","value":{"$numberInt":"576"},"timestamp":"2025-11-01T09:45:13.303026","status":"success"},{"key":"LTE Communication Setup.TCP-UDP Setup.Nb of sim conn","classId":{"$numberInt":"41"},"obis":"0.0.25.0.0.255","obisFormatted":"0-0:25.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Nb of sim conn","controlName":"TCP-UDP Setup","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:45:13.913908","status":"success"},{"key":"LTE Communication Setup.TCP-UDP Setup.Inactivity time out","classId":{"$numberInt":"41"},"obis":"0.0.25.0.0.255","obisFormatted":"0-0:25.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Inactivity time out","controlName":"TCP-UDP Setup","value":{"$numberInt":"300"},"timestamp":"2025-11-01T09:45:14.541862","status":"success"},{"key":"LTE Communication Setup.IPv4 Setup.DL reference","classId":{"$numberInt":"42"},"obis":"0.0.25.1.0.255","obisFormatted":"0-0:25.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"DL reference","controlName":"IPv4 Setup","value":"0-0:25.3.0.255","timestamp":"2025-11-01T09:45:15.177757","status":"success"},{"key":"LTE Communication Setup.IPv4 Setup.IP address","classId":{"$numberInt":"42"},"obis":"0.0.25.1.0.255","obisFormatted":"0-0:25.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"IP address","controlName":"IPv4 Setup","value":"0.0.0.0","timestamp":"2025-11-01T09:45:15.808694","status":"success"},{"key":"LTE Communication Setup.IPv4 Setup.Multicast IP address","classId":{"$numberInt":"42"},"obis":"0.0.25.1.0.255","obisFormatted":"0-0:25.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Multicast IP address","controlName":"IPv4 Setup","value":{},"timestamp":"2025-11-01T09:45:16.414230","status":"success"},{"key":"LTE Communication Setup.IPv4 Setup.IP options","classId":{"$numberInt":"42"},"obis":"0.0.25.1.0.255","obisFormatted":"0-0:25.1.0.255","attributeId":{"$numberInt":"5"},"attributeName":"IP options","controlName":"IPv4 Setup","value":{},"timestamp":"2025-11-01T09:45:17.010939","status":"success"},{"key":"LTE Communication Setup.IPv4 Setup.Subnet mask","classId":{"$numberInt":"42"},"obis":"0.0.25.1.0.255","obisFormatted":"0-0:25.1.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Subnet mask","controlName":"IPv4 Setup","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:17.634048","status":"success"},{"key":"LTE Communication Setup.IPv4 Setup.Gateway IP address","classId":{"$numberInt":"42"},"obis":"0.0.25.1.0.255","obisFormatted":"0-0:25.1.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Gateway IP address","controlName":"IPv4 Setup","value":"0.0.0.0","timestamp":"2025-11-01T09:45:18.214159","status":"success"},{"key":"LTE Communication Setup.IPv4 Setup.Use DHCP flag","classId":{"$numberInt":"42"},"obis":"0.0.25.1.0.255","obisFormatted":"0-0:25.1.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Use DHCP flag","controlName":"IPv4 Setup","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:45:18.813176","status":"success"},{"key":"LTE Communication Setup.IPv4 Setup.Primary DNS address","classId":{"$numberInt":"42"},"obis":"0.0.25.1.0.255","obisFormatted":"0-0:25.1.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Primary DNS address","controlName":"IPv4 Setup","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:19.437397","status":"success"},{"key":"LTE Communication Setup.IPv4 Setup.Secondary DNS address","classId":{"$numberInt":"42"},"obis":"0.0.25.1.0.255","obisFormatted":"0-0:25.1.0.255","attributeId":{"$numberInt":"10"},"attributeName":"Secondary DNS address","controlName":"IPv4 Setup","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:20.054959","status":"success"},{"key":"LTE Communication Setup.IPv6 setup -GPRS.DL reference","classId":{"$numberInt":"48"},"obis":"0.0.25.7.0.255","obisFormatted":"0-0:25.7.0.255","attributeId":{"$numberInt":"2"},"attributeName":"DL reference","controlName":"IPv6 setup -GPRS","value":"0-0:25.3.0.255","timestamp":"2025-11-01T09:45:20.687939","status":"success"},{"key":"LTE Communication Setup.IPv6 setup -GPRS.Address config mode","classId":{"$numberInt":"48"},"obis":"0.0.25.7.0.255","obisFormatted":"0-0:25.7.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Address config mode","controlName":"IPv6 setup -GPRS","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:21.311072","status":"success"},{"key":"LTE Communication Setup.IPv6 setup -GPRS.Unicast IPv6 addresses","classId":{"$numberInt":"48"},"obis":"0.0.25.7.0.255","obisFormatted":"0-0:25.7.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Unicast IPv6 addresses","controlName":"IPv6 setup -GPRS","value":{},"timestamp":"2025-11-01T09:45:21.904951","status":"success"},{"key":"LTE Communication Setup.IPv6 setup -GPRS.Multicast IPv6 addresses","classId":{"$numberInt":"48"},"obis":"0.0.25.7.0.255","obisFormatted":"0-0:25.7.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Multicast IPv6 addresses","controlName":"IPv6 setup -GPRS","value":{},"timestamp":"2025-11-01T09:45:22.511911","status":"success"},{"key":"LTE Communication Setup.IPv6 setup -GPRS.Gateway IPv6 addresses","classId":{"$numberInt":"48"},"obis":"0.0.25.7.0.255","obisFormatted":"0-0:25.7.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Gateway IPv6 addresses","controlName":"IPv6 setup -GPRS","value":{},"timestamp":"2025-11-01T09:45:23.123186","status":"success"},{"key":"LTE Communication Setup.IPv6 setup -GPRS.Primary DNS address","classId":{"$numberInt":"48"},"obis":"0.0.25.7.0.255","obisFormatted":"0-0:25.7.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Primary DNS address","controlName":"IPv6 setup -GPRS","value":"","timestamp":"2025-11-01T09:45:23.761180","status":"success"},{"key":"LTE Communication Setup.IPv6 setup -GPRS.Secondary DNS address","classId":{"$numberInt":"48"},"obis":"0.0.25.7.0.255","obisFormatted":"0-0:25.7.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Secondary DNS address","controlName":"IPv6 setup -GPRS","value":"","timestamp":"2025-11-01T09:45:24.357118","status":"success"},{"key":"LTE Communication Setup.IPv6 setup -GPRS.Traffic class","classId":{"$numberInt":"48"},"obis":"0.0.25.7.0.255","obisFormatted":"0-0:25.7.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Traffic class","controlName":"IPv6 setup -GPRS","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:24.964309","status":"success"},{"key":"LTE Communication Setup.IPv6 setup -GPRS.Neighbor discovery setup","classId":{"$numberInt":"48"},"obis":"0.0.25.7.0.255","obisFormatted":"0-0:25.7.0.255","attributeId":{"$numberInt":"10"},"attributeName":"Neighbor discovery setup","controlName":"IPv6 setup -GPRS","value":{},"timestamp":"2025-11-01T09:45:25.588149","status":"success"},{"key":"LTE Communication Setup.LTE Modem setup.APN","classId":{"$numberInt":"45"},"obis":"0.1.25.4.0.255","obisFormatted":"0-1:25.4.0.255","attributeId":{"$numberInt":"2"},"attributeName":"APN","controlName":"LTE Modem setup","value":"internet","timestamp":"2025-11-01T09:45:26.240681","status":"success"},{"key":"LTE Communication Setup.LTE Modem setup.PIN code","classId":{"$numberInt":"45"},"obis":"0.1.25.4.0.255","obisFormatted":"0-1:25.4.0.255","attributeId":{"$numberInt":"3"},"attributeName":"PIN code","controlName":"LTE Modem setup","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:26.859922","status":"success"},{"key":"LTE Communication Setup.LTE Modem setup.Quality of service","classId":{"$numberInt":"45"},"obis":"0.1.25.4.0.255","obisFormatted":"0-1:25.4.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Quality of service","controlName":"LTE Modem setup","value":{"0":[[{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],[{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]]},"timestamp":"2025-11-01T09:45:27.533063","status":"success"},{"key":"LTE Communication Setup.LTE Diagnostic.Operator","classId":{"$numberInt":"47"},"obis":"0.1.25.6.0.255","obisFormatted":"0-1:25.6.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Operator","controlName":"LTE Diagnostic","value":"","timestamp":"2025-11-01T09:45:28.164344","status":"success"},{"key":"LTE Communication Setup.LTE Diagnostic.Status","classId":{"$numberInt":"47"},"obis":"0.1.25.6.0.255","obisFormatted":"0-1:25.6.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Status","controlName":"LTE Diagnostic","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:28.756960","status":"success"},{"key":"LTE Communication Setup.LTE Diagnostic.Cs attachment","classId":{"$numberInt":"47"},"obis":"0.1.25.6.0.255","obisFormatted":"0-1:25.6.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Cs attachment","controlName":"LTE Diagnostic","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:29.397140","status":"success"},{"key":"LTE Communication Setup.LTE Diagnostic.Ps status","classId":{"$numberInt":"47"},"obis":"0.1.25.6.0.255","obisFormatted":"0-1:25.6.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Ps status","controlName":"LTE Diagnostic","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:30.013852","status":"success"},{"key":"LTE Communication Setup.LTE Diagnostic.Cell info","classId":{"$numberInt":"47"},"obis":"0.1.25.6.0.255","obisFormatted":"0-1:25.6.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Cell info","controlName":"LTE Diagnostic","value":{"0":[{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"99"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:45:30.645424","status":"success"},{"key":"LTE Communication Setup.LTE Diagnostic.Adjacent cells","classId":{"$numberInt":"47"},"obis":"0.1.25.6.0.255","obisFormatted":"0-1:25.6.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Adjacent cells","controlName":"LTE Diagnostic","value":{"0":[{"$numberInt":"999"},{"$numberInt":"99"}],"1":[{"$numberInt":"999"},{"$numberInt":"99"}],"2":[{"$numberInt":"999"},{"$numberInt":"99"}]},"timestamp":"2025-11-01T09:45:31.263641","status":"success"},{"key":"LTE Communication Setup.LTE Diagnostic.Capture time","classId":{"$numberInt":"47"},"obis":"0.1.25.6.0.255","obisFormatted":"0-1:25.6.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Capture time","controlName":"LTE Diagnostic","value":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","timestamp":"2025-11-01T09:45:31.921576","status":"success"},{"key":"LTE Communication Setup.LTE Monitoring.LTE network parameters","classId":{"$numberInt":"151"},"obis":"0.1.25.11.0.255","obisFormatted":"0-1:25.11.0.255","attributeId":{"$numberInt":"2"},"attributeName":"LTE network parameters","controlName":"LTE Monitoring","value":{"0":[{"$numberInt":"720"},{"$numberInt":"3240"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"-99"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:45:32.537766","status":"success"},{"key":"LTE Communication Setup.LTE Monitoring.LTE quality of service","classId":{"$numberInt":"151"},"obis":"0.1.25.11.0.255","obisFormatted":"0-1:25.11.0.255","attributeId":{"$numberInt":"3"},"attributeName":"LTE quality of service","controlName":"LTE Monitoring","value":{"0":[{"$numberInt":"0"},{"$numberInt":"-99"},{"$numberInt":"0"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:45:33.166562","status":"success"},{"key":"LTE Communication Setup.LTE connection rejection.LTE connection rejection","classId":{"$numberInt":"1"},"obis":"0.1.94.31.7.255","obisFormatted":"0-1:94.31.7.255","attributeId":{"$numberInt":"2"},"attributeName":"LTE connection rejection","controlName":"LTE connection rejection","value":{"0":[{"$numberInt":"8"},{"$numberInt":"222"},{"$numberInt":"3"},"2025-11-10 01 15:48:50 00,FFC4,00"]},"timestamp":"2025-11-01T09:45:33.884184","status":"success"},{"key":"LTE Communication Setup.GPS lattitude.GPS lattitude","classId":{"$numberInt":"3"},"obis":"0.1.94.31.9.255","obisFormatted":"0-1:94.31.9.255","attributeId":{"$numberInt":"2"},"attributeName":"GPS lattitude","controlName":"GPS lattitude","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:34.666725","status":"success"},{"key":"LTE Communication Setup.GPS longitude.GPS longitude","classId":{"$numberInt":"3"},"obis":"0.1.94.31.10.255","obisFormatted":"0-1:94.31.10.255","attributeId":{"$numberInt":"2"},"attributeName":"GPS longitude","controlName":"GPS longitude","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:35.392980","status":"success"}],"summary":{"total":{"$numberInt":"51"},"success":{"$numberInt":"51"},"failed":{"$numberInt":"0"}}},"Push setup":{"sheet_name":"Push setup","objects":[{"key":"Push setup.Single action scheduler.Executed script","classId":{"$numberInt":"22"},"obis":"0.0.15.0.4.255","obisFormatted":"0-0:15.0.4.255","attributeId":{"$numberInt":"2"},"attributeName":"Executed script","controlName":"Single action scheduler","value":{"0":["0-0:10.0.108.255",{"$numberInt":"1"}]},"timestamp":"2025-11-01T09:45:35.990646","status":"success"},{"key":"Push setup.Single action scheduler.Type","classId":{"$numberInt":"22"},"obis":"0.0.15.0.4.255","obisFormatted":"0-0:15.0.4.255","attributeId":{"$numberInt":"3"},"attributeName":"Type","controlName":"Single action scheduler","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:45:36.635298","status":"success"},{"key":"Push setup.Single action scheduler.Execution time","classId":{"$numberInt":"22"},"obis":"0.0.15.0.4.255","obisFormatted":"0-0:15.0.4.255","attributeId":{"$numberInt":"4"},"attributeName":"Execution time","controlName":"Single action scheduler","value":{},"timestamp":"2025-11-01T09:45:37.216928","status":"success"},{"key":"Push setup.Register monitor.Thresholds","classId":{"$numberInt":"21"},"obis":"0.0.16.1.0.255","obisFormatted":"0-0:16.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Thresholds","controlName":"Register monitor","value":{"0":[{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:45:37.826807","status":"success"},{"key":"Push setup.Register monitor.Monitored value","classId":{"$numberInt":"21"},"obis":"0.0.16.1.0.255","obisFormatted":"0-0:16.1.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Monitored value","controlName":"Register monitor","value":{"0":[{"$numberInt":"1"},"0-0:97.98.0.255",{"$numberInt":"2"}]},"timestamp":"2025-11-01T09:45:38.448294","status":"success"},{"key":"Push setup.Register monitor.Actions","classId":{"$numberInt":"21"},"obis":"0.0.16.1.0.255","obisFormatted":"0-0:16.1.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Actions","controlName":"Register monitor","value":{"0":[["",{"$numberInt":"0"}],["",{"$numberInt":"0"}]]},"timestamp":"2025-11-01T09:45:39.064960","status":"success"},{"key":"Push setup.Register monitor lastgasp.Thresholds","classId":{"$numberInt":"21"},"obis":"0.0.16.1.2.255","obisFormatted":"0-0:16.1.2.255","attributeId":{"$numberInt":"2"},"attributeName":"Thresholds","controlName":"Register monitor lastgasp","value":"ObjectUndefined","timestamp":"2025-11-01T09:45:39.666868","status":"success"},{"key":"Push setup.Register monitor lastgasp.Monitored value","classId":{"$numberInt":"21"},"obis":"0.0.16.1.2.255","obisFormatted":"0-0:16.1.2.255","attributeId":{"$numberInt":"3"},"attributeName":"Monitored value","controlName":"Register monitor lastgasp","value":"ObjectUndefined","timestamp":"2025-11-01T09:45:40.279264","status":"success"},{"key":"Push setup.Register monitor lastgasp.Actions","classId":{"$numberInt":"21"},"obis":"0.0.16.1.2.255","obisFormatted":"0-0:16.1.2.255","attributeId":{"$numberInt":"4"},"attributeName":"Actions","controlName":"Register monitor lastgasp","value":"ObjectUndefined","timestamp":"2025-11-01T09:45:40.907925","status":"success"},{"key":"Push setup.Push script table.Scripts","classId":{"$numberInt":"9"},"obis":"0.0.10.0.108.255","obisFormatted":"0-0:10.0.108.255","attributeId":{"$numberInt":"2"},"attributeName":"Scripts","controlName":"Push script table","value":{"0":[{"$numberInt":"1"},[[{"$numberInt":"2"},{"$numberInt":"40"},"0-0:25.9.0.255",{"$numberInt":"1"},{"$numberInt":"0"}]]],"1":[{"$numberInt":"2"},[[{"$numberInt":"2"},{"$numberInt":"40"},"0-1:25.9.0.255",{"$numberInt":"1"},{"$numberInt":"0"}]]]},"timestamp":"2025-11-01T09:45:41.575616","status":"success"},{"key":"Push setup.Phase Outage Test.Scripts","classId":{"$numberInt":"9"},"obis":"0.0.10.1.108.255","obisFormatted":"0-0:10.1.108.255","attributeId":{"$numberInt":"2"},"attributeName":"Scripts","controlName":"Phase Outage Test","value":{"0":[{"$numberInt":"1"},[[{"$numberInt":"1"},{"$numberInt":"1"},"0-0:97.98.0.255",{"$numberInt":"2"},{"$numberLong":"576460752303423488"}]]]},"timestamp":"2025-11-01T09:45:42.219363","status":"success"},{"key":"Push setup.Push Setup Scheduler.Push object list","classId":{"$numberInt":"40"},"obis":"0.0.25.9.0.255","obisFormatted":"0-0:25.9.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Push object list","controlName":"Push Setup Scheduler","value":{},"timestamp":"2025-11-01T09:45:42.810088","status":"success"},{"key":"Push setup.Push Setup Scheduler.Send destination and method","classId":{"$numberInt":"40"},"obis":"0.0.25.9.0.255","obisFormatted":"0-0:25.9.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Send destination and method","controlName":"Push Setup Scheduler","value":{"0":[{"$numberInt":"0"},"",{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:45:43.428853","status":"success"},{"key":"Push setup.Push Setup Scheduler.Communication window","classId":{"$numberInt":"40"},"obis":"0.0.25.9.0.255","obisFormatted":"0-0:25.9.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Communication window","controlName":"Push Setup Scheduler","value":{"0":["FFFF-FF-FF FF FF:FF:FF FF,8000,FF","FFFF-FF-FF FF 23:59:59 99,8000,FF"]},"timestamp":"2025-11-01T09:45:44.072194","status":"success"},{"key":"Push setup.Push Setup Scheduler.Randomisation start interval","classId":{"$numberInt":"40"},"obis":"0.0.25.9.0.255","obisFormatted":"0-0:25.9.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Randomisation start interval","controlName":"Push Setup Scheduler","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:44.684372","status":"success"},{"key":"Push setup.Push Setup Scheduler.Number of retries","classId":{"$numberInt":"40"},"obis":"0.0.25.9.0.255","obisFormatted":"0-0:25.9.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Number of retries","controlName":"Push Setup Scheduler","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:45.280648","status":"success"},{"key":"Push setup.Push Setup Scheduler.Repetition delay","classId":{"$numberInt":"40"},"obis":"0.0.25.9.0.255","obisFormatted":"0-0:25.9.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Repetition delay","controlName":"Push Setup Scheduler","value":"0000","timestamp":"2025-11-01T09:45:45.874634","status":"success"},{"key":"Push setup.Push Setup Alarm.Push object list","classId":{"$numberInt":"40"},"obis":"0.1.25.9.0.255","obisFormatted":"0-1:25.9.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Push object list","controlName":"Push Setup Alarm","value":{"0":[{"$numberInt":"1"},"0-0:96.1.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:97.98.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:45:46.559199","status":"success"},{"key":"Push setup.Push Setup Alarm.Send destination and method","classId":{"$numberInt":"40"},"obis":"0.1.25.9.0.255","obisFormatted":"0-1:25.9.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Send destination and method","controlName":"Push Setup Alarm","value":{"0":[{"$numberInt":"0"},"",{"$numberInt":"0"}]},"timestamp":"2025-11-01T09:45:47.125952","status":"success"},{"key":"Push setup.Push Setup Alarm.Communication window","classId":{"$numberInt":"40"},"obis":"0.1.25.9.0.255","obisFormatted":"0-1:25.9.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Communication window","controlName":"Push Setup Alarm","value":{"0":["FFFF-FF-FF FF FF:FF:FF FF,8000,FF","FFFF-FF-FF FF 23:59:59 99,8000,FF"]},"timestamp":"2025-11-01T09:45:47.777545","status":"success"},{"key":"Push setup.Push Setup Alarm.Randomisation start interval","classId":{"$numberInt":"40"},"obis":"0.1.25.9.0.255","obisFormatted":"0-1:25.9.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Randomisation start interval","controlName":"Push Setup Alarm","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:48.316967","status":"success"},{"key":"Push setup.Push Setup Alarm.Number of retries","classId":{"$numberInt":"40"},"obis":"0.1.25.9.0.255","obisFormatted":"0-1:25.9.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Number of retries","controlName":"Push Setup Alarm","value":{"$numberInt":"0"},"timestamp":"2025-11-01T09:45:48.906090","status":"success"},{"key":"Push setup.Push Setup Alarm.Repetition delay","classId":{"$numberInt":"40"},"obis":"0.1.25.9.0.255","obisFormatted":"0-1:25.9.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Repetition delay","controlName":"Push Setup Alarm","value":"0000","timestamp":"2025-11-01T09:45:49.506134","status":"success"}],"summary":{"total":{"$numberInt":"23"},"success":{"$numberInt":"23"},"failed":{"$numberInt":"0"}}},"Association related parameters":{"sheet_name":"Association related parameters","objects":[{"key":"Association related parameters.SAP Assignment.SAP assignment list","classId":{"$numberInt":"17"},"obis":"0.0.41.0.0.255","obisFormatted":"0-0:41.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"SAP assignment list","controlName":"SAP Assignment","value":{"0":[{"$numberInt":"1"},"KFM7000000000000"]},"timestamp":"2025-11-01T09:45:50.177667","status":"success"},{"key":"Association related parameters.Association LN.Object list","classId":{"$numberInt":"15"},"obis":"0.0.40.0.0.255","obisFormatted":"0-0:40.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Object list","controlName":"Association LN","value":{"0":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:42.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"1":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"2":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.1.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"3":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.1.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"4":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.4.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"5":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.7.9.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"6":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.7.21.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"7":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.10.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"8":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.10.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"9":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.10.6.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"10":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.10.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"11":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.10.9.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"12":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"13":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"14":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"15":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"16":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"17":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.20.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"18":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.21.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"19":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.13.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"20":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.14.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"21":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.15.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"22":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.15.11.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"23":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.15.12.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"24":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.15.13.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"25":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.15.14.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"26":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:97.97.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"27":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:97.98.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"28":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:97.98.10.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"29":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"30":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"-1"},{"$numberInt":"1"}]]]],"31":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"32":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"33":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"34":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.12.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"35":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.19.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"36":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.20.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"37":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:96.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"38":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:96.10.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"39":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:96.10.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"40":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:96.10.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"41":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:96.11.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"42":[{"$numberInt":"1"},{"$numberInt":"0"},"0-2:96.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"43":[{"$numberInt":"1"},{"$numberInt":"0"},"0-2:96.10.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"44":[{"$numberInt":"1"},{"$numberInt":"0"},"0-2:96.10.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"45":[{"$numberInt":"1"},{"$numberInt":"0"},"0-2:96.10.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"46":[{"$numberInt":"1"},{"$numberInt":"0"},"0-2:96.11.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"47":[{"$numberInt":"1"},{"$numberInt":"0"},"0-3:96.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"48":[{"$numberInt":"1"},{"$numberInt":"0"},"0-3:96.10.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"49":[{"$numberInt":"1"},{"$numberInt":"0"},"0-3:96.10.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"50":[{"$numberInt":"1"},{"$numberInt":"0"},"0-3:96.10.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"51":[{"$numberInt":"1"},{"$numberInt":"0"},"0-3:96.11.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"52":[{"$numberInt":"1"},{"$numberInt":"0"},"0-4:96.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"53":[{"$numberInt":"1"},{"$numberInt":"0"},"0-4:96.10.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"54":[{"$numberInt":"1"},{"$numberInt":"0"},"0-4:96.10.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"55":[{"$numberInt":"1"},{"$numberInt":"0"},"0-4:96.10.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"56":[{"$numberInt":"1"},{"$numberInt":"0"},"0-4:96.11.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"57":[{"$numberInt":"1"},{"$numberInt":"0"},"0-65:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"58":[{"$numberInt":"1"},{"$numberInt":"0"},"0-65:44.0.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"59":[{"$numberInt":"1"},{"$numberInt":"0"},"0-65:44.0.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"60":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:0.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"61":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:0.2.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"62":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:32.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"63":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:32.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"64":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:52.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"65":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:52.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"66":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:72.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"67":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:72.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"68":[{"$numberInt":"1"},{"$numberInt":"0"},"1-1:0.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"69":[{"$numberInt":"1"},{"$numberInt":"0"},"1-1:0.2.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"70":[{"$numberInt":"1"},{"$numberInt":"0"},"1-1:32.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"71":[{"$numberInt":"1"},{"$numberInt":"0"},"1-1:52.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"72":[{"$numberInt":"1"},{"$numberInt":"0"},"1-1:72.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"73":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:0.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"74":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:0.2.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"75":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:32.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"76":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:32.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"77":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:52.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"78":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:52.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"79":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:72.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"80":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:72.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"81":[{"$numberInt":"1"},{"$numberInt":"0"},"1-3:0.2.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"82":[{"$numberInt":"1"},{"$numberInt":"0"},"1-4:0.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"83":[{"$numberInt":"1"},{"$numberInt":"0"},"1-4:0.2.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"84":[{"$numberInt":"3"},{"$numberInt":"0"},"0-0:96.7.19.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"85":[{"$numberInt":"3"},{"$numberInt":"0"},"0-0:96.7.20.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"86":[{"$numberInt":"3"},{"$numberInt":"0"},"0-0:96.9.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"87":[{"$numberInt":"3"},{"$numberInt":"0"},"0-0:96.50.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"88":[{"$numberInt":"3"},{"$numberInt":"0"},"0-1:94.31.9.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"-1"},{"$numberInt":"1"}]]]],"89":[{"$numberInt":"3"},{"$numberInt":"0"},"0-1:94.31.10.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"90":[{"$numberInt":"3"},{"$numberInt":"0"},"0-1:128.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"91":[{"$numberInt":"3"},{"$numberInt":"0"},"0-1:128.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"92":[{"$numberInt":"3"},{"$numberInt":"0"},"0-2:128.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"93":[{"$numberInt":"3"},{"$numberInt":"0"},"0-2:128.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"94":[{"$numberInt":"3"},{"$numberInt":"0"},"0-3:128.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"95":[{"$numberInt":"3"},{"$numberInt":"0"},"0-3:128.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"96":[{"$numberInt":"3"},{"$numberInt":"0"},"0-4:128.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"97":[{"$numberInt":"3"},{"$numberInt":"0"},"0-4:128.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"98":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:0.9.11.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"99":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:1.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"100":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:1.8.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"101":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:1.8.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"102":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:1.8.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"103":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:2.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"104":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:2.8.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"105":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:2.8.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"106":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:2.8.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"107":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:3.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"108":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:4.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"109":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:5.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"110":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:6.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"111":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:7.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"112":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:8.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"113":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:9.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"114":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:10.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"115":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:12.31.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"116":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:12.35.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"117":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:12.43.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"118":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:12.44.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"119":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:16.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"120":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:17.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"121":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:18.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"122":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:19.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"123":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:20.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"124":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:21.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"125":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:21.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"126":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:22.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"127":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:22.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"128":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:23.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"129":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:23.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"130":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:24.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"131":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:24.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"132":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:25.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"133":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:25.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"134":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:26.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"135":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:26.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"136":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:27.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"137":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:27.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"138":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:28.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"139":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:28.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"140":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:31.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"141":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:31.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"142":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"143":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"144":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.33.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"145":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.34.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"146":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.37.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"147":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.38.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"148":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:37.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"149":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:37.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"150":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:38.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"151":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:38.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"152":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:39.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"153":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:39.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"154":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:40.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"155":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:40.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"156":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:41.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"157":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:41.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"158":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:42.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"159":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:42.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"160":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:43.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"161":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:43.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"162":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:44.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"163":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:44.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"164":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:45.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"165":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:45.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"166":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:46.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"167":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:46.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"168":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:47.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"169":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:47.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"170":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:48.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"171":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:48.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"172":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:51.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"173":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:51.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"174":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"175":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"176":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.33.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"177":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.34.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"178":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.37.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"179":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.38.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"180":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:57.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"181":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:57.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"182":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:58.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"183":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:58.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"184":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:59.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"185":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:59.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"186":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:60.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"187":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:60.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"188":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:61.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"189":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:61.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"190":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:62.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"191":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:62.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"192":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:63.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"193":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:63.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"194":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:64.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"195":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:64.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"196":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:65.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"197":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:65.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"198":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:66.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"199":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:66.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"200":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:67.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"201":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:67.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"202":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:68.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"203":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:68.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"204":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:71.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"205":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:71.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"206":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"207":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"208":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.33.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"209":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.34.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"210":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.37.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"211":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.38.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"212":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:77.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"213":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:77.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"214":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:78.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"215":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:78.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"216":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:79.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"217":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:79.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"218":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:80.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"219":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:80.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"220":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:90.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"221":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:124.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"222":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:124.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"223":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:125.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"224":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:125.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"225":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:126.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"226":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:126.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"227":[{"$numberInt":"3"},{"$numberInt":"0"},"1-1:12.31.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"228":[{"$numberInt":"3"},{"$numberInt":"0"},"1-1:12.43.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"229":[{"$numberInt":"3"},{"$numberInt":"0"},"1-2:12.31.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"230":[{"$numberInt":"3"},{"$numberInt":"0"},"1-2:12.35.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"231":[{"$numberInt":"3"},{"$numberInt":"0"},"1-2:12.43.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"232":[{"$numberInt":"3"},{"$numberInt":"0"},"1-2:12.44.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"233":[{"$numberInt":"4"},{"$numberInt":"0"},"0-1:24.2.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"234":[{"$numberInt":"4"},{"$numberInt":"0"},"0-1:24.2.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"235":[{"$numberInt":"4"},{"$numberInt":"0"},"0-1:24.2.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"236":[{"$numberInt":"4"},{"$numberInt":"0"},"0-2:24.2.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"237":[{"$numberInt":"4"},{"$numberInt":"0"},"0-2:24.2.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"238":[{"$numberInt":"4"},{"$numberInt":"0"},"0-2:24.2.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"239":[{"$numberInt":"4"},{"$numberInt":"0"},"0-3:24.2.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"240":[{"$numberInt":"4"},{"$numberInt":"0"},"0-3:24.2.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"241":[{"$numberInt":"4"},{"$numberInt":"0"},"0-3:24.2.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"242":[{"$numberInt":"4"},{"$numberInt":"0"},"0-4:24.2.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"243":[{"$numberInt":"4"},{"$numberInt":"0"},"0-4:24.2.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"244":[{"$numberInt":"4"},{"$numberInt":"0"},"0-4:24.2.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"245":[{"$numberInt":"5"},{"$numberInt":"0"},"0-1:129.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"246":[{"$numberInt":"5"},{"$numberInt":"0"},"0-1:129.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"247":[{"$numberInt":"5"},{"$numberInt":"0"},"0-2:129.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"248":[{"$numberInt":"5"},{"$numberInt":"0"},"0-2:129.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"249":[{"$numberInt":"5"},{"$numberInt":"0"},"0-3:129.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"250":[{"$numberInt":"5"},{"$numberInt":"0"},"0-3:129.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"251":[{"$numberInt":"5"},{"$numberInt":"0"},"0-4:129.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"252":[{"$numberInt":"5"},{"$numberInt":"0"},"0-4:129.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"253":[{"$numberInt":"6"},{"$numberInt":"0"},"0-0:14.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}]]]],"254":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:21.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"255":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:21.0.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"256":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:21.0.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"257":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:21.0.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"258":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.18.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"259":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.98.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"260":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.98.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"261":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.98.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"262":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.98.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"263":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.98.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"264":[{"$numberInt":"7"},{"$numberInt":"1"},"0-1:24.3.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"265":[{"$numberInt":"7"},{"$numberInt":"1"},"0-1:94.31.6.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"266":[{"$numberInt":"7"},{"$numberInt":"1"},"0-1:98.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"267":[{"$numberInt":"7"},{"$numberInt":"1"},"0-1:99.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"268":[{"$numberInt":"7"},{"$numberInt":"1"},"0-1:99.98.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"269":[{"$numberInt":"7"},{"$numberInt":"1"},"0-2:24.3.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"270":[{"$numberInt":"7"},{"$numberInt":"1"},"0-2:98.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"271":[{"$numberInt":"7"},{"$numberInt":"1"},"0-2:99.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"272":[{"$numberInt":"7"},{"$numberInt":"1"},"0-2:99.98.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"273":[{"$numberInt":"7"},{"$numberInt":"1"},"0-3:24.3.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"274":[{"$numberInt":"7"},{"$numberInt":"1"},"0-3:98.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"275":[{"$numberInt":"7"},{"$numberInt":"1"},"0-3:99.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"276":[{"$numberInt":"7"},{"$numberInt":"1"},"0-3:99.98.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"277":[{"$numberInt":"7"},{"$numberInt":"1"},"0-4:24.3.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"278":[{"$numberInt":"7"},{"$numberInt":"1"},"0-4:98.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"279":[{"$numberInt":"7"},{"$numberInt":"1"},"0-4:99.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"280":[{"$numberInt":"7"},{"$numberInt":"1"},"0-4:99.98.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"281":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:98.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"282":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:99.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"283":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:99.1.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"284":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:99.1.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"285":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:99.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"286":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:99.97.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"287":[{"$numberInt":"8"},{"$numberInt":"0"},"0-0:1.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}],[{"$numberInt":"5"},{"$numberInt":"0"}],[{"$numberInt":"6"},{"$numberInt":"0"}]]]],"288":[{"$numberInt":"9"},{"$numberInt":"0"},"0-0:10.0.100.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"289":[{"$numberInt":"9"},{"$numberInt":"0"},"0-0:10.0.108.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"290":[{"$numberInt":"9"},{"$numberInt":"0"},"0-0:10.1.108.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"291":[{"$numberInt":"9"},{"$numberInt":"0"},"0-1:94.31.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"292":[{"$numberInt":"11"},{"$numberInt":"0"},"0-0:11.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}]]]],"293":[{"$numberInt":"15"},{"$numberInt":"3"},"0-0:40.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"0"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"11"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"1"}],[{"$numberInt":"6"},{"$numberInt":"1"}]]]],"294":[{"$numberInt":"17"},{"$numberInt":"0"},"0-0:41.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"295":[{"$numberInt":"18"},{"$numberInt":"0"},"0-0:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"296":[{"$numberInt":"18"},{"$numberInt":"0"},"0-1:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"297":[{"$numberInt":"18"},{"$numberInt":"0"},"0-2:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"298":[{"$numberInt":"18"},{"$numberInt":"0"},"0-3:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"299":[{"$numberInt":"18"},{"$numberInt":"0"},"0-4:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"300":[{"$numberInt":"18"},{"$numberInt":"0"},"0-5:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"301":[{"$numberInt":"19"},{"$numberInt":"1"},"0-0:20.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[]]],"302":[{"$numberInt":"20"},{"$numberInt":"0"},"0-0:13.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"303":[{"$numberInt":"21"},{"$numberInt":"0"},"0-0:16.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"]],[]]],"304":[{"$numberInt":"22"},{"$numberInt":"0"},"0-0:15.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"]],[]]],"305":[{"$numberInt":"22"},{"$numberInt":"0"},"0-0:15.0.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"]],[]]],"306":[{"$numberInt":"22"},{"$numberInt":"0"},"0-0:15.1.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"]],[]]],"307":[{"$numberInt":"23"},{"$numberInt":"1"},"0-0:22.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[]]],"308":[{"$numberInt":"28"},{"$numberInt":"2"},"0-0:2.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"]],[]]],"309":[{"$numberInt":"29"},{"$numberInt":"2"},"0-0:2.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"310":[{"$numberInt":"40"},{"$numberInt":"0"},"0-0:25.9.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"311":[{"$numberInt":"40"},{"$numberInt":"0"},"0-1:25.9.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"312":[{"$numberInt":"41"},{"$numberInt":"0"},"0-0:25.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"]],[]]],"313":[{"$numberInt":"42"},{"$numberInt":"0"},"0-0:25.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}]]]],"314":[{"$numberInt":"44"},{"$numberInt":"0"},"0-0:25.3.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"]],[]]],"315":[{"$numberInt":"45"},{"$numberInt":"0"},"0-1:25.4.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"]],[]]],"316":[{"$numberInt":"47"},{"$numberInt":"2"},"0-1:25.6.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[]]],"317":[{"$numberInt":"48"},{"$numberInt":"0"},"0-0:25.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"318":[{"$numberInt":"64"},{"$numberInt":"1"},"0-0:43.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"1"}],[{"$numberInt":"6"},{"$numberInt":"1"}],[{"$numberInt":"7"},{"$numberInt":"1"}],[{"$numberInt":"8"},{"$numberInt":"1"}]]]],"319":[{"$numberInt":"72"},{"$numberInt":"1"},"0-1:24.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"11"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"12"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"13"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"14"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"0"}],[{"$numberInt":"6"},{"$numberInt":"0"}],[{"$numberInt":"7"},{"$numberInt":"1"}],[{"$numberInt":"8"},{"$numberInt":"1"}],[{"$numberInt":"-1"},{"$numberInt":"1"}],[{"$numberInt":"-2"},{"$numberInt":"1"}]]]],"320":[{"$numberInt":"72"},{"$numberInt":"1"},"0-2:24.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"11"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"12"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"13"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"14"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"0"}],[{"$numberInt":"6"},{"$numberInt":"0"}],[{"$numberInt":"7"},{"$numberInt":"1"}],[{"$numberInt":"8"},{"$numberInt":"1"}],[{"$numberInt":"-1"},{"$numberInt":"1"}],[{"$numberInt":"-2"},{"$numberInt":"1"}]]]],"321":[{"$numberInt":"72"},{"$numberInt":"1"},"0-3:24.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"11"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"12"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"13"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"14"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"0"}],[{"$numberInt":"6"},{"$numberInt":"0"}],[{"$numberInt":"7"},{"$numberInt":"1"}],[{"$numberInt":"8"},{"$numberInt":"1"}],[{"$numberInt":"-1"},{"$numberInt":"1"}],[{"$numberInt":"-2"},{"$numberInt":"1"}]]]],"322":[{"$numberInt":"72"},{"$numberInt":"1"},"0-4:24.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"11"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"12"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"13"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"14"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"0"}],[{"$numberInt":"6"},{"$numberInt":"0"}],[{"$numberInt":"7"},{"$numberInt":"1"}],[{"$numberInt":"8"},{"$numberInt":"1"}],[{"$numberInt":"-1"},{"$numberInt":"1"}],[{"$numberInt":"-2"},{"$numberInt":"1"}]]]],"323":[{"$numberInt":"77"},{"$numberInt":"0"},"0-1:24.9.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"324":[{"$numberInt":"77"},{"$numberInt":"0"},"0-2:24.9.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"325":[{"$numberInt":"77"},{"$numberInt":"0"},"0-3:24.9.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"326":[{"$numberInt":"77"},{"$numberInt":"0"},"0-4:24.9.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"327":[{"$numberInt":"151"},{"$numberInt":"1"},"0-1:25.11.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[]]]},"timestamp":"2025-11-01T09:46:56.448837","status":"success"},{"key":"Association related parameters.Association LN.Associated partners id","classId":{"$numberInt":"15"},"obis":"0.0.40.0.0.255","obisFormatted":"0-0:40.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Associated partners id","controlName":"Association LN","value":{"0":[{"$numberInt":"1"},{"$numberInt":"1"}]},"timestamp":"2025-11-01T09:46:57.081468","status":"success"},{"key":"Association related parameters.Association LN.Application context name","classId":{"$numberInt":"15"},"obis":"0.0.40.0.0.255","obisFormatted":"0-0:40.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Application context name","controlName":"Association LN","value":"60857405080103","timestamp":"2025-11-01T09:46:57.706869","status":"success"},{"key":"Association related parameters.Association LN.xDLMS context info","classId":{"$numberInt":"15"},"obis":"0.0.40.0.0.255","obisFormatted":"0-0:40.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"xDLMS context info","controlName":"Association LN","value":{"0":["011000000001101000011101",{"$numberInt":"1300"},{"$numberInt":"1300"},{"$numberInt":"6"},{"$numberInt":"0"},""]},"timestamp":"2025-11-01T09:46:58.303944","status":"success"},{"key":"Association related parameters.Association LN.Authentication mechanism name","classId":{"$numberInt":"15"},"obis":"0.0.40.0.0.255","obisFormatted":"0-0:40.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Authentication mechanism name","controlName":"Association LN","value":"60857405080205","timestamp":"2025-11-01T09:46:58.931736","status":"success"},{"key":"Association related parameters.Association LN.Secret","classId":{"$numberInt":"15"},"obis":"0.0.40.0.0.255","obisFormatted":"0-0:40.0.0.255","attributeId":{"$numberInt":"7"},"attributeName":"Secret","controlName":"Association LN","value":"ReadWriteDenied","timestamp":"2025-11-01T09:46:59.528824","status":"success"},{"key":"Association related parameters.Association LN.Association status","classId":{"$numberInt":"15"},"obis":"0.0.40.0.0.255","obisFormatted":"0-0:40.0.0.255","attributeId":{"$numberInt":"8"},"attributeName":"Association status","controlName":"Association LN","value":{"$numberInt":"2"},"timestamp":"2025-11-01T09:47:00.082529","status":"success"},{"key":"Association related parameters.Association LN.Security setup reference","classId":{"$numberInt":"15"},"obis":"0.0.40.0.0.255","obisFormatted":"0-0:40.0.0.255","attributeId":{"$numberInt":"9"},"attributeName":"Security setup reference","controlName":"Association LN","value":"0-0:43.0.0.255","timestamp":"2025-11-01T09:47:00.715296","status":"success"},{"key":"Association related parameters.Association LN.User list","classId":{"$numberInt":"15"},"obis":"0.0.40.0.0.255","obisFormatted":"0-0:40.0.0.255","attributeId":{"$numberInt":"10"},"attributeName":"User list","controlName":"Association LN","value":{},"timestamp":"2025-11-01T09:47:01.323321","status":"success"},{"key":"Association related parameters.Association LN.Current user","classId":{"$numberInt":"15"},"obis":"0.0.40.0.0.255","obisFormatted":"0-0:40.0.0.255","attributeId":{"$numberInt":"11"},"attributeName":"Current user","controlName":"Association LN","value":{"0":[{"$numberInt":"0"},""]},"timestamp":"2025-11-01T09:47:01.938367","status":"success"},{"key":"Association related parameters.Security Setup.Security policy","classId":{"$numberInt":"64"},"obis":"0.0.43.0.0.255","obisFormatted":"0-0:43.0.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Security policy","controlName":"Security Setup","value":{"$numberInt":"108"},"timestamp":"2025-11-01T09:47:02.531831","status":"success"},{"key":"Association related parameters.Security Setup.Security suite","classId":{"$numberInt":"64"},"obis":"0.0.43.0.0.255","obisFormatted":"0-0:43.0.0.255","attributeId":{"$numberInt":"3"},"attributeName":"Security suite","controlName":"Security Setup","value":{"$numberInt":"1"},"timestamp":"2025-11-01T09:47:03.129544","status":"success"},{"key":"Association related parameters.Security Setup.Client system title","classId":{"$numberInt":"64"},"obis":"0.0.43.0.0.255","obisFormatted":"0-0:43.0.0.255","attributeId":{"$numberInt":"4"},"attributeName":"Client system title","controlName":"Security Setup","value":"0000000000009800","timestamp":"2025-11-01T09:47:03.738205","status":"success"},{"key":"Association related parameters.Security Setup.Server system title","classId":{"$numberInt":"64"},"obis":"0.0.43.0.0.255","obisFormatted":"0-0:43.0.0.255","attributeId":{"$numberInt":"5"},"attributeName":"Server system title","controlName":"Security Setup","value":"4B464D0000000001","timestamp":"2025-11-01T09:47:04.356062","status":"success"},{"key":"Association related parameters.Security Setup.Certificates","classId":{"$numberInt":"64"},"obis":"0.0.43.0.0.255","obisFormatted":"0-0:43.0.0.255","attributeId":{"$numberInt":"6"},"attributeName":"Certificates","controlName":"Security Setup","value":{},"timestamp":"2025-11-01T09:47:04.964577","status":"success"},{"key":"Association related parameters.Invocation Counter for authenticated decryption (IC Rx).Invocation Counter for authenticated decryption (IC Rx)","classId":{"$numberInt":"1"},"obis":"0.0.43.1.0.255","obisFormatted":"0-0:43.1.0.255","attributeId":{"$numberInt":"2"},"attributeName":"Invocation Counter for authenticated decryption (IC Rx)","controlName":"Invocation Counter for authenticated decryption (IC Rx)","value":"ReadWriteDenied","timestamp":"2025-11-01T09:47:05.583603","status":"success"}],"summary":{"total":{"$numberInt":"17"},"success":{"$numberInt":"17"},"failed":{"$numberInt":"0"}}},"Meter Reset to Factory Setting":{"sheet_name":"Meter Reset to Factory Setting","objects":[{"key":"Meter Reset to Factory Setting.Tariffication.Scripts","classId":{"$numberInt":"9"},"obis":"0.1.94.31.5.255","obisFormatted":"0-1:94.31.5.255","attributeId":{"$numberInt":"2"},"attributeName":"Scripts","controlName":"Tariffication","value":{"0":[{"$numberInt":"1"},[[{"$numberInt":"2"},{"$numberInt":"9"},"0-1:94.31.5.255",{"$numberInt":"1"},"0001"]]]},"timestamp":"2025-11-01T09:47:06.209760","status":"success"}],"summary":{"total":{"$numberInt":"1"},"success":{"$numberInt":"1"},"failed":{"$numberInt":"0"}}}},"key_value_pairs":{"Clock.Clock.Time":"2025-11-10 01 15:38:38 00,FFC4,00","Clock.Clock.Time zone":{"$numberInt":"-60"},"Clock.Clock.Status":{"$numberInt":"0"},"Clock.Clock.Daylight savings begin":"FFFF-03-FE 07 02:00:00 00,8000,FF","Clock.Clock.Daylight savings end":"FFFF-10-FE 07 03:00:00 00,8000,FF","Clock.Clock.Daylight savings deviation":{"$numberInt":"60"},"Clock.Clock.Daylight savings enabled":{"$numberInt":"1"},"Clock.Clock.Clock base":{"$numberInt":"1"},"Clock.Clock time shift event limit: S.Value":{"$numberInt":"60"},"Basic Information.E-meter Logic device name.E-meter Logic device name":"KFM7000000000000","Basic Information.E-meter Serial Number.E-meter Serial Number":"20000000000000000002","Basic Information.E-meter equipment identifier.E-meter equipment identifier":"E009700000000000000000000000000000000000000000000000","Basic Information.Legal Firmware Identifier.Legal Firmware Identifier":"1000FF22","Basic Information.Legal Firmware Signature.Legal Firmware Signature":"7E74BA05F40E05B0F6E39B050A03B3A9C9DBB513AD836AE4775A34404D94338BF426DCB6B2F6902F22DFF21AD38EA1C1F8B816F34679F676C63C54FE710EA6F9","Basic Information.Application Firmware Identifier.Application Firmware Identifier":"11000231","Basic Information.Application Firmware Signature.Application Firmware Signature":"6EB9F9C1ED26595272519C22EF43D353A785586B00763548CB0D5A55C13185240874C5FB9B637A55E1525CBB513D15F201B899D0E6E3E0C6747D1F78B44D73AE","Basic Information.Module Active Firmware Identifier.Module Active Firmware Identifier":"L710TK_V10.09.01.14_00000122","Basic Information.Communication Module Firmware Signature.Communication Module Firmware Signature":"E08AB330","Basic Information.P1 port DSMR version.P1 port DSMR version":"P","Basic Information.M-Bus Driver Active Firmware Identifier.M-Bus Driver Active Firmware Identifier":"SW00.68","Basic Information.M-Bus Driver Active Firmware Signature.M-Bus Driver Active Firmware Signature":"447B0E81","Basic Information.Hardware Version.Hardware Version":"V1.2","Display.Scroll display mode.Buffer":{"0":[{"$numberInt":"40154"},{"$numberInt":"9"},{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"}]},"Display.Scroll display mode.Capture objects":{"0":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:16.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Display.Scroll display mode.Capture period":{"$numberInt":"1"},"Display.Scroll display mode.Sort method":{"$numberInt":"1"},"Display.Scroll display mode.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Display.Scroll display mode.Entries in use":{"$numberInt":"1"},"Display.Scroll display mode.Profile entries":{"$numberInt":"1"},"Display.Button display mode.Buffer":{"0":["P",{"$numberInt":"40154"},{"$numberInt":"9"},{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF",[["2025-11-10 01 15:38:35 00,FFC4,00",{"$numberInt":"71"}]],{"$numberInt":"0"}]},"Display.Button display mode.Capture objects":{"0":[{"$numberInt":"1"},"1-3:0.2.8.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:16.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"72"},"0-1:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"7":[{"$numberInt":"72"},"0-1:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"8":[{"$numberInt":"4"},"0-1:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"4"},"0-1:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"10":[{"$numberInt":"72"},"0-2:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"11":[{"$numberInt":"72"},"0-2:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"12":[{"$numberInt":"4"},"0-2:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"13":[{"$numberInt":"4"},"0-2:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"14":[{"$numberInt":"72"},"0-3:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"15":[{"$numberInt":"72"},"0-3:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"16":[{"$numberInt":"4"},"0-3:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"17":[{"$numberInt":"4"},"0-3:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"18":[{"$numberInt":"72"},"0-4:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"19":[{"$numberInt":"72"},"0-4:24.1.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"20":[{"$numberInt":"4"},"0-4:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"21":[{"$numberInt":"4"},"0-4:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"22":[{"$numberInt":"7"},"0-0:99.98.4.255",{"$numberInt":"2"},{"$numberInt":"0"}],"23":[{"$numberInt":"151"},"0-1:25.11.0.255",{"$numberInt":"3"},{"$numberInt":"2"}]},"Display.Button display mode.Capture period":{"$numberInt":"1"},"Display.Button display mode.Sort method":{"$numberInt":"1"},"Display.Button display mode.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Display.Button display mode.Entries in use":{"$numberInt":"1"},"Display.Button display mode.Profile entries":{"$numberInt":"1"},"P1 output.Consumer Message Text.Consumer Message Text":"","P1 output.P1 Connected.P1 Connected":{"$numberInt":"0"},"P1 output.P1 output.Buffer":{"0":["P","2025-11-10 01 15:39:12 00,FFC4,00","E009700000000000000000000000000000000000000000000000",{"$numberInt":"40154"},{"$numberInt":"9"},{"$numberInt":"14"},{"$numberInt":"0"},"0002",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"2"},{"$numberInt":"13"},[["2025-10-21 02 08:59:49 00,FF88,80",{"$numberInt":"52439"}],["2025-10-21 02 09:48:44 00,FF88,80",{"$numberInt":"2563"}],["2025-10-21 02 13:32:55 00,FF88,80",{"$numberInt":"3471"}],["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"47553"}],["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"26662"}],["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"47891"}],["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"600348"}],["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"3549"}],["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"9793"}],["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"58764"}]],{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"",{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},"","FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},"","FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},"","FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"},{"$numberInt":"0"},"","FFFF-FF-FF FF FF:FF:FF FF,8000,FF",{"$numberInt":"0"}]},"P1 output.P1 output.Capture objects":{"0":[{"$numberInt":"1"},"1-3:0.2.8.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"1"},"0-0:96.1.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"7":[{"$numberInt":"1"},"0-0:96.14.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"8":[{"$numberInt":"3"},"1-0:1.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"3"},"1-0:2.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"10":[{"$numberInt":"1"},"0-0:96.7.21.255",{"$numberInt":"2"},{"$numberInt":"0"}],"11":[{"$numberInt":"1"},"0-0:96.7.9.255",{"$numberInt":"2"},{"$numberInt":"0"}],"12":[{"$numberInt":"7"},"1-0:99.97.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"13":[{"$numberInt":"1"},"1-0:32.32.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"14":[{"$numberInt":"1"},"1-0:52.32.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"15":[{"$numberInt":"1"},"1-0:72.32.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"16":[{"$numberInt":"1"},"1-0:32.36.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"17":[{"$numberInt":"1"},"1-0:52.36.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"18":[{"$numberInt":"1"},"1-0:72.36.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"19":[{"$numberInt":"1"},"0-0:96.13.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"20":[{"$numberInt":"3"},"1-0:32.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"21":[{"$numberInt":"3"},"1-0:52.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"22":[{"$numberInt":"3"},"1-0:72.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"23":[{"$numberInt":"3"},"1-0:31.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"24":[{"$numberInt":"3"},"1-0:51.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"25":[{"$numberInt":"3"},"1-0:71.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"26":[{"$numberInt":"3"},"1-0:21.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"27":[{"$numberInt":"3"},"1-0:41.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"28":[{"$numberInt":"3"},"1-0:61.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"29":[{"$numberInt":"3"},"1-0:22.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"30":[{"$numberInt":"3"},"1-0:42.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"31":[{"$numberInt":"3"},"1-0:62.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"32":[{"$numberInt":"72"},"0-1:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"33":[{"$numberInt":"1"},"0-1:96.1.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"34":[{"$numberInt":"4"},"0-1:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"35":[{"$numberInt":"4"},"0-1:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"36":[{"$numberInt":"72"},"0-2:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"37":[{"$numberInt":"1"},"0-2:96.1.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"38":[{"$numberInt":"4"},"0-2:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"39":[{"$numberInt":"4"},"0-2:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"40":[{"$numberInt":"72"},"0-3:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"41":[{"$numberInt":"1"},"0-3:96.1.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"42":[{"$numberInt":"4"},"0-3:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"43":[{"$numberInt":"4"},"0-3:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"44":[{"$numberInt":"72"},"0-4:24.1.0.255",{"$numberInt":"9"},{"$numberInt":"0"}],"45":[{"$numberInt":"1"},"0-4:96.1.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"46":[{"$numberInt":"4"},"0-4:24.2.1.255",{"$numberInt":"5"},{"$numberInt":"0"}],"47":[{"$numberInt":"4"},"0-4:24.2.1.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"P1 output.P1 output.Capture period":{"$numberInt":"1"},"P1 output.P1 output.Sort method":{"$numberInt":"1"},"P1 output.P1 output.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"P1 output.P1 output.Entries in use":{"$numberInt":"1"},"P1 output.P1 output.Profile entries":{"$numberInt":"1"},"Errors and alarms.Error 1.Error 1":{"$numberLong":"1585267068834414592"},"Errors and alarms.Filter 1.Filter 1":{"$numberInt":"0"},"Errors and alarms.Alarm 1.Alarm 1":{"$numberInt":"0"},"Errors and alarms.Lastgasp.Lastgasp":"ObjectUndefined","Instantaneous Data.Instantaneous current (Sum of all phases).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous Current L1.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous Current L2.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous Current L3.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous Voltage L1.Value":{"$numberInt":"215"},"Instantaneous Data.Instantaneous Voltage L2.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous Voltage L3.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (+P) Total.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (-P) Total.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (abs(QI+QIV)-abs(QII+QIII)).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (+P{QI}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (-P{QII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (-P{QIII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (+P{QIV}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (+P) L1.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (-P) L1.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L1 (+P{QI}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L1 (-P{QII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L1 (-P{QIII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L1 (+P{QIV}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (+P) L2.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (-P) L2.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L2 (+P{QI}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L2 (-P{QII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L2 (-P{QIII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L2 (+P{QIV}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (+P) L3.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power (-P) L3.Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L3 (+P{QI}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L3 (-P{QII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L3 (-P{QIII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous active power L3 (+P{QIV}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power (+Q).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power (-Q).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power (+Q{QI}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power (+Q{QII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power (-Q{QIII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power (-Q{QIV}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantanous reactive power L1 (+Q).Value":{"$numberInt":"0"},"Instantaneous Data.Instantanous reactive power L1 (-Q).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L1 (+Q{QI}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L1 (+Q{QII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L1 (-Q{QIII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L1 (-Q{QIV}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantanous reactive power L2 (+Q).Value":{"$numberInt":"0"},"Instantaneous Data.Instantanous reactive power L2 (-Q).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L2 (+Q{QI}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L2 (+Q{QII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L2 (-Q{QIII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L2 (-Q{QIV}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantanous reactive power L3 (+Q).Value":{"$numberInt":"0"},"Instantaneous Data.Instantanous reactive power L3 (-Q).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L3 (+Q{QI}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L3 (+Q{QII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L3 (-Q{QIII}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous reactive power L3 (-Q{QIV}).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous apparent power (+S).Value":{"$numberInt":"0"},"Instantaneous Data.Instantaneous apparent power (-S).Value":{"$numberInt":"0"},"Instantaneous Data.Temperature.Value":{"$numberInt":"26"},"Instantaneous Data.Safety Factor event 22.Value":{"$numberInt":"110"},"Energy.Cumulative A Positive.Value":{"$numberInt":"40163"},"Energy.Cumulative A Positive rate1.Value":{"$numberInt":"40154"},"Energy.Cumulative A Positive rate2.Value":{"$numberInt":"9"},"Energy.Cumulative A Negative.Value":{"$numberInt":"14"},"Energy.Cumulative A Negative rate1.Value":{"$numberInt":"14"},"Energy.Cumulative A Negative rate2.Value":{"$numberInt":"0"},"Average Measurement Data.Average voltage L1.Value":{"$numberInt":"216"},"Average Measurement Data.Average current L1.Value":{"$numberInt":"0"},"Average Measurement Data.Average active power (+P) L1.Value":{"$numberInt":"0"},"Average Measurement Data.Average active power (-P) L1.Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power (+Q) L1.Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power (-Q) L1.Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L1 {+Q{QI}).Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L1 {+Q{QII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L1 {-Q{QIII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L1 {-Q{QIV}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L1 (+P{QI}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L1 (-P{QII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L1 (-P{QIII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L1 (+P{QIV}).Value":{"$numberInt":"0"},"Average Measurement Data.Average voltage L2.Value":{"$numberInt":"0"},"Average Measurement Data.Average current L2.Value":{"$numberInt":"0"},"Average Measurement Data.Average active power (+P) L2.Value":{"$numberInt":"0"},"Average Measurement Data.Average active power (-P) L2.Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power (+Q) L2.Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power (-Q) L2.Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L2 {+Q{QI}).Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L2 {+Q{QII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L2 {-Q{QIII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L2 {-Q{QIV}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L2 (+P{QI}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L2 (-P{QII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L2 (-P{QIII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L2 (+P{QIV}).Value":{"$numberInt":"0"},"Average Measurement Data.Average voltage L3.Value":{"$numberInt":"0"},"Average Measurement Data.Average current L3.Value":{"$numberInt":"0"},"Average Measurement Data.Average active power (+P) L3.Value":{"$numberInt":"0"},"Average Measurement Data.Average active power (-P) L3.Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power (+Q) L3.Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power (-Q) L3.Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L3 {+Q{QI}).Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L3 {+Q{QII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L3 {-Q{QIII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average reactive power L3 {-Q{QIV}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L3 (+P{QI}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L3 (-P{QII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L3 (-P{QIII}).Value":{"$numberInt":"0"},"Average Measurement Data.Average active power L3 (+P{QIV}).Value":{"$numberInt":"0"},"Tariff.Current Rate.Current Rate":"0002","Tariff.Tariff Table.Calendar name":"3032","Tariff.Tariff Table.Season profile active":{"0":["00","FFFF-01-01 FF 00:00:00 00,FFC4,00","01"]},"Tariff.Tariff Table.Week profile table active":{"0":["00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["01",{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["02",{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"0"},{"$numberInt":"0"}]},"Tariff.Tariff Table.Day profile table active":{"0":[{"$numberInt":"0"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]],"1":[{"$numberInt":"1"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}],["07:00:00:00","0-0:10.0.100.255",{"$numberInt":"2"}],["21:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]],"2":[{"$numberInt":"2"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}],["07:00:00:00","0-0:10.0.100.255",{"$numberInt":"2"}],["23:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]]},"Tariff.Tariff Table.Season profile passive":{"0":["00","FFFF-01-01 FF 00:00:00 00,FFC4,00","01"]},"Tariff.Tariff Table.Week profile table passive":{"0":["00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["01",{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"1"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["02",{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"2"},{"$numberInt":"0"},{"$numberInt":"0"}]},"Tariff.Tariff Table.Day profile table passive":{"0":[{"$numberInt":"0"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]],"1":[{"$numberInt":"1"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}],["07:00:00:00","0-0:10.0.100.255",{"$numberInt":"2"}],["21:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]],"2":[{"$numberInt":"2"},[["00:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}],["07:00:00:00","0-0:10.0.100.255",{"$numberInt":"2"}],["23:00:00:00","0-0:10.0.100.255",{"$numberInt":"1"}]]]},"Tariff.Tariff Table.Activate passive calendar time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","Tariff.Special Days.Special days table":{"0":[{"$numberInt":"0"},"FFFF-01-01-FF",{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"FFFF-04-27-FF",{"$numberInt":"0"}],"2":[{"$numberInt":"2"},"FFFF-12-25-FF",{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"FFFF-12-26-FF",{"$numberInt":"0"}],"4":[{"$numberInt":"4"},"2024-04-01-FF",{"$numberInt":"0"}],"5":[{"$numberInt":"5"},"2024-05-09-FF",{"$numberInt":"0"}],"6":[{"$numberInt":"6"},"2024-05-20-FF",{"$numberInt":"0"}],"7":[{"$numberInt":"7"},"2025-04-21-FF",{"$numberInt":"0"}],"8":[{"$numberInt":"8"},"2025-05-29-FF",{"$numberInt":"0"}],"9":[{"$numberInt":"9"},"2025-06-09-FF",{"$numberInt":"0"}],"10":[{"$numberInt":"10"},"2026-04-06-FF",{"$numberInt":"0"}],"11":[{"$numberInt":"11"},"2026-05-14-FF",{"$numberInt":"0"}],"12":[{"$numberInt":"12"},"2026-05-25-FF",{"$numberInt":"0"}],"13":[{"$numberInt":"13"},"2027-03-29-FF",{"$numberInt":"0"}],"14":[{"$numberInt":"14"},"2027-05-06-FF",{"$numberInt":"0"}],"15":[{"$numberInt":"15"},"2027-05-17-FF",{"$numberInt":"0"}],"16":[{"$numberInt":"16"},"2028-04-17-FF",{"$numberInt":"0"}],"17":[{"$numberInt":"17"},"2028-05-25-FF",{"$numberInt":"0"}],"18":[{"$numberInt":"18"},"2028-06-05-FF",{"$numberInt":"0"}],"19":[{"$numberInt":"19"},"2029-04-02-FF",{"$numberInt":"0"}],"20":[{"$numberInt":"20"},"2029-05-10-FF",{"$numberInt":"0"}],"21":[{"$numberInt":"21"},"2029-05-21-FF",{"$numberInt":"0"}],"22":[{"$numberInt":"22"},"2030-04-22-FF",{"$numberInt":"0"}],"23":[{"$numberInt":"23"},"2030-05-30-FF",{"$numberInt":"0"}],"24":[{"$numberInt":"24"},"2030-06-10-FF",{"$numberInt":"0"}],"25":[{"$numberInt":"25"},"2031-04-14-FF",{"$numberInt":"0"}],"26":[{"$numberInt":"26"},"2031-05-22-FF",{"$numberInt":"0"}],"27":[{"$numberInt":"27"},"2031-06-02-FF",{"$numberInt":"0"}],"28":[{"$numberInt":"28"},"2032-03-29-FF",{"$numberInt":"0"}],"29":[{"$numberInt":"29"},"2032-05-06-FF",{"$numberInt":"0"}]},"Tariff.Tariffication.Scripts":{"0":[{"$numberInt":"1"},[[{"$numberInt":"1"},{"$numberInt":"6"},"0-0:14.0.0.255",{"$numberInt":"4"},"0001"]]],"1":[{"$numberInt":"2"},[[{"$numberInt":"1"},{"$numberInt":"6"},"0-0:14.0.0.255",{"$numberInt":"4"},"0002"]]]},"Tariff.Register Activation.Register assignment":{"0":[{"$numberInt":"3"},"1-0:1.8.1.255"],"1":[{"$numberInt":"3"},"1-0:1.8.2.255"],"2":[{"$numberInt":"3"},"1-0:2.8.1.255"],"3":[{"$numberInt":"3"},"1-0:2.8.2.255"]},"Tariff.Register Activation.Mask list":{"0":["0001",[{"$numberInt":"1"},{"$numberInt":"3"}]],"1":["0002",[{"$numberInt":"2"},{"$numberInt":"4"}]]},"Tariff.Register Activation.Active mask":"0002","Month Billing.AMR Profile Status Code E meter - Monthly.AMR Profile Status Code E meter - Monthly":{"$numberInt":"165"},"Month Billing.E-meter Monthly Billing.Buffer":{"0":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"167"},{"$numberInt":"10273"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"164"},{"$numberInt":"20907"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"45"},{"$numberInt":"23095"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"3":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"172"},{"$numberInt":"23145"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"Month Billing.E-meter Monthly Billing.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.10.6.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Month Billing.E-meter Monthly Billing.Capture period":{"$numberInt":"0"},"Month Billing.E-meter Monthly Billing.Sort method":{"$numberInt":"1"},"Month Billing.E-meter Monthly Billing.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Month Billing.E-meter Monthly Billing.Entries in use":{"$numberInt":"4"},"Month Billing.E-meter Monthly Billing.Profile entries":{"$numberInt":"13"},"Month Billing.AMR Profile Status Code M-BUS - Monthly.AMR Profile Status Code M-BUS - Monthly":{"$numberInt":"6"},"Month Billing.Channel 1.Buffer":{},"Month Billing.Channel 1.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-1:96.10.7.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Month Billing.Channel 1.Capture period":{"$numberInt":"0"},"Month Billing.Channel 1.Sort method":{"$numberInt":"1"},"Month Billing.Channel 1.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Month Billing.Channel 1.Entries in use":{"$numberInt":"0"},"Month Billing.Channel 1.Profile entries":{"$numberInt":"13"},"Month Billing.Channel 2.Buffer":{},"Month Billing.Channel 2.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-2:96.10.7.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Month Billing.Channel 2.Capture period":{"$numberInt":"0"},"Month Billing.Channel 2.Sort method":{"$numberInt":"1"},"Month Billing.Channel 2.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Month Billing.Channel 2.Entries in use":{"$numberInt":"0"},"Month Billing.Channel 2.Profile entries":{"$numberInt":"13"},"Month Billing.Channel 3.Buffer":{},"Month Billing.Channel 3.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-3:96.10.7.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Month Billing.Channel 3.Capture period":{"$numberInt":"0"},"Month Billing.Channel 3.Sort method":{"$numberInt":"1"},"Month Billing.Channel 3.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Month Billing.Channel 3.Entries in use":{"$numberInt":"0"},"Month Billing.Channel 3.Profile entries":{"$numberInt":"13"},"Month Billing.Channel 4.Buffer":{},"Month Billing.Channel 4.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-4:96.10.7.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Month Billing.Channel 4.Capture period":{"$numberInt":"0"},"Month Billing.Channel 4.Sort method":{"$numberInt":"1"},"Month Billing.Channel 4.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Month Billing.Channel 4.Entries in use":{"$numberInt":"0"},"Month Billing.Channel 4.Profile entries":{"$numberInt":"13"},"Daily Billing.AMR Profile Status Code E meter - Daily.AMR Profile Status Code E meter - Daily":{"$numberInt":"165"},"Daily Billing.E-meter Daily Billing.Buffer":{"0":["2025-10-25 06 00:00:00 00,FF88,80",{"$numberInt":"175"},{"$numberInt":"9263"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"10273"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"164"},{"$numberInt":"20907"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"3":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"45"},{"$numberInt":"23095"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"4":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"172"},{"$numberInt":"23145"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"Daily Billing.E-meter Daily Billing.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.10.4.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:1.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:1.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:2.8.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:2.8.2.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Daily Billing.E-meter Daily Billing.Capture period":{"$numberInt":"86400"},"Daily Billing.E-meter Daily Billing.Sort method":{"$numberInt":"1"},"Daily Billing.E-meter Daily Billing.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Daily Billing.E-meter Daily Billing.Entries in use":{"$numberInt":"5"},"Daily Billing.E-meter Daily Billing.Profile entries":{"$numberInt":"40"},"Daily Billing.AMR Profile Status Code M-BUS - Daily.AMR Profile Status Code M-BUS - Daily":{"$numberInt":"6"},"Daily Billing.Channel 1.Buffer":{},"Daily Billing.Channel 1.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-1:96.10.5.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Daily Billing.Channel 1.Capture period":{"$numberInt":"86400"},"Daily Billing.Channel 1.Sort method":{"$numberInt":"1"},"Daily Billing.Channel 1.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Daily Billing.Channel 1.Entries in use":{"$numberInt":"0"},"Daily Billing.Channel 1.Profile entries":{"$numberInt":"40"},"Daily Billing.Channel 2.Buffer":{},"Daily Billing.Channel 2.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-2:96.10.5.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Daily Billing.Channel 2.Capture period":{"$numberInt":"86400"},"Daily Billing.Channel 2.Sort method":{"$numberInt":"1"},"Daily Billing.Channel 2.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Daily Billing.Channel 2.Entries in use":{"$numberInt":"0"},"Daily Billing.Channel 2.Profile entries":{"$numberInt":"40"},"Daily Billing.Channel 3.Buffer":{},"Daily Billing.Channel 3.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-3:96.10.5.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Daily Billing.Channel 3.Capture period":{"$numberInt":"86400"},"Daily Billing.Channel 3.Sort method":{"$numberInt":"1"},"Daily Billing.Channel 3.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Daily Billing.Channel 3.Entries in use":{"$numberInt":"0"},"Daily Billing.Channel 3.Profile entries":{"$numberInt":"40"},"Daily Billing.Channel 4.Buffer":{},"Daily Billing.Channel 4.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-4:96.10.5.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Daily Billing.Channel 4.Capture period":{"$numberInt":"86400"},"Daily Billing.Channel 4.Sort method":{"$numberInt":"1"},"Daily Billing.Channel 4.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Daily Billing.Channel 4.Entries in use":{"$numberInt":"0"},"Daily Billing.Channel 4.Profile entries":{"$numberInt":"40"},"Load Profile.AMR Profile Status Code E meter - 15min.AMR Profile Status Code E meter - 15min":{"$numberInt":"128"},"Load Profile.Energy Profile.Buffer":{"0":["2025-09-22 01 11:15:00 00,FF88,80",{"$numberInt":"13"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["2025-09-22 01 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["2025-09-22 01 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"3":["2025-09-22 01 12:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"4":["2025-09-22 01 12:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"5":["2025-09-22 01 12:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"6":["2025-09-22 01 15:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"7":["2025-09-22 01 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"8":["2025-09-22 01 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"9":["2025-09-22 01 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"10":["2025-09-22 01 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"11":["2025-09-22 01 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"12":["2025-09-22 01 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"13":["2025-09-22 01 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"14":["2025-09-22 01 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"15":["2025-09-22 01 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"16":["2025-09-22 01 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"17":["2025-09-22 01 18:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"18":["2025-09-22 01 18:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"19":["2025-09-22 01 18:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"20":["2025-09-22 01 21:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"21":["2025-09-22 01 22:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"22":["2025-09-22 01 22:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"23":["2025-09-22 01 23:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"24":["2025-09-22 01 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"25":["2025-09-22 01 23:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"26":["2025-09-23 02 00:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"27":["2025-09-23 02 00:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"28":["2025-09-23 02 01:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"29":["2025-09-23 02 02:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"30":["2025-09-23 02 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"31":["2025-09-23 02 02:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"32":["2025-09-23 02 03:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"33":["2025-09-23 02 03:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"34":["2025-09-23 02 04:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"35":["2025-09-23 02 04:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"36":["2025-09-23 02 04:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"37":["2025-09-23 02 04:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"38":["2025-09-23 02 05:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"39":["2025-09-23 02 05:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"40":["2025-09-23 02 06:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"41":["2025-09-23 02 06:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"42":["2025-09-23 02 07:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"43":["2025-09-23 02 07:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"44":["2025-09-23 02 08:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"45":["2025-09-23 02 08:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"46":["2025-09-23 02 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"47":["2025-09-23 02 09:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"48":["2025-09-23 02 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"49":["2025-09-23 02 09:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"50":["2025-09-23 02 10:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"51":["2025-09-23 02 10:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"52":["2025-09-23 02 11:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"53":["2025-09-24 03 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"54":["2025-09-24 03 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"55":["2025-09-24 03 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"56":["2025-09-24 03 10:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"57":["2025-09-24 03 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"58":["2025-09-24 03 10:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"59":["2025-09-24 03 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"60":["2025-09-24 03 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"61":["2025-09-24 03 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"62":["2025-09-24 03 11:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"63":["2025-09-24 03 12:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"64":["2025-09-24 03 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"65":["2025-09-24 03 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"66":["2025-09-24 03 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"67":["2025-09-24 03 14:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"68":["2025-09-24 03 15:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"69":["2025-09-24 03 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"70":["2025-09-24 03 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"71":["2025-09-24 03 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"72":["2025-09-24 03 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"73":["2025-09-24 03 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"74":["2025-09-24 03 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"75":["2025-09-24 03 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"76":["2025-09-24 03 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"77":["2025-09-24 03 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"78":["2025-09-24 03 18:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"79":["2025-09-24 03 19:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"80":["2025-09-24 03 19:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"81":["2025-09-24 03 19:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"82":["2025-09-24 03 19:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"83":["2025-09-24 03 20:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"84":["2025-09-24 03 20:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"85":["2025-09-24 03 20:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"86":["2025-09-25 04 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"87":["2025-09-25 04 09:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"88":["2025-09-25 04 09:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"89":["2025-09-25 04 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"90":["2025-09-25 04 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"91":["2025-09-25 04 10:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"92":["2025-09-25 04 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"93":["2025-09-25 04 11:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"94":["2025-09-25 04 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"95":["2025-09-25 04 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"96":["2025-09-25 04 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"97":["2025-09-25 04 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"98":["2025-09-25 04 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"99":["2025-09-25 04 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"100":["2025-09-25 04 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"101":["2025-09-25 04 13:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"102":["2025-09-25 04 13:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"103":["2025-09-25 04 13:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"104":["2025-09-25 04 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"105":["2025-09-25 04 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"106":["2025-09-25 04 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"107":["2025-09-25 04 14:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"108":["2025-09-25 04 15:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"109":["2025-09-25 04 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"110":["2025-09-25 04 23:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"111":["2025-09-25 04 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"112":["2025-09-26 05 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"113":["2025-09-26 05 02:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"114":["2025-09-26 05 02:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"115":["2025-09-26 05 05:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"116":["2025-09-26 05 05:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"117":["2025-09-26 05 05:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"118":["2025-09-26 05 05:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"119":["2025-09-26 05 08:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"120":["2025-09-26 05 08:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"121":["2025-09-27 06 10:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"122":["2025-09-27 06 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"123":["2025-09-27 06 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"124":["2025-09-27 06 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"125":["2025-09-27 06 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"126":["2025-09-27 06 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"127":["2025-09-27 06 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"128":["2025-09-27 06 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"129":["2025-09-27 06 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"130":["2025-09-27 06 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"131":["2025-09-27 06 13:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"132":["2025-09-27 06 13:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"133":["2025-09-27 06 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"134":["2025-09-27 06 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"135":["2025-09-27 06 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"136":["2025-09-27 06 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"137":["2025-09-27 06 15:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"138":["2025-09-27 06 15:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"139":["2025-09-27 06 18:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"140":["2025-09-27 06 18:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"141":["2025-09-27 06 18:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"142":["2025-09-27 06 19:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"143":["2025-09-27 06 19:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"144":["2025-09-27 06 19:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"145":["2025-09-27 06 20:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"146":["2025-09-27 06 21:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"147":["2025-09-27 06 21:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"148":["2025-09-27 06 21:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"149":["2025-09-27 06 22:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"150":["2025-09-27 06 22:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"151":["2025-09-27 06 22:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"152":["2025-09-27 06 22:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"153":["2025-09-27 06 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"154":["2025-09-27 06 23:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"155":["2025-09-28 07 00:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"156":["2025-09-28 07 00:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"157":["2025-09-28 07 01:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"158":["2025-09-28 07 01:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"159":["2025-09-28 07 01:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"160":["2025-09-28 07 02:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"161":["2025-09-28 07 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"162":["2025-09-28 07 03:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"163":["2025-09-28 07 03:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"164":["2025-09-28 07 04:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"165":["2025-09-28 07 04:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"166":["2025-09-28 07 04:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"167":["2025-09-28 07 05:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"168":["2025-09-28 07 05:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"169":["2025-09-28 07 06:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"170":["2025-09-28 07 06:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"171":["2025-09-28 07 07:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"172":["2025-09-28 07 07:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"173":["2025-09-28 07 07:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"174":["2025-09-28 07 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"175":["2025-09-28 07 09:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"176":["2025-09-28 07 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"177":["2025-09-28 07 10:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"178":["2025-09-28 07 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"179":["2025-09-28 07 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"180":["2025-09-28 07 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"181":["2025-09-28 07 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"182":["2025-09-28 07 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"183":["2025-09-28 07 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"184":["2025-09-28 07 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"185":["2025-09-28 07 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"186":["2025-09-28 07 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"187":["2025-09-28 07 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"188":["2025-09-28 07 13:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"189":["2025-09-28 07 13:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"190":["2025-09-28 07 15:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"191":["2025-09-28 07 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"192":["2025-09-28 07 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"193":["2025-09-28 07 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"194":["2025-09-28 07 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"195":["2025-09-28 07 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"196":["2025-09-28 07 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"197":["2025-09-28 07 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"198":["2025-09-28 07 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"199":["2025-09-28 07 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"200":["2025-09-28 07 17:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"201":["2025-09-28 07 18:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"202":["2025-09-28 07 18:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"}],"203":["2025-09-29 01 15:00:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"0"}],"204":["2025-09-29 01 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"}],"205":["2025-09-29 01 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"373"},{"$numberInt":"0"}],"206":["2025-09-29 01 16:15:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"1504"},{"$numberInt":"0"}],"207":["2025-09-30 02 17:00:00 00,FF88,81",{"$numberInt":"142"},{"$numberInt":"1504"},{"$numberInt":"0"}],"208":["2025-09-30 02 17:15:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"209":["2025-09-30 02 17:30:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"210":["2025-09-30 02 17:45:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"211":["2025-09-30 02 18:00:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"212":["2025-09-30 02 18:15:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"213":["2025-09-30 02 18:30:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"214":["2025-09-30 02 18:45:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"1504"},{"$numberInt":"0"}],"215":["2025-10-20 01 11:45:00 00,FF88,80",{"$numberInt":"46"},{"$numberInt":"1504"},{"$numberInt":"0"}],"216":["2025-10-20 01 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1504"},{"$numberInt":"0"}],"217":["2025-10-20 01 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1504"},{"$numberInt":"0"}],"218":["2025-10-20 01 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1504"},{"$numberInt":"0"}],"219":["2025-10-20 01 15:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"1504"},{"$numberInt":"0"}],"220":["2025-10-20 01 16:00:00 00,FF88,80",{"$numberInt":"13"},{"$numberInt":"2180"},{"$numberInt":"0"}],"221":["2025-10-20 01 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"3042"},{"$numberInt":"0"}],"222":["2025-10-20 01 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"3905"},{"$numberInt":"0"}],"223":["2025-10-20 01 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"4767"},{"$numberInt":"0"}],"224":["2025-10-20 01 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"5630"},{"$numberInt":"0"}],"225":["2025-10-20 01 17:30:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"6931"},{"$numberInt":"0"}],"226":["2025-10-20 01 17:45:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"7465"},{"$numberInt":"0"}],"227":["2025-10-20 01 18:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"8140"},{"$numberInt":"0"}],"228":["2025-10-21 02 09:00:00 00,FF88,80",{"$numberInt":"172"},{"$numberInt":"9263"},{"$numberInt":"0"}],"229":["2025-10-21 02 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"9263"},{"$numberInt":"0"}],"230":["2025-10-21 02 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"231":["2025-10-21 02 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"232":["2025-10-21 02 10:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"9263"},{"$numberInt":"0"}],"233":["2025-10-21 02 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"234":["2025-10-21 02 10:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"235":["2025-10-21 02 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"236":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"237":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"9263"},{"$numberInt":"0"}],"238":["2025-10-25 06 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"9263"},{"$numberInt":"0"}],"239":["2025-10-25 06 00:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9263"},{"$numberInt":"0"}],"240":["2025-10-25 06 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"9708"},{"$numberInt":"0"}],"241":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"10273"},{"$numberInt":"0"}],"242":["2025-10-21 02 12:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"10906"},{"$numberInt":"0"}],"243":["2025-10-21 02 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"10910"},{"$numberInt":"0"}],"244":["2025-10-21 02 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"10910"},{"$numberInt":"0"}],"245":["2025-10-21 02 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"10910"},{"$numberInt":"0"}],"246":["2025-10-21 02 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"10910"},{"$numberInt":"0"}],"247":["2025-10-21 02 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"10910"},{"$numberInt":"0"}],"248":["2025-10-21 02 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"11031"},{"$numberInt":"0"}],"249":["2025-11-01 06 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"12711"},{"$numberInt":"0"}],"250":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"13574"},{"$numberInt":"0"}],"251":["2025-11-01 06 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"14436"},{"$numberInt":"0"}],"252":["2025-12-01 01 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"15635"},{"$numberInt":"0"}],"253":["2025-12-01 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"16498"},{"$numberInt":"0"}],"254":["2025-12-01 01 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"17360"},{"$numberInt":"0"}],"255":["2025-12-01 01 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"18223"},{"$numberInt":"0"}],"256":["2026-01-01 04 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"19204"},{"$numberInt":"0"}],"257":["2026-02-01 07 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"20566"},{"$numberInt":"0"}],"258":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"20907"},{"$numberInt":"0"}],"259":["2026-03-01 07 00:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"21769"},{"$numberInt":"0"}],"260":["2026-03-01 07 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"22632"},{"$numberInt":"0"}],"261":["2026-03-01 07 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23095"},{"$numberInt":"0"}],"262":["2026-03-01 07 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23095"},{"$numberInt":"0"}],"263":["2026-03-01 07 01:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23095"},{"$numberInt":"0"}],"264":["2026-03-01 07 01:30:00 00,FFC4,00",{"$numberInt":"5"},{"$numberInt":"23095"},{"$numberInt":"0"}],"265":["2026-04-01 03 00:15:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"23095"},{"$numberInt":"0"}],"266":["2026-04-01 03 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"23095"},{"$numberInt":"0"}],"267":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"23095"},{"$numberInt":"0"}],"268":["2026-05-01 05 00:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"23095"},{"$numberInt":"0"}],"269":["2026-05-01 05 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"23095"},{"$numberInt":"0"}],"270":["2026-05-01 05 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"23095"},{"$numberInt":"0"}],"271":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"23145"},{"$numberInt":"0"}],"272":["2026-06-01 01 07:30:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"23462"},{"$numberInt":"0"}],"273":["2025-10-22 03 17:15:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"23462"},{"$numberInt":"0"}],"274":["2025-10-22 03 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"23471"},{"$numberInt":"0"}],"275":["2025-10-22 03 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"23471"},{"$numberInt":"0"}],"276":["2025-11-01 06 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"23471"},{"$numberInt":"0"}],"277":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"278":["2025-11-01 06 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"279":["2025-11-01 06 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"280":["2025-11-01 06 01:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"281":["2025-11-01 06 01:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"282":["2025-11-01 06 15:00:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"23471"},{"$numberInt":"0"}],"283":["2025-11-01 06 15:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23471"},{"$numberInt":"0"}],"284":["2025-11-01 06 15:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23562"},{"$numberInt":"0"}],"285":["2025-11-01 06 15:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"23646"},{"$numberInt":"0"}],"286":["2025-11-01 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"24744"},{"$numberInt":"0"}],"287":["2025-11-01 06 16:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"29722"},{"$numberInt":"0"}],"288":["2025-11-01 06 16:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"35653"},{"$numberInt":"6"}],"289":["2025-11-08 06 15:30:00 00,FFC4,00",{"$numberInt":"133"},{"$numberInt":"37829"},{"$numberInt":"14"}],"290":["2025-11-08 06 15:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"37829"},{"$numberInt":"14"}],"291":["2025-11-08 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"292":["2025-11-08 06 16:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"293":["2025-11-08 06 16:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"37829"},{"$numberInt":"14"}],"294":["2025-11-08 06 17:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"295":["2025-11-08 06 17:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"296":["2025-11-08 06 17:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"297":["2025-11-08 06 17:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"298":["2025-11-08 06 18:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"299":["2025-11-08 06 18:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"300":["2025-11-08 06 18:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"301":["2025-11-08 06 18:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"302":["2025-11-08 06 19:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"303":["2025-11-08 06 19:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"304":["2025-11-08 06 19:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"305":["2025-11-08 06 19:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"306":["2025-11-08 06 20:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"307":["2025-11-08 06 20:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"37829"},{"$numberInt":"14"}],"308":["2025-11-08 06 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37829"},{"$numberInt":"14"}],"309":["2025-11-08 06 20:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37883"},{"$numberInt":"14"}],"310":["2025-11-08 06 21:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37883"},{"$numberInt":"14"}],"311":["2025-11-08 06 21:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37883"},{"$numberInt":"14"}],"312":["2025-11-08 06 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"37883"},{"$numberInt":"14"}],"313":["2025-11-08 06 21:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"38495"},{"$numberInt":"14"}],"314":["2025-11-08 06 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"39356"},{"$numberInt":"14"}],"315":["2025-11-08 06 22:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"316":["2025-11-09 07 14:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"40163"},{"$numberInt":"14"}],"317":["2025-11-09 07 15:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"318":["2025-11-09 07 20:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"40163"},{"$numberInt":"14"}],"319":["2025-11-09 07 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"320":["2025-11-09 07 21:00:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"40163"},{"$numberInt":"14"}],"321":["2025-11-09 07 21:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"322":["2025-11-09 07 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"323":["2025-11-09 07 21:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"324":["2025-11-09 07 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"325":["2025-11-09 07 22:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"326":["2025-11-09 07 22:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"327":["2025-11-09 07 22:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"328":["2025-11-09 07 23:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}],"329":["2025-11-10 01 00:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"40163"},{"$numberInt":"14"}],"330":["2025-11-10 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"40163"},{"$numberInt":"14"}]},"Load Profile.Energy Profile.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.10.2.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:1.8.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:2.8.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Load Profile.Energy Profile.Capture period":{"$numberInt":"900"},"Load Profile.Energy Profile.Sort method":{"$numberInt":"1"},"Load Profile.Energy Profile.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Load Profile.Energy Profile.Entries in use":{"$numberInt":"331"},"Load Profile.Energy Profile.Profile entries":{"$numberInt":"960"},"Load Profile.LTE Monitoring-profile.Buffer":{},"Load Profile.LTE Monitoring-profile.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"151"},"0-1:25.11.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"151"},"0-1:25.11.0.255",{"$numberInt":"3"},{"$numberInt":"0"}],"3":[{"$numberInt":"47"},"0-1:25.6.0.255",{"$numberInt":"6"},{"$numberInt":"0"}],"4":[{"$numberInt":"47"},"0-1:25.6.0.255",{"$numberInt":"7"},{"$numberInt":"0"}],"5":[{"$numberInt":"1"},"0-1:94.31.7.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Load Profile.LTE Monitoring-profile.Capture period":{"$numberInt":"14400"},"Load Profile.LTE Monitoring-profile.Sort method":{"$numberInt":"1"},"Load Profile.LTE Monitoring-profile.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Load Profile.LTE Monitoring-profile.Entries in use":{"$numberInt":"0"},"Load Profile.LTE Monitoring-profile.Profile entries":{"$numberInt":"960"},"Load Profile.AMR Profile Status Code M-BUS - Hourly.AMR Profile Status Code M-BUS - Hourly":{"$numberInt":"6"},"Load Profile.Channel 1.Buffer":{},"Load Profile.Channel 1.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-1:96.10.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-1:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Load Profile.Channel 1.Capture period":{"$numberInt":"3600"},"Load Profile.Channel 1.Sort method":{"$numberInt":"1"},"Load Profile.Channel 1.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Load Profile.Channel 1.Entries in use":{"$numberInt":"0"},"Load Profile.Channel 1.Profile entries":{"$numberInt":"240"},"Load Profile.Channel 2.Buffer":{},"Load Profile.Channel 2.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-2:96.10.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-2:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Load Profile.Channel 2.Capture period":{"$numberInt":"3600"},"Load Profile.Channel 2.Sort method":{"$numberInt":"1"},"Load Profile.Channel 2.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Load Profile.Channel 2.Entries in use":{"$numberInt":"0"},"Load Profile.Channel 2.Profile entries":{"$numberInt":"240"},"Load Profile.Channel 3.Buffer":{},"Load Profile.Channel 3.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-3:96.10.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-3:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Load Profile.Channel 3.Capture period":{"$numberInt":"3600"},"Load Profile.Channel 3.Sort method":{"$numberInt":"1"},"Load Profile.Channel 3.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Load Profile.Channel 3.Entries in use":{"$numberInt":"0"},"Load Profile.Channel 3.Profile entries":{"$numberInt":"240"},"Load Profile.Channel 4.Buffer":{},"Load Profile.Channel 4.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-4:96.10.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"4"},"0-4:24.2.3.255",{"$numberInt":"5"},{"$numberInt":"0"}]},"Load Profile.Channel 4.Capture period":{"$numberInt":"3600"},"Load Profile.Channel 4.Sort method":{"$numberInt":"1"},"Load Profile.Channel 4.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Load Profile.Channel 4.Entries in use":{"$numberInt":"0"},"Load Profile.Channel 4.Profile entries":{"$numberInt":"240"},"Definable Load Profile.Definable Load Profile-72.Buffer":{"0":["2025-10-20 01 17:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"1":["2025-10-20 01 17:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"2":["2025-10-20 01 17:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"3":["2025-10-20 01 17:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"4":["2025-10-20 01 18:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"5":["2025-10-20 01 18:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"6":["2025-10-20 01 18:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"7":["2025-10-21 02 09:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"8":["2025-10-21 02 09:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"9":["2025-10-21 02 09:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"10":["2025-10-21 02 09:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"11":["2025-10-21 02 09:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"12":["2025-10-21 02 09:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"29"},{"$numberInt":"230"},{"$numberInt":"29"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"13":["2025-10-21 02 10:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"14":["2025-10-21 02 10:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"15":["2025-10-21 02 10:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"16":["2025-10-21 02 10:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"17":["2025-10-21 02 10:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"18":["2025-10-21 02 10:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"19":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"20":["2025-10-21 02 10:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"21":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"22":["2025-10-25 06 00:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"23":["2025-10-25 06 00:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"24":["2025-10-25 06 00:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"25":["2025-10-25 06 00:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"26":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"27":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"28":["2025-10-21 02 12:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"29":["2025-10-21 02 12:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"30":["2025-10-21 02 12:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"31":["2025-10-21 02 12:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"32":["2025-10-21 02 13:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"33":["2025-10-21 02 13:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"34":["2025-10-21 02 14:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"35":["2025-10-21 02 14:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"36":["2025-10-21 02 14:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"37":["2025-10-21 02 14:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"38":["2025-10-21 02 14:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"39":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"40":["2025-11-01 06 00:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"41":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"42":["2025-11-01 06 00:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"43":["2025-12-01 01 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"44":["2025-12-01 01 00:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"45":["2025-12-01 01 00:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"46":["2025-12-01 01 00:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"47":["2025-12-01 01 00:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"48":["2025-12-01 01 01:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"49":["2026-01-01 04 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"50":["2026-01-01 04 00:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"51":["2026-02-01 07 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"52":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"53":["2026-03-01 07 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"54":["2026-03-01 07 00:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"55":["2026-03-01 07 00:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"5"}],"56":["2026-03-01 07 00:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"57":["2026-03-01 07 00:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"58":["2026-03-01 07 01:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"59":["2026-03-01 07 01:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"60":["2026-03-01 07 01:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"61":["2026-03-01 07 01:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"62":["2026-04-01 03 00:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"63":["2026-04-01 03 00:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"64":["2026-04-01 03 00:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"65":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"66":["2026-05-01 05 00:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"67":["2026-05-01 05 00:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"68":["2026-05-01 05 00:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"69":["2026-05-01 05 13:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"70":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"4"},{"$numberInt":"5"}],"71":["2026-06-01 01 07:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"226"},{"$numberInt":"229"},{"$numberInt":"173"},{"$numberInt":"229"},{"$numberInt":"174"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"72":["2025-10-22 03 17:10:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"73":["2025-10-22 03 17:20:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"74":["2025-10-22 03 17:30:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"75":["2025-10-22 03 17:40:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"76":["2025-10-22 03 17:50:00 00,FF88,80",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"77":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"78":["2025-11-01 06 00:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"79":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"80":["2025-11-01 06 00:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"81":["2025-11-01 06 00:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"82":["2025-11-01 06 01:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"83":["2025-11-01 06 01:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"84":["2025-11-01 06 01:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"85":["2025-11-01 06 01:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"86":["2025-11-01 06 15:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"87":["2025-11-01 06 15:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"88":["2025-11-01 06 15:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"89":["2025-11-01 06 15:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"90":["2025-11-01 06 15:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"91":["2025-11-01 06 15:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"92":["2025-11-01 06 16:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"210"},{"$numberInt":"230"},{"$numberInt":"207"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"93":["2025-11-01 06 16:10:00 00,FFC4,00",{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"49"},{"$numberInt":"49"}],"94":["2025-11-01 06 16:20:00 00,FFC4,00",{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"49"},{"$numberInt":"49"},{"$numberInt":"49"}],"95":["2025-11-01 06 16:30:00 00,FFC4,00",{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"49"},{"$numberInt":"49"},{"$numberInt":"49"}],"96":["2025-11-01 06 16:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"97":["2025-11-08 06 15:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"98":["2025-11-08 06 15:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"42"},{"$numberInt":"0"},{"$numberInt":"42"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"99":["2025-11-08 06 15:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"100":["2025-11-08 06 16:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"101":["2025-11-08 06 16:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"102":["2025-11-08 06 16:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"103":["2025-11-08 06 16:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"110"},{"$numberInt":"230"},{"$numberInt":"110"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"104":["2025-11-08 06 16:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"105":["2025-11-08 06 17:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"106":["2025-11-08 06 17:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"107":["2025-11-08 06 17:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"108":["2025-11-08 06 17:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"204"},{"$numberInt":"0"},{"$numberInt":"205"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"109":["2025-11-08 06 17:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"110":["2025-11-08 06 17:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"111":["2025-11-08 06 18:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"112":["2025-11-08 06 18:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"113":["2025-11-08 06 18:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"114":["2025-11-08 06 18:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"115":["2025-11-08 06 18:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"116":["2025-11-08 06 18:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"117":["2025-11-08 06 19:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"118":["2025-11-08 06 19:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"119":["2025-11-08 06 19:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"120":["2025-11-08 06 19:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"121":["2025-11-08 06 19:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"122":["2025-11-08 06 19:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"123":["2025-11-08 06 20:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"124":["2025-11-08 06 20:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"125":["2025-11-08 06 20:20:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"177"},{"$numberInt":"230"},{"$numberInt":"177"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"126":["2025-11-08 06 20:30:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"127":["2025-11-08 06 20:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"228"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"128":["2025-11-08 06 20:50:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"232"},{"$numberInt":"234"},{"$numberInt":"232"},{"$numberInt":"234"},{"$numberInt":"232"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"129":["2025-11-08 06 21:00:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"130":["2025-11-08 06 21:10:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"131":["2025-11-08 06 21:20:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"132":["2025-11-08 06 21:30:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"133":["2025-11-08 06 21:40:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"134":["2025-11-08 06 21:50:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"135":["2025-11-08 06 22:00:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"136":["2025-11-08 06 22:10:00 00,FFC4,00",{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"4"},{"$numberInt":"4"}],"137":["2025-11-09 07 14:40:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"231"},{"$numberInt":"229"},{"$numberInt":"231"},{"$numberInt":"229"},{"$numberInt":"231"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"138":["2025-11-09 07 14:50:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"139":["2025-11-09 07 15:00:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"140":["2025-11-09 07 15:10:00 00,FFC4,00",{"$numberInt":"230"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"229"},{"$numberInt":"230"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"141":["2025-11-09 07 20:10:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"220"},{"$numberInt":"0"},{"$numberInt":"74"},{"$numberInt":"0"},{"$numberInt":"74"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"142":["2025-11-09 07 20:20:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"143":["2025-11-09 07 20:30:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"144":["2025-11-09 07 20:50:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"145":["2025-11-09 07 21:00:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"146":["2025-11-09 07 21:10:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"147":["2025-11-09 07 21:20:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"148":["2025-11-09 07 21:30:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"149":["2025-11-09 07 21:40:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"150":["2025-11-09 07 21:50:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"151":["2025-11-09 07 22:00:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"152":["2025-11-09 07 22:10:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"153":["2025-11-09 07 22:20:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"154":["2025-11-09 07 22:30:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"155":["2025-11-09 07 22:40:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"156":["2025-11-09 07 22:50:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"157":["2025-11-09 07 23:00:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"158":["2025-11-09 07 23:10:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"159":["2025-11-10 01 00:10:00 00,FFC4,00",{"$numberInt":"216"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"160":["2025-11-10 01 00:20:00 00,FFC4,00",{"$numberInt":"217"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"161":["2025-11-10 01 00:30:00 00,FFC4,00",{"$numberInt":"217"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"162":["2025-11-10 01 15:40:00 00,FFC4,00",{"$numberInt":"215"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"Definable Load Profile.Definable Load Profile-72.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"3"},"1-0:32.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:32.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:52.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:52.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:72.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"3"},"1-0:72.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"7":[{"$numberInt":"3"},"1-0:31.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"8":[{"$numberInt":"3"},"1-0:51.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"3"},"1-0:71.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Definable Load Profile.Definable Load Profile-72.Capture period":{"$numberInt":"600"},"Definable Load Profile.Definable Load Profile-72.Sort method":{"$numberInt":"1"},"Definable Load Profile.Definable Load Profile-72.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Definable Load Profile.Definable Load Profile-72.Entries in use":{"$numberInt":"163"},"Definable Load Profile.Definable Load Profile-72.Profile entries":{"$numberInt":"960"},"Quality Profile.AMR Profile Status Code E meter - Power Quality profile 1 status.AMR Profile Status Code E meter - Power Quality profile 1 status":{"$numberInt":"128"},"Quality Profile.15 Minutes Power Quality Profile.Buffer":{"0":["2025-09-22 01 11:15:00 00,FF88,80",{"$numberInt":"13"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"1":["2025-09-22 01 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"2":["2025-09-22 01 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"3":["2025-09-22 01 12:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"4":["2025-09-22 01 12:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"5":["2025-09-22 01 12:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"6":["2025-09-22 01 15:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"7":["2025-09-22 01 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"8":["2025-09-22 01 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"9":["2025-09-22 01 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"10":["2025-09-22 01 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"11":["2025-09-22 01 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"12":["2025-09-22 01 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"13":["2025-09-22 01 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"14":["2025-09-22 01 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"15":["2025-09-22 01 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"16":["2025-09-22 01 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"17":["2025-09-22 01 18:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"18":["2025-09-22 01 18:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"19":["2025-09-22 01 18:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"20":["2025-09-22 01 21:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"21":["2025-09-22 01 22:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"22":["2025-09-22 01 22:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"23":["2025-09-22 01 23:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"24":["2025-09-22 01 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"25":["2025-09-22 01 23:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"26":["2025-09-23 02 00:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"27":["2025-09-23 02 00:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"28":["2025-09-23 02 01:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"29":["2025-09-23 02 02:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"30":["2025-09-23 02 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"31":["2025-09-23 02 02:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"32":["2025-09-23 02 03:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"33":["2025-09-23 02 03:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"34":["2025-09-23 02 04:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"35":["2025-09-23 02 04:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"36":["2025-09-23 02 04:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"37":["2025-09-23 02 04:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"38":["2025-09-23 02 05:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"39":["2025-09-23 02 05:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"40":["2025-09-23 02 06:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"41":["2025-09-23 02 06:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"42":["2025-09-23 02 07:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"43":["2025-09-23 02 07:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"44":["2025-09-23 02 08:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"45":["2025-09-23 02 08:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"46":["2025-09-23 02 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"47":["2025-09-23 02 09:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"48":["2025-09-23 02 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"49":["2025-09-23 02 09:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"50":["2025-09-23 02 10:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"51":["2025-09-23 02 10:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"52":["2025-09-23 02 11:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"53":["2025-09-24 03 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"54":["2025-09-24 03 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"55":["2025-09-24 03 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"56":["2025-09-24 03 10:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"57":["2025-09-24 03 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"58":["2025-09-24 03 10:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"59":["2025-09-24 03 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"60":["2025-09-24 03 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"61":["2025-09-24 03 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"62":["2025-09-24 03 11:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"63":["2025-09-24 03 12:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"64":["2025-09-24 03 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"65":["2025-09-24 03 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"66":["2025-09-24 03 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"67":["2025-09-24 03 14:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"68":["2025-09-24 03 15:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"69":["2025-09-24 03 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"70":["2025-09-24 03 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"71":["2025-09-24 03 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"72":["2025-09-24 03 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"73":["2025-09-24 03 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"74":["2025-09-24 03 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"75":["2025-09-24 03 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"76":["2025-09-24 03 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"77":["2025-09-24 03 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"78":["2025-09-24 03 18:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"79":["2025-09-24 03 19:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"80":["2025-09-24 03 19:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"81":["2025-09-24 03 19:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"82":["2025-09-24 03 19:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"83":["2025-09-24 03 20:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"84":["2025-09-24 03 20:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"85":["2025-09-24 03 20:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"86":["2025-09-25 04 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"87":["2025-09-25 04 09:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"88":["2025-09-25 04 09:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"89":["2025-09-25 04 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"90":["2025-09-25 04 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"91":["2025-09-25 04 10:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"92":["2025-09-25 04 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"93":["2025-09-25 04 11:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"94":["2025-09-25 04 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"95":["2025-09-25 04 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"96":["2025-09-25 04 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"97":["2025-09-25 04 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"98":["2025-09-25 04 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"99":["2025-09-25 04 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"100":["2025-09-25 04 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"101":["2025-09-25 04 13:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"102":["2025-09-25 04 13:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"103":["2025-09-25 04 13:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"104":["2025-09-25 04 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"105":["2025-09-25 04 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"106":["2025-09-25 04 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"107":["2025-09-25 04 14:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"108":["2025-09-25 04 15:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"109":["2025-09-25 04 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"110":["2025-09-25 04 23:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"111":["2025-09-25 04 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"112":["2025-09-26 05 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"113":["2025-09-26 05 02:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"114":["2025-09-26 05 02:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"115":["2025-09-26 05 05:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"116":["2025-09-26 05 05:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"117":["2025-09-26 05 05:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"118":["2025-09-26 05 05:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"119":["2025-09-26 05 08:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"120":["2025-09-26 05 08:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"121":["2025-09-27 06 10:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"122":["2025-09-27 06 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"123":["2025-09-27 06 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"124":["2025-09-27 06 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"125":["2025-09-27 06 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"126":["2025-09-27 06 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"127":["2025-09-27 06 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"128":["2025-09-27 06 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"129":["2025-09-27 06 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"130":["2025-09-27 06 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"131":["2025-09-27 06 13:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"132":["2025-09-27 06 13:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"133":["2025-09-27 06 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"134":["2025-09-27 06 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"135":["2025-09-27 06 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"136":["2025-09-27 06 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"137":["2025-09-27 06 15:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"138":["2025-09-27 06 15:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"139":["2025-09-27 06 18:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"140":["2025-09-27 06 18:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"141":["2025-09-27 06 18:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"142":["2025-09-27 06 19:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"143":["2025-09-27 06 19:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"144":["2025-09-27 06 19:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"145":["2025-09-27 06 20:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"146":["2025-09-27 06 21:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"147":["2025-09-27 06 21:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"148":["2025-09-27 06 21:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"149":["2025-09-27 06 22:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"150":["2025-09-27 06 22:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"151":["2025-09-27 06 22:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"152":["2025-09-27 06 22:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"153":["2025-09-27 06 23:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"154":["2025-09-27 06 23:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"155":["2025-09-28 07 00:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"156":["2025-09-28 07 00:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"157":["2025-09-28 07 01:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"158":["2025-09-28 07 01:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"159":["2025-09-28 07 01:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"160":["2025-09-28 07 02:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"161":["2025-09-28 07 02:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"162":["2025-09-28 07 03:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"163":["2025-09-28 07 03:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"164":["2025-09-28 07 04:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"165":["2025-09-28 07 04:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"166":["2025-09-28 07 04:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"167":["2025-09-28 07 05:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"168":["2025-09-28 07 05:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"169":["2025-09-28 07 06:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"170":["2025-09-28 07 06:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"171":["2025-09-28 07 07:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"172":["2025-09-28 07 07:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"173":["2025-09-28 07 07:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"174":["2025-09-28 07 08:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"175":["2025-09-28 07 09:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"176":["2025-09-28 07 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"177":["2025-09-28 07 10:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"178":["2025-09-28 07 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"179":["2025-09-28 07 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"180":["2025-09-28 07 11:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"181":["2025-09-28 07 11:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"182":["2025-09-28 07 11:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"183":["2025-09-28 07 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"184":["2025-09-28 07 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"185":["2025-09-28 07 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"186":["2025-09-28 07 12:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"187":["2025-09-28 07 13:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"188":["2025-09-28 07 13:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"189":["2025-09-28 07 13:30:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"190":["2025-09-28 07 15:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"191":["2025-09-28 07 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"192":["2025-09-28 07 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"193":["2025-09-28 07 15:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"194":["2025-09-28 07 16:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"195":["2025-09-28 07 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"196":["2025-09-28 07 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"197":["2025-09-28 07 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"198":["2025-09-28 07 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"199":["2025-09-28 07 17:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"200":["2025-09-28 07 17:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"201":["2025-09-28 07 18:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"202":["2025-09-28 07 18:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"203":["2025-09-29 01 15:00:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"204":["2025-09-29 01 15:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"205":["2025-09-29 01 15:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"502"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"499"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"498"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"206":["2025-09-29 01 16:15:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"1083"},{"$numberInt":"112"},{"$numberInt":"1"},{"$numberInt":"0"},{"$numberInt":"1198"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1205"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"207":["2025-09-30 02 17:00:00 00,FF88,81",{"$numberInt":"142"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"208":["2025-09-30 02 17:15:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"209":["2025-09-30 02 17:30:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"210":["2025-09-30 02 17:45:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"211":["2025-09-30 02 18:00:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"212":["2025-09-30 02 18:15:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"213":["2025-09-30 02 18:30:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"214":["2025-09-30 02 18:45:00 00,FF88,81",{"$numberInt":"14"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"215":["2025-10-20 01 11:45:00 00,FF88,80",{"$numberInt":"46"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"216":["2025-10-20 01 12:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"217":["2025-10-20 01 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"218":["2025-10-20 01 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"219":["2025-10-20 01 15:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"220":["2025-10-20 01 16:00:00 00,FF88,80",{"$numberInt":"13"},{"$numberInt":"908"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"908"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"908"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"221":["2025-10-20 01 16:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"222":["2025-10-20 01 16:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"223":["2025-10-20 01 16:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"224":["2025-10-20 01 17:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"225":["2025-10-20 01 17:30:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"226":["2025-10-20 01 17:45:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"227":["2025-10-20 01 18:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"228":["2025-10-21 02 09:00:00 00,FF88,80",{"$numberInt":"172"},{"$numberInt":"1140"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1139"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1140"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"229":["2025-10-21 02 09:15:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"230":["2025-10-21 02 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"231":["2025-10-21 02 09:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"232":["2025-10-21 02 10:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"233":["2025-10-21 02 10:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"234":["2025-10-21 02 10:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"235":["2025-10-21 02 10:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"236":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"237":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"238":["2025-10-25 06 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"239":["2025-10-25 06 00:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"240":["2025-10-25 06 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"593"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"593"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"593"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"241":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"242":["2025-10-21 02 12:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1148"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"243":["2025-10-21 02 12:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"4"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"244":["2025-10-21 02 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"245":["2025-10-21 02 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"246":["2025-10-21 02 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"247":["2025-10-21 02 14:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"248":["2025-10-21 02 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"166"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"167"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"166"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"249":["2025-11-01 06 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1148"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"250":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"251":["2025-11-01 06 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"252":["2025-12-01 01 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"253":["2025-12-01 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"254":["2025-12-01 01 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"255":["2025-12-01 01 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"256":["2026-01-01 04 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"257":["2026-02-01 07 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"258":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1150"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"259":["2026-03-01 07 00:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"260":["2026-03-01 07 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1149"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1150"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"261":["2026-03-01 07 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"615"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"615"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"615"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"262":["2026-03-01 07 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"263":["2026-03-01 07 01:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"264":["2026-03-01 07 01:30:00 00,FFC4,00",{"$numberInt":"5"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"265":["2026-04-01 03 00:15:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"266":["2026-04-01 03 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"267":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"268":["2026-05-01 05 00:15:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"269":["2026-05-01 05 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"270":["2026-05-01 05 13:45:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"271":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"77"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"77"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"77"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"272":["2026-06-01 01 07:30:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"854"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"853"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"853"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"273":["2025-10-22 03 17:15:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"274":["2025-10-22 03 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"11"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"11"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"11"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"275":["2025-10-22 03 17:45:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"276":["2025-11-01 06 00:15:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"277":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"278":["2025-11-01 06 00:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"279":["2025-11-01 06 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"280":["2025-11-01 06 01:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"281":["2025-11-01 06 01:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"282":["2025-11-01 06 15:00:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"283":["2025-11-01 06 15:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"284":["2025-11-01 06 15:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"116"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"116"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"116"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"285":["2025-11-01 06 15:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"123"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"127"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"130"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"286":["2025-11-01 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1480"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1"},{"$numberInt":"1477"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1"},{"$numberInt":"1476"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"2"}],"287":["2025-11-01 06 16:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"6849"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"9"},{"$numberInt":"6857"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"8"},{"$numberInt":"6912"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"5"}],"288":["2025-11-01 06 16:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"7963"},{"$numberInt":"0"},{"$numberInt":"1"},{"$numberInt":"11"},{"$numberInt":"7983"},{"$numberInt":"0"},{"$numberInt":"1"},{"$numberInt":"9"},{"$numberInt":"7953"},{"$numberInt":"0"},{"$numberInt":"1"},{"$numberInt":"6"}],"289":["2025-11-08 06 15:30:00 00,FFC4,00",{"$numberInt":"133"},{"$numberInt":"3113"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"3116"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"3119"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"3"}],"290":["2025-11-08 06 15:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"291":["2025-11-08 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"292":["2025-11-08 06 16:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"293":["2025-11-08 06 16:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"294":["2025-11-08 06 17:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"295":["2025-11-08 06 17:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"296":["2025-11-08 06 17:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"297":["2025-11-08 06 17:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"298":["2025-11-08 06 18:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"299":["2025-11-08 06 18:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"300":["2025-11-08 06 18:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"301":["2025-11-08 06 18:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"302":["2025-11-08 06 19:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"303":["2025-11-08 06 19:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"304":["2025-11-08 06 19:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"305":["2025-11-08 06 19:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"306":["2025-11-08 06 20:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"307":["2025-11-08 06 20:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"308":["2025-11-08 06 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"309":["2025-11-08 06 20:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"77"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"68"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"72"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"310":["2025-11-08 06 21:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"311":["2025-11-08 06 21:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"312":["2025-11-08 06 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"313":["2025-11-08 06 21:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"816"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"816"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"817"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"314":["2025-11-08 06 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1147"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1147"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1148"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"315":["2025-11-08 06 22:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"1073"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1073"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"1073"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"316":["2025-11-09 07 14:45:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"317":["2025-11-09 07 15:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"318":["2025-11-09 07 20:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"319":["2025-11-09 07 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"320":["2025-11-09 07 21:00:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"321":["2025-11-09 07 21:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"322":["2025-11-09 07 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"323":["2025-11-09 07 21:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"324":["2025-11-09 07 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"325":["2025-11-09 07 22:15:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"326":["2025-11-09 07 22:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"327":["2025-11-09 07 22:45:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"328":["2025-11-09 07 23:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"329":["2025-11-10 01 00:15:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"330":["2025-11-10 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"Quality Profile.15 Minutes Power Quality Profile.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.10.8.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:21.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:22.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:23.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:24.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"3"},"1-0:41.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"7":[{"$numberInt":"3"},"1-0:42.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"8":[{"$numberInt":"3"},"1-0:43.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"3"},"1-0:44.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"10":[{"$numberInt":"3"},"1-0:61.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"11":[{"$numberInt":"3"},"1-0:62.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"12":[{"$numberInt":"3"},"1-0:63.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"13":[{"$numberInt":"3"},"1-0:64.5.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Quality Profile.15 Minutes Power Quality Profile.Capture period":{"$numberInt":"900"},"Quality Profile.15 Minutes Power Quality Profile.Sort method":{"$numberInt":"1"},"Quality Profile.15 Minutes Power Quality Profile.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Quality Profile.15 Minutes Power Quality Profile.Entries in use":{"$numberInt":"331"},"Quality Profile.15 Minutes Power Quality Profile.Profile entries":{"$numberInt":"960"},"Quality Profile.AMR Profile Status Code E meter - Power Quality profile 2 status.AMR Profile Status Code E meter - Power Quality profile 2 status":{"$numberInt":"0"},"Quality Profile.10 Minutes Power Quality Profile.Buffer":{"0":["2025-10-20 01 17:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"1":["2025-10-20 01 17:20:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"2":["2025-10-20 01 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"3":["2025-10-20 01 17:40:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"4":["2025-10-20 01 17:50:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"5":["2025-10-20 01 18:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"6":["2025-10-20 01 18:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"7":["2025-10-20 01 18:20:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"8":["2025-10-21 02 09:00:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"405"},{"$numberInt":"406"},{"$numberInt":"407"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"9":["2025-10-21 02 09:10:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"141"},{"$numberInt":"0"},{"$numberInt":"586"},{"$numberInt":"497"},{"$numberInt":"586"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"10":["2025-10-21 02 09:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"11":["2025-10-21 02 09:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"12":["2025-10-21 02 09:40:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"13":["2025-10-21 02 09:50:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"29"},{"$numberInt":"0"},{"$numberInt":"29"},{"$numberInt":"0"},{"$numberInt":"166"},{"$numberInt":"621"},{"$numberInt":"166"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"14":["2025-10-21 02 10:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"15":["2025-10-21 02 10:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"16":["2025-10-21 02 10:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"17":["2025-10-21 02 10:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"18":["2025-10-21 02 10:40:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"19":["2025-10-21 02 10:50:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"20":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"21":["2025-10-21 02 10:50:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"22":["2025-10-21 02 11:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"23":["2025-10-25 06 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"24":["2025-10-25 06 00:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"25":["2025-10-25 06 00:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"26":["2025-10-25 06 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"3"},{"$numberInt":"229"},{"$numberInt":"3"},{"$numberInt":"230"},{"$numberInt":"3"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"27":["2025-11-01 06 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"28":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"29":["2025-10-21 02 12:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"30":["2025-10-21 02 12:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"31":["2025-10-21 02 12:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"32":["2025-10-21 02 12:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"33":["2025-10-21 02 13:40:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"399"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"34":["2025-10-21 02 13:50:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"35":["2025-10-21 02 14:00:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"36":["2025-10-21 02 14:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"37":["2025-10-21 02 14:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"38":["2025-10-21 02 14:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"1"},{"$numberInt":"229"},{"$numberInt":"1"},{"$numberInt":"230"},{"$numberInt":"1"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"}],"39":["2025-10-21 02 14:40:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"40":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"41":["2025-11-01 06 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"42":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"43":["2025-11-01 06 00:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"44":["2025-12-01 01 00:10:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"400"},{"$numberInt":"400"},{"$numberInt":"400"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"45":["2025-12-01 01 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"46":["2025-12-01 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"47":["2025-12-01 01 00:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"48":["2025-12-01 01 00:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"49":["2025-12-01 01 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3449"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"50":["2026-01-01 04 00:10:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"401"},{"$numberInt":"402"},{"$numberInt":"401"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"51":["2026-01-01 04 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"52":["2026-02-01 07 00:10:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"53":["2026-03-01 07 00:00:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3445"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"}],"54":["2026-03-01 07 00:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"403"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"230"}],"55":["2026-03-01 07 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"56":["2026-03-01 07 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3450"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"5"},{"$numberInt":"230"}],"57":["2026-03-01 07 00:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"58":["2026-03-01 07 00:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"59":["2026-03-01 07 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"60":["2026-03-01 07 01:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"61":["2026-03-01 07 01:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"62":["2026-03-01 07 01:30:00 00,FFC4,00",{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"63":["2026-04-01 03 00:10:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"64":["2026-04-01 03 00:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"65":["2026-04-01 03 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"66":["2026-05-01 05 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"67":["2026-05-01 05 00:10:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"68":["2026-05-01 05 00:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"69":["2026-05-01 05 00:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"70":["2026-05-01 05 13:50:00 00,FF88,80",{"$numberInt":"136"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"71":["2026-06-01 01 00:00:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"3448"},{"$numberInt":"0"},{"$numberInt":"5"},{"$numberInt":"230"},{"$numberInt":"4"},{"$numberInt":"229"},{"$numberInt":"5"},{"$numberInt":"229"}],"72":["2026-06-01 01 07:30:00 00,FF88,80",{"$numberInt":"141"},{"$numberInt":"226"},{"$numberInt":"3"},{"$numberInt":"173"},{"$numberInt":"3"},{"$numberInt":"174"},{"$numberInt":"3"},{"$numberInt":"513"},{"$numberInt":"460"},{"$numberInt":"514"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"73":["2025-10-22 03 17:10:00 00,FF88,80",{"$numberInt":"44"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"405"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"74":["2025-10-22 03 17:20:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"75":["2025-10-22 03 17:30:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"403"},{"$numberInt":"403"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"76":["2025-10-22 03 17:40:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"77":["2025-10-22 03 17:50:00 00,FF88,80",{"$numberInt":"8"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"78":["2025-11-01 06 00:10:00 00,FFC4,00",{"$numberInt":"36"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"400"},{"$numberInt":"400"},{"$numberInt":"401"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"79":["2025-11-01 06 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"80":["2025-11-01 06 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"81":["2025-11-01 06 00:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"82":["2025-11-01 06 00:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"83":["2025-11-01 06 01:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"84":["2025-11-01 06 01:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"85":["2025-11-01 06 01:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"86":["2025-11-01 06 01:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"87":["2025-11-01 06 15:00:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"88":["2025-11-01 06 15:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"89":["2025-11-01 06 15:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"90":["2025-11-01 06 15:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"91":["2025-11-01 06 15:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"92":["2025-11-01 06 15:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"10"},{"$numberInt":"229"},{"$numberInt":"10"},{"$numberInt":"229"},{"$numberInt":"10"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"93":["2025-11-01 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"210"},{"$numberInt":"0"},{"$numberInt":"207"},{"$numberInt":"0"},{"$numberInt":"439"},{"$numberInt":"426"},{"$numberInt":"446"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"94":["2025-11-01 06 16:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"20"},{"$numberInt":"229"},{"$numberInt":"20"},{"$numberInt":"229"},{"$numberInt":"20"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"405"},{"$numberInt":"34432"},{"$numberInt":"0"},{"$numberInt":"49"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"229"}],"95":["2025-11-01 06 16:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"30"},{"$numberInt":"229"},{"$numberInt":"29"},{"$numberInt":"230"},{"$numberInt":"29"},{"$numberInt":"410"},{"$numberInt":"410"},{"$numberInt":"410"},{"$numberInt":"34406"},{"$numberInt":"0"},{"$numberInt":"49"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"229"}],"96":["2025-11-01 06 16:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"46"},{"$numberInt":"229"},{"$numberInt":"46"},{"$numberInt":"230"},{"$numberInt":"46"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"403"},{"$numberInt":"34445"},{"$numberInt":"0"},{"$numberInt":"49"},{"$numberInt":"229"},{"$numberInt":"49"},{"$numberInt":"230"},{"$numberInt":"49"},{"$numberInt":"230"}],"97":["2025-11-01 06 16:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"19"},{"$numberInt":"230"},{"$numberInt":"19"},{"$numberInt":"230"},{"$numberInt":"19"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"}],"98":["2025-11-08 06 15:30:00 00,FFC4,00",{"$numberInt":"133"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"402"},{"$numberInt":"404"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"99":["2025-11-08 06 15:40:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"42"},{"$numberInt":"0"},{"$numberInt":"42"},{"$numberInt":"0"},{"$numberInt":"139"},{"$numberInt":"607"},{"$numberInt":"139"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"100":["2025-11-08 06 15:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"101":["2025-11-08 06 16:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"102":["2025-11-08 06 16:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"103":["2025-11-08 06 16:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"104":["2025-11-08 06 16:40:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"110"},{"$numberInt":"0"},{"$numberInt":"110"},{"$numberInt":"0"},{"$numberInt":"651"},{"$numberInt":"532"},{"$numberInt":"651"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"105":["2025-11-08 06 16:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"106":["2025-11-08 06 17:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"399"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"107":["2025-11-08 06 17:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"399"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"108":["2025-11-08 06 17:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"109":["2025-11-08 06 17:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"204"},{"$numberInt":"0"},{"$numberInt":"205"},{"$numberInt":"0"},{"$numberInt":"452"},{"$numberInt":"428"},{"$numberInt":"450"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"110":["2025-11-08 06 17:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"111":["2025-11-08 06 17:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"112":["2025-11-08 06 18:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"113":["2025-11-08 06 18:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"114":["2025-11-08 06 18:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"115":["2025-11-08 06 18:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"116":["2025-11-08 06 18:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"117":["2025-11-08 06 18:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"118":["2025-11-08 06 19:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"119":["2025-11-08 06 19:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"120":["2025-11-08 06 19:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"121":["2025-11-08 06 19:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"122":["2025-11-08 06 19:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"123":["2025-11-08 06 19:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"124":["2025-11-08 06 20:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"125":["2025-11-08 06 20:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"126":["2025-11-08 06 20:20:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"177"},{"$numberInt":"0"},{"$numberInt":"177"},{"$numberInt":"0"},{"$numberInt":"509"},{"$numberInt":"457"},{"$numberInt":"509"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"127":["2025-11-08 06 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"128":["2025-11-08 06 20:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"228"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"397"},{"$numberInt":"397"},{"$numberInt":"397"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"129":["2025-11-08 06 20:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"232"},{"$numberInt":"0"},{"$numberInt":"232"},{"$numberInt":"0"},{"$numberInt":"232"},{"$numberInt":"0"},{"$numberInt":"402"},{"$numberInt":"403"},{"$numberInt":"403"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"}],"130":["2025-11-08 06 21:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"}],"131":["2025-11-08 06 21:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"}],"132":["2025-11-08 06 21:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"}],"133":["2025-11-08 06 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"0"},{"$numberInt":"234"}],"134":["2025-11-08 06 21:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"2"},{"$numberInt":"234"},{"$numberInt":"2"},{"$numberInt":"234"},{"$numberInt":"2"},{"$numberInt":"405"},{"$numberInt":"405"},{"$numberInt":"405"},{"$numberInt":"3446"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"}],"135":["2025-11-08 06 21:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"3445"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"}],"136":["2025-11-08 06 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"3444"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"}],"137":["2025-11-08 06 22:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"406"},{"$numberInt":"3443"},{"$numberInt":"0"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"},{"$numberInt":"4"},{"$numberInt":"234"}],"138":["2025-11-09 07 14:40:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"231"},{"$numberInt":"1"},{"$numberInt":"231"},{"$numberInt":"1"},{"$numberInt":"231"},{"$numberInt":"1"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"401"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"139":["2025-11-09 07 14:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"}],"140":["2025-11-09 07 15:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"141":["2025-11-09 07 15:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"398"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"230"},{"$numberInt":"0"},{"$numberInt":"229"},{"$numberInt":"0"},{"$numberInt":"230"}],"142":["2025-11-09 07 20:10:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"220"},{"$numberInt":"0"},{"$numberInt":"74"},{"$numberInt":"0"},{"$numberInt":"74"},{"$numberInt":"0"},{"$numberInt":"63"},{"$numberInt":"572"},{"$numberInt":"63"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"143":["2025-11-09 07 20:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"144":["2025-11-09 07 20:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"145":["2025-11-09 07 20:50:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"146":["2025-11-09 07 21:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"147":["2025-11-09 07 21:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"148":["2025-11-09 07 21:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"149":["2025-11-09 07 21:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"150":["2025-11-09 07 21:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"151":["2025-11-09 07 21:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"152":["2025-11-09 07 22:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"153":["2025-11-09 07 22:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"154":["2025-11-09 07 22:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"155":["2025-11-09 07 22:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"156":["2025-11-09 07 22:40:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"157":["2025-11-09 07 22:50:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"158":["2025-11-09 07 23:00:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"159":["2025-11-09 07 23:10:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"160":["2025-11-10 01 00:10:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"161":["2025-11-10 01 00:20:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"162":["2025-11-10 01 00:30:00 00,FFC4,00",{"$numberInt":"0"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"217"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],"163":["2025-11-10 01 15:40:00 00,FFC4,00",{"$numberInt":"128"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"216"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"215"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"Quality Profile.10 Minutes Power Quality Profile.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.10.9.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"3"},"1-0:32.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"3"},"1-0:31.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"4":[{"$numberInt":"3"},"1-0:52.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"5":[{"$numberInt":"3"},"1-0:51.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"6":[{"$numberInt":"3"},"1-0:72.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"7":[{"$numberInt":"3"},"1-0:71.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"8":[{"$numberInt":"3"},"1-0:124.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"9":[{"$numberInt":"3"},"1-0:125.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"10":[{"$numberInt":"3"},"1-0:126.25.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"11":[{"$numberInt":"3"},"1-0:1.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"12":[{"$numberInt":"3"},"1-0:10.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"13":[{"$numberInt":"3"},"1-0:31.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"14":[{"$numberInt":"3"},"1-0:32.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"15":[{"$numberInt":"3"},"1-0:51.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"16":[{"$numberInt":"3"},"1-0:52.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"17":[{"$numberInt":"3"},"1-0:71.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"18":[{"$numberInt":"3"},"1-0:72.7.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Quality Profile.10 Minutes Power Quality Profile.Capture period":{"$numberInt":"600"},"Quality Profile.10 Minutes Power Quality Profile.Sort method":{"$numberInt":"1"},"Quality Profile.10 Minutes Power Quality Profile.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Quality Profile.10 Minutes Power Quality Profile.Entries in use":{"$numberInt":"164"},"Quality Profile.10 Minutes Power Quality Profile.Profile entries":{"$numberInt":"1440"},"Power Quality.Time threshold for long power failure.Value":{"$numberInt":"180"},"Power Quality.Value threshold for voltage sag.Value":{"$numberInt":"207"},"Power Quality.Time threshold for voltage sag.Value":{"$numberInt":"30"},"Power Quality.Value threshold for short voltage sag.Value":{"$numberInt":"207"},"Power Quality.Time threshold for short voltage sag.Value":{"$numberInt":"1"},"Power Quality.Value threshold for PV voltage sag.Value":{"$numberInt":"212"},"Power Quality.Time threshold for PV voltage sag.Value":{"$numberInt":"2"},"Power Quality.Value threshold for voltage swell.Value":{"$numberInt":"253"},"Power Quality.Time threshold for voltage swell.Value":{"$numberInt":"30"},"Power Quality.Value threshold for PV voltage swell.Value":{"$numberInt":"248"},"Power Quality.Time threshold for PV voltage swell.Value":{"$numberInt":"2"},"Power Quality.Number of voltage sags in phase L1.L1 sag number":{"$numberInt":"0"},"Power Quality.Number of voltage sags in phase L2.L2 sag number":{"$numberInt":"0"},"Power Quality.Number of voltage sags in phase L3.L3 sag number":{"$numberInt":"0"},"Power Quality.Duration of last voltage sag in phase L1.L1 sag number":{"$numberInt":"0"},"Power Quality.Duration of last voltage sag in phase L2.L2 sag number":{"$numberInt":"0"},"Power Quality.Duration of last voltage sag in phase L3.L3 sag number":{"$numberInt":"0"},"Power Quality.Magnitude of last voltage sag in phase L1.L1 sag number":{"$numberInt":"0"},"Power Quality.Magnitude of last voltage sag in phase L2.L2 sag number":{"$numberInt":"0"},"Power Quality.Magnitude of last voltage sag in phase L3.L3 sag number":{"$numberInt":"0"},"Power Quality.L1 PV sag number.L1 sag number":{"$numberInt":"1"},"Power Quality.L2 PV sag number.L2 sag number":{"$numberInt":"3"},"Power Quality.L3 PV sag number.L3 sag number":{"$numberInt":"1"},"Power Quality.L1 Short sag number.L1 sag number":{"$numberInt":"7958"},"Power Quality.L2 Short sag number.L2 sag number":{"$numberInt":"0"},"Power Quality.L3 Short sag number.L3 sag number":{"$numberInt":"0"},"Power Quality.Number of voltage swells in phase L1.L1 swell number":{"$numberInt":"0"},"Power Quality.Number of voltage swells in phase L2.L2 swell number":{"$numberInt":"0"},"Power Quality.Number of voltage swells in phase L3.L3 swell number":{"$numberInt":"0"},"Power Quality.Duration of last voltage swell in phase L1.L1 sag number":{"$numberInt":"0"},"Power Quality.Duration of last voltage swell in phase L2.L2 sag number":{"$numberInt":"0"},"Power Quality.Duration of last voltage swell in phase L3.L3 sag number":{"$numberInt":"0"},"Power Quality.Magnitude of last voltage swell in phase L1.L1 sag number":{"$numberInt":"0"},"Power Quality.Magnitude of last voltage swell in phase L2.L2 sag number":{"$numberInt":"0"},"Power Quality.Magnitude of last voltage swell in phase L3.L3 sag number":{"$numberInt":"0"},"Power Quality.L1 PV swell number.L1 swell number":{"$numberInt":"0"},"Power Quality.L2 PV swell number.L2 swell number":{"$numberInt":"0"},"Power Quality.L3 PV swell number.L3 swell number":{"$numberInt":"0"},"Power Quality.Number of power failures in any phases.Number of power failures in any phases":{"$numberInt":"2"},"Power Quality.Number of long power failures in any phases.Number of long power failures in any phases":{"$numberInt":"13"},"Event Record.Standard event log code.Standard event log code":{"$numberInt":"1"},"Event Record.0-Standard.Buffer":{"0":["2026-03-31 02 23:58:24 00,FF88,80",{"$numberInt":"5"}],"1":["2026-04-01 03 00:00:04 00,FF88,80",{"$numberInt":"18"}],"2":["2026-04-01 03 00:00:04 00,FF88,80",{"$numberInt":"20"}],"3":["2026-04-01 03 00:17:59 00,FF88,80",{"$numberInt":"17"}],"4":["2026-04-01 03 00:35:01 00,FF88,80",{"$numberInt":"4"}],"5":["2026-04-30 04 23:59:25 00,FF88,80",{"$numberInt":"5"}],"6":["2026-05-01 05 00:01:04 00,FF88,80",{"$numberInt":"18"}],"7":["2026-05-01 05 00:01:04 00,FF88,80",{"$numberInt":"20"}],"8":["2026-05-01 05 00:19:16 00,FF88,80",{"$numberInt":"17"}],"9":["2026-05-01 05 00:31:29 00,FF88,80",{"$numberInt":"1"}],"10":["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"2"}],"11":["2026-05-01 05 13:57:22 00,FF88,80",{"$numberInt":"4"}],"12":["2026-05-31 07 23:59:00 00,FF88,80",{"$numberInt":"5"}],"13":["2026-06-01 01 00:05:30 00,FF88,80",{"$numberInt":"1"}],"14":["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"2"}],"15":["2026-06-01 01 07:31:28 00,FF88,80",{"$numberInt":"4"}],"16":["2025-10-22 03 17:00:28 00,FF88,80",{"$numberInt":"5"}],"17":["2025-10-22 03 17:02:22 00,FF88,80",{"$numberInt":"17"}],"18":["2025-10-22 03 17:03:07 00,FF88,80",{"$numberInt":"18"}],"19":["2025-10-22 03 17:03:07 00,FF88,80",{"$numberInt":"20"}],"20":["2025-10-22 03 17:03:08 00,FF88,80",{"$numberInt":"2"}],"21":["2025-10-22 03 17:05:36 00,FF88,80",{"$numberInt":"17"}],"22":["2025-10-22 03 17:05:54 00,FF88,80",{"$numberInt":"18"}],"23":["2025-10-22 03 17:05:54 00,FF88,80",{"$numberInt":"20"}],"24":["2025-10-22 03 17:05:55 00,FF88,80",{"$numberInt":"2"}],"25":["2025-10-22 03 17:20:45 00,FF88,80",{"$numberInt":"17"}],"26":["2025-10-22 03 17:22:40 00,FF88,80",{"$numberInt":"18"}],"27":["2025-10-22 03 17:22:40 00,FF88,80",{"$numberInt":"20"}],"28":["2025-10-22 03 17:22:41 00,FF88,80",{"$numberInt":"2"}],"29":["2025-10-22 03 17:50:38 00,FF88,80",{"$numberInt":"17"}],"30":["2025-10-22 03 17:53:45 00,FF88,80",{"$numberInt":"4"}],"31":["2025-10-31 05 23:58:25 00,FFC4,00",{"$numberInt":"5"}],"32":["2025-11-01 06 00:00:05 00,FFC4,00",{"$numberInt":"18"}],"33":["2025-11-01 06 00:00:05 00,FFC4,00",{"$numberInt":"20"}],"34":["2025-11-01 06 00:00:06 00,FFC4,00",{"$numberInt":"2"}],"35":["2025-11-01 06 01:36:49 00,FFC4,00",{"$numberInt":"1"}],"36":["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"2"}],"37":["2025-11-01 06 15:12:33 00,FFC4,00",{"$numberInt":"17"}],"38":["2025-11-01 06 15:17:14 00,FFC4,00",{"$numberInt":"18"}],"39":["2025-11-01 06 15:17:14 00,FFC4,00",{"$numberInt":"20"}],"40":["2025-11-01 06 15:38:52 00,FFC4,00",{"$numberInt":"17"}],"41":["2025-11-01 06 15:46:23 00,FFC4,00",{"$numberInt":"18"}],"42":["2025-11-01 06 15:46:23 00,FFC4,00",{"$numberInt":"20"}],"43":["2025-11-01 06 15:56:56 00,FFC4,00",{"$numberInt":"1"}],"44":["2025-11-01 06 15:57:55 00,FFC4,00",{"$numberInt":"2"}],"45":["2025-11-01 06 16:01:36 00,FFC4,00",{"$numberInt":"17"}],"46":["2025-11-01 06 16:01:51 00,FFC4,00",{"$numberInt":"18"}],"47":["2025-11-01 06 16:01:51 00,FFC4,00",{"$numberInt":"20"}],"48":["2025-11-01 06 16:07:14 00,FFC4,00",{"$numberInt":"17"}],"49":["2025-11-01 06 16:07:30 00,FFC4,00",{"$numberInt":"18"}],"50":["2025-11-01 06 16:07:30 00,FFC4,00",{"$numberInt":"20"}],"51":["2025-11-01 06 16:09:50 00,FFC4,00",{"$numberInt":"17"}],"52":["2025-11-01 06 16:10:15 00,FFC4,00",{"$numberInt":"18"}],"53":["2025-11-01 06 16:10:15 00,FFC4,00",{"$numberInt":"20"}],"54":["2025-11-01 06 16:11:56 00,FFC4,00",{"$numberInt":"17"}],"55":["2025-11-01 06 16:12:10 00,FFC4,00",{"$numberInt":"18"}],"56":["2025-11-01 06 16:12:10 00,FFC4,00",{"$numberInt":"20"}],"57":["2025-11-01 06 16:14:19 00,FFC4,00",{"$numberInt":"17"}],"58":["2025-11-01 06 16:14:33 00,FFC4,00",{"$numberInt":"18"}],"59":["2025-11-01 06 16:14:33 00,FFC4,00",{"$numberInt":"20"}],"60":["2025-11-01 06 16:19:44 00,FFC4,00",{"$numberInt":"17"}],"61":["2025-11-01 06 16:19:58 00,FFC4,00",{"$numberInt":"18"}],"62":["2025-11-01 06 16:19:58 00,FFC4,00",{"$numberInt":"20"}],"63":["2025-11-01 06 16:37:35 00,FFC4,00",{"$numberInt":"17"}],"64":["2025-11-01 06 16:37:48 00,FFC4,00",{"$numberInt":"18"}],"65":["2025-11-01 06 16:37:48 00,FFC4,00",{"$numberInt":"20"}],"66":["2025-11-01 06 16:42:08 00,FFC4,00",{"$numberInt":"17"}],"67":["2025-11-01 06 16:42:22 00,FFC4,00",{"$numberInt":"18"}],"68":["2025-11-01 06 16:42:22 00,FFC4,00",{"$numberInt":"20"}],"69":["2025-11-01 06 16:42:28 00,FFC4,00",{"$numberInt":"1"}],"70":["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"2"}],"71":["2025-11-08 06 15:31:48 00,FFC4,00",{"$numberInt":"1"}],"72":["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"2"}],"73":["2025-11-08 06 16:47:04 00,FFC4,00",{"$numberInt":"17"}],"74":["2025-11-08 06 16:59:12 00,FFC4,00",{"$numberInt":"18"}],"75":["2025-11-08 06 16:59:12 00,FFC4,00",{"$numberInt":"20"}],"76":["2025-11-08 06 16:59:13 00,FFC4,00",{"$numberInt":"2"}],"77":["2025-11-08 06 17:02:51 00,FFC4,00",{"$numberInt":"17"}],"78":["2025-11-08 06 17:03:05 00,FFC4,00",{"$numberInt":"18"}],"79":["2025-11-08 06 17:03:05 00,FFC4,00",{"$numberInt":"20"}],"80":["2025-11-08 06 17:03:06 00,FFC4,00",{"$numberInt":"2"}],"81":["2025-11-08 06 17:03:29 00,FFC4,00",{"$numberInt":"17"}],"82":["2025-11-08 06 17:03:44 00,FFC4,00",{"$numberInt":"18"}],"83":["2025-11-08 06 17:03:44 00,FFC4,00",{"$numberInt":"20"}],"84":["2025-11-08 06 17:03:45 00,FFC4,00",{"$numberInt":"2"}],"85":["2025-11-08 06 17:04:05 00,FFC4,00",{"$numberInt":"17"}],"86":["2025-11-08 06 17:04:20 00,FFC4,00",{"$numberInt":"18"}],"87":["2025-11-08 06 17:04:20 00,FFC4,00",{"$numberInt":"20"}],"88":["2025-11-08 06 17:04:21 00,FFC4,00",{"$numberInt":"2"}],"89":["2025-11-08 06 17:28:54 00,FFC4,00",{"$numberInt":"1"}],"90":["2025-11-08 06 17:29:49 00,FFC4,00",{"$numberInt":"17"}],"91":["2025-11-08 06 17:30:04 00,FFC4,00",{"$numberInt":"18"}],"92":["2025-11-08 06 17:30:04 00,FFC4,00",{"$numberInt":"20"}],"93":["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"2"}],"94":["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"1"}],"95":["2025-11-08 06 20:12:40 00,FFC4,00",{"$numberInt":"2"}],"96":["2025-11-08 06 21:37:53 00,FFC4,00",{"$numberInt":"10"}],"97":["2025-11-08 06 22:19:46 00,FFC4,00",{"$numberInt":"1"}],"98":["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"2"}],"99":["2025-11-09 07 15:14:43 00,FFC4,00",{"$numberInt":"1"}]},"Event Record.0-Standard.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.11.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Event Record.0-Standard.Capture period":{"$numberInt":"0"},"Event Record.0-Standard.Sort method":{"$numberInt":"1"},"Event Record.0-Standard.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Event Record.0-Standard.Entries in use":{"$numberInt":"100"},"Event Record.0-Standard.Profile entries":{"$numberInt":"100"},"Event Record.Fraud event log code.Fraud event log code":{"$numberInt":"47"},"Event Record.1-Fraud detect.Buffer":{"0":["2025-09-22 01 11:10:01 00,FF88,80",{"$numberInt":"40"}],"1":["2025-09-29 01 14:54:25 00,FF88,80",{"$numberInt":"47"}],"2":["2025-09-29 01 14:55:12 00,FF88,80",{"$numberInt":"46"}],"3":["2025-09-29 01 16:09:53 00,FF88,80",{"$numberInt":"46"}],"4":["2025-09-30 02 13:56:08 00,FF88,80",{"$numberInt":"44"}],"5":["2025-09-30 02 14:52:40 00,FF88,80",{"$numberInt":"45"}],"6":["2025-09-30 02 16:18:25 00,FF88,81",{"$numberInt":"44"}],"7":["2025-09-30 02 16:48:22 00,FF88,81",{"$numberInt":"45"}],"8":["2025-10-20 01 15:44:59 00,FF88,80",{"$numberInt":"41"}],"9":["2025-10-20 01 15:45:02 00,FF88,80",{"$numberInt":"40"}],"10":["2025-10-20 01 15:45:19 00,FF88,80",{"$numberInt":"41"}],"11":["2025-10-20 01 15:46:10 00,FF88,80",{"$numberInt":"40"}],"12":["2025-10-20 01 15:46:30 00,FF88,80",{"$numberInt":"41"}],"13":["2025-10-20 01 17:06:22 00,FF88,80",{"$numberInt":"47"}],"14":["2025-10-20 01 17:12:00 00,FF88,80",{"$numberInt":"47"}],"15":["2025-10-20 01 17:57:50 00,FF88,80",{"$numberInt":"47"}],"16":["2025-10-20 01 17:59:25 00,FF88,80",{"$numberInt":"47"}],"17":["2026-03-01 07 01:28:18 00,FFC4,00",{"$numberInt":"46"}],"18":["2026-06-01 01 00:06:33 00,FF88,80",{"$numberInt":"40"}],"19":["2025-10-22 03 17:11:25 00,FF88,80",{"$numberInt":"41"}],"20":["2025-11-01 06 20:00:05 00,FFC4,00",{"$numberInt":"40"}],"21":["2025-11-08 06 19:51:43 00,FFC4,00",{"$numberInt":"47"}],"22":["2025-11-08 06 20:15:18 00,FFC4,00",{"$numberInt":"47"}]},"Event Record.1-Fraud detect.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.11.1.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Event Record.1-Fraud detect.Capture period":{"$numberInt":"0"},"Event Record.1-Fraud detect.Sort method":{"$numberInt":"1"},"Event Record.1-Fraud detect.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Event Record.1-Fraud detect.Entries in use":{"$numberInt":"23"},"Event Record.1-Fraud detect.Profile entries":{"$numberInt":"30"},"Event Record.Event Counter Meter Readings E(73).E-meter Logic device name":{"$numberInt":"6"},"Event Record.Event Counter Meter Readings G(74).E-meter Logic device name":{"$numberInt":"0"},"Event Record.Event Counter Interval Data E(75).E-meter Logic device name":{"$numberInt":"331"},"Event Record.Event Counter Interval Data G(76).E-meter Logic device name":{"$numberInt":"0"},"Event Record.Event Counter Communication Sessions Log.E-meter Logic device name":{"$numberInt":"0"},"Event Record.Communication event log code.Communication event log code":{"$numberInt":"71"},"Event Record.2-Com log.Buffer":{"0":["2025-09-22 01 11:10:26 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"1":["2025-09-22 01 11:11:10 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"2":["2025-09-22 01 11:12:31 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"3":["2025-09-22 01 11:13:58 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"4":["2025-09-22 01 11:13:58 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"5":["2025-09-24 03 11:02:58 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"6":["2025-09-24 03 11:22:08 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"7":["2025-09-24 03 11:22:08 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"8":["2025-09-24 03 11:22:08 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"1"}],"9":["2025-09-24 03 11:22:08 00,FF88,80",{"$numberInt":"75"},{"$numberInt":"61"}],"10":["2025-09-24 03 13:42:53 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"11":["2025-09-24 03 13:56:47 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"12":["2025-09-24 03 13:56:47 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"13":["2025-09-24 03 13:56:47 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"1"}],"14":["2025-09-24 03 13:56:47 00,FF88,80",{"$numberInt":"75"},{"$numberInt":"67"}],"15":["2025-09-24 03 15:26:06 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"16":["2025-09-25 04 08:33:13 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"17":["2025-09-25 04 13:43:01 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"18":["2025-09-27 06 11:43:13 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"19":["2025-09-27 06 11:51:22 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"20":["2025-09-27 06 11:51:22 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"21":["2025-09-27 06 11:51:22 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"1"}],"22":["2025-09-27 06 11:51:22 00,FF88,80",{"$numberInt":"75"},{"$numberInt":"126"}],"23":["2025-09-28 07 12:01:00 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"24":["2025-09-28 07 12:38:25 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"25":["2025-09-28 07 12:38:25 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"26":["2025-09-28 07 12:38:25 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"1"}],"27":["2025-09-28 07 12:38:25 00,FF88,80",{"$numberInt":"75"},{"$numberInt":"184"}],"28":["2025-09-28 07 17:01:47 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"29":["2025-09-28 07 17:19:33 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"30":["2025-09-29 01 14:51:28 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"31":["2025-09-29 01 14:52:16 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"32":["2025-09-29 01 14:54:31 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"33":["2025-09-29 01 14:59:37 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"34":["2025-09-29 01 15:39:57 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"35":["2025-09-29 01 15:39:57 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"36":["2025-09-29 01 15:39:57 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"1"}],"37":["2025-09-29 01 15:39:57 00,FF88,80",{"$numberInt":"75"},{"$numberInt":"314"}],"38":["2025-09-29 01 16:15:59 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"39":["2025-09-30 02 17:12:31 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"40":["2025-09-30 02 17:22:25 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"41":["2025-09-30 02 17:23:09 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"42":["2025-09-30 02 17:42:58 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"43":["2025-09-30 02 17:49:06 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"44":["2025-09-30 02 17:49:26 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"45":["2025-09-30 02 18:58:56 00,FF88,81",{"$numberInt":"71"},{"$numberInt":"0"}],"46":["2025-10-20 01 15:36:15 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"47":["2025-10-20 01 15:41:33 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"48":["2025-10-20 01 15:45:22 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"49":["2025-10-20 01 18:20:19 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"50":["2025-10-20 01 18:25:44 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"51":["2025-10-20 01 18:25:44 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"52":["2025-10-21 02 08:59:59 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"53":["2025-10-21 02 09:06:22 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"54":["2025-10-21 02 09:48:16 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"55":["2025-10-21 02 09:49:44 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"56":["2025-10-21 02 10:50:11 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"57":["2025-10-21 02 11:06:27 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"58":["2025-10-21 02 10:45:35 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"59":["2025-10-21 02 10:45:43 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"60":["2025-10-21 02 10:45:58 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"61":["2025-10-21 02 10:46:05 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"62":["2025-10-21 02 10:46:14 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"63":["2025-10-21 02 10:46:38 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"64":["2025-10-21 02 10:46:54 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"65":["2025-10-21 02 10:47:11 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"66":["2025-10-21 02 10:49:11 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"67":["2025-10-21 02 10:49:11 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"68":["2025-10-21 02 10:49:17 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"69":["2025-10-21 02 10:49:47 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"70":["2025-10-21 02 11:00:54 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"71":["2025-10-25 06 00:00:12 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"72":["2025-11-01 06 00:00:02 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"73":["2025-11-01 06 00:00:02 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"74":["2025-11-01 06 00:00:03 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"75":["2025-11-01 06 00:00:15 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"76":["2025-10-21 02 12:31:27 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"77":["2025-10-21 02 12:31:27 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"78":["2025-10-21 02 12:31:27 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"2"}],"79":["2025-10-21 02 13:33:05 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"80":["2025-10-21 02 13:43:33 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"81":["2025-10-21 02 14:05:45 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"82":["2025-10-21 02 14:05:56 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"83":["2025-10-21 02 14:06:35 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"84":["2025-10-21 02 14:25:59 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"85":["2025-11-01 06 00:06:46 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"86":["2025-11-01 06 00:21:17 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"87":["2025-11-01 06 00:21:17 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"88":["2025-11-01 06 00:21:17 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"2"}],"89":["2025-11-01 06 00:21:17 00,FFC4,00",{"$numberInt":"75"},{"$numberInt":"249"}],"90":["2025-11-01 06 00:27:07 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"91":["2025-11-01 06 00:29:28 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"92":["2025-12-01 01 00:00:26 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"93":["2026-01-01 04 00:00:13 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"94":["2026-02-01 07 00:00:25 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"95":["2026-03-01 07 00:00:10 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"96":["2026-03-01 07 01:06:35 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"97":["2026-03-01 07 01:06:35 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"98":["2026-03-01 07 01:06:35 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"3"}],"99":["2026-03-01 07 01:06:35 00,FFC4,00",{"$numberInt":"75"},{"$numberInt":"424"}],"100":["2026-03-01 07 01:28:40 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"101":["2026-04-01 03 00:00:58 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"102":["2026-04-01 03 00:01:08 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"103":["2026-04-01 03 00:01:37 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"104":["2026-05-01 05 00:03:03 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"105":["2026-05-01 05 13:44:09 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"106":["2026-06-01 01 00:05:25 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"107":["2026-06-01 01 00:05:25 00,FF88,80",{"$numberInt":"72"},{"$numberInt":"0"}],"108":["2026-06-01 01 00:05:25 00,FF88,80",{"$numberInt":"73"},{"$numberInt":"4"}],"109":["2026-06-01 01 07:23:35 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"110":["2026-06-01 01 07:24:17 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"111":["2026-06-01 01 07:30:00 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"112":["2025-10-22 03 17:03:14 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"113":["2025-10-22 03 17:05:58 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"114":["2025-10-22 03 17:23:50 00,FF88,80",{"$numberInt":"71"},{"$numberInt":"0"}],"115":["2025-11-01 06 00:00:13 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"116":["2025-11-01 06 14:56:17 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"117":["2025-11-01 06 15:18:41 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"118":["2025-11-01 06 15:47:41 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"119":["2025-11-01 06 16:04:33 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"120":["2025-11-01 06 16:08:02 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"121":["2025-11-01 06 16:10:06 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"122":["2025-11-01 06 16:10:29 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"123":["2025-11-01 06 16:12:00 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"124":["2025-11-01 06 16:12:34 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"125":["2025-11-01 06 16:14:24 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"126":["2025-11-01 06 16:15:21 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"127":["2025-11-01 06 16:19:49 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"128":["2025-11-01 06 16:19:49 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"1"}],"129":["2025-11-01 06 16:20:33 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"130":["2025-11-01 06 16:37:39 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"131":["2025-11-01 06 16:37:39 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"1"}],"132":["2025-11-01 06 16:38:35 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"133":["2025-11-01 06 16:42:12 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"134":["2025-11-01 06 16:42:12 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"1"}],"135":["2025-11-08 06 15:28:28 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"136":["2025-11-08 06 15:31:30 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"137":["2025-11-08 06 15:31:43 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"138":["2025-11-08 06 15:32:02 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"139":["2025-11-08 06 15:32:22 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"140":["2025-11-08 06 15:32:34 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"141":["2025-11-08 06 15:35:18 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"142":["2025-11-08 06 16:29:39 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"143":["2025-11-08 06 16:31:04 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"144":["2025-11-08 06 16:57:37 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"145":["2025-11-08 06 16:59:16 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"146":["2025-11-08 06 17:02:56 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"147":["2025-11-08 06 17:03:09 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"148":["2025-11-08 06 17:03:35 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"149":["2025-11-08 06 17:03:50 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"150":["2025-11-08 06 17:04:10 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"151":["2025-11-08 06 17:04:23 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"152":["2025-11-08 06 17:29:55 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"153":["2025-11-08 06 17:29:55 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"154":["2025-11-08 06 17:30:11 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"155":["2025-11-08 06 17:43:47 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"156":["2025-11-08 06 17:48:22 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"157":["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"158":["2025-11-08 06 20:13:05 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"159":["2025-11-08 06 20:20:35 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"160":["2025-11-08 06 20:21:12 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"161":["2025-11-08 06 20:38:04 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"162":["2025-11-08 06 20:38:12 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"163":["2025-11-08 06 21:37:29 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"164":["2025-11-08 06 21:37:29 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"165":["2025-11-08 06 21:37:31 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"166":["2025-11-08 06 21:40:32 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"167":["2025-11-08 06 21:40:32 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"168":["2025-11-09 07 14:42:59 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"169":["2025-11-09 07 15:14:40 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"170":["2025-11-10 01 00:13:22 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"171":["2025-11-10 01 00:16:14 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"172":["2025-11-10 01 00:17:09 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"173":["2025-11-10 01 00:22:55 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"174":["2025-11-10 01 00:34:55 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"175":["2025-11-10 01 00:34:55 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"176":["2025-11-10 01 00:34:55 00,FFC4,00",{"$numberInt":"73"},{"$numberInt":"6"}],"177":["2025-11-10 01 00:34:55 00,FFC4,00",{"$numberInt":"75"},{"$numberInt":"330"}],"178":["2025-11-10 01 15:35:32 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"179":["2025-11-10 01 15:37:25 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}],"180":["2025-11-10 01 15:37:25 00,FFC4,00",{"$numberInt":"72"},{"$numberInt":"0"}],"181":["2025-11-10 01 15:38:35 00,FFC4,00",{"$numberInt":"71"},{"$numberInt":"0"}]},"Event Record.2-Com log.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.11.4.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"1"},"0-0:96.15.4.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Event Record.2-Com log.Capture period":{"$numberInt":"0"},"Event Record.2-Com log.Sort method":{"$numberInt":"1"},"Event Record.2-Com log.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Event Record.2-Com log.Entries in use":{"$numberInt":"182"},"Event Record.2-Com log.Profile entries":{"$numberInt":"2190"},"Event Record.Power quality event log code.Power quality event log code":{"$numberInt":"90"},"Event Record.3-Power quality.Buffer":{"0":["2025-09-30 02 16:18:25 00,FF88,80",{"$numberInt":"86"}],"1":["2025-09-30 02 16:19:48 00,FF88,81",{"$numberInt":"90"}],"2":["2025-09-30 02 16:20:37 00,FF88,81",{"$numberInt":"86"}],"3":["2025-09-30 02 16:45:27 00,FF88,81",{"$numberInt":"90"}],"4":["2025-09-30 02 16:48:22 00,FF88,81",{"$numberInt":"86"}],"5":["2025-09-30 02 16:48:22 00,FF88,81",{"$numberInt":"90"}],"6":["2025-09-30 02 16:48:22 00,FF88,81",{"$numberInt":"91"}],"7":["2025-09-30 02 16:48:22 00,FF88,81",{"$numberInt":"92"}],"8":["2025-10-20 01 12:38:43 00,FF88,80",{"$numberInt":"86"}],"9":["2025-10-20 01 12:38:43 00,FF88,80",{"$numberInt":"87"}],"10":["2025-10-20 01 12:38:43 00,FF88,80",{"$numberInt":"88"}],"11":["2025-10-20 01 15:30:04 00,FF88,80",{"$numberInt":"90"}],"12":["2025-10-20 01 15:30:04 00,FF88,80",{"$numberInt":"91"}],"13":["2025-10-20 01 15:30:04 00,FF88,80",{"$numberInt":"92"}],"14":["2025-10-20 01 18:25:49 00,FF88,80",{"$numberInt":"86"}],"15":["2025-10-20 01 18:25:49 00,FF88,80",{"$numberInt":"87"}],"16":["2025-10-20 01 18:25:49 00,FF88,80",{"$numberInt":"88"}],"17":["2025-10-21 02 08:59:49 00,FF88,80",{"$numberInt":"90"}],"18":["2025-10-21 02 08:59:49 00,FF88,80",{"$numberInt":"91"}],"19":["2025-10-21 02 08:59:49 00,FF88,80",{"$numberInt":"92"}],"20":["2025-10-21 02 09:06:00 00,FF88,80",{"$numberInt":"86"}],"21":["2025-10-21 02 09:06:00 00,FF88,80",{"$numberInt":"87"}],"22":["2025-10-21 02 09:06:00 00,FF88,80",{"$numberInt":"88"}],"23":["2025-10-21 02 09:06:13 00,FF88,80",{"$numberInt":"90"}],"24":["2025-10-21 02 09:48:21 00,FF88,80",{"$numberInt":"86"}],"25":["2025-10-21 02 09:48:44 00,FF88,80",{"$numberInt":"90"}],"26":["2025-10-21 02 09:48:44 00,FF88,80",{"$numberInt":"91"}],"27":["2025-10-21 02 09:48:44 00,FF88,80",{"$numberInt":"92"}],"28":["2025-10-21 02 12:35:03 00,FF88,80",{"$numberInt":"86"}],"29":["2025-10-21 02 12:35:03 00,FF88,80",{"$numberInt":"87"}],"30":["2025-10-21 02 12:35:03 00,FF88,80",{"$numberInt":"88"}],"31":["2025-10-21 02 13:32:55 00,FF88,80",{"$numberInt":"90"}],"32":["2025-10-21 02 13:32:55 00,FF88,80",{"$numberInt":"91"}],"33":["2025-10-21 02 13:32:55 00,FF88,80",{"$numberInt":"92"}],"34":["2026-05-01 05 00:31:29 00,FF88,80",{"$numberInt":"86"}],"35":["2026-05-01 05 00:31:29 00,FF88,80",{"$numberInt":"87"}],"36":["2026-05-01 05 00:31:29 00,FF88,80",{"$numberInt":"88"}],"37":["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"90"}],"38":["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"91"}],"39":["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"92"}],"40":["2026-06-01 01 00:05:30 00,FF88,80",{"$numberInt":"86"}],"41":["2026-06-01 01 00:05:30 00,FF88,80",{"$numberInt":"87"}],"42":["2026-06-01 01 00:05:30 00,FF88,80",{"$numberInt":"88"}],"43":["2026-06-01 01 07:22:30 00,FF88,80",{"$numberInt":"90"}],"44":["2026-06-01 01 07:24:19 00,FF88,80",{"$numberInt":"86"}],"45":["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"90"}],"46":["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"91"}],"47":["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"92"}],"48":["2025-11-01 06 01:36:49 00,FFC4,00",{"$numberInt":"86"}],"49":["2025-11-01 06 01:36:49 00,FFC4,00",{"$numberInt":"87"}],"50":["2025-11-01 06 01:36:49 00,FFC4,00",{"$numberInt":"88"}],"51":["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"90"}],"52":["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"91"}],"53":["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"92"}],"54":["2025-11-01 06 15:56:58 00,FFC4,00",{"$numberInt":"88"}],"55":["2025-11-01 06 15:57:04 00,FFC4,00",{"$numberInt":"87"}],"56":["2025-11-01 06 15:57:53 00,FFC4,00",{"$numberInt":"91"}],"57":["2025-11-01 06 15:57:55 00,FFC4,00",{"$numberInt":"92"}],"58":["2025-11-01 06 16:42:28 00,FFC4,00",{"$numberInt":"86"}],"59":["2025-11-01 06 16:42:28 00,FFC4,00",{"$numberInt":"87"}],"60":["2025-11-01 06 16:42:28 00,FFC4,00",{"$numberInt":"88"}],"61":["2025-11-01 06 16:47:20 00,FFC4,00",{"$numberInt":"81"}],"62":["2025-11-01 06 16:47:20 00,FFC4,00",{"$numberInt":"82"}],"63":["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"90"}],"64":["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"91"}],"65":["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"92"}],"66":["2025-11-08 06 15:31:48 00,FFC4,00",{"$numberInt":"86"}],"67":["2025-11-08 06 15:31:48 00,FFC4,00",{"$numberInt":"87"}],"68":["2025-11-08 06 15:31:48 00,FFC4,00",{"$numberInt":"88"}],"69":["2025-11-08 06 15:32:00 00,FFC4,00",{"$numberInt":"90"}],"70":["2025-11-08 06 15:32:24 00,FFC4,00",{"$numberInt":"86"}],"71":["2025-11-08 06 15:32:32 00,FFC4,00",{"$numberInt":"90"}],"72":["2025-11-08 06 16:29:47 00,FFC4,00",{"$numberInt":"86"}],"73":["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"90"}],"74":["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"91"}],"75":["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"92"}],"76":["2025-11-08 06 17:28:56 00,FFC4,00",{"$numberInt":"87"}],"77":["2025-11-08 06 17:28:59 00,FFC4,00",{"$numberInt":"88"}],"78":["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"86"}],"79":["2025-11-08 06 20:12:40 00,FFC4,00",{"$numberInt":"90"}],"80":["2025-11-08 06 20:12:40 00,FFC4,00",{"$numberInt":"91"}],"81":["2025-11-08 06 20:12:40 00,FFC4,00",{"$numberInt":"92"}],"82":["2025-11-08 06 20:39:01 00,FFC4,00",{"$numberInt":"81"}],"83":["2025-11-08 06 20:39:41 00,FFC4,00",{"$numberInt":"81"}],"84":["2025-11-08 06 22:19:46 00,FFC4,00",{"$numberInt":"86"}],"85":["2025-11-08 06 22:19:46 00,FFC4,00",{"$numberInt":"87"}],"86":["2025-11-08 06 22:19:46 00,FFC4,00",{"$numberInt":"88"}],"87":["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"90"}],"88":["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"91"}],"89":["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"92"}],"90":["2025-11-09 07 15:14:43 00,FFC4,00",{"$numberInt":"86"}],"91":["2025-11-09 07 15:14:43 00,FFC4,00",{"$numberInt":"87"}],"92":["2025-11-09 07 15:14:43 00,FFC4,00",{"$numberInt":"88"}],"93":["2025-11-09 07 20:00:04 00,FFC4,00",{"$numberInt":"90"}],"94":["2025-11-09 07 20:34:00 00,FFC4,00",{"$numberInt":"86"}],"95":["2025-11-09 07 20:47:21 00,FFC4,00",{"$numberInt":"90"}],"96":["2025-11-09 07 23:10:14 00,FFC4,00",{"$numberInt":"86"}],"97":["2025-11-10 01 00:00:58 00,FFC4,00",{"$numberInt":"90"}],"98":["2025-11-10 01 00:35:00 00,FFC4,00",{"$numberInt":"86"}],"99":["2025-11-10 01 15:34:07 00,FFC4,00",{"$numberInt":"90"}]},"Event Record.3-Power quality.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.11.5.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Event Record.3-Power quality.Capture period":{"$numberInt":"0"},"Event Record.3-Power quality.Sort method":{"$numberInt":"1"},"Event Record.3-Power quality.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Event Record.3-Power quality.Entries in use":{"$numberInt":"100"},"Event Record.3-Power quality.Profile entries":{"$numberInt":"100"},"Event Record.Power quality extended event log code.Power quality extended event log code":{"$numberInt":"0"},"Event Record.Power quality extended magnitude.Power quality extended magnitude":{"$numberInt":"0"},"Event Record.Power quality extended duration.Power quality extended duration":{"$numberInt":"0"},"Event Record.4-Power quality extended.Buffer":{},"Event Record.4-Power quality extended.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:96.11.7.255",{"$numberInt":"2"},{"$numberInt":"0"}],"2":[{"$numberInt":"1"},"0-0:96.11.20.255",{"$numberInt":"2"},{"$numberInt":"0"}],"3":[{"$numberInt":"1"},"0-0:96.11.21.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Event Record.4-Power quality extended.Capture period":{"$numberInt":"0"},"Event Record.4-Power quality extended.Sort method":{"$numberInt":"1"},"Event Record.4-Power quality extended.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Event Record.4-Power quality extended.Entries in use":{"$numberInt":"0"},"Event Record.4-Power quality extended.Profile entries":{"$numberInt":"100"},"Event Record.M-BUS event log code.M-BUS event log code":{"$numberInt":"0"},"Event Record.5-MBus.Buffer":{},"Event Record.5-MBus.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-4:96.11.3.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Event Record.5-MBus.Capture period":{"$numberInt":"0"},"Event Record.5-MBus.Sort method":{"$numberInt":"1"},"Event Record.5-MBus.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Event Record.5-MBus.Entries in use":{"$numberInt":"0"},"Event Record.5-MBus.Profile entries":{"$numberInt":"60"},"Event Record.6-Power failure.Buffer":{"0":["2025-10-21 02 08:59:49 00,FF88,80",{"$numberInt":"52439"}],"1":["2025-10-21 02 09:48:44 00,FF88,80",{"$numberInt":"2563"}],"2":["2025-10-21 02 13:32:55 00,FF88,80",{"$numberInt":"3471"}],"3":["2026-05-01 05 13:44:03 00,FF88,80",{"$numberInt":"47553"}],"4":["2026-06-01 01 07:29:53 00,FF88,80",{"$numberInt":"26662"}],"5":["2025-11-01 06 14:55:01 00,FFC4,00",{"$numberInt":"47891"}],"6":["2025-11-08 06 15:28:17 00,FFC4,00",{"$numberInt":"600348"}],"7":["2025-11-08 06 16:30:58 00,FFC4,00",{"$numberInt":"3549"}],"8":["2025-11-08 06 20:12:11 00,FFC4,00",{"$numberInt":"9793"}],"9":["2025-11-09 07 14:39:11 00,FFC4,00",{"$numberInt":"58764"}]},"Event Record.6-Power failure.Capture objects":{"0":[{"$numberInt":"8"},"0-0:1.0.0.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"3"},"0-0:96.7.19.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Event Record.6-Power failure.Capture period":{"$numberInt":"0"},"Event Record.6-Power failure.Sort method":{"$numberInt":"1"},"Event Record.6-Power failure.Sort object":{"0":[{"$numberInt":"0"},"0-0:0.0.0.0",{"$numberInt":"0"},{"$numberInt":"0"}]},"Event Record.6-Power failure.Entries in use":{"$numberInt":"10"},"Event Record.6-Power failure.Profile entries":{"$numberInt":"10"},"Single Action Schedule.Phase Outage scheduler.Executed script":{"0":["0-0:10.1.108.255",{"$numberInt":"1"}]},"Single Action Schedule.Phase Outage scheduler.Type":{"$numberInt":"1"},"Single Action Schedule.Phase Outage scheduler.Execution time":{},"Image Transfer.Image Transfer.Image block size":{"$numberInt":"1152"},"Image Transfer.Image Transfer.Image transferred blocks status":"1111111111111111111111111111111","Image Transfer.Image Transfer.Image first not transferred block number":{"$numberInt":"31"},"Image Transfer.Image Transfer.Image transfer enabled":{"$numberInt":"1"},"Image Transfer.Image Transfer.Image transfer status":{"$numberInt":"6"},"Image Transfer.Image Transfer.Image to activate info":{"0":[{"$numberInt":"34576"},"KFM-03","7E74BA05F40E05B0F6E39B050A03B3A9C9DBB513AD836AE4775A34404D94338BF426DCB6B2F6902F22DFF21AD38EA1C1F8B816F34679F676C63C54FE710EA6F9"]},"Image Transfer.LTE Image Transfer.Image block size":{"$numberInt":"1152"},"Image Transfer.LTE Image Transfer.Image transferred blocks status":"","Image Transfer.LTE Image Transfer.Image first not transferred block number":{"$numberInt":"0"},"Image Transfer.LTE Image Transfer.Image transfer enabled":{"$numberInt":"0"},"Image Transfer.LTE Image Transfer.Image transfer status":{"$numberInt":"0"},"Image Transfer.LTE Image Transfer.Image to activate info":{},"Image Transfer.MBUS Image Transfer channel 1.Image block size":{"$numberInt":"1152"},"Image Transfer.MBUS Image Transfer channel 1.Image transferred blocks status":"","Image Transfer.MBUS Image Transfer channel 1.Image first not transferred block number":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 1.Image transfer enabled":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 1.Image transfer status":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 1.Image to activate info":{},"Image Transfer.Firmware upgrade status on MBus level.nan":"ScopeOfAccessViolated","Image Transfer.MBUS Image Transfer channel 2.Image block size":{"$numberInt":"1152"},"Image Transfer.MBUS Image Transfer channel 2.Image transferred blocks status":"","Image Transfer.MBUS Image Transfer channel 2.Image first not transferred block number":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 2.Image transfer enabled":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 2.Image transfer status":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 2.Image to activate info":{},"Image Transfer.MBUS Image Transfer channel 3.Image block size":{"$numberInt":"1152"},"Image Transfer.MBUS Image Transfer channel 3.Image transferred blocks status":"","Image Transfer.MBUS Image Transfer channel 3.Image first not transferred block number":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 3.Image transfer enabled":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 3.Image transfer status":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 3.Image to activate info":{},"Image Transfer.MBUS Image Transfer channel 4.Image block size":{"$numberInt":"1152"},"Image Transfer.MBUS Image Transfer channel 4.Image transferred blocks status":"","Image Transfer.MBUS Image Transfer channel 4.Image first not transferred block number":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 4.Image transfer enabled":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 4.Image transfer status":{"$numberInt":"0"},"Image Transfer.MBUS Image Transfer channel 4.Image to activate info":{},"Communication port configuratio.Configuration object.nan":{"0":["0000001000000000"]},"Communication port configuratio.Local Port.Default mode":{"$numberInt":"0"},"Communication port configuratio.Local Port.Default baud (":{"$numberInt":"5"},"Communication port configuratio.Local Port.Prop baud":{"$numberInt":"5"},"Communication port configuratio.Local Port.Response_time":{"$numberInt":"1"},"Communication port configuratio.Local Port.Device addr":"17","Communication port configuratio.Optical Setup.Comm speed":{"$numberInt":"5"},"Communication port configuratio.Optical Setup.Window size transmit":{"$numberInt":"1"},"Communication port configuratio.Optical Setup.Window size receive":{"$numberInt":"1"},"Communication port configuratio.Optical Setup.Max info field length transmit":{"$numberInt":"128"},"Communication port configuratio.Optical Setup.Max info field length receive":{"$numberInt":"128"},"Communication port configuratio.Optical Setup.Inter octet time out":{"$numberInt":"25"},"Communication port configuratio.Optical Setup.Inactivity time out":{"$numberInt":"120"},"Communication port configuratio.Optical Setup.Device address":{"$numberInt":"17"},"M-Bus.Channel 1.M-Bus port reference":"0-0:24.6.0.255","M-Bus.Channel 1.Capture definition":{},"M-Bus.Channel 1.Capture period":{"$numberInt":"0"},"M-Bus.Channel 1.Primary address":{"$numberInt":"0"},"M-Bus.Channel 1.Identification number":{"$numberInt":"0"},"M-Bus.Channel 1.Manufacturer id":{"$numberInt":"0"},"M-Bus.Channel 1.Version":{"$numberInt":"0"},"M-Bus.Channel 1.Device type":{"$numberInt":"0"},"M-Bus.Channel 1.Access number":{"$numberInt":"0"},"M-Bus.Channel 1.Status":{"$numberInt":"0"},"M-Bus.Channel 1.Alarm":{"$numberInt":"0"},"M-Bus.Channel 1.Configuration":{"$numberInt":"99"},"M-Bus.Channel 1.Encryption key status":{"$numberInt":"0"},"M-Bus.Channel 1.FUAK status":"ScopeOfAccessViolated","M-Bus.Channel 2.M-Bus port reference":"0-0:24.6.0.255","M-Bus.Channel 2.Capture definition":{},"M-Bus.Channel 2.Capture period":{"$numberInt":"0"},"M-Bus.Channel 2.Primary address":{"$numberInt":"0"},"M-Bus.Channel 2.Identification number":{"$numberInt":"0"},"M-Bus.Channel 2.Manufacturer id":{"$numberInt":"0"},"M-Bus.Channel 2.Version":{"$numberInt":"0"},"M-Bus.Channel 2.Device type":{"$numberInt":"0"},"M-Bus.Channel 2.Access number":{"$numberInt":"0"},"M-Bus.Channel 2.Status":{"$numberInt":"0"},"M-Bus.Channel 2.Alarm":{"$numberInt":"0"},"M-Bus.Channel 2.Configuration":{"$numberInt":"99"},"M-Bus.Channel 2.Encryption key status":{"$numberInt":"0"},"M-Bus.Channel 2.FUAK status":"ScopeOfAccessViolated","M-Bus.Channel 3.M-Bus port reference":"0-0:24.6.0.255","M-Bus.Channel 3.Capture definition":{},"M-Bus.Channel 3.Capture period":{"$numberInt":"0"},"M-Bus.Channel 3.Primary address":{"$numberInt":"0"},"M-Bus.Channel 3.Identification number":{"$numberInt":"0"},"M-Bus.Channel 3.Manufacturer id":{"$numberInt":"0"},"M-Bus.Channel 3.Version":{"$numberInt":"0"},"M-Bus.Channel 3.Device type":{"$numberInt":"0"},"M-Bus.Channel 3.Access number":{"$numberInt":"0"},"M-Bus.Channel 3.Status":{"$numberInt":"0"},"M-Bus.Channel 3.Alarm":{"$numberInt":"0"},"M-Bus.Channel 3.Configuration":{"$numberInt":"99"},"M-Bus.Channel 3.Encryption key status":{"$numberInt":"0"},"M-Bus.Channel 3.FUAK status":"ScopeOfAccessViolated","M-Bus.Channel 4.M-Bus port reference":"0-0:24.6.0.255","M-Bus.Channel 4.Capture definition":{},"M-Bus.Channel 4.Capture period":{"$numberInt":"0"},"M-Bus.Channel 4.Primary address":{"$numberInt":"0"},"M-Bus.Channel 4.Identification number":{"$numberInt":"0"},"M-Bus.Channel 4.Manufacturer id":{"$numberInt":"0"},"M-Bus.Channel 4.Version":{"$numberInt":"0"},"M-Bus.Channel 4.Device type":{"$numberInt":"0"},"M-Bus.Channel 4.Access number":{"$numberInt":"0"},"M-Bus.Channel 4.Status":{"$numberInt":"0"},"M-Bus.Channel 4.Alarm":{"$numberInt":"0"},"M-Bus.Channel 4.Configuration":{"$numberInt":"99"},"M-Bus.Channel 4.Encryption key status":{"$numberInt":"0"},"M-Bus.Channel 4.FUAK status":"ScopeOfAccessViolated","M-Bus.Device ID 1.Device ID 1":"","M-Bus.Device ID 2.Device ID 2":"","M-Bus.Device ID 3.Device ID 3":"","M-Bus.Device ID 4.Device ID 4":"","M-Bus.M-Bus Master Channel 1.Status":"00","M-Bus.M-Bus Master Channel 1.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.M-Bus Master Channel 2.Status":"00","M-Bus.M-Bus Master Channel 2.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.M-Bus Master Channel 3.Status":"00","M-Bus.M-Bus Master Channel 3.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.M-Bus Master Channel 4.Status":"00","M-Bus.M-Bus Master Channel 4.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.M-Bus Master 1.Value":"00","M-Bus.M-Bus Master 1.Status":"00","M-Bus.M-Bus Master 1.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.M-Bus Master 2.Value":"00","M-Bus.M-Bus Master 2.Status":"00","M-Bus.M-Bus Master 2.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.M-Bus Master 3.Value":"00","M-Bus.M-Bus Master 3.Status":"00","M-Bus.M-Bus Master 3.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.M-Bus Master 4.Value":"00","M-Bus.M-Bus Master 4.Status":"00","M-Bus.M-Bus Master 4.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Channel 1.received-signal-strength":{"$numberInt":"0"},"M-Bus.Channel 1.channel_Id":{"$numberInt":"0"},"M-Bus.Channel 1.link_status":{"$numberInt":"0"},"M-Bus.Channel 1.broadcast_frames_counter":{},"M-Bus.Channel 1.transmissions_counter":{"$numberInt":"0"},"M-Bus.Channel 1.FCS_OK_frames_counter":{"$numberInt":"0"},"M-Bus.Channel 1.FCS_NOK_frames_counter":{"$numberInt":"0"},"M-Bus.Channel 1.capture_time":{"0":[{"$numberInt":"0"},"FFFF-FF-FF FF FF:FF:FF FF,8000,FF"]},"M-Bus.Number of missed C Message Channel 1.Value":{"$numberInt":"0"},"M-Bus.Number of missed C Message Channel 2.Value":{"$numberInt":"0"},"M-Bus.Number of missed C Message Channel 3.Value":{"$numberInt":"0"},"M-Bus.Number of missed C Message Channel 4.Value":{"$numberInt":"0"},"M-Bus.Number of missed T Message Channel 1.Value":{"$numberInt":"0"},"M-Bus.Number of missed T Message Channel 2.Value":{"$numberInt":"0"},"M-Bus.Number of missed T Message Channel 3.Value":{"$numberInt":"0"},"M-Bus.Number of missed T Message Channel 4.Value":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 1.Current average value":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 1.Last average value":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 1.Scaler unit":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"M-Bus.Average number of missed C message channel 1.Status":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 1.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed C message channel 1.Start time current":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed C message channel 1.Period":{"$numberInt":"10"},"M-Bus.Average number of missed C message channel 1.Number of periods":{"$numberInt":"1"},"M-Bus.Average number of missed C message channel 2.Current average value":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 2.Last average value":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 2.Scaler unit":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"M-Bus.Average number of missed C message channel 2.Status":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 2.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed C message channel 2.Start time current":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed C message channel 2.Period":{"$numberInt":"10"},"M-Bus.Average number of missed C message channel 2.Number of periods":{"$numberInt":"1"},"M-Bus.Average number of missed C message channel 3.Current average value":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 3.Last average value":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 3.Scaler unit":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"M-Bus.Average number of missed C message channel 3.Status":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 3.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed C message channel 3.Start time current":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed C message channel 3.Period":{"$numberInt":"10"},"M-Bus.Average number of missed C message channel 3.Number of periods":{"$numberInt":"1"},"M-Bus.Average number of missed C message channel 4.Current average value":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 4.Last average value":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 4.Scaler unit":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"M-Bus.Average number of missed C message channel 4.Status":{"$numberInt":"0"},"M-Bus.Average number of missed C message channel 4.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed C message channel 4.Start time current":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed C message channel 4.Period":{"$numberInt":"10"},"M-Bus.Average number of missed C message channel 4.Number of periods":{"$numberInt":"1"},"M-Bus.Average number of missed T message channel 1.Current average value":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 1.Last average value":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 1.Scaler unit":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"M-Bus.Average number of missed T message channel 1.Status":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 1.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed T message channel 1.Start time current":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed T message channel 1.Period":{"$numberInt":"10"},"M-Bus.Average number of missed T message channel 1.Number of periods":{"$numberInt":"1"},"M-Bus.Average number of missed T message channel 2.Current average value":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 2.Last average value":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 2.Scaler unit":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"M-Bus.Average number of missed T message channel 2.Status":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 2.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed T message channel 2.Start time current":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed T message channel 2.Period":{"$numberInt":"10"},"M-Bus.Average number of missed T message channel 2.Number of periods":{"$numberInt":"1"},"M-Bus.Average number of missed T message channel 3.Current average value":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 3.Last average value":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 3.Scaler unit":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"M-Bus.Average number of missed T message channel 3.Status":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 3.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed T message channel 3.Start time current":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed T message channel 3.Period":{"$numberInt":"10"},"M-Bus.Average number of missed T message channel 3.Number of periods":{"$numberInt":"1"},"M-Bus.Average number of missed T message channel 4.Current average value":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 4.Last average value":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 4.Scaler unit":{"0":[{"$numberInt":"0"},{"$numberInt":"255"}]},"M-Bus.Average number of missed T message channel 4.Status":{"$numberInt":"0"},"M-Bus.Average number of missed T message channel 4.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed T message channel 4.Start time current":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","M-Bus.Average number of missed T message channel 4.Period":{"$numberInt":"10"},"M-Bus.Average number of missed T message channel 4.Number of periods":{"$numberInt":"1"},"LTE Communication Setup.eUICCID.eUICCID":"3335303630303030303030303030303030303234303030303331333031373237","LTE Communication Setup.ICCID.ICCID":"89860110611108096225","LTE Communication Setup.Administrative in/out P3.nan":{"$numberInt":"0"},"LTE Communication Setup.connection watchdog timer P3.nan":{"$numberInt":"36"},"LTE Communication Setup.LTE FW Location.nan":"35.181.240.196:8080","LTE Communication Setup.LTE FW Download time.nan":{"$numberInt":"600"},"LTE Communication Setup.LTE Frequency configuration.LTE Frequency configuration":"00111100","LTE Communication Setup.Ping address.nan":{"0":["10.254.253.4","8082"]},"LTE Communication Setup.PHY Randomisation.nan":{"0":[{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"LTE Communication Setup.PPP Setup.PHY reference":"0-1:25.4.0.255","LTE Communication Setup.PPP Setup.LCP options":{"0":[{"$numberInt":"1"},{"$numberInt":"2"},{"$numberInt":"1500"}],"1":[{"$numberInt":"3"},{"$numberInt":"2"},{"$numberInt":"49187"}]},"LTE Communication Setup.PPP Setup.IPCP options":{},"LTE Communication Setup.PPP Setup.PPP authentication":{"0":["kaifa","123123"]},"LTE Communication Setup.TCP-UDP Setup.TCP-UDP port":{"$numberInt":"4059"},"LTE Communication Setup.TCP-UDP Setup.IP reference":"0-0:25.1.0.255","LTE Communication Setup.TCP-UDP Setup.MSS":{"$numberInt":"576"},"LTE Communication Setup.TCP-UDP Setup.Nb of sim conn":{"$numberInt":"1"},"LTE Communication Setup.TCP-UDP Setup.Inactivity time out":{"$numberInt":"300"},"LTE Communication Setup.IPv4 Setup.DL reference":"0-0:25.3.0.255","LTE Communication Setup.IPv4 Setup.IP address":"0.0.0.0","LTE Communication Setup.IPv4 Setup.Multicast IP address":{},"LTE Communication Setup.IPv4 Setup.IP options":{},"LTE Communication Setup.IPv4 Setup.Subnet mask":{"$numberInt":"0"},"LTE Communication Setup.IPv4 Setup.Gateway IP address":"0.0.0.0","LTE Communication Setup.IPv4 Setup.Use DHCP flag":{"$numberInt":"1"},"LTE Communication Setup.IPv4 Setup.Primary DNS address":{"$numberInt":"0"},"LTE Communication Setup.IPv4 Setup.Secondary DNS address":{"$numberInt":"0"},"LTE Communication Setup.IPv6 setup -GPRS.DL reference":"0-0:25.3.0.255","LTE Communication Setup.IPv6 setup -GPRS.Address config mode":{"$numberInt":"0"},"LTE Communication Setup.IPv6 setup -GPRS.Unicast IPv6 addresses":{},"LTE Communication Setup.IPv6 setup -GPRS.Multicast IPv6 addresses":{},"LTE Communication Setup.IPv6 setup -GPRS.Gateway IPv6 addresses":{},"LTE Communication Setup.IPv6 setup -GPRS.Primary DNS address":"","LTE Communication Setup.IPv6 setup -GPRS.Secondary DNS address":"","LTE Communication Setup.IPv6 setup -GPRS.Traffic class":{"$numberInt":"0"},"LTE Communication Setup.IPv6 setup -GPRS.Neighbor discovery setup":{},"LTE Communication Setup.LTE Modem setup.APN":"internet","LTE Communication Setup.LTE Modem setup.PIN code":{"$numberInt":"0"},"LTE Communication Setup.LTE Modem setup.Quality of service":{"0":[[{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}],[{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]]},"LTE Communication Setup.LTE Diagnostic.Operator":"","LTE Communication Setup.LTE Diagnostic.Status":{"$numberInt":"0"},"LTE Communication Setup.LTE Diagnostic.Cs attachment":{"$numberInt":"0"},"LTE Communication Setup.LTE Diagnostic.Ps status":{"$numberInt":"0"},"LTE Communication Setup.LTE Diagnostic.Cell info":{"0":[{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"99"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"}]},"LTE Communication Setup.LTE Diagnostic.Adjacent cells":{"0":[{"$numberInt":"999"},{"$numberInt":"99"}],"1":[{"$numberInt":"999"},{"$numberInt":"99"}],"2":[{"$numberInt":"999"},{"$numberInt":"99"}]},"LTE Communication Setup.LTE Diagnostic.Capture time":"FFFF-FF-FF FF FF:FF:FF FF,8000,FF","LTE Communication Setup.LTE Monitoring.LTE network parameters":{"0":[{"$numberInt":"720"},{"$numberInt":"3240"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"0"},{"$numberInt":"-99"},{"$numberInt":"0"},{"$numberInt":"0"}]},"LTE Communication Setup.LTE Monitoring.LTE quality of service":{"0":[{"$numberInt":"0"},{"$numberInt":"-99"},{"$numberInt":"0"},{"$numberInt":"0"}]},"LTE Communication Setup.LTE connection rejection.LTE connection rejection":{"0":[{"$numberInt":"8"},{"$numberInt":"222"},{"$numberInt":"3"},"2025-11-10 01 15:48:50 00,FFC4,00"]},"LTE Communication Setup.GPS lattitude.GPS lattitude":{"$numberInt":"0"},"LTE Communication Setup.GPS longitude.GPS longitude":{"$numberInt":"0"},"Push setup.Single action scheduler.Executed script":{"0":["0-0:10.0.108.255",{"$numberInt":"1"}]},"Push setup.Single action scheduler.Type":{"$numberInt":"1"},"Push setup.Single action scheduler.Execution time":{},"Push setup.Register monitor.Thresholds":{"0":[{"$numberInt":"0"}]},"Push setup.Register monitor.Monitored value":{"0":[{"$numberInt":"1"},"0-0:97.98.0.255",{"$numberInt":"2"}]},"Push setup.Register monitor.Actions":{"0":[["",{"$numberInt":"0"}],["",{"$numberInt":"0"}]]},"Push setup.Register monitor lastgasp.Thresholds":"ObjectUndefined","Push setup.Register monitor lastgasp.Monitored value":"ObjectUndefined","Push setup.Register monitor lastgasp.Actions":"ObjectUndefined","Push setup.Push script table.Scripts":{"0":[{"$numberInt":"1"},[[{"$numberInt":"2"},{"$numberInt":"40"},"0-0:25.9.0.255",{"$numberInt":"1"},{"$numberInt":"0"}]]],"1":[{"$numberInt":"2"},[[{"$numberInt":"2"},{"$numberInt":"40"},"0-1:25.9.0.255",{"$numberInt":"1"},{"$numberInt":"0"}]]]},"Push setup.Phase Outage Test.Scripts":{"0":[{"$numberInt":"1"},[[{"$numberInt":"1"},{"$numberInt":"1"},"0-0:97.98.0.255",{"$numberInt":"2"},{"$numberLong":"576460752303423488"}]]]},"Push setup.Push Setup Scheduler.Push object list":{},"Push setup.Push Setup Scheduler.Send destination and method":{"0":[{"$numberInt":"0"},"",{"$numberInt":"0"}]},"Push setup.Push Setup Scheduler.Communication window":{"0":["FFFF-FF-FF FF FF:FF:FF FF,8000,FF","FFFF-FF-FF FF 23:59:59 99,8000,FF"]},"Push setup.Push Setup Scheduler.Randomisation start interval":{"$numberInt":"0"},"Push setup.Push Setup Scheduler.Number of retries":{"$numberInt":"0"},"Push setup.Push Setup Scheduler.Repetition delay":"0000","Push setup.Push Setup Alarm.Push object list":{"0":[{"$numberInt":"1"},"0-0:96.1.1.255",{"$numberInt":"2"},{"$numberInt":"0"}],"1":[{"$numberInt":"1"},"0-0:97.98.0.255",{"$numberInt":"2"},{"$numberInt":"0"}]},"Push setup.Push Setup Alarm.Send destination and method":{"0":[{"$numberInt":"0"},"",{"$numberInt":"0"}]},"Push setup.Push Setup Alarm.Communication window":{"0":["FFFF-FF-FF FF FF:FF:FF FF,8000,FF","FFFF-FF-FF FF 23:59:59 99,8000,FF"]},"Push setup.Push Setup Alarm.Randomisation start interval":{"$numberInt":"0"},"Push setup.Push Setup Alarm.Number of retries":{"$numberInt":"0"},"Push setup.Push Setup Alarm.Repetition delay":"0000","Association related parameters.SAP Assignment.SAP assignment list":{"0":[{"$numberInt":"1"},"KFM7000000000000"]},"Association related parameters.Association LN.Object list":{"0":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:42.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"1":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"2":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.1.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"3":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.1.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"4":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.4.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"5":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.7.9.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"6":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.7.21.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"7":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.10.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"8":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.10.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"9":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.10.6.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"10":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.10.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"11":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.10.9.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"12":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"13":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"14":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"15":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"16":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"17":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.20.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"18":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.11.21.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"19":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.13.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"20":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.14.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"21":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.15.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"22":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.15.11.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"23":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.15.12.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"24":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.15.13.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"25":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:96.15.14.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"26":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:97.97.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"27":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:97.98.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"28":[{"$numberInt":"1"},{"$numberInt":"0"},"0-0:97.98.10.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"29":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"30":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"-1"},{"$numberInt":"1"}]]]],"31":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"32":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"33":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"34":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.12.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"35":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.19.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"36":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:94.31.20.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"37":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:96.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"38":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:96.10.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"39":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:96.10.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"40":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:96.10.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"41":[{"$numberInt":"1"},{"$numberInt":"0"},"0-1:96.11.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"42":[{"$numberInt":"1"},{"$numberInt":"0"},"0-2:96.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"43":[{"$numberInt":"1"},{"$numberInt":"0"},"0-2:96.10.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"44":[{"$numberInt":"1"},{"$numberInt":"0"},"0-2:96.10.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"45":[{"$numberInt":"1"},{"$numberInt":"0"},"0-2:96.10.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"46":[{"$numberInt":"1"},{"$numberInt":"0"},"0-2:96.11.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"47":[{"$numberInt":"1"},{"$numberInt":"0"},"0-3:96.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"48":[{"$numberInt":"1"},{"$numberInt":"0"},"0-3:96.10.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"49":[{"$numberInt":"1"},{"$numberInt":"0"},"0-3:96.10.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"50":[{"$numberInt":"1"},{"$numberInt":"0"},"0-3:96.10.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"51":[{"$numberInt":"1"},{"$numberInt":"0"},"0-3:96.11.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"52":[{"$numberInt":"1"},{"$numberInt":"0"},"0-4:96.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"53":[{"$numberInt":"1"},{"$numberInt":"0"},"0-4:96.10.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"54":[{"$numberInt":"1"},{"$numberInt":"0"},"0-4:96.10.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"55":[{"$numberInt":"1"},{"$numberInt":"0"},"0-4:96.10.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"56":[{"$numberInt":"1"},{"$numberInt":"0"},"0-4:96.11.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"57":[{"$numberInt":"1"},{"$numberInt":"0"},"0-65:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"58":[{"$numberInt":"1"},{"$numberInt":"0"},"0-65:44.0.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"59":[{"$numberInt":"1"},{"$numberInt":"0"},"0-65:44.0.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[]]],"60":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:0.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"61":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:0.2.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"62":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:32.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"63":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:32.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"64":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:52.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"65":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:52.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"66":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:72.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"67":[{"$numberInt":"1"},{"$numberInt":"0"},"1-0:72.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"68":[{"$numberInt":"1"},{"$numberInt":"0"},"1-1:0.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"69":[{"$numberInt":"1"},{"$numberInt":"0"},"1-1:0.2.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"70":[{"$numberInt":"1"},{"$numberInt":"0"},"1-1:32.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"71":[{"$numberInt":"1"},{"$numberInt":"0"},"1-1:52.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"72":[{"$numberInt":"1"},{"$numberInt":"0"},"1-1:72.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"73":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:0.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"74":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:0.2.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"75":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:32.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"76":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:32.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"77":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:52.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"78":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:52.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"79":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:72.32.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"80":[{"$numberInt":"1"},{"$numberInt":"0"},"1-2:72.36.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"81":[{"$numberInt":"1"},{"$numberInt":"0"},"1-3:0.2.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"82":[{"$numberInt":"1"},{"$numberInt":"0"},"1-4:0.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"83":[{"$numberInt":"1"},{"$numberInt":"0"},"1-4:0.2.8.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[]]],"84":[{"$numberInt":"3"},{"$numberInt":"0"},"0-0:96.7.19.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"85":[{"$numberInt":"3"},{"$numberInt":"0"},"0-0:96.7.20.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"86":[{"$numberInt":"3"},{"$numberInt":"0"},"0-0:96.9.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"87":[{"$numberInt":"3"},{"$numberInt":"0"},"0-0:96.50.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"88":[{"$numberInt":"3"},{"$numberInt":"0"},"0-1:94.31.9.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"-1"},{"$numberInt":"1"}]]]],"89":[{"$numberInt":"3"},{"$numberInt":"0"},"0-1:94.31.10.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"90":[{"$numberInt":"3"},{"$numberInt":"0"},"0-1:128.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"91":[{"$numberInt":"3"},{"$numberInt":"0"},"0-1:128.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"92":[{"$numberInt":"3"},{"$numberInt":"0"},"0-2:128.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"93":[{"$numberInt":"3"},{"$numberInt":"0"},"0-2:128.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"94":[{"$numberInt":"3"},{"$numberInt":"0"},"0-3:128.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"95":[{"$numberInt":"3"},{"$numberInt":"0"},"0-3:128.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"96":[{"$numberInt":"3"},{"$numberInt":"0"},"0-4:128.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"97":[{"$numberInt":"3"},{"$numberInt":"0"},"0-4:128.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"98":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:0.9.11.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"99":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:1.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"100":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:1.8.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"101":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:1.8.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"102":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:1.8.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"103":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:2.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"104":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:2.8.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"105":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:2.8.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"106":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:2.8.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"107":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:3.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"108":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:4.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"109":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:5.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"110":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:6.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"111":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:7.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"112":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:8.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"113":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:9.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"114":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:10.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"115":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:12.31.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"116":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:12.35.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"117":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:12.43.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"118":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:12.44.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"119":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:16.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"120":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:17.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"121":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:18.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"122":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:19.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"123":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:20.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"124":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:21.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"125":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:21.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"126":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:22.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"127":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:22.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"128":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:23.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"129":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:23.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"130":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:24.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"131":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:24.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"132":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:25.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"133":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:25.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"134":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:26.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"135":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:26.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"136":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:27.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"137":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:27.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"138":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:28.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"139":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:28.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"140":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:31.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"141":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:31.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"142":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"143":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"144":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.33.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"145":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.34.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"146":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.37.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"147":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:32.38.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"148":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:37.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"149":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:37.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"150":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:38.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"151":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:38.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"152":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:39.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"153":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:39.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"154":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:40.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"155":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:40.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"156":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:41.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"157":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:41.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"158":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:42.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"159":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:42.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"160":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:43.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"161":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:43.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"162":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:44.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"163":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:44.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"164":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:45.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"165":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:45.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"166":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:46.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"167":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:46.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"168":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:47.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"169":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:47.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"170":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:48.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"171":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:48.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"172":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:51.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"173":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:51.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"174":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"175":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"176":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.33.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"177":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.34.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"178":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.37.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"179":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:52.38.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"180":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:57.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"181":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:57.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"182":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:58.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"183":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:58.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"184":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:59.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"185":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:59.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"186":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:60.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"187":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:60.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"188":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:61.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"189":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:61.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"190":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:62.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"191":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:62.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"192":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:63.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"193":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:63.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"194":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:64.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"195":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:64.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"196":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:65.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"197":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:65.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"198":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:66.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"199":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:66.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"200":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:67.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"201":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:67.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"202":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:68.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"203":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:68.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"204":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:71.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"205":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:71.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"206":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"207":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"208":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.33.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"209":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.34.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"210":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.37.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"211":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:72.38.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"212":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:77.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"213":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:77.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"214":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:78.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"215":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:78.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"216":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:79.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"217":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:79.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"218":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:80.5.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"219":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:80.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"220":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:90.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"221":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:124.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"222":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:124.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"223":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:125.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"224":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:125.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"225":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:126.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"226":[{"$numberInt":"3"},{"$numberInt":"0"},"1-0:126.25.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"227":[{"$numberInt":"3"},{"$numberInt":"0"},"1-1:12.31.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"228":[{"$numberInt":"3"},{"$numberInt":"0"},"1-1:12.43.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"229":[{"$numberInt":"3"},{"$numberInt":"0"},"1-2:12.31.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"230":[{"$numberInt":"3"},{"$numberInt":"0"},"1-2:12.35.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"231":[{"$numberInt":"3"},{"$numberInt":"0"},"1-2:12.43.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"232":[{"$numberInt":"3"},{"$numberInt":"0"},"1-2:12.44.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"233":[{"$numberInt":"4"},{"$numberInt":"0"},"0-1:24.2.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"234":[{"$numberInt":"4"},{"$numberInt":"0"},"0-1:24.2.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"235":[{"$numberInt":"4"},{"$numberInt":"0"},"0-1:24.2.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"236":[{"$numberInt":"4"},{"$numberInt":"0"},"0-2:24.2.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"237":[{"$numberInt":"4"},{"$numberInt":"0"},"0-2:24.2.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"238":[{"$numberInt":"4"},{"$numberInt":"0"},"0-2:24.2.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"239":[{"$numberInt":"4"},{"$numberInt":"0"},"0-3:24.2.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"240":[{"$numberInt":"4"},{"$numberInt":"0"},"0-3:24.2.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"241":[{"$numberInt":"4"},{"$numberInt":"0"},"0-3:24.2.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"242":[{"$numberInt":"4"},{"$numberInt":"0"},"0-4:24.2.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"243":[{"$numberInt":"4"},{"$numberInt":"0"},"0-4:24.2.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"244":[{"$numberInt":"4"},{"$numberInt":"0"},"0-4:24.2.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"245":[{"$numberInt":"5"},{"$numberInt":"0"},"0-1:129.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"246":[{"$numberInt":"5"},{"$numberInt":"0"},"0-1:129.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"247":[{"$numberInt":"5"},{"$numberInt":"0"},"0-2:129.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"248":[{"$numberInt":"5"},{"$numberInt":"0"},"0-2:129.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"249":[{"$numberInt":"5"},{"$numberInt":"0"},"0-3:129.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"250":[{"$numberInt":"5"},{"$numberInt":"0"},"0-3:129.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"251":[{"$numberInt":"5"},{"$numberInt":"0"},"0-4:129.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"252":[{"$numberInt":"5"},{"$numberInt":"0"},"0-4:129.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"253":[{"$numberInt":"6"},{"$numberInt":"0"},"0-0:14.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}]]]],"254":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:21.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"255":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:21.0.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"256":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:21.0.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"257":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:21.0.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"258":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.18.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"259":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.98.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"260":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.98.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"261":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.98.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"262":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.98.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"263":[{"$numberInt":"7"},{"$numberInt":"1"},"0-0:99.98.7.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"264":[{"$numberInt":"7"},{"$numberInt":"1"},"0-1:24.3.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"265":[{"$numberInt":"7"},{"$numberInt":"1"},"0-1:94.31.6.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"266":[{"$numberInt":"7"},{"$numberInt":"1"},"0-1:98.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"267":[{"$numberInt":"7"},{"$numberInt":"1"},"0-1:99.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"268":[{"$numberInt":"7"},{"$numberInt":"1"},"0-1:99.98.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"269":[{"$numberInt":"7"},{"$numberInt":"1"},"0-2:24.3.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"270":[{"$numberInt":"7"},{"$numberInt":"1"},"0-2:98.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"271":[{"$numberInt":"7"},{"$numberInt":"1"},"0-2:99.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"272":[{"$numberInt":"7"},{"$numberInt":"1"},"0-2:99.98.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"273":[{"$numberInt":"7"},{"$numberInt":"1"},"0-3:24.3.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"274":[{"$numberInt":"7"},{"$numberInt":"1"},"0-3:98.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"275":[{"$numberInt":"7"},{"$numberInt":"1"},"0-3:99.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"276":[{"$numberInt":"7"},{"$numberInt":"1"},"0-3:99.98.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"277":[{"$numberInt":"7"},{"$numberInt":"1"},"0-4:24.3.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"278":[{"$numberInt":"7"},{"$numberInt":"1"},"0-4:98.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"279":[{"$numberInt":"7"},{"$numberInt":"1"},"0-4:99.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"280":[{"$numberInt":"7"},{"$numberInt":"1"},"0-4:99.98.3.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"281":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:98.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"282":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:99.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"283":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:99.1.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"284":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:99.1.2.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"285":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:99.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"286":[{"$numberInt":"7"},{"$numberInt":"1"},"1-0:99.97.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},[{"$numberInt":"1"},{"$numberInt":"2"}]],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}]]]],"287":[{"$numberInt":"8"},{"$numberInt":"0"},"0-0:1.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"0"}],[{"$numberInt":"5"},{"$numberInt":"0"}],[{"$numberInt":"6"},{"$numberInt":"0"}]]]],"288":[{"$numberInt":"9"},{"$numberInt":"0"},"0-0:10.0.100.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"289":[{"$numberInt":"9"},{"$numberInt":"0"},"0-0:10.0.108.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"290":[{"$numberInt":"9"},{"$numberInt":"0"},"0-0:10.1.108.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"291":[{"$numberInt":"9"},{"$numberInt":"0"},"0-1:94.31.5.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"292":[{"$numberInt":"11"},{"$numberInt":"0"},"0-0:11.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}]]]],"293":[{"$numberInt":"15"},{"$numberInt":"3"},"0-0:40.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"0"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"11"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"1"}],[{"$numberInt":"6"},{"$numberInt":"1"}]]]],"294":[{"$numberInt":"17"},{"$numberInt":"0"},"0-0:41.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"295":[{"$numberInt":"18"},{"$numberInt":"0"},"0-0:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"296":[{"$numberInt":"18"},{"$numberInt":"0"},"0-1:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"297":[{"$numberInt":"18"},{"$numberInt":"0"},"0-2:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"298":[{"$numberInt":"18"},{"$numberInt":"0"},"0-3:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"299":[{"$numberInt":"18"},{"$numberInt":"0"},"0-4:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"300":[{"$numberInt":"18"},{"$numberInt":"0"},"0-5:44.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"1"}]]]],"301":[{"$numberInt":"19"},{"$numberInt":"1"},"0-0:20.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[]]],"302":[{"$numberInt":"20"},{"$numberInt":"0"},"0-0:13.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"303":[{"$numberInt":"21"},{"$numberInt":"0"},"0-0:16.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"]],[]]],"304":[{"$numberInt":"22"},{"$numberInt":"0"},"0-0:15.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"]],[]]],"305":[{"$numberInt":"22"},{"$numberInt":"0"},"0-0:15.0.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"]],[]]],"306":[{"$numberInt":"22"},{"$numberInt":"0"},"0-0:15.1.4.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"]],[]]],"307":[{"$numberInt":"23"},{"$numberInt":"1"},"0-0:22.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[]]],"308":[{"$numberInt":"28"},{"$numberInt":"2"},"0-0:2.2.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"]],[]]],"309":[{"$numberInt":"29"},{"$numberInt":"2"},"0-0:2.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}]]]],"310":[{"$numberInt":"40"},{"$numberInt":"0"},"0-0:25.9.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"311":[{"$numberInt":"40"},{"$numberInt":"0"},"0-1:25.9.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"312":[{"$numberInt":"41"},{"$numberInt":"0"},"0-0:25.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"]],[]]],"313":[{"$numberInt":"42"},{"$numberInt":"0"},"0-0:25.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"0"}],[{"$numberInt":"3"},{"$numberInt":"0"}]]]],"314":[{"$numberInt":"44"},{"$numberInt":"0"},"0-0:25.3.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"]],[]]],"315":[{"$numberInt":"45"},{"$numberInt":"0"},"0-1:25.4.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"]],[]]],"316":[{"$numberInt":"47"},{"$numberInt":"2"},"0-1:25.6.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"]],[]]],"317":[{"$numberInt":"48"},{"$numberInt":"0"},"0-0:25.7.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"3"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"0"}]]]],"318":[{"$numberInt":"64"},{"$numberInt":"1"},"0-0:43.0.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"1"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"1"}],[{"$numberInt":"6"},{"$numberInt":"1"}],[{"$numberInt":"7"},{"$numberInt":"1"}],[{"$numberInt":"8"},{"$numberInt":"1"}]]]],"319":[{"$numberInt":"72"},{"$numberInt":"1"},"0-1:24.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"11"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"12"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"13"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"14"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"0"}],[{"$numberInt":"6"},{"$numberInt":"0"}],[{"$numberInt":"7"},{"$numberInt":"1"}],[{"$numberInt":"8"},{"$numberInt":"1"}],[{"$numberInt":"-1"},{"$numberInt":"1"}],[{"$numberInt":"-2"},{"$numberInt":"1"}]]]],"320":[{"$numberInt":"72"},{"$numberInt":"1"},"0-2:24.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"11"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"12"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"13"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"14"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"0"}],[{"$numberInt":"6"},{"$numberInt":"0"}],[{"$numberInt":"7"},{"$numberInt":"1"}],[{"$numberInt":"8"},{"$numberInt":"1"}],[{"$numberInt":"-1"},{"$numberInt":"1"}],[{"$numberInt":"-2"},{"$numberInt":"1"}]]]],"321":[{"$numberInt":"72"},{"$numberInt":"1"},"0-3:24.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"11"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"12"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"13"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"14"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"0"}],[{"$numberInt":"6"},{"$numberInt":"0"}],[{"$numberInt":"7"},{"$numberInt":"1"}],[{"$numberInt":"8"},{"$numberInt":"1"}],[{"$numberInt":"-1"},{"$numberInt":"1"}],[{"$numberInt":"-2"},{"$numberInt":"1"}]]]],"322":[{"$numberInt":"72"},{"$numberInt":"1"},"0-4:24.1.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"3"},"NullData"],[{"$numberInt":"10"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"11"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"12"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"13"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"14"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"-1"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"0"}],[{"$numberInt":"2"},{"$numberInt":"1"}],[{"$numberInt":"3"},{"$numberInt":"0"}],[{"$numberInt":"4"},{"$numberInt":"1"}],[{"$numberInt":"5"},{"$numberInt":"0"}],[{"$numberInt":"6"},{"$numberInt":"0"}],[{"$numberInt":"7"},{"$numberInt":"1"}],[{"$numberInt":"8"},{"$numberInt":"1"}],[{"$numberInt":"-1"},{"$numberInt":"1"}],[{"$numberInt":"-2"},{"$numberInt":"1"}]]]],"323":[{"$numberInt":"77"},{"$numberInt":"0"},"0-1:24.9.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"324":[{"$numberInt":"77"},{"$numberInt":"0"},"0-2:24.9.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"325":[{"$numberInt":"77"},{"$numberInt":"0"},"0-3:24.9.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"326":[{"$numberInt":"77"},{"$numberInt":"0"},"0-4:24.9.1.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"4"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"5"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"6"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"7"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"8"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"9"},{"$numberInt":"1"},"NullData"]],[[{"$numberInt":"1"},{"$numberInt":"1"}]]]],"327":[{"$numberInt":"151"},{"$numberInt":"1"},"0-1:25.11.0.255",[[[{"$numberInt":"1"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"2"},{"$numberInt":"1"},"NullData"],[{"$numberInt":"3"},{"$numberInt":"1"},"NullData"]],[]]]},"Association related parameters.Association LN.Associated partners id":{"0":[{"$numberInt":"1"},{"$numberInt":"1"}]},"Association related parameters.Association LN.Application context name":"60857405080103","Association related parameters.Association LN.xDLMS context info":{"0":["011000000001101000011101",{"$numberInt":"1300"},{"$numberInt":"1300"},{"$numberInt":"6"},{"$numberInt":"0"},""]},"Association related parameters.Association LN.Authentication mechanism name":"60857405080205","Association related parameters.Association LN.Secret":"ReadWriteDenied","Association related parameters.Association LN.Association status":{"$numberInt":"2"},"Association related parameters.Association LN.Security setup reference":"0-0:43.0.0.255","Association related parameters.Association LN.User list":{},"Association related parameters.Association LN.Current user":{"0":[{"$numberInt":"0"},""]},"Association related parameters.Security Setup.Security policy":{"$numberInt":"108"},"Association related parameters.Security Setup.Security suite":{"$numberInt":"1"},"Association related parameters.Security Setup.Client system title":"0000000000009800","Association related parameters.Security Setup.Server system title":"4B464D0000000001","Association related parameters.Security Setup.Certificates":{},"Association related parameters.Invocation Counter for authenticated decryption (IC Rx).Invocation Counter for authenticated decryption (IC Rx)":"ReadWriteDenied","Meter Reset to Factory Setting.Tariffication.Scripts":{"0":[{"$numberInt":"1"},[[{"$numberInt":"2"},{"$numberInt":"9"},"0-1:94.31.5.255",{"$numberInt":"1"},"0001"]]]}},"summary":{"total_read":{"$numberInt":"796"},"total_success":{"$numberInt":"796"},"total_failed":{"$numberInt":"0"},"sheet_count":{"$numberInt":"24"}}} diff --git a/lefthook.yml b/lefthook.yml index f6f019e..65546f1 100644 --- a/lefthook.yml +++ b/lefthook.yml @@ -1,42 +1,14 @@ -# EXAMPLE USAGE: -# -# Refer for explanation to following link: -# https://lefthook.dev/configuration/ -# -# pre-push: -# jobs: -# - name: packages audit -# tags: -# - frontend -# - security -# run: yarn audit -# -# - name: gems audit -# tags: -# - backend -# - security -# run: bundle audit -# -# pre-commit: -# parallel: true -# jobs: -# - run: yarn eslint {staged_files} -# glob: "*.{js,ts,jsx,tsx}" -# -# - name: rubocop -# glob: "*.rb" -# exclude: -# - config/application.rb -# - config/routes.rb -# run: bundle exec rubocop --force-exclusion -- {all_files} -# -# - name: govet -# files: git ls-files -m -# glob: "*.go" -# run: go vet -- {files} -# -# - script: "hello.js" -# runner: node -# -# - script: "hello.go" -# runner: go run +# MiniHES Git Hooks (lefthook) +# 对齐 CI 的 ruff 检查,在 commit 前自动跑 lint + format 校验。 +# 首次使用需安装 lefthook 并执行 `lefthook install`。 + +pre-commit: + parallel: true + jobs: + - name: ruff-check + glob: "*.py" + run: cd backend && uv run ruff check app/ tests/ + + - name: ruff-format + glob: "*.py" + run: cd backend && uv run ruff format --check app/ tests/ From e2e72067a4bbf9c3db509b0a74e8986d4e62a3d3 Mon Sep 17 00:00:00 2001 From: ViewWay <834740219@qq.com> Date: Sun, 12 Jul 2026 00:29:51 +0800 Subject: [PATCH 2/4] =?UTF-8?q?fix:=20Vue=20=E4=BB=A3=E7=A0=81=E5=AE=A1?= =?UTF-8?q?=E6=9F=A5=E4=BF=AE=E5=A4=8D=20+=20=E5=89=8D=E5=90=8E=E7=AB=AF?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Vue Review HIGH 修复 (6 项) - analysis.ts: 恢复 exportDailyReport/exportAnalysisReport 的 responseReturn:'body' 修复 Blob 导出被响应拦截器拦截导致运行时错误的回归 - screen/meter.vue, overview.vue, project.vue: 重新注册 watchThemeAndRerender 修复主题切换后图表颜色不刷新的问题;清理死代码导入 (watch/isDark) - screen/meter.vue: setInterval 回调包裹 .catch() 防止悬浮 Promise 拒绝 - data-quality.vue: 新增 lastTrend ref 存储最新数据,主题切换从 ref 重渲染 修复主题切换时图表被清空的 bug - daily.vue, data-quality.vue: 3 处空 catch 改为 console.error 避免静默吞错 ## Vue Review MEDIUM 修复 (2 项) - daily.vue: 硬编码 dayjs('2025-03-01') → 滚动日期 dayjs().subtract(90,'day') 预设改为近7/30/90天/近一年;dateRange 类型 [any,any] → [Dayjs,Dayjs] ## Backend lint 修复 - analysis_mongo_service.py: 修复 F821 timezone 未定义 (datetime.now(timezone.utc)) - analysis_service.py: 移除未使用变量 meter_subq (F841) - task_service.py: 移除未使用变量 failed_points/failed_count (F841) - ruff format 统一代码格式 ## 其他改动 - 后端: collector 采集配置、MongoDB 集成、analysis_service、scheduler - 文档: CHANGELOG、架构文档、MongoDB 设计文档 - 新增 analysis 报表页面 (11 个运维报表视图) - Docker Compose 一键启动配置 Co-authored-by: ZCode --- .agents/skills/backend-development/SKILL.md | 283 +++ ...00\346\237\245\346\270\205\345\215\225.md" | 41 + .agents/skills/code-review/SKILL.md | 171 ++ .../references/backend-checklist.md | 57 + .../references/frontend-checklist.md | 62 + .agents/skills/command-executor/SKILL.md | 526 ++++++ .agents/skills/developer/SKILL.md | 170 ++ .agents/skills/fix-and-lint/SKILL.md | 80 + .agents/skills/frontend-development/SKILL.md | 238 +++ .../references/design-checklist.md | 59 + .agents/skills/hermes-api-design/SKILL.md | 523 ++++++ .../skills/hermes-backend-patterns/SKILL.md | 598 ++++++ .agents/skills/hermes-code-review/README.md | 79 + .agents/skills/hermes-code-review/SKILL.md | 232 +++ .agents/skills/hermes-code-review/_meta.json | 6 + .../skills/hermes-django-patterns/SKILL.md | 734 ++++++++ .../skills/hermes-frontend-patterns/SKILL.md | 642 +++++++ .../skills/hermes-python-patterns/SKILL.md | 750 ++++++++ .agents/skills/hermes-python-testing/SKILL.md | 816 +++++++++ .../skills/hermes-security-auditor/SKILL.md | 399 ++++ .../skills/hermes-security-auditor/_meta.json | 6 + .agents/skills/hermes-ui-ux-pro-max/SKILL.md | 43 + .../skills/hermes-ui-ux-pro-max/_meta.json | 6 + .../assets/data/charts.csv | 26 + .../assets/data/colors.csv | 97 + .../assets/data/icons.csv | 101 ++ .../assets/data/landing.csv | 31 + .../assets/data/products.csv | 97 + .../assets/data/react-performance.csv | 45 + .../assets/data/stacks/astro.csv | 54 + .../assets/data/stacks/flutter.csv | 53 + .../assets/data/stacks/html-tailwind.csv | 56 + .../assets/data/stacks/jetpack-compose.csv | 53 + .../assets/data/stacks/nextjs.csv | 53 + .../assets/data/stacks/nuxt-ui.csv | 51 + .../assets/data/stacks/nuxtjs.csv | 59 + .../assets/data/stacks/react-native.csv | 52 + .../assets/data/stacks/react.csv | 54 + .../assets/data/stacks/shadcn.csv | 61 + .../assets/data/stacks/svelte.csv | 54 + .../assets/data/stacks/swiftui.csv | 51 + .../assets/data/stacks/vue.csv | 50 + .../assets/data/styles.csv | 68 + .../assets/data/typography.csv | 58 + .../assets/data/ui-reasoning.csv | 101 ++ .../assets/data/ux-guidelines.csv | 100 + .../assets/data/web-interface.csv | 31 + .../hermes-ui-ux-pro-max/data/charts.csv | 26 + .../hermes-ui-ux-pro-max/data/colors.csv | 97 + .../hermes-ui-ux-pro-max/data/icons.csv | 101 ++ .../hermes-ui-ux-pro-max/data/landing.csv | 31 + .../hermes-ui-ux-pro-max/data/products.csv | 97 + .../data/react-performance.csv | 45 + .../data/stacks/astro.csv | 54 + .../data/stacks/flutter.csv | 53 + .../data/stacks/html-tailwind.csv | 56 + .../data/stacks/jetpack-compose.csv | 53 + .../data/stacks/nextjs.csv | 53 + .../data/stacks/nuxt-ui.csv | 51 + .../data/stacks/nuxtjs.csv | 59 + .../data/stacks/react-native.csv | 52 + .../data/stacks/react.csv | 54 + .../data/stacks/shadcn.csv | 61 + .../data/stacks/svelte.csv | 54 + .../data/stacks/swiftui.csv | 51 + .../hermes-ui-ux-pro-max/data/stacks/vue.csv | 50 + .../hermes-ui-ux-pro-max/data/styles.csv | 68 + .../hermes-ui-ux-pro-max/data/typography.csv | 58 + .../data/ui-reasoning.csv | 101 ++ .../data/ux-guidelines.csv | 100 + .../data/web-interface.csv | 31 + .../references/upstream-README.md | 488 +++++ .../references/upstream-skill-content.md | 288 +++ .../hermes-ui-ux-pro-max/scripts/__init__.py | 0 .../hermes-ui-ux-pro-max/scripts/core.py | 253 +++ .../scripts/design_system.py | 1071 +++++++++++ .../hermes-ui-ux-pro-max/scripts/search.py | 111 ++ .../skills/knowledge_distillation/Skill.md | 123 ++ .agents/skills/pr-creator/SKILL.md | 127 ++ .agents/skills/product-director/SKILL.md | 97 + .agents/skills/product-manager/SKILL.md | 121 ++ .agents/skills/python_engineering/Skill.md | 85 + .agents/skills/quality_assurance/Skill.md | 79 + .agents/skills/requirements_analysis/Skill.md | 78 + .agents/skills/schema_design/Skill.md | 78 + .agents/skills/security_assurance/Skill.md | 69 + .agents/skills/shared/PRINCIPLES.md | 148 ++ .agents/skills/source-command-dev/SKILL.md | 23 + .../skills/source-command-feature/SKILL.md | 25 + .agents/skills/source-command-review/SKILL.md | 26 + .agents/skills/source-command-ui/SKILL.md | 27 + .agents/skills/supervisor-fix/SKILL.md | 758 ++++++++ .agents/skills/supervisor/SKILL.md | 801 ++++++++ .agents/skills/system_design/Skill.md | 77 + .agents/skills/tech-director/SKILL.md | 117 ++ .agents/skills/tech-lead/SKILL.md | 413 +++++ ...32\347\224\250\346\250\241\346\235\277.md" | 86 + .agents/skills/test-director/SKILL.md | 130 ++ .../skills/test_driven_development/Skill.md | 78 + .agents/skills/tester/SKILL.md | 208 +++ .agents/skills/update-docs/SKILL.md | 108 ++ .agents/skills/webapp-testing/SKILL.md | 265 +++ .codegraph/.gitignore | 5 + .env.example | 4 + ...ss_1d2f5a8c-18cc-41ea-acda-0f70e5e79a03.md | 153 ++ ...ss_280ac5aa-4a2a-4f75-bb83-96de0267b184.md | 522 ++++++ ...ss_54c639d5-18eb-4f11-81e5-94929952e308.md | 178 ++ ...ss_bef86c6f-6092-4275-92cf-33ea49b8f04f.md | 112 ++ AGENTS.md | 253 +++ CLAUDE.md | 11 +- README.md | 4 +- backend/app/api/v1/api.py | 40 +- backend/app/api/v1/endpoints/analysis.py | 573 +++++- backend/app/api/v1/endpoints/collector.py | 95 + backend/app/api/v1/endpoints/system.py | 64 +- backend/app/api/v1/endpoints/tasks.py | 2 + backend/app/api/v1/endpoints/tests.py | 61 +- backend/app/core/config.py | 4 + backend/app/core/dependencies.py | 33 + backend/app/core/mongo.py | 45 + backend/app/db/seed.py | 463 +++-- backend/app/db/seed_obis_templates.py | 361 ++++ backend/app/models/__init__.py | 4 + backend/app/models/meter.py | 10 + backend/app/models/obis_template.py | 119 ++ backend/app/models/task.py | 7 +- backend/app/schemas/collector_config.py | 152 ++ backend/app/schemas/protocol_params.py | 55 + .../app/services/analysis_mongo_service.py | 657 +++++++ backend/app/services/analysis_service.py | 1042 +++++++++++ backend/app/services/auth_service.py | 37 +- backend/app/services/collector/__init__.py | 8 + backend/app/services/collector/bootstrap.py | 125 ++ backend/app/services/collector/registry.py | 92 + .../app/services/collector/session_writer.py | 157 ++ .../services/collector/template_service.py | 93 + backend/app/services/collector/types.py | 44 + backend/app/services/meter_service.py | 3 + backend/app/services/mongo_session_repo.py | 365 ++++ backend/app/services/project_service.py | 27 +- backend/app/services/scheduler.py | 106 ++ backend/app/services/task_service.py | 536 +++++- backend/main.py | 26 + backend/migrations/env.py | 4 +- ..._schema_integrity_and_performance_fixes.py | 3 +- ...8c_add_class_id_attribute_id_module_to_.py | 3 +- ...295492b06f34_add_col_data_quality_table.py | 3 +- ...f6_add_meter_reading_and_daily_summary_.py | 3 +- ...e93637ebea_add_collection_session_table.py | 3 +- ...8f3c2d1e4b5_add_collector_config_tables.py | 235 +++ ...dad61bb3e226_add_col_data_quality_table.py | 3 +- .../e449aae6105e_add_table_comments.py | 2 - .../versions/f6f96096b187_init_all_tables.py | 3 +- backend/pyproject.toml | 2 +- backend/scripts/__init__.py | 1 + backend/scripts/expand_history.py | 99 + backend/scripts/import_real_dcpp.py | 249 +++ backend/scripts/init_mongo.py | 110 ++ backend/scripts/seed_mongo.py | 205 +++ backend/scripts/sync_real_data.py | 157 ++ backend/tests/test_alarms.py | 4 +- backend/tests/test_analysis.py | 120 ++ backend/tests/test_api.py | 10 +- backend/tests/test_meter.py | 55 + backend/tests/test_rbac.py | 118 ++ backend/tests/test_reference.py | 12 +- docker-compose.yml | 56 + docs/CHANGELOG.md | 71 + ...report33-customer-consumption-profile.html | Bin 0 -> 68064 bytes docs/design/collector-config-model.md | 772 ++++++++ docs/design/frontend-architecture.md | 637 +++++++ docs/design/mongodb-integration.md | 1610 +++++++++++++++++ docs/planning/phase-overview.md | 4 +- .../apps/web-antd/src/api/modules/analysis.ts | 87 +- .../web-antd/src/composables/useChartTheme.ts | 6 +- .../src/router/routes/modules/analysis.ts | 192 +- frontend/apps/web-antd/src/store/meter.ts | 5 +- .../src/views/analysis/alarm-trend.vue | 195 ++ .../src/views/analysis/comm-success-rate.vue | 287 +++ .../web-antd/src/views/analysis/compare.vue | 93 +- .../src/views/analysis/consistency.vue | 26 +- .../src/views/analysis/consumption-trend.vue | 174 ++ .../web-antd/src/views/analysis/daily.vue | 603 +++--- .../src/views/analysis/data-quality.vue | 45 +- .../src/views/analysis/device-health.vue | 184 ++ .../src/views/analysis/non-comm-devices.vue | 226 +++ .../src/views/analysis/ondemand-history.vue | 156 ++ .../src/views/analysis/open-alarms-report.vue | 208 +++ .../src/views/analysis/read-completeness.vue | 235 +++ .../web-antd/src/views/analysis/report.vue | 99 +- .../src/views/analysis/retry-analysis.vue | 190 ++ .../src/views/analysis/signal-aging.vue | 194 ++ .../dashboard/analytics/analytics-trends.vue | 11 +- .../analytics/analytics-visits-data.vue | 4 +- .../analytics/analytics-visits-sales.vue | 9 +- .../analytics/analytics-visits-source.vue | 7 +- .../dashboard/analytics/analytics-visits.vue | 5 +- .../apps/web-antd/src/views/meter/borrow.vue | 43 +- .../apps/web-antd/src/views/meter/repair.vue | 46 +- .../apps/web-antd/src/views/screen/meter.vue | 209 ++- .../web-antd/src/views/screen/overview.vue | 47 +- .../web-antd/src/views/screen/project.vue | 56 +- .../web-antd/src/views/system/db-monitor.vue | 26 +- .../apps/web-antd/src/views/system/health.vue | 179 +- .../web-antd/src/views/system/project.vue | 1 + .../apps/web-antd/src/views/system/user.vue | 1 + .../apps/web-antd/src/views/task/monitor.vue | 10 +- .../apps/web-antd/src/views/test/defect.vue | 63 +- .../apps/web-antd/src/views/test/list.vue | 85 +- 209 files changed, 29716 insertions(+), 1284 deletions(-) create mode 100644 .agents/skills/backend-development/SKILL.md create mode 100644 ".agents/skills/checklists/\351\253\230\351\242\221\351\227\256\351\242\230\346\243\200\346\237\245\346\270\205\345\215\225.md" create mode 100644 .agents/skills/code-review/SKILL.md create mode 100644 .agents/skills/code-review/references/backend-checklist.md create mode 100644 .agents/skills/code-review/references/frontend-checklist.md create mode 100644 .agents/skills/command-executor/SKILL.md create mode 100644 .agents/skills/developer/SKILL.md create mode 100644 .agents/skills/fix-and-lint/SKILL.md create mode 100644 .agents/skills/frontend-development/SKILL.md create mode 100644 .agents/skills/frontend-development/references/design-checklist.md create mode 100644 .agents/skills/hermes-api-design/SKILL.md create mode 100644 .agents/skills/hermes-backend-patterns/SKILL.md create mode 100644 .agents/skills/hermes-code-review/README.md create mode 100644 .agents/skills/hermes-code-review/SKILL.md create mode 100644 .agents/skills/hermes-code-review/_meta.json create mode 100644 .agents/skills/hermes-django-patterns/SKILL.md create mode 100644 .agents/skills/hermes-frontend-patterns/SKILL.md create mode 100644 .agents/skills/hermes-python-patterns/SKILL.md create mode 100644 .agents/skills/hermes-python-testing/SKILL.md create mode 100644 .agents/skills/hermes-security-auditor/SKILL.md create mode 100644 .agents/skills/hermes-security-auditor/_meta.json create mode 100644 .agents/skills/hermes-ui-ux-pro-max/SKILL.md create mode 100644 .agents/skills/hermes-ui-ux-pro-max/_meta.json create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/charts.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/colors.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/icons.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/landing.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/products.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/react-performance.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/astro.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/flutter.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/html-tailwind.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/jetpack-compose.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/nextjs.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/nuxt-ui.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/nuxtjs.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/react-native.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/react.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/shadcn.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/svelte.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/swiftui.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/stacks/vue.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/styles.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/typography.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/ui-reasoning.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/ux-guidelines.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/assets/data/web-interface.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/charts.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/colors.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/icons.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/landing.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/products.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/react-performance.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/astro.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/flutter.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/html-tailwind.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/jetpack-compose.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/nextjs.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/nuxt-ui.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/nuxtjs.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/react-native.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/react.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/shadcn.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/svelte.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/swiftui.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/stacks/vue.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/styles.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/typography.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/ui-reasoning.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/ux-guidelines.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/data/web-interface.csv create mode 100644 .agents/skills/hermes-ui-ux-pro-max/references/upstream-README.md create mode 100644 .agents/skills/hermes-ui-ux-pro-max/references/upstream-skill-content.md create mode 100644 .agents/skills/hermes-ui-ux-pro-max/scripts/__init__.py create mode 100644 .agents/skills/hermes-ui-ux-pro-max/scripts/core.py create mode 100644 .agents/skills/hermes-ui-ux-pro-max/scripts/design_system.py create mode 100644 .agents/skills/hermes-ui-ux-pro-max/scripts/search.py create mode 100644 .agents/skills/knowledge_distillation/Skill.md create mode 100644 .agents/skills/pr-creator/SKILL.md create mode 100644 .agents/skills/product-director/SKILL.md create mode 100644 .agents/skills/product-manager/SKILL.md create mode 100644 .agents/skills/python_engineering/Skill.md create mode 100644 .agents/skills/quality_assurance/Skill.md create mode 100644 .agents/skills/requirements_analysis/Skill.md create mode 100644 .agents/skills/schema_design/Skill.md create mode 100644 .agents/skills/security_assurance/Skill.md create mode 100644 .agents/skills/shared/PRINCIPLES.md create mode 100644 .agents/skills/source-command-dev/SKILL.md create mode 100644 .agents/skills/source-command-feature/SKILL.md create mode 100644 .agents/skills/source-command-review/SKILL.md create mode 100644 .agents/skills/source-command-ui/SKILL.md create mode 100644 .agents/skills/supervisor-fix/SKILL.md create mode 100644 .agents/skills/supervisor/SKILL.md create mode 100644 .agents/skills/system_design/Skill.md create mode 100644 .agents/skills/tech-director/SKILL.md create mode 100644 .agents/skills/tech-lead/SKILL.md create mode 100644 ".agents/skills/templates/\351\200\232\347\224\250\346\250\241\346\235\277.md" create mode 100644 .agents/skills/test-director/SKILL.md create mode 100644 .agents/skills/test_driven_development/Skill.md create mode 100644 .agents/skills/tester/SKILL.md create mode 100644 .agents/skills/update-docs/SKILL.md create mode 100644 .agents/skills/webapp-testing/SKILL.md create mode 100644 .codegraph/.gitignore create mode 100644 .zcode/plans/plan-sess_1d2f5a8c-18cc-41ea-acda-0f70e5e79a03.md create mode 100644 .zcode/plans/plan-sess_280ac5aa-4a2a-4f75-bb83-96de0267b184.md create mode 100644 .zcode/plans/plan-sess_54c639d5-18eb-4f11-81e5-94929952e308.md create mode 100644 .zcode/plans/plan-sess_bef86c6f-6092-4275-92cf-33ea49b8f04f.md create mode 100644 AGENTS.md create mode 100644 backend/app/api/v1/endpoints/collector.py create mode 100644 backend/app/core/mongo.py create mode 100644 backend/app/db/seed_obis_templates.py create mode 100644 backend/app/models/obis_template.py create mode 100644 backend/app/schemas/collector_config.py create mode 100644 backend/app/schemas/protocol_params.py create mode 100644 backend/app/services/analysis_mongo_service.py create mode 100644 backend/app/services/analysis_service.py create mode 100644 backend/app/services/collector/__init__.py create mode 100644 backend/app/services/collector/bootstrap.py create mode 100644 backend/app/services/collector/registry.py create mode 100644 backend/app/services/collector/session_writer.py create mode 100644 backend/app/services/collector/template_service.py create mode 100644 backend/app/services/collector/types.py create mode 100644 backend/app/services/mongo_session_repo.py create mode 100644 backend/app/services/scheduler.py create mode 100644 backend/migrations/versions/a8f3c2d1e4b5_add_collector_config_tables.py create mode 100644 backend/scripts/__init__.py create mode 100644 backend/scripts/expand_history.py create mode 100644 backend/scripts/import_real_dcpp.py create mode 100644 backend/scripts/init_mongo.py create mode 100644 backend/scripts/seed_mongo.py create mode 100644 backend/scripts/sync_real_data.py create mode 100644 backend/tests/test_analysis.py create mode 100644 backend/tests/test_meter.py create mode 100644 backend/tests/test_rbac.py create mode 100644 docker-compose.yml create mode 100644 docs/archive/ui/report33-customer-consumption-profile.html create mode 100644 docs/design/collector-config-model.md create mode 100644 docs/design/frontend-architecture.md create mode 100644 docs/design/mongodb-integration.md create mode 100644 frontend/apps/web-antd/src/views/analysis/alarm-trend.vue create mode 100644 frontend/apps/web-antd/src/views/analysis/comm-success-rate.vue create mode 100644 frontend/apps/web-antd/src/views/analysis/consumption-trend.vue create mode 100644 frontend/apps/web-antd/src/views/analysis/device-health.vue create mode 100644 frontend/apps/web-antd/src/views/analysis/non-comm-devices.vue create mode 100644 frontend/apps/web-antd/src/views/analysis/ondemand-history.vue create mode 100644 frontend/apps/web-antd/src/views/analysis/open-alarms-report.vue create mode 100644 frontend/apps/web-antd/src/views/analysis/read-completeness.vue create mode 100644 frontend/apps/web-antd/src/views/analysis/retry-analysis.vue create mode 100644 frontend/apps/web-antd/src/views/analysis/signal-aging.vue diff --git a/.agents/skills/backend-development/SKILL.md b/.agents/skills/backend-development/SKILL.md new file mode 100644 index 0000000..df6a99f --- /dev/null +++ b/.agents/skills/backend-development/SKILL.md @@ -0,0 +1,283 @@ +--- +name: backend-development +description: | + MiniHES 后端开发规范。当用户进行 FastAPI 后端开发、API 设计、数据库操作、 + DLMS 协议实现、数据采集任务开发时自动激活。 + 涵盖分层架构、编码原则、安全要求、数据库规范。 +--- + +# MiniHES 后端开发规范 + +## 何时使用 + +- 编写 FastAPI endpoint、service、model、schema +- 数据库迁移、种子数据 +- DLMS 协议栈开发 +- 数据采集任务调度 +- 后端代码审查或重构 + +## 技术栈 + +- **框架**: FastAPI + uvicorn +- **语言**: Python 3.12 (uv 管理) +- **ORM**: SQLAlchemy 2.0 async (asyncpg) +- **数据库**: PostgreSQL + Redis + InfluxDB +- **迁移**: Alembic +- **任务调度**: APScheduler +- **验证**: Pydantic v2 + +## 分层架构 + +严格遵循单向依赖,禁止跨层调用: + +``` +api/v1/endpoints/ → 路由层(HTTP 处理) + ↓ +schemas/ → 数据验证层(Pydantic) + ↓ +services/ → 业务逻辑层 + ↓ +models/ → 数据访问层(SQLAlchemy ORM) + ↓ +core/ → 基础设施(config, database, security) +``` + +### 各层职责 + +| 层 | 职责 | 禁止 | +|---|------|------| +| endpoints | 参数接收、调用 service、返回响应 | 直接操作 ORM、写业务逻辑 | +| schemas | 请求/响应模型、数据验证 | 访问数据库 | +| services | 业务逻辑、事务管理、跨模型协调 | 直接处理 HTTP 请求 | +| models | ORM 定义、表结构 | 包含业务逻辑 | +| core | 配置、数据库连接、安全工具 | 依赖业务层 | + +## 编码原则 + +### 先设计后编码 + +1. 先确认需求和接口设计 +2. 定义 schema(请求/响应模型) +3. 实现 service 层业务逻辑 +4. 实现 endpoint 路由 +5. 编写测试 + +**禁止**:未确认方案就直接改数据库或写代码。 + +### 命名规范 + +| 类型 | 规范 | 示例 | +|------|------|------| +| 表名 | `{模块前缀}_{名称}` | `dev_meter`, `col_task` | +| 模型类 | PascalCase | `MeterComm`, `TaskLog` | +| 字段名 | snake_case | `meter_id`, `created_at` | +| API 路径 | kebab-case 复数 | `/api/v1/meter-points` | +| Service 方法 | 动词_名词 | `get_meter`, `create_task` | +| Schema 类 | `{动作}{资源}{Request/Response}` | `CreateMeterRequest` | + +### 表前缀约定 + +| 前缀 | 模块 | 示例 | +|------|------|------| +| `sys_` | 系统管理 | `sys_user`, `sys_role`, `sys_audit_log` | +| `dev_` | 设备管理 | `dev_meter`, `dev_meter_comm` | +| `col_` | 数据采集 | `col_task`, `col_meter_reading` | +| `lab_` | 实验室测试 | `lab_test_task`, `lab_defect` | + +## 响应格式 + +### 成功响应 + +直接返回数据,使用标准 HTTP 状态码: + +```python +# 200 OK - 查询 +@router.get("/meters") +async def list_meters(...): + return {"items": [...], "total": 100} + +# 201 Created - 创建 +@router.post("/meters", status_code=201) +async def create_meter(...): + return meter +``` + +### 错误响应 + +HTTP 状态码 + 业务码: + +```python +{ + "detail": "错误描述", + "error_code": 10001 +} +``` + +### 业务错误码 + +| 范围 | 模块 | 示例 | +|------|------|------| +| 10001-10999 | 设备管理 | 10001=设备不存在 | +| 20001-20999 | 数据采集 | 20001=任务执行失败 | +| 30001-30999 | 系统管理 | 30001=认证失败 | + +## 数据库规范 + +### ORM 模型 + +```python +from app.core.database import Base, TimestampMixin + +class Meter(Base, TimestampMixin): + __tablename__ = "dev_meter" + + id: Mapped[int] = mapped_column(Integer, primary_key=True, autoincrement=True) + serial_number: Mapped[str] = mapped_column(String(50), unique=True, index=True) + # ... 其他字段 + + # relationship 使用字符串引用避免循环导入 + comm: Mapped["MeterComm | None"] = relationship(back_populates="meter", uselist=False) +``` + +### 关键规则 + +- 所有模型继承 `Base`,需要时间戳的加 `TimestampMixin` +- `Mapped` 类型注解,必须指定 `nullable` +- JSON 字段用 `Mapped[dict]` + `mapped_column(JSON, ...)` +- ForeignKey 必须显式声明,有 `ondelete` 约束 +- 新模型必须在 `app/models/__init__.py` 注册 + +### 迁移流程 + +```bash +# 1. 生成迁移(先确认模型变更正确) +uv run alembic revision --autogenerate -m "描述" + +# 2. 检查迁移文件(特别是 nullable、default、现有数据) + +# 3. 应用迁移 +uv run alembic upgrade head +``` + +**迁移注意**: +- 有现有数据的表添加 NOT NULL 列时,需先填充默认值或先加 nullable 列再改 +- 删除列前确认无代码引用 +- 不可回滚的迁移需确认 + +## 安全要求 + +### 必须 + +- 所有用户输入通过 Pydantic schema 验证 +- 使用参数化查询(SQLAlchemy ORM 自动处理) +- JWT token 认证保护需要登录的接口 +- 密码使用 bcrypt/pbkdf2 哈希存储 +- API 路径中不暴露内部 ID 结构 + +### 禁止 + +- 拼接 SQL 字符串 +- 硬编码密钥或密码 +- 返回完整异常堆栈给前端 +- 未验证的外部输入直接传入数据库查询 + +## 输出格式 + +构建后端功能时,按以下格式输出: + +1. **文件结构** — 展示代码应放在哪里 +2. **完整代码** — 功能完整、有类型注解的代码 +3. **依赖** — 需要安装的包(`uv add xxx`) +4. **数据库迁移** — 如有模型变更,提供 alembic 命令 +5. **环境变量** — 如有需要,提供 `.env` 配置 +6. **运行说明** — 如何启动和验证 + +### 完整功能示例 + +**Schema 层**: +```python +# schemas/meter.py +from pydantic import BaseModel, Field + +class CreateMeterRequest(BaseModel): + serial_number: str = Field(..., max_length=50) + meter_name: str = Field(..., max_length=100) + meter_type_id: int | None = None + +class MeterDetail(BaseModel): + id: int + serial_number: str + meter_name: str + current_status: str + + model_config = {"from_attributes": True} +``` + +**Service 层**: +```python +# services/meter_service.py +from sqlalchemy import select +from sqlalchemy.ext.asyncio import AsyncSession +from app.models import Meter +from app.schemas.meter import CreateMeterRequest + +async def create_meter(db: AsyncSession, data: CreateMeterRequest) -> Meter: + meter = Meter(**data.model_dump()) + db.add(meter) + await db.flush() + return meter +``` + +**Endpoint 层**: +```python +# api/v1/endpoints/meters.py +from fastapi import APIRouter, Depends +from sqlalchemy.ext.asyncio import AsyncSession +from app.core.dependencies import get_db, get_current_user +from app.schemas.meter import CreateMeterRequest, MeterDetail +from app.services.meter_service import create_meter + +router = APIRouter(prefix="/meters", tags=["meters"]) + +@router.post("", response_model=MeterDetail, status_code=201) +async def create( + data: CreateMeterRequest, + db: AsyncSession = Depends(get_db), + user=Depends(get_current_user), +): + return await create_meter(db, data) +``` + +**依赖安装**: +```bash +uv add # 如果需要新包 +uv run alembic revision --autogenerate -m "add xxx" +uv run alembic upgrade head +``` + +## 文件结构参考 + +``` +app/ +├── api/v1/endpoints/ # 每个业务一个文件 +│ ├── auth.py +│ ├── meters.py +│ ├── tasks.py +│ └── ... +├── schemas/ # 对应 endpoint 的请求/响应模型 +│ ├── auth.py +│ ├── meter.py +│ └── ... +├── services/ # 业务逻辑,按模块组织 +│ ├── meter_service.py +│ ├── task_service.py +│ └── ... +├── models/ # ORM 模型 +├── core/ # 基础设施 +│ ├── config.py # Settings +│ ├── database.py # engine, session, Base +│ ├── security.py # JWT, password +│ ├── dependencies.py # get_db, get_current_user +│ └── exceptions.py # 自定义异常 +└── main.py +``` diff --git "a/.agents/skills/checklists/\351\253\230\351\242\221\351\227\256\351\242\230\346\243\200\346\237\245\346\270\205\345\215\225.md" "b/.agents/skills/checklists/\351\253\230\351\242\221\351\227\256\351\242\230\346\243\200\346\237\245\346\270\205\345\215\225.md" new file mode 100644 index 0000000..24790c1 --- /dev/null +++ "b/.agents/skills/checklists/\351\253\230\351\242\221\351\227\256\351\242\230\346\243\200\346\237\245\346\270\205\345\215\225.md" @@ -0,0 +1,41 @@ +# 高频问题检查清单 + +技术骨干在疑难排查「阶段1:高频问题快速检查」中必须首先查阅本清单;发现新高频问题时应更新项目内副本 `.vibe/docs/常见问题检查清单.md`。 + +--- + +## API路径问题检查清单 + +- [ ] 路径是否缺少斜杠(/) +- [ ] 路径大小写是否正确 +- [ ] 相对路径 vs 绝对路径混淆 +- [ ] 代理配置是否正确 +- [ ] CORS 设置问题 + +## 环境变量问题检查清单 + +- [ ] 变量是否在正确环境加载 +- [ ] 变量名拼写错误 +- [ ] 变量值格式错误(引号、特殊字符) +- [ ] 变量作用域问题(全局 vs 局部) +- [ ] 敏感信息是否正确注入 + +## 端口问题检查清单 + +- [ ] 端口是否被占用 (`lsof -i :port`) +- [ ] 端口配置前后端是否一致 +- [ ] 防火墙设置 +- [ ] Docker 容器端口映射 +- [ ] HTTPS vs HTTP 协议混淆 + +## 启动脚本问题检查清单 + +- [ ] 脚本执行权限 +- [ ] 工作目录是否正确 +- [ ] 依赖是否安装完整 +- [ ] 配置文件路径是否正确 +- [ ] 日志级别设置 + +--- + +**使用说明**:排查前先按本清单逐项排除;发现新高频模式时,将条目补充到 `.vibe/docs/常见问题检查清单.md`,并可在本文件中同步增加分类(可选)。 diff --git a/.agents/skills/code-review/SKILL.md b/.agents/skills/code-review/SKILL.md new file mode 100644 index 0000000..1e5c5da --- /dev/null +++ b/.agents/skills/code-review/SKILL.md @@ -0,0 +1,171 @@ +--- +name: code-review +description: | + MiniHES 代码审查。当用户请求审查代码、review PR、检查变更时激活。 + 支持本地变更审查和指定文件审查,输出结构化审查报告。 + 引用 backend-checklist.md 和 frontend-checklist.md 作为审查依据。 +--- + +# MiniHES 代码审查 + +## 何时使用 + +- 用户说 "review"、"审查"、"检查代码" +- 提交 PR 前的代码审查 +- 审查指定文件或目录 +- 审查 git diff 中的变更 + +## 审查模式 + +### 模式 A:本地变更审查 + +```bash +# 查看变更范围 +git status +git diff # 未暂存 +git diff --staged # 已暂存 +``` + +审查所有待提交变更。 + +### 模式 B:指定文件审查 + +用户指定文件路径,逐文件按清单审查。 + +### 模式 C:PR 审查 + +```bash +# 获取 PR 变更 +git diff main...HEAD --stat +git diff main...HEAD +``` + +## 审查维度 + +按以下六大支柱分析代码: + +### 1. 正确性 +- 逻辑是否正确,是否实现预期功能 +- 边界条件是否处理 +- 异步操作是否正确 await +- 数据库事务是否合理 + +### 2. 安全性 +- 输入是否验证 +- SQL 注入风险 +- XSS / CSRF 防护 +- 敏感信息是否泄露 +- 权限检查是否存在 + +### 3. 性能 +- N+1 查询问题 +- 不必要的全表扫描 +- 内存泄漏风险 +- 大量数据的分页处理 + +### 4. 可维护性 +- 代码是否清晰易懂 +- 命名是否准确 +- 函数是否过长(< 50 行) +- 是否有重复代码可提取 + +### 5. 架构合规 +- 是否遵循分层架构(endpoints → schemas → services → models) +- 是否跨层调用 +- 是否符合项目命名规范 +- 是否符合表前缀约定 + +### 6. 测试覆盖 +- 关键逻辑是否有测试 +- 边界条件是否覆盖 +- 错误路径是否测试 + +## 审查清单 + +- 后端代码:参见 [backend-checklist.md](references/backend-checklist.md) +- 前端代码:参见 [frontend-checklist.md](references/frontend-checklist.md) + +## 输出模板 + +### Template A:有发现 + +```markdown +# Code Review + +Found N urgent issues: + +## 1 +FilePath: line + + +### Suggested fix + + +--- + +Found M suggestions for improvement: + +## 1 +FilePath: line + + +### Suggested fix + + +--- +``` + +问题超过 10 条时,输出前 10 条并注明 "10+ issues"。 + +如果存在需要修改代码的问题,末尾询问:**"是否需要我应用这些修复建议?"** + +### Template B:无问题 + +```markdown +# Code Review +No issues found. +``` + +## 审查决策树 + +每次审查前,按此决策树判断审查重点: + +``` +代码变更 → 是否涉及数据库? +├─ 是 → 检查迁移、ForeignKey、索引、N+1 +│ +├─ 否 → 是否涉及 API 端点? +│ ├─ 是 → 检查 schema 验证、状态码、权限 +│ │ +│ └─ 否 → 是否涉及前端组件? +│ ├─ 是 → 检查类型安全、状态管理、交互反馈 +│ │ +│ └─ 否 → 通用审查(命名、结构、安全) +``` + +## 常见问题 → 修复方案 + +| 错误模式 | 检测方式 | 修复方案 | +|---------|---------|---------| +| `Mapped[dict]` 无 JSON 类型 | ruff 检查 model 文件 | 添加 `mapped_column(JSON, ...)` | +| async 函数内用 `time.sleep` | grep `time.sleep` | 替换为 `asyncio.sleep` | +| 未注册的新模型 | 检查 `models/__init__.py` | 添加导入和 `__all__` | +| NOT NULL 列无默认值且有数据 | alembic migrate 报错 | 先加 nullable 列 → 填充数据 → 改 NOT NULL | +| 前端直接用 axios | grep `axios` 或 `fetch` | 统一使用 `requestClient` | +| 组件内硬编码 API 地址 | grep `http://` / `https://` | 使用环境变量 | +| 缺少 loading 状态 | 检查异步操作 | 添加 `loading ref` + `a-spin` | +| 缺少删除确认 | 检查删除按钮 | 添加 `Modal.confirm()` | + +## 审查流程 + +1. **识别变更范围**:确定审查哪些文件 +2. **分类**:区分后端 (.py) 和前端 (.vue/.ts) 文件 +3. **逐文件审查**:按对应清单检查 +4. **汇总**:按严重程度(Critical → Suggestion)排列 +5. **输出**:使用 Template A 或 B + +## 审查语气 + +- 建设性、专业、简洁 +- 说明**为什么**需要修改 +- 认可好的代码实践 diff --git a/.agents/skills/code-review/references/backend-checklist.md b/.agents/skills/code-review/references/backend-checklist.md new file mode 100644 index 0000000..8ca3bd8 --- /dev/null +++ b/.agents/skills/code-review/references/backend-checklist.md @@ -0,0 +1,57 @@ +# 后端代码审查清单 + +## 架构合规 + +- [ ] endpoint 只处理 HTTP 逻辑,不含业务代码 +- [ ] service 层处理业务逻辑,不直接操作 request/response +- [ ] schema 定义了请求/响应类型 +- [ ] 数据库操作通过 ORM,无原生 SQL 拼接 +- [ ] 新模型在 `__init__.py` 注册 + +## 数据库 + +- [ ] 新表有正确的模块前缀 (sys_/dev_/col_/lab_) +- [ ] ForeignKey 声明正确,有 ondelete 约束 +- [ ] 查询有合理的索引支持 +- [ ] 无 N+1 查询(使用 `selectinload` / `joinedload`) +- [ ] 批量操作使用批量插入而非循环单条 +- [ ] 大量数据查询有分页限制 + +## 安全 + +- [ ] 用户输入通过 Pydantic schema 验证 +- [ ] 无 SQL 字符串拼接 +- [ ] 需要认证的接口有依赖注入检查 +- [ ] 敏感操作有权限校验 +- [ ] 密码/密钥不硬编码、不输出到日志 +- [ ] 错误响应不暴露堆栈信息 + +## API 设计 + +- [ ] 使用正确的 HTTP 方法 (GET/POST/PUT/PATCH/DELETE) +- [ ] 使用正确的 HTTP 状态码 +- [ ] 响应格式符合项目规范 +- [ ] API 路径使用 kebab-case 复数形式 +- [ ] 分页接口有 `page`、`page_size`、`total` 字段 + +## 异步 + +- [ ] async 函数正确使用 await +- [ ] 数据库操作使用 async session +- [ ] 无阻塞调用在 async 上下文中(如 time.sleep → asyncio.sleep) +- [ ] 并发操作使用 asyncio.gather + +## 错误处理 + +- [ ] 可预期的错误有明确的异常处理 +- [ ] 异常有合理的错误码和描述 +- [ ] 数据库事务失败时正确 rollback +- [ ] 外部调用(网络、Redis)有超时和重试 + +## 代码质量 + +- [ ] 函数长度 < 50 行 +- [ ] 无重复代码 +- [ ] 变量命名准确 +- [ ] 无未使用的导入 +- [ ] 类型注解完整 diff --git a/.agents/skills/code-review/references/frontend-checklist.md b/.agents/skills/code-review/references/frontend-checklist.md new file mode 100644 index 0000000..741f757 --- /dev/null +++ b/.agents/skills/code-review/references/frontend-checklist.md @@ -0,0 +1,62 @@ +# 前端代码审查清单 + +## 组件设计 + +- [ ] 组件职责单一 +- [ ] Props 有 TypeScript 类型定义 +- [ ] Events 使用 emit,不直接修改 props +- [ ] 复杂逻辑提取为 composable +- [ ] 列表渲染使用 `:key` +- [ ] 无直接 DOM 操作 + +## 类型安全 + +- [ ] API 响应有类型定义 +- [ ] Props 有类型定义和默认值 +- [ ] ref/reactive 有泛型类型 +- [ ] 无 any 类型(除非必要且注释说明) +- [ ] 事件回调有类型 + +## 状态管理 + +- [ ] 组件内状态用 ref/reactive +- [ ] 跨组件共享用 Pinia Store +- [ ] Store 内异步操作有 loading 状态 +- [ ] Store 无冗余状态(可从其他状态派生) + +## 性能 + +- [ ] 路由使用懒加载 +- [ ] 大列表考虑虚拟滚动 +- [ ] 避免不必要的重渲染(computed vs watch) +- [ ] 图片有懒加载 +- [ ] 无内存泄漏(定时器、事件监听器在 unmount 时清理) + +## 样式 + +- [ ] 使用 scoped 样式 +- [ ] 无全局样式污染 +- [ ] 使用 Ant Design Token/变量,非硬编码颜色 +- [ ] 响应式适配(至少 1280px+) + +## API 调用 + +- [ ] 使用 requestClient 封装 +- [ ] 请求/响应有 TypeScript 类型 +- [ ] 加载状态有 spin/skeleton 提示 +- [ ] 错误有 message.error 提示 +- [ ] 提交按钮有 loading 防重复 + +## 安全 + +- [ ] 不在前端存储敏感信息(token 除外) +- [ ] 用户输入做 XSS 防护 +- [ ] 不拼接 URL 参数(使用 params) +- [ ] API 地址使用环境变量 + +## 代码质量 + +- [ ] 无 console.log 调试代码 +- [ ] 无注释掉的代码块 +- [ ] 无未使用的导入和变量 +- [ ] 模板中无复杂表达式 diff --git a/.agents/skills/command-executor/SKILL.md b/.agents/skills/command-executor/SKILL.md new file mode 100644 index 0000000..92c7200 --- /dev/null +++ b/.agents/skills/command-executor/SKILL.md @@ -0,0 +1,526 @@ +````markdown +--- +name: 命令执行与错误处理规范 +description: 命令执行规范(防阻塞、跨平台、超时)+ 错误分类、处理策略与升级路径,所有执行命令或处理错误的Agent均需遵循 +--- + +# 目的与整合说明 + +本 Skill 整合**命令执行规范**与**错误处理规范**,统一处理执行与错误问题。 + +- **命令执行**:定义跨操作系统的命令执行规范,防止阻塞命令导致系统无限等待,确保命令在不同平台上正确执行。 +- **错误处理**:定义统一的错误分类、记录格式、处理策略与升级路径,确保各角色在遇到问题时有清晰的处理策略。 + +**核心原则:防阻塞、跨平台、可超时;错误可分类、可追溯、可升级** + +> 任何终端命令执行前必须评估阻塞风险和系统兼容性。 +> +> **铁律:NO BLOCKING COMMANDS WITHOUT TIMEOUT OR BACKGROUND MODE** + +# 适用场景 +- 所有需要执行终端命令的 Agent +- 测试执行、构建运行、服务启动 +- 文件操作、环境检查、依赖安装 +- 任何 Agent 执行过程中遇到错误、需决定重试或升级策略 +- 需要记录和追踪问题 + +# 操作系统检测(必须首先执行) + +## 检测方法 + +在执行任何系统相关命令前,**必须先检测操作系统**: + +```bash +# 通用检测方法 +uname -s 2>/dev/null || echo "Windows" +``` + +### 检测结果与平台映射 + +| uname 输出 | 平台 | 变量设置 | +|-----------|------|----------| +| Darwin | macOS | `OS_TYPE=macos` | +| Linux | Linux | `OS_TYPE=linux` | +| MINGW* / MSYS* / CYGWIN* | Windows (Git Bash) | `OS_TYPE=windows` | +| 命令失败 | Windows (CMD/PowerShell) | `OS_TYPE=windows` | + +## 平台特定命令对照表 + +### 文件系统操作 + +| 操作 | macOS/Linux | Windows (CMD) | Windows (PowerShell) | +|------|-------------|---------------|----------------------| +| 列出文件 | `ls -la` | `dir` | `Get-ChildItem` | +| 查看文件 | `cat file` | `type file` | `Get-Content file` | +| 删除文件 | `rm file` | `del file` | `Remove-Item file` | +| 删除目录 | `rm -rf dir` | `rmdir /s /q dir` | `Remove-Item -Recurse dir` | +| 创建目录 | `mkdir -p dir` | `mkdir dir` | `New-Item -ItemType Directory dir` | +| 复制文件 | `cp src dst` | `copy src dst` | `Copy-Item src dst` | +| 移动文件 | `mv src dst` | `move src dst` | `Move-Item src dst` | +| 查找文件 | `find . -name "*.txt"` | `dir /s *.txt` | `Get-ChildItem -Recurse -Filter *.txt` | +| 搜索内容 | `grep "text" file` | `findstr "text" file` | `Select-String "text" file` | + +### 进程和网络操作 + +| 操作 | macOS | Linux | Windows | +|------|-------|-------|---------| +| 查看端口占用 | `lsof -i :PORT` | `ss -tlnp \| grep PORT` 或 `netstat -tlnp` | `netstat -ano \| findstr PORT` | +| 杀死进程 | `kill -9 PID` | `kill -9 PID` | `taskkill /F /PID PID` | +| 按名称杀进程 | `pkill -f name` | `pkill -f name` | `taskkill /F /IM name.exe` | +| 查看进程 | `ps aux` | `ps aux` | `tasklist` | +| 环境变量 | `export VAR=val` | `export VAR=val` | `set VAR=val` (CMD) / `$env:VAR=val` (PS) | +| 路径分隔符 | `/` | `/` | `\` (但 `/` 在大多数工具中也可用) | + +### 包管理器 + +| 平台 | 包管理器 | 安装示例 | +|------|---------|----------| +| macOS | Homebrew | `brew install jq` | +| Ubuntu/Debian | apt | `sudo apt install jq` | +| CentOS/RHEL | yum/dnf | `sudo yum install jq` | +| Windows | Chocolatey | `choco install jq` | +| Windows | Scoop | `scoop install jq` | +| Windows | winget | `winget install jqlang.jq` | + +# 阻塞命令处理(核心规范) + +## 阻塞命令识别 + +### 高风险阻塞命令列表 + +| 类别 | 命令示例 | 阻塞原因 | +|------|----------|----------| +| **服务器启动** | `npm run dev`, `npm start`, `cargo run`, `python -m http.server`, `go run main.go`, `rails server`, `flask run` | 持续运行,等待请求 | +| **监听模式** | `npm test --watch`, `cargo watch`, `tsc --watch`, `nodemon` | 持续监听文件变化 | +| **持续测试** | `cargo test` (有些情况), `pytest` (某些插件), `jest --watch` | 可能等待输入或持续运行 | +| **交互式命令** | `npm init`, `git commit` (无 -m), `ssh`, `mysql`, `psql` | 等待用户输入 | +| **长时间操作** | `docker build` (大型镜像), `npm install` (大型项目), `cargo build` (首次编译) | 可能超时 | +| **网络等待** | `curl` (慢服务), `wget` (大文件), `git clone` (大仓库) | 网络延迟 | + +### 阻塞检测规则 + +``` +IF 命令包含以下模式 THEN 标记为潜在阻塞: + - "run dev" | "run start" | "run serve" + - "server" | "serve" | "listen" + - "--watch" | "-w" (监听标志) + - "nodemon" | "supervisor" | "pm2 start" + - 无参数的 "cargo run" | "go run" | "python app.py" + - 数据库客户端命令(mysql, psql, mongo, redis-cli) + +IF 命令可能需要用户输入 THEN 标记为潜在阻塞: + - "npm init" (无 -y) + - "git commit" (无 -m) + - "ssh" (无密钥配置) +``` + +## 阻塞命令处理策略 + +### 策略1:后台模式启动(推荐用于服务器) + +```bash +# macOS/Linux +nohup npm run dev > /tmp/server.log 2>&1 & +echo $! > /tmp/server.pid +sleep 2 # 等待启动 +cat /tmp/server.log | head -20 # 查看启动日志 + +# 验证是否启动成功 +if curl -s http://localhost:3000/health > /dev/null; then + echo "服务器启动成功" +else + echo "服务器启动失败,查看日志:" + cat /tmp/server.log +fi +``` + +```powershell +# Windows PowerShell +Start-Process -NoNewWindow -FilePath "npm" -ArgumentList "run dev" -RedirectStandardOutput "server.log" +Start-Sleep -Seconds 2 +Get-Content server.log -Head 20 +``` + +### 策略2:超时控制(推荐用于测试和构建) + +```bash +# macOS/Linux - 使用 timeout 命令 +timeout 300 npm test # 5分钟超时 +timeout 600 cargo build # 10分钟超时 + +# macOS 可能需要 gtimeout (brew install coreutils) +gtimeout 300 npm test + +# 或使用后台 + 等待 +npm test & +PID=$! +sleep 300 && kill $PID 2>/dev/null & # 5分钟后杀死 +wait $PID +EXIT_CODE=$? +``` + +```powershell +# Windows PowerShell +$job = Start-Job { npm test } +$result = Wait-Job $job -Timeout 300 +if ($result.State -eq 'Running') { + Stop-Job $job + Write-Host "测试超时" +} else { + Receive-Job $job +} +``` + +### 策略3:非交互模式(推荐用于安装和初始化) + +```bash +# 使用 -y 或 --yes 跳过交互 +npm init -y +yarn init -y +pip install package --yes +apt install package -y + +# Git 提交必须带消息 +git commit -m "commit message" + +# 使用 expect 处理必须交互的情况(最后手段) +``` + +### 策略4:预检查 + 条件执行 + +```bash +# 检查端口是否被占用,避免启动失败阻塞 +check_port() { + local port=$1 + if [ "$(uname)" = "Darwin" ]; then + lsof -i :$port > /dev/null 2>&1 + elif [ "$(uname)" = "Linux" ]; then + ss -tlnp | grep ":$port " > /dev/null 2>&1 + else + netstat -ano | findstr ":$port " > /dev/null 2>&1 + fi +} + +if check_port 3000; then + echo "端口 3000 已被占用,请先关闭占用进程" + exit 1 +fi + +# 安全启动 +nohup npm run dev & +``` + +## 超时时间建议 + +| 操作类型 | 建议超时 | 说明 | +|----------|----------|------| +| 单元测试 | 5 分钟 | 单个测试文件 | +| 集成测试 | 10 分钟 | 完整测试套件 | +| 构建 (增量) | 5 分钟 | 增量编译 | +| 构建 (完整) | 15 分钟 | 首次或完整构建 | +| 依赖安装 | 10 分钟 | npm/pip/cargo install | +| 服务器启动 | 30 秒 | 等待服务就绪 | +| 网络请求 | 30 秒 | curl/wget 单次请求 | + +# 命令执行检查清单 + +## 执行前检查(必须) + +```markdown +- [ ] 已检测操作系统类型 +- [ ] 命令兼容当前操作系统 +- [ ] 已评估阻塞风险 +- [ ] 阻塞命令已添加超时或后台处理 +- [ ] 交互式命令已添加非交互参数 +- [ ] 路径分隔符正确 +``` + +## 命令模板 + +### 安全执行命令的通用模板 + +```bash +#!/bin/bash +# 命令执行安全模板 + +# 1. 检测操作系统 +detect_os() { + case "$(uname -s)" in + Darwin) echo "macos" ;; + Linux) echo "linux" ;; + MINGW*|MSYS*|CYGWIN*) echo "windows" ;; + *) echo "unknown" ;; + esac +} + +OS_TYPE=$(detect_os) +echo "检测到操作系统: $OS_TYPE" + +# 2. 设置超时命令 +if [ "$OS_TYPE" = "macos" ]; then + # macOS 需要 coreutils + TIMEOUT_CMD="gtimeout" + if ! command -v gtimeout &> /dev/null; then + TIMEOUT_CMD="perl -e 'alarm shift; exec @ARGV' --" + fi +else + TIMEOUT_CMD="timeout" +fi + +# 3. 执行命令示例(带超时) +echo "执行测试..." +$TIMEOUT_CMD 300 npm test +EXIT_CODE=$? + +if [ $EXIT_CODE -eq 124 ]; then + echo "命令执行超时" + exit 1 +elif [ $EXIT_CODE -ne 0 ]; then + echo "命令执行失败,退出码: $EXIT_CODE" + exit $EXIT_CODE +fi + +echo "命令执行成功" +``` + +# 常见问题场景处理 + +## 场景1:启动开发服务器并测试 + +**错误做法**(会阻塞): +```bash +npm run dev # 阻塞!永远不会返回 +curl http://localhost:3000 # 永远不会执行 +``` + +**正确做法**: +```bash +# 后台启动 +nohup npm run dev > /tmp/dev-server.log 2>&1 & +SERVER_PID=$! + +# 等待服务就绪(最多 30 秒) +for i in {1..30}; do + if curl -s http://localhost:3000 > /dev/null 2>&1; then + echo "服务器就绪" + break + fi + sleep 1 +done + +# 执行测试 +curl http://localhost:3000/api/test + +# 完成后清理 +kill $SERVER_PID 2>/dev/null +``` + +## 场景2:运行可能超时的测试 + +**错误做法**(可能无限等待): +```bash +cargo test # 某些测试可能卡住 +``` + +**正确做法**: +```bash +# 使用超时 +timeout 300 cargo test -- --test-threads=1 2>&1 | tee test-output.log +EXIT_CODE=${PIPESTATUS[0]} + +if [ $EXIT_CODE -eq 124 ]; then + echo "测试超时,查看日志: test-output.log" + exit 1 +fi +``` + +## 场景3:安装依赖 + +**错误做法**(可能请求输入): +```bash +npm init # 会请求用户输入 +``` + +**正确做法**: +```bash +npm init -y # 使用默认值 +npm install --yes # 自动确认 +pip install -r requirements.txt --no-input +``` + +## 场景4:检查端口(跨平台) + +```bash +check_port_in_use() { + local port=$1 + case "$(uname -s)" in + Darwin) + lsof -i :$port -sTCP:LISTEN > /dev/null 2>&1 + ;; + Linux) + ss -tlnp 2>/dev/null | grep -q ":$port " || \ + netstat -tlnp 2>/dev/null | grep -q ":$port " + ;; + *) # Windows + netstat -ano 2>/dev/null | grep -q ":$port " + ;; + esac +} + +if check_port_in_use 3000; then + echo "端口 3000 已被占用" +else + echo "端口 3000 可用" +fi +``` + +# 错误处理 + +## 命令执行失败 + +```bash +# 捕获退出码和输出 +OUTPUT=$(command 2>&1) +EXIT_CODE=$? + +if [ $EXIT_CODE -ne 0 ]; then + echo "命令失败 (退出码: $EXIT_CODE)" + echo "错误信息: $OUTPUT" + # 记录到错误日志 + echo "[$(date)] 命令失败: $EXIT_CODE - $OUTPUT" >> /tmp/errors.log +fi +``` + +## 超时处理 + +```bash +timeout 60 long_running_command +if [ $? -eq 124 ]; then + echo "命令超时,可能原因:" + echo "1. 命令执行时间超过预期" + echo "2. 命令陷入无限循环" + echo "3. 网络请求无响应" + # 清理可能遗留的进程 + pkill -f "long_running_command" 2>/dev/null +fi +``` + +# 错误分类与处理策略 + +## 按严重程度 + +| 级别 | 代码 | 含义 | 默认处理 | +|------|------|------|----------| +| CRITICAL | E1 | 系统级错误,无法继续 | 立即停止,上报人类 | +| HIGH | E2 | 阻塞当前任务 | 重试 1 次,失败则升级 | +| MEDIUM | E3 | 影响部分功能 | 重试 2 次,失败则记录继续 | +| LOW | E4 | 轻微问题 | 记录并继续 | + +## 按错误类型 + +| 类型 | 代码 | 描述 | 示例 | +|------|------|------|------| +| EXECUTION | T1 | 命令执行失败 | 编译错误、测试失败 | +| TIMEOUT | T2 | 操作超时 | 网络超时、构建超时 | +| RESOURCE | T3 | 资源问题 | 文件不存在、权限不足 | +| LOGIC | T4 | 逻辑错误 | 方案不可行、设计缺陷 | +| DEPENDENCY | T5 | 依赖问题 | 缺少前置文档、等待他人 | +| **BLOCKING** | T6 | **命令阻塞** | **服务器启动、监听模式、无限等待** | +| **PLATFORM** | T7 | **平台不兼容** | **操作系统命令不兼容** | +| UNKNOWN | T9 | 未知错误 | 无法分类的错误 | + +## 错误记录格式 + +```markdown +## ERROR-{YYYYMMDD-HHMMSS} +- **级别**: CRITICAL | HIGH | MEDIUM | LOW +- **类型**: EXECUTION | TIMEOUT | RESOURCE | LOGIC | DEPENDENCY | BLOCKING | PLATFORM | UNKNOWN +- **角色**: {发生错误的 Agent} +- **任务**: {正在执行的任务} +- **错误信息**: {详细错误} +- **上下文**: {相关文件、命令等} +- **已尝试**: {已尝试的解决方法} +- **状态**: 待处理 | 处理中 | 已解决 | 已升级 +- **处理方式**: {最终如何处理} +``` + +## 处理策略 + +### 策略0:3次失败质疑架构 + +**铁律:同一问题修复3次仍失败,必须质疑架构** + +- 停止修复,标记为架构级问题,升级到技术总监/人类决策。 +- 禁止“再试一次”“这次换个方法”;必须记录已尝试方法并升级。 + +### 策略1:自动重试 + +适用于网络超时(T2)、临时执行失败(T1)、资源暂时不可用(T3)。最大重试 3 次,重试间隔指数退避(5s/15s/45s),重试前检查错误是否可能为临时性。 + +### 策略2:上下文补充后重试 + +适用于信息不足导致的失败。步骤:分析缺少什么信息 → 从文档或代码获取 → 补充上下文后重试。 + +### 策略3:升级处理 + +升级路径:开发专员→技术骨干→技术总监→人类;测试专员→测试总监→人类;产品经理→产品总监→人类。触发条件:重试 N 次仍失败、错误超出当前角色能力、需要决策或授权。 + +### 策略4:阻塞等待 + +适用于依赖其他任务(T5)、需人类决策、需外部资源。记录 BLOCKED-{ID}:等待什么、原因、预计解除条件、超时。 + +## 错误恢复检查清单 + +错误解决后:验证问题已解决;更新错误记录状态;检查遗留影响;如有价值则总结经验。 + +## 度量指标 + +| 指标 | 计算方式 | 告警阈值 | +|------|----------|----------| +| 错误率 | 错误数/总任务数 | > 20% | +| 重试成功率 | 重试成功数/总重试数 | < 50% | +| 平均解决时间 | 总解决时间/错误数 | > 30分钟 | +| 升级率 | 升级数/错误数 | > 30% | + +# 与其他 Skill 的集成 + +## 在测试专员中 +- 测试前检测系统类型 +- 测试命令必须带超时 +- 服务器启动使用后台模式 + +## 在开发专员中 +- 构建命令添加超时 +- 开发服务器后台启动 +- 清理僵尸进程 + +## 在 supervisor-fix 中 +- 所有测试循环命令带超时 +- 检测阻塞后触发熔断 +- 记录命令执行耗时 + +## 在 Supervisor 中 +- 监控所有 Agent 的错误 +- 统计错误率,触发熔断 +- 协调升级处理 + +## 在各角色 Skill 中 +- 按本规范分类错误 +- 按本规范选择处理策略 +- 按本规范记录错误 + +# 注意事项 + +- **所有命令执行前必须先检测操作系统** +- **潜在阻塞命令必须使用超时或后台模式** +- **交互式命令必须添加非交互参数** +- **服务器类命令必须后台启动,并验证就绪状态** +- **命令失败时记录详细错误信息** +- **定期清理后台进程,避免资源泄漏** +- **超时时间要合理,既不能太短导致误判,也不能太长导致等待** +- **错误记录要包含足够上下文,便于他人理解** +- **升级时要带上已尝试的方法,避免重复劳动** +- **严重错误必须立即处理,不能积压** +- **定期回顾错误记录,发现系统性问题** + +```` diff --git a/.agents/skills/developer/SKILL.md b/.agents/skills/developer/SKILL.md new file mode 100644 index 0000000..f7b5172 --- /dev/null +++ b/.agents/skills/developer/SKILL.md @@ -0,0 +1,170 @@ +--- +name: 开发专员 +description: 当需要实现功能、修复Bug、编写单元测试时使用 +--- + +# 目的 +按照详细设计编写功能代码,修复Bug(包括技术骨干分析后的问题),编写单元测试。 + +> 核心原则遵循 `skills/shared/PRINCIPLES.md` +> 编码与接口设计同时遵循其中的**设计原则**:参数默认即是最优、接口命名意图驱动、大声报错且自带解药。 + +# 适用场景 +- 需要开发新功能 +- 需要修复Bug +- 需要编写单元测试 +- 遇到疑难问题需要求助 + +# 职责边界 + +## 核心职责 +- **编码实现**:按详细设计编写功能代码 +- **测试编写**:编写单元测试和集成测试 +- **Bug修复**:按技术骨干根因分析修复问题 +- **代码提交**:提交审查并配合修改 + +## 求助边界 +遇到以下情况必须求助技术骨干: +- 尝试3种方法仍无法定位问题 +- 不确定实现方案的可行性 +- 涉及不熟悉的技术栈 +- 修复3次仍失败(可能架构问题) + +# 文档规范 + +## 读取的文档 +| 文档 | 路径 | 说明 | +|------|------|------| +| 详细设计 | `.vibe/docs/design/*.md` | 开发依据 | +| 代码规范 | `.vibe/docs/代码规范.md` | 编码标准 | +| 进度总览 | `.vibe/docs/进度总览.md` | 待办任务 | +| 问题跟踪 | `.vibe/docs/问题跟踪.md` | Bug全生命周期(分析、待修复、待验证) | + +## 输出的文档 +| 文档 | 路径 | 说明 | +|------|------|------| +| 问题跟踪 | `.vibe/docs/问题跟踪.md` | 求助、进度、修复状态统一写入 | +| 进度总览 | `.vibe/docs/进度总览.md` | 更新任务状态 | + +## 文档更新原则 +- 问题求助:尝试3种以上方法无法解决再求助 +- 开发进度:任务开始和完成时更新 + +# 工作流程 + +## 流程1:功能开发 +``` +输入:详细设计、开发任务 +输出:功能代码、单元测试 +``` +1. 阅读详细设计 +2. 编写功能代码 +3. 编写单元测试 +4. 自测通过后提交审查 +5. 更新开发进度 + +## 流程2:Bug修复 +``` +输入:问题跟踪 +输出:修复后的代码 +``` +1. 阅设Bug描述或问题分析 +2. 按建议修复代码 +3. 更新测试 +4. 提交审查 +5. 在 `.vibe/docs/问题跟踪.md` 更新状态为“待验证” + +## 流程3:问题求助 +``` +输入:疑难问题 +输出:.vibe/docs/问题跟踪.md(添加求助条目) +``` +当遇到以下情况求助技术骨干: +- 尝试3种以上方法仍无法定位 +- 不确定实现方案 +- 涉及不熟悉技术 + +# 协作接口 + +## 向技术骨干求助 +`.vibe/docs/问题跟踪.md`(添加求助条目): +```markdown +## 求助: {标题} +- 描述: {详情} +- 已尝试: {尝试过的方法} +- 代码: {文件路径和行号} +- 错误: {如有} +- 状态: 待分析 +``` + +## 更新任务状态 +`.vibe/docs/进度总览.md`: +```markdown +## {任务} +- 状态: 进行中/已完成/阻塞 +- 进度: {说明} +``` + +## 通知测试验证 +`.vibe/docs/问题跟踪.md`(更新状态为待验证): +```markdown +## BUG-{xxx}: 状态更新为“待验证” +- 修复: {说明} +``` + +# Bug修复规范 + +## 根因分析先行 + +**修复前必须确认:** +1. 阅读 `.vibe/docs/问题跟踪.md` 中的根因分析 +2. 理解问题产生的根本原因(不是表面症状) +3. 确认修复方案针对的是根因 +4. 如果不理解分析,先求助技术骨干澄清 + +## 禁止的修复方式(Workaround) + +以下行为属于 Workaround,**严禁使用**: +- ❌ 脚本报错后手动创建空文件/假数据 +- ❌ 跳过失败的步骤继续执行 +- ❌ 注释掉失败的测试用例 +- ❌ 用硬编码值绕过动态逻辑 +- ❌ 捕获异常但不处理(空 catch) +- ❌ 修改输出路径而非修复逻辑 +- ❌ 返回默认值而非修复逻辑 + +## 3次失败原则 + +如果同一 Bug 修复 3 次仍未解决: +1. STOP 继续修复尝试 +2. 在 `.vibe/docs/问题跟踪.md` 中记录: + - 已尝试的修复方法 + - 每次失败的原因 + - 怀疑的架构问题 +3. 请求技术骨干重新分析(可能是架构问题) + +## 红旗信号 - STOP + +如果发现自己想要: +- "先这样绕过,以后再说" +- "注释掉这个测试试试" +- "返回个默认值应该可以" +- "不太理解但先这样改" + +**STOP。回到问题分析,理解根因后再修复。** + +## 修复验证清单 + +修复完成后,验证: +- [ ] 修复针对的是根因而非症状 +- [ ] 没有使用任何 Workaround 方式 +- [ ] 原有测试通过 +- [ ] 新增回归测试(如适用) +- [ ] 没有破坏其他功能 + +# 注意事项 +- 遇难题先尝试3种以上方法,无法解决再求助 +- **按技术骨干分析建议修复,不要自行发挥** +- 修复后必须通知测试验证 +- **核心原则遵循 `skills/shared/PRINCIPLES.md`** +- **命令执行遵循 `skills/command-executor/SKILL.md`** diff --git a/.agents/skills/fix-and-lint/SKILL.md b/.agents/skills/fix-and-lint/SKILL.md new file mode 100644 index 0000000..dc8ac33 --- /dev/null +++ b/.agents/skills/fix-and-lint/SKILL.md @@ -0,0 +1,80 @@ +--- +name: fix-and-lint +description: | + 修复代码格式和 lint 问题。当用户在提交前需要修复代码风格、 + 排查 lint 错误、或说 "fix"、"格式化"、"lint" 时激活。 +--- + +# Fix and Lint + +## 何时使用 + +- 提交前修复代码格式 +- lint 检查有报错 +- 用户说 "fix"、"格式化"、"lint 修复" + +## 后端 (Python) + +### 步骤 + +```bash +# 1. 格式化 +cd backend && uv run ruff format . + +# 2. Lint 修复 +cd backend && uv run ruff check --fix . + +# 3. 检查剩余问题 +cd backend && uv run ruff check . +``` + +### 常见问题修复 + +| 问题 | 修复方式 | +|------|---------| +| 未使用的导入 | `ruff check --fix` 自动移除 | +| 行过长 | `ruff format` 自动换行 | +| 导入顺序 | `ruff check --fix` 自动排序 | +| 类型注解缺失 | 手动添加 | + +### 验证 + +```bash +# 确保修复后测试仍通过 +cd backend && uv run pytest +``` + +## 前端 (TypeScript/Vue) + +### 步骤 + +```bash +# 1. 格式化 +cd frontend && pnpm run format + +# 2. Lint 修复 +cd frontend && pnpm run lint:fix + +# 3. 检查剩余问题 +cd frontend && pnpm run lint +``` + +## 数据库迁移检查 + +如果修改了 model 文件: + +```bash +# 检查是否有未应用的迁移 +cd backend && uv run alembic check + +# 生成迁移(如有模型变更) +cd backend && uv run alembic revision --autogenerate -m "描述" +``` + +## 输出 + +修复完成后报告: +1. 格式化了哪些文件 +2. 修复了哪些 lint 问题 +3. 仍需手动修复的问题(如有) +4. 测试是否通过 diff --git a/.agents/skills/frontend-development/SKILL.md b/.agents/skills/frontend-development/SKILL.md new file mode 100644 index 0000000..61914b1 --- /dev/null +++ b/.agents/skills/frontend-development/SKILL.md @@ -0,0 +1,238 @@ +--- +name: frontend-development +description: | + MiniHES 前端开发规范。当用户进行 Vue 3 前端开发、组件设计、 + 页面布局、样式调整时自动激活。 + 涵盖技术栈、组件设计原则、设计规范、Ant Design Vue 用法。 +--- + +# MiniHES 前端开发规范 + +## 何时使用 + +- 编写 Vue 3 组件、页面、路由 +- 使用 Ant Design Vue 组件 +- 调整样式、布局、交互 +- 前端状态管理 +- API 请求封装 + +## 技术栈 + +- **框架**: Vue 3 + TypeScript +- **UI 库**: Ant Design Vue +- **构建**: Vite +- **状态管理**: Pinia +- **路由**: Vue Router +- **HTTP**: 基于 @vben/request 封装 +- **脚手架**: vue-vben-admin 5.7.0 + +## 目录结构 + +``` +apps/web-antd/src/ +├── api/ # API 请求封装 +├── views/ # 页面组件(按业务模块) +│ ├── devices/ # 设备管理 +│ ├── collector/ # 数据采集 +│ ├── analysis/ # 分析报表 +│ └── system/ # 系统管理 +├── components/ # 全局共享组件 +├── stores/ # Pinia stores +├── router/ # 路由配置 +├── locales/ # 国际化 +└── utils/ # 工具函数 +``` + +## 组件设计原则 + +### 命名 + +| 类型 | 规范 | 示例 | +|------|------|------| +| 页面 | PascalCase | `MeterList.vue`, `TaskDetail.vue` | +| 组件 | PascalCase + 业务前缀 | `MeterStatusTag.vue` | +| Composable | use + 功能 | `useMeterList.ts` | +| Store | use + 模块 + Store | `useMeterStore.ts` | +| API 文件 | 模块名小写 | `meter.ts`, `task.ts` | + +### 组件结构顺序 + +```vue + + + + + +``` + +### 组件设计规则 + +- 单一职责:一个组件做一件事 +- Props 向下,Events 向上 +- 复杂逻辑提取为 composable +- 列表渲染必须用 `:key` +- 条件渲染用 `v-show`(频繁切换)或 `v-if`(条件分支) + +## API 封装 + +```typescript +// api/meter.ts +import { requestClient } from '#/api/request'; + +export async function getMeterList(params: MeterListParams) { + return requestClient.get('/api/v1/meters', { params }); +} + +export async function createMeter(data: CreateMeterRequest) { + return requestClient.post('/api/v1/meters', data); +} +``` + +### 规则 + +- 每个 API 文件对应一个后端模块 +- 使用 TypeScript 接口定义请求/响应类型 +- 统一使用 `requestClient`,不直接用 axios +- 错误处理在 `requestClient` 层统一处理 + +## 状态管理 + +### 何时用 Store + +| 场景 | 方案 | +|------|------| +| 组件内状态 | `ref` / `reactive` | +| 跨组件共享 | Pinia Store | +| 服务端数据 | API 直接请求 + 组件内缓存 | +| 全局配置 | Store | + +### Store 结构 + +```typescript +// stores/meter.ts +import { defineStore } from 'pinia'; + +export const useMeterStore = defineStore('meter', () => { + const meters = ref([]); + const loading = ref(false); + + async function fetchMeters(params?: MeterListParams) { + loading.value = true; + try { + const res = await getMeterList(params); + meters.value = res.items; + } finally { + loading.value = false; + } + } + + return { meters, loading, fetchMeters }; +}); +``` + +## 设计思维 + +开始编码前,先明确四个维度: + +1. **Purpose**: 这个页面/组件解决什么问题?谁使用? +2. **Tone**: 选择一个明确的设计调性(工业感/数据仪表盘风/极简/专业严肃),全局保持一致 +3. **Constraints**: 技术约束(框架、性能、无障碍) +4. **Differentiation**: 这个界面有什么让人记住的?一个清晰的数据可视化?一个流畅的交互? + +**核心原则**: 选择一个明确的设计方向并精确执行。大胆极繁和精致极简都可行——关键是**有意图性**。 + +## 设计规范 + +参见 [design-checklist.md](references/design-checklist.md)。 + +### 排版与字体 + +- 选择有辨识度的字体组合,不要用 Inter/Roboto/Arial 等通用字体 +- 数据面板用等宽字体(如 JetBrains Mono、Fira Code) +- 标题用有特色的 display font,正文用清晰的 UI font +- 字重对比:标题 600-700,正文 400,辅助文字 300 + +### 色彩与主题 + +- 主色跟随 Ant Design Vue 主题 token,不硬编码色值 +- 使用 CSS 变量保持一致性 +- 用深浅对比创造层次感,而不是均匀分布色彩 +- 状态色统一:成功绿、失败红、进行中蓝、警告橙 +- 禁止淡紫色渐变+白色背景这种 AI 通用配色 + +### 动效与微交互 + +- 页面加载使用错开显示(staggered reveal with animation-delay) +- 列表项、卡片入场动画增加层次感 +- 悬停状态要有反馈(阴影变化、色彩加深、微位移) +- 数据刷新使用过渡动画 +- 优先使用 CSS-only 方案,复杂交互用 Vue transition + +### 空间构图 + +- 不总是使用对称网格,关键数据可以突出展示 +- 利用重叠、留白、对角线引导视线 +- 数据面板和仪表盘允许控制性密度 +- 重要操作区域有足够的呼吸空间 + +### 背景与视觉细节 + +- 不使用纯色背景,加入细微纹理(噪点、网格线、渐变) +- 卡片用微妙阴影和边框增加深度 +- 数据区域可以用几何图案或渐变网格 +- 状态指示器使用发光效果或渐变填充 + +### 交互规范 + +- 加载状态:使用 `a-spin` 或骨架屏 +- 空状态:使用 `a-empty` +- 错误提示:使用 `message.error()` +- 成功提示:使用 `message.success()` +- 删除操作:必须二次确认 `Modal.confirm()` + +### 表单 + +- 使用 Ant Design Form 组件 +- 必填字段标注 `*` +- 实时验证 (`validateTrigger: 'change'`) +- 提交时全量验证 +- 提交按钮 loading 状态防止重复 + +## 输出格式 + +构建前端功能时,按以下格式输出: + +1. **文件结构** — 展示文件应放在哪里 +2. **完整代码** — 功能完整、有类型注解的代码 +3. **依赖** — 需要安装的包 +4. **环境变量** — 如有需要 +5. **运行说明** — 如何启动和验证 + +## 性能优化 + +- 路由懒加载 (`() => import(...)`) +- 大列表用虚拟滚动 +- 图片懒加载 +- 避免不必要的响应式 (`shallowRef` / `markRaw`) +- 组件 `v-memo` 减少重渲染 + +## 禁止 + +- 直接操作 DOM(除非必要) +- 在模板中写复杂表达式 +- 全局污染样式(必须 `scoped`) +- 硬编码 API 地址(使用环境变量) +- 提交 `console.log` 调试代码 diff --git a/.agents/skills/frontend-development/references/design-checklist.md b/.agents/skills/frontend-development/references/design-checklist.md new file mode 100644 index 0000000..d183c97 --- /dev/null +++ b/.agents/skills/frontend-development/references/design-checklist.md @@ -0,0 +1,59 @@ +# UI 设计检查清单 + +## 布局 + +- [ ] 页面有明确的视觉层次(标题 > 副标题 > 内容) +- [ ] 内容区域宽度合理,不超出 1200px 居中或满宽栅格 +- [ ] 操作按钮位置一致(右上角 / 表格上方) +- [ ] 响应式适配(至少支持 1280px+ 宽度) +- [ ] 面包屑导航与路由对应 + +## 表格 + +- [ ] 列宽合理,重要信息在左侧 +- [ ] 操作列固定在右侧 +- [ ] 状态列用 Tag/Badge 可视化 +- [ ] 空数据有友好提示 +- [ ] 数据量大时有分页 +- [ ] 支持按列排序和筛选(业务需要的列) + +## 表单 + +- [ ] 标签简洁明确 +- [ ] 必填项有 `*` 标记 +- [ ] 输入框宽度与预期内容匹配 +- [ ] 下拉选项数量 > 5 时支持搜索 +- [ ] 日期选择器限制合理范围 +- [ ] 提交按钮有 loading 状态 +- [ ] 取消操作有确认(已填写内容时) + +## 弹窗 / 抽屉 + +- [ ] 标题清晰描述操作 +- [ ] 宽度与内容匹配(表单用抽屉,详情用弹窗) +- [ ] 关闭前有确认(未保存的变更) +- [ ] 操作按钮在底部右对齐 + +## 反馈 + +- [ ] 加载中有 spin / skeleton 提示 +- [ ] 操作成功有 message.success +- [ ] 操作失败有 message.error + 原因 +- [ ] 删除 / 危险操作有二次确认 +- [ ] 批量操作显示进度 + +## 数据展示 + +- [ ] 数值有合理的精度(电能 2 位小数,百分比 1 位) +- [ ] 大数字有千分位分隔 +- [ ] 时间显示友好格式 +- [ ] 状态有颜色区分(成功绿、失败红、进行中蓝、警告橙) +- [ ] 图表有图例和单位标注 + +## 空间与间距 + +- [ ] 统一使用 8px 基础间距倍数 +- [ ] 卡片之间有 16px 间距 +- [ ] 表单字段之间有 16-24px 间距 +- [ ] 页面顶部有 16-24px 呼吸空间 +- [ ] 操作按钮组之间有 8px 间距 diff --git a/.agents/skills/hermes-api-design/SKILL.md b/.agents/skills/hermes-api-design/SKILL.md new file mode 100644 index 0000000..a45aca0 --- /dev/null +++ b/.agents/skills/hermes-api-design/SKILL.md @@ -0,0 +1,523 @@ +--- +name: api-design +description: REST API design patterns including resource naming, status codes, pagination, filtering, error responses, versioning, and rate limiting for production APIs. +origin: ECC +--- + +# API Design Patterns + +Conventions and best practices for designing consistent, developer-friendly REST APIs. + +## When to Activate + +- Designing new API endpoints +- Reviewing existing API contracts +- Adding pagination, filtering, or sorting +- Implementing error handling for APIs +- Planning API versioning strategy +- Building public or partner-facing APIs + +## Resource Design + +### URL Structure + +``` +# Resources are nouns, plural, lowercase, kebab-case +GET /api/v1/users +GET /api/v1/users/:id +POST /api/v1/users +PUT /api/v1/users/:id +PATCH /api/v1/users/:id +DELETE /api/v1/users/:id + +# Sub-resources for relationships +GET /api/v1/users/:id/orders +POST /api/v1/users/:id/orders + +# Actions that don't map to CRUD (use verbs sparingly) +POST /api/v1/orders/:id/cancel +POST /api/v1/auth/login +POST /api/v1/auth/refresh +``` + +### Naming Rules + +``` +# GOOD +/api/v1/team-members # kebab-case for multi-word resources +/api/v1/orders?status=active # query params for filtering +/api/v1/users/123/orders # nested resources for ownership + +# BAD +/api/v1/getUsers # verb in URL +/api/v1/user # singular (use plural) +/api/v1/team_members # snake_case in URLs +/api/v1/users/123/getOrders # verb in nested resource +``` + +## HTTP Methods and Status Codes + +### Method Semantics + +| Method | Idempotent | Safe | Use For | +|--------|-----------|------|---------| +| GET | Yes | Yes | Retrieve resources | +| POST | No | No | Create resources, trigger actions | +| PUT | Yes | No | Full replacement of a resource | +| PATCH | No* | No | Partial update of a resource | +| DELETE | Yes | No | Remove a resource | + +*PATCH can be made idempotent with proper implementation + +### Status Code Reference + +``` +# Success +200 OK — GET, PUT, PATCH (with response body) +201 Created — POST (include Location header) +204 No Content — DELETE, PUT (no response body) + +# Client Errors +400 Bad Request — Validation failure, malformed JSON +401 Unauthorized — Missing or invalid authentication +403 Forbidden — Authenticated but not authorized +404 Not Found — Resource doesn't exist +409 Conflict — Duplicate entry, state conflict +422 Unprocessable Entity — Semantically invalid (valid JSON, bad data) +429 Too Many Requests — Rate limit exceeded + +# Server Errors +500 Internal Server Error — Unexpected failure (never expose details) +502 Bad Gateway — Upstream service failed +503 Service Unavailable — Temporary overload, include Retry-After +``` + +### Common Mistakes + +``` +# BAD: 200 for everything +{ "status": 200, "success": false, "error": "Not found" } + +# GOOD: Use HTTP status codes semantically +HTTP/1.1 404 Not Found +{ "error": { "code": "not_found", "message": "User not found" } } + +# BAD: 500 for validation errors +# GOOD: 400 or 422 with field-level details + +# BAD: 200 for created resources +# GOOD: 201 with Location header +HTTP/1.1 201 Created +Location: /api/v1/users/abc-123 +``` + +## Response Format + +### Success Response + +```json +{ + "data": { + "id": "abc-123", + "email": "alice@example.com", + "name": "Alice", + "created_at": "2025-01-15T10:30:00Z" + } +} +``` + +### Collection Response (with Pagination) + +```json +{ + "data": [ + { "id": "abc-123", "name": "Alice" }, + { "id": "def-456", "name": "Bob" } + ], + "meta": { + "total": 142, + "page": 1, + "per_page": 20, + "total_pages": 8 + }, + "links": { + "self": "/api/v1/users?page=1&per_page=20", + "next": "/api/v1/users?page=2&per_page=20", + "last": "/api/v1/users?page=8&per_page=20" + } +} +``` + +### Error Response + +```json +{ + "error": { + "code": "validation_error", + "message": "Request validation failed", + "details": [ + { + "field": "email", + "message": "Must be a valid email address", + "code": "invalid_format" + }, + { + "field": "age", + "message": "Must be between 0 and 150", + "code": "out_of_range" + } + ] + } +} +``` + +### Response Envelope Variants + +```typescript +// Option A: Envelope with data wrapper (recommended for public APIs) +interface ApiResponse { + data: T; + meta?: PaginationMeta; + links?: PaginationLinks; +} + +interface ApiError { + error: { + code: string; + message: string; + details?: FieldError[]; + }; +} + +// Option B: Flat response (simpler, common for internal APIs) +// Success: just return the resource directly +// Error: return error object +// Distinguish by HTTP status code +``` + +## Pagination + +### Offset-Based (Simple) + +``` +GET /api/v1/users?page=2&per_page=20 + +# Implementation +SELECT * FROM users +ORDER BY created_at DESC +LIMIT 20 OFFSET 20; +``` + +**Pros:** Easy to implement, supports "jump to page N" +**Cons:** Slow on large offsets (OFFSET 100000), inconsistent with concurrent inserts + +### Cursor-Based (Scalable) + +``` +GET /api/v1/users?cursor=eyJpZCI6MTIzfQ&limit=20 + +# Implementation +SELECT * FROM users +WHERE id > :cursor_id +ORDER BY id ASC +LIMIT 21; -- fetch one extra to determine has_next +``` + +```json +{ + "data": [...], + "meta": { + "has_next": true, + "next_cursor": "eyJpZCI6MTQzfQ" + } +} +``` + +**Pros:** Consistent performance regardless of position, stable with concurrent inserts +**Cons:** Cannot jump to arbitrary page, cursor is opaque + +### When to Use Which + +| Use Case | Pagination Type | +|----------|----------------| +| Admin dashboards, small datasets (<10K) | Offset | +| Infinite scroll, feeds, large datasets | Cursor | +| Public APIs | Cursor (default) with offset (optional) | +| Search results | Offset (users expect page numbers) | + +## Filtering, Sorting, and Search + +### Filtering + +``` +# Simple equality +GET /api/v1/orders?status=active&customer_id=abc-123 + +# Comparison operators (use bracket notation) +GET /api/v1/products?price[gte]=10&price[lte]=100 +GET /api/v1/orders?created_at[after]=2025-01-01 + +# Multiple values (comma-separated) +GET /api/v1/products?category=electronics,clothing + +# Nested fields (dot notation) +GET /api/v1/orders?customer.country=US +``` + +### Sorting + +``` +# Single field (prefix - for descending) +GET /api/v1/products?sort=-created_at + +# Multiple fields (comma-separated) +GET /api/v1/products?sort=-featured,price,-created_at +``` + +### Full-Text Search + +``` +# Search query parameter +GET /api/v1/products?q=wireless+headphones + +# Field-specific search +GET /api/v1/users?email=alice +``` + +### Sparse Fieldsets + +``` +# Return only specified fields (reduces payload) +GET /api/v1/users?fields=id,name,email +GET /api/v1/orders?fields=id,total,status&include=customer.name +``` + +## Authentication and Authorization + +### Token-Based Auth + +``` +# Bearer token in Authorization header +GET /api/v1/users +Authorization: Bearer eyJhbGciOiJIUzI1NiIs... + +# API key (for server-to-server) +GET /api/v1/data +X-API-Key: sk_live_abc123 +``` + +### Authorization Patterns + +```typescript +// Resource-level: check ownership +app.get("/api/v1/orders/:id", async (req, res) => { + const order = await Order.findById(req.params.id); + if (!order) return res.status(404).json({ error: { code: "not_found" } }); + if (order.userId !== req.user.id) return res.status(403).json({ error: { code: "forbidden" } }); + return res.json({ data: order }); +}); + +// Role-based: check permissions +app.delete("/api/v1/users/:id", requireRole("admin"), async (req, res) => { + await User.delete(req.params.id); + return res.status(204).send(); +}); +``` + +## Rate Limiting + +### Headers + +``` +HTTP/1.1 200 OK +X-RateLimit-Limit: 100 +X-RateLimit-Remaining: 95 +X-RateLimit-Reset: 1640000000 + +# When exceeded +HTTP/1.1 429 Too Many Requests +Retry-After: 60 +{ + "error": { + "code": "rate_limit_exceeded", + "message": "Rate limit exceeded. Try again in 60 seconds." + } +} +``` + +### Rate Limit Tiers + +| Tier | Limit | Window | Use Case | +|------|-------|--------|----------| +| Anonymous | 30/min | Per IP | Public endpoints | +| Authenticated | 100/min | Per user | Standard API access | +| Premium | 1000/min | Per API key | Paid API plans | +| Internal | 10000/min | Per service | Service-to-service | + +## Versioning + +### URL Path Versioning (Recommended) + +``` +/api/v1/users +/api/v2/users +``` + +**Pros:** Explicit, easy to route, cacheable +**Cons:** URL changes between versions + +### Header Versioning + +``` +GET /api/users +Accept: application/vnd.myapp.v2+json +``` + +**Pros:** Clean URLs +**Cons:** Harder to test, easy to forget + +### Versioning Strategy + +``` +1. Start with /api/v1/ — don't version until you need to +2. Maintain at most 2 active versions (current + previous) +3. Deprecation timeline: + - Announce deprecation (6 months notice for public APIs) + - Add Sunset header: Sunset: Sat, 01 Jan 2026 00:00:00 GMT + - Return 410 Gone after sunset date +4. Non-breaking changes don't need a new version: + - Adding new fields to responses + - Adding new optional query parameters + - Adding new endpoints +5. Breaking changes require a new version: + - Removing or renaming fields + - Changing field types + - Changing URL structure + - Changing authentication method +``` + +## Implementation Patterns + +### TypeScript (Next.js API Route) + +```typescript +import { z } from "zod"; +import { NextRequest, NextResponse } from "next/server"; + +const createUserSchema = z.object({ + email: z.string().email(), + name: z.string().min(1).max(100), +}); + +export async function POST(req: NextRequest) { + const body = await req.json(); + const parsed = createUserSchema.safeParse(body); + + if (!parsed.success) { + return NextResponse.json({ + error: { + code: "validation_error", + message: "Request validation failed", + details: parsed.error.issues.map(i => ({ + field: i.path.join("."), + message: i.message, + code: i.code, + })), + }, + }, { status: 422 }); + } + + const user = await createUser(parsed.data); + + return NextResponse.json( + { data: user }, + { + status: 201, + headers: { Location: `/api/v1/users/${user.id}` }, + }, + ); +} +``` + +### Python (Django REST Framework) + +```python +from rest_framework import serializers, viewsets, status +from rest_framework.response import Response + +class CreateUserSerializer(serializers.Serializer): + email = serializers.EmailField() + name = serializers.CharField(max_length=100) + +class UserSerializer(serializers.ModelSerializer): + class Meta: + model = User + fields = ["id", "email", "name", "created_at"] + +class UserViewSet(viewsets.ModelViewSet): + serializer_class = UserSerializer + permission_classes = [IsAuthenticated] + + def get_serializer_class(self): + if self.action == "create": + return CreateUserSerializer + return UserSerializer + + def create(self, request): + serializer = CreateUserSerializer(data=request.data) + serializer.is_valid(raise_exception=True) + user = UserService.create(**serializer.validated_data) + return Response( + {"data": UserSerializer(user).data}, + status=status.HTTP_201_CREATED, + headers={"Location": f"/api/v1/users/{user.id}"}, + ) +``` + +### Go (net/http) + +```go +func (h *UserHandler) CreateUser(w http.ResponseWriter, r *http.Request) { + var req CreateUserRequest + if err := json.NewDecoder(r.Body).Decode(&req); err != nil { + writeError(w, http.StatusBadRequest, "invalid_json", "Invalid request body") + return + } + + if err := req.Validate(); err != nil { + writeError(w, http.StatusUnprocessableEntity, "validation_error", err.Error()) + return + } + + user, err := h.service.Create(r.Context(), req) + if err != nil { + switch { + case errors.Is(err, domain.ErrEmailTaken): + writeError(w, http.StatusConflict, "email_taken", "Email already registered") + default: + writeError(w, http.StatusInternalServerError, "internal_error", "Internal error") + } + return + } + + w.Header().Set("Location", fmt.Sprintf("/api/v1/users/%s", user.ID)) + writeJSON(w, http.StatusCreated, map[string]any{"data": user}) +} +``` + +## API Design Checklist + +Before shipping a new endpoint: + +- [ ] Resource URL follows naming conventions (plural, kebab-case, no verbs) +- [ ] Correct HTTP method used (GET for reads, POST for creates, etc.) +- [ ] Appropriate status codes returned (not 200 for everything) +- [ ] Input validated with schema (Zod, Pydantic, Bean Validation) +- [ ] Error responses follow standard format with codes and messages +- [ ] Pagination implemented for list endpoints (cursor or offset) +- [ ] Authentication required (or explicitly marked as public) +- [ ] Authorization checked (user can only access their own resources) +- [ ] Rate limiting configured +- [ ] Response does not leak internal details (stack traces, SQL errors) +- [ ] Consistent naming with existing endpoints (camelCase vs snake_case) +- [ ] Documented (OpenAPI/Swagger spec updated) diff --git a/.agents/skills/hermes-backend-patterns/SKILL.md b/.agents/skills/hermes-backend-patterns/SKILL.md new file mode 100644 index 0000000..30898b4 --- /dev/null +++ b/.agents/skills/hermes-backend-patterns/SKILL.md @@ -0,0 +1,598 @@ +--- +name: backend-patterns +description: Backend architecture patterns, API design, database optimization, and server-side best practices for Node.js, Express, and Next.js API routes. +origin: ECC +--- + +# Backend Development Patterns + +Backend architecture patterns and best practices for scalable server-side applications. + +## When to Activate + +- Designing REST or GraphQL API endpoints +- Implementing repository, service, or controller layers +- Optimizing database queries (N+1, indexing, connection pooling) +- Adding caching (Redis, in-memory, HTTP cache headers) +- Setting up background jobs or async processing +- Structuring error handling and validation for APIs +- Building middleware (auth, logging, rate limiting) + +## API Design Patterns + +### RESTful API Structure + +```typescript +// PASS: Resource-based URLs +GET /api/markets # List resources +GET /api/markets/:id # Get single resource +POST /api/markets # Create resource +PUT /api/markets/:id # Replace resource +PATCH /api/markets/:id # Update resource +DELETE /api/markets/:id # Delete resource + +// PASS: Query parameters for filtering, sorting, pagination +GET /api/markets?status=active&sort=volume&limit=20&offset=0 +``` + +### Repository Pattern + +```typescript +// Abstract data access logic +interface MarketRepository { + findAll(filters?: MarketFilters): Promise + findById(id: string): Promise + create(data: CreateMarketDto): Promise + update(id: string, data: UpdateMarketDto): Promise + delete(id: string): Promise +} + +class SupabaseMarketRepository implements MarketRepository { + async findAll(filters?: MarketFilters): Promise { + let query = supabase.from('markets').select('*') + + if (filters?.status) { + query = query.eq('status', filters.status) + } + + if (filters?.limit) { + query = query.limit(filters.limit) + } + + const { data, error } = await query + + if (error) throw new Error(error.message) + return data + } + + // Other methods... +} +``` + +### Service Layer Pattern + +```typescript +// Business logic separated from data access +class MarketService { + constructor(private marketRepo: MarketRepository) {} + + async searchMarkets(query: string, limit: number = 10): Promise { + // Business logic + const embedding = await generateEmbedding(query) + const results = await this.vectorSearch(embedding, limit) + + // Fetch full data + const markets = await this.marketRepo.findByIds(results.map(r => r.id)) + + // Sort by similarity + return markets.sort((a, b) => { + const scoreA = results.find(r => r.id === a.id)?.score || 0 + const scoreB = results.find(r => r.id === b.id)?.score || 0 + return scoreA - scoreB + }) + } + + private async vectorSearch(embedding: number[], limit: number) { + // Vector search implementation + } +} +``` + +### Middleware Pattern + +```typescript +// Request/response processing pipeline +export function withAuth(handler: NextApiHandler): NextApiHandler { + return async (req, res) => { + const token = req.headers.authorization?.replace('Bearer ', '') + + if (!token) { + return res.status(401).json({ error: 'Unauthorized' }) + } + + try { + const user = await verifyToken(token) + req.user = user + return handler(req, res) + } catch (error) { + return res.status(401).json({ error: 'Invalid token' }) + } + } +} + +// Usage +export default withAuth(async (req, res) => { + // Handler has access to req.user +}) +``` + +## Database Patterns + +### Query Optimization + +```typescript +// PASS: GOOD: Select only needed columns +const { data } = await supabase + .from('markets') + .select('id, name, status, volume') + .eq('status', 'active') + .order('volume', { ascending: false }) + .limit(10) + +// FAIL: BAD: Select everything +const { data } = await supabase + .from('markets') + .select('*') +``` + +### N+1 Query Prevention + +```typescript +// FAIL: BAD: N+1 query problem +const markets = await getMarkets() +for (const market of markets) { + market.creator = await getUser(market.creator_id) // N queries +} + +// PASS: GOOD: Batch fetch +const markets = await getMarkets() +const creatorIds = markets.map(m => m.creator_id) +const creators = await getUsers(creatorIds) // 1 query +const creatorMap = new Map(creators.map(c => [c.id, c])) + +markets.forEach(market => { + market.creator = creatorMap.get(market.creator_id) +}) +``` + +### Transaction Pattern + +```typescript +async function createMarketWithPosition( + marketData: CreateMarketDto, + positionData: CreatePositionDto +) { + // Use Supabase transaction + const { data, error } = await supabase.rpc('create_market_with_position', { + market_data: marketData, + position_data: positionData + }) + + if (error) throw new Error('Transaction failed') + return data +} + +// SQL function in Supabase +CREATE OR REPLACE FUNCTION create_market_with_position( + market_data jsonb, + position_data jsonb +) +RETURNS jsonb +LANGUAGE plpgsql +AS $$ +BEGIN + -- Start transaction automatically + INSERT INTO markets VALUES (market_data); + INSERT INTO positions VALUES (position_data); + RETURN jsonb_build_object('success', true); +EXCEPTION + WHEN OTHERS THEN + -- Rollback happens automatically + RETURN jsonb_build_object('success', false, 'error', SQLERRM); +END; +$$; +``` + +## Caching Strategies + +### Redis Caching Layer + +```typescript +class CachedMarketRepository implements MarketRepository { + constructor( + private baseRepo: MarketRepository, + private redis: RedisClient + ) {} + + async findById(id: string): Promise { + // Check cache first + const cached = await this.redis.get(`market:${id}`) + + if (cached) { + return JSON.parse(cached) + } + + // Cache miss - fetch from database + const market = await this.baseRepo.findById(id) + + if (market) { + // Cache for 5 minutes + await this.redis.setex(`market:${id}`, 300, JSON.stringify(market)) + } + + return market + } + + async invalidateCache(id: string): Promise { + await this.redis.del(`market:${id}`) + } +} +``` + +### Cache-Aside Pattern + +```typescript +async function getMarketWithCache(id: string): Promise { + const cacheKey = `market:${id}` + + // Try cache + const cached = await redis.get(cacheKey) + if (cached) return JSON.parse(cached) + + // Cache miss - fetch from DB + const market = await db.markets.findUnique({ where: { id } }) + + if (!market) throw new Error('Market not found') + + // Update cache + await redis.setex(cacheKey, 300, JSON.stringify(market)) + + return market +} +``` + +## Error Handling Patterns + +### Centralized Error Handler + +```typescript +class ApiError extends Error { + constructor( + public statusCode: number, + public message: string, + public isOperational = true + ) { + super(message) + Object.setPrototypeOf(this, ApiError.prototype) + } +} + +export function errorHandler(error: unknown, req: Request): Response { + if (error instanceof ApiError) { + return NextResponse.json({ + success: false, + error: error.message + }, { status: error.statusCode }) + } + + if (error instanceof z.ZodError) { + return NextResponse.json({ + success: false, + error: 'Validation failed', + details: error.errors + }, { status: 400 }) + } + + // Log unexpected errors + console.error('Unexpected error:', error) + + return NextResponse.json({ + success: false, + error: 'Internal server error' + }, { status: 500 }) +} + +// Usage +export async function GET(request: Request) { + try { + const data = await fetchData() + return NextResponse.json({ success: true, data }) + } catch (error) { + return errorHandler(error, request) + } +} +``` + +### Retry with Exponential Backoff + +```typescript +async function fetchWithRetry( + fn: () => Promise, + maxRetries = 3 +): Promise { + let lastError: Error + + for (let i = 0; i < maxRetries; i++) { + try { + return await fn() + } catch (error) { + lastError = error as Error + + if (i < maxRetries - 1) { + // Exponential backoff: 1s, 2s, 4s + const delay = Math.pow(2, i) * 1000 + await new Promise(resolve => setTimeout(resolve, delay)) + } + } + } + + throw lastError! +} + +// Usage +const data = await fetchWithRetry(() => fetchFromAPI()) +``` + +## Authentication & Authorization + +### JWT Token Validation + +```typescript +import jwt from 'jsonwebtoken' + +interface JWTPayload { + userId: string + email: string + role: 'admin' | 'user' +} + +export function verifyToken(token: string): JWTPayload { + try { + const payload = jwt.verify(token, process.env.JWT_SECRET!) as JWTPayload + return payload + } catch (error) { + throw new ApiError(401, 'Invalid token') + } +} + +export async function requireAuth(request: Request) { + const token = request.headers.get('authorization')?.replace('Bearer ', '') + + if (!token) { + throw new ApiError(401, 'Missing authorization token') + } + + return verifyToken(token) +} + +// Usage in API route +export async function GET(request: Request) { + const user = await requireAuth(request) + + const data = await getDataForUser(user.userId) + + return NextResponse.json({ success: true, data }) +} +``` + +### Role-Based Access Control + +```typescript +type Permission = 'read' | 'write' | 'delete' | 'admin' + +interface User { + id: string + role: 'admin' | 'moderator' | 'user' +} + +const rolePermissions: Record = { + admin: ['read', 'write', 'delete', 'admin'], + moderator: ['read', 'write', 'delete'], + user: ['read', 'write'] +} + +export function hasPermission(user: User, permission: Permission): boolean { + return rolePermissions[user.role].includes(permission) +} + +export function requirePermission(permission: Permission) { + return (handler: (request: Request, user: User) => Promise) => { + return async (request: Request) => { + const user = await requireAuth(request) + + if (!hasPermission(user, permission)) { + throw new ApiError(403, 'Insufficient permissions') + } + + return handler(request, user) + } + } +} + +// Usage - HOF wraps the handler +export const DELETE = requirePermission('delete')( + async (request: Request, user: User) => { + // Handler receives authenticated user with verified permission + return new Response('Deleted', { status: 200 }) + } +) +``` + +## Rate Limiting + +### Simple In-Memory Rate Limiter + +```typescript +class RateLimiter { + private requests = new Map() + + async checkLimit( + identifier: string, + maxRequests: number, + windowMs: number + ): Promise { + const now = Date.now() + const requests = this.requests.get(identifier) || [] + + // Remove old requests outside window + const recentRequests = requests.filter(time => now - time < windowMs) + + if (recentRequests.length >= maxRequests) { + return false // Rate limit exceeded + } + + // Add current request + recentRequests.push(now) + this.requests.set(identifier, recentRequests) + + return true + } +} + +const limiter = new RateLimiter() + +export async function GET(request: Request) { + const ip = request.headers.get('x-forwarded-for') || 'unknown' + + const allowed = await limiter.checkLimit(ip, 100, 60000) // 100 req/min + + if (!allowed) { + return NextResponse.json({ + error: 'Rate limit exceeded' + }, { status: 429 }) + } + + // Continue with request +} +``` + +## Background Jobs & Queues + +### Simple Queue Pattern + +```typescript +class JobQueue { + private queue: T[] = [] + private processing = false + + async add(job: T): Promise { + this.queue.push(job) + + if (!this.processing) { + this.process() + } + } + + private async process(): Promise { + this.processing = true + + while (this.queue.length > 0) { + const job = this.queue.shift()! + + try { + await this.execute(job) + } catch (error) { + console.error('Job failed:', error) + } + } + + this.processing = false + } + + private async execute(job: T): Promise { + // Job execution logic + } +} + +// Usage for indexing markets +interface IndexJob { + marketId: string +} + +const indexQueue = new JobQueue() + +export async function POST(request: Request) { + const { marketId } = await request.json() + + // Add to queue instead of blocking + await indexQueue.add({ marketId }) + + return NextResponse.json({ success: true, message: 'Job queued' }) +} +``` + +## Logging & Monitoring + +### Structured Logging + +```typescript +interface LogContext { + userId?: string + requestId?: string + method?: string + path?: string + [key: string]: unknown +} + +class Logger { + log(level: 'info' | 'warn' | 'error', message: string, context?: LogContext) { + const entry = { + timestamp: new Date().toISOString(), + level, + message, + ...context + } + + console.log(JSON.stringify(entry)) + } + + info(message: string, context?: LogContext) { + this.log('info', message, context) + } + + warn(message: string, context?: LogContext) { + this.log('warn', message, context) + } + + error(message: string, error: Error, context?: LogContext) { + this.log('error', message, { + ...context, + error: error.message, + stack: error.stack + }) + } +} + +const logger = new Logger() + +// Usage +export async function GET(request: Request) { + const requestId = crypto.randomUUID() + + logger.info('Fetching markets', { + requestId, + method: 'GET', + path: '/api/markets' + }) + + try { + const markets = await fetchMarkets() + return NextResponse.json({ success: true, data: markets }) + } catch (error) { + logger.error('Failed to fetch markets', error as Error, { requestId }) + return NextResponse.json({ error: 'Internal error' }, { status: 500 }) + } +} +``` + +**Remember**: Backend patterns enable scalable, maintainable server-side applications. Choose patterns that fit your complexity level. diff --git a/.agents/skills/hermes-code-review/README.md b/.agents/skills/hermes-code-review/README.md new file mode 100644 index 0000000..2ec9bee --- /dev/null +++ b/.agents/skills/hermes-code-review/README.md @@ -0,0 +1,79 @@ +# Code Review Checklist + +Systematic code review patterns covering security, performance, maintainability, correctness, and testing — with severity levels, structured feedback guidance, review process, and anti-patterns to avoid. + +## What's Inside + +- Review dimensions with priority ranking (Security → Performance → Correctness → Maintainability → Testing → Accessibility → Documentation) +- Security checklist (SQL injection, XSS, CSRF, auth, secrets, rate limiting) +- Performance checklist (N+1 queries, re-renders, memory leaks, bundle size, caching) +- Correctness checklist (edge cases, null handling, race conditions, timezone handling) +- Maintainability checklist (naming, SRP, DRY, dead code, dependency direction) +- Testing checklist (coverage, edge cases, flaky tests, mocking discipline) +- Three-pass review process (high-level → line-by-line → edge cases) +- Severity levels (Critical, Major, Minor, Nitpick) with merge-blocking guidance +- Feedback principles and example comments +- Review anti-patterns to avoid + +## When to Use + +- Reviewing pull requests or merge requests +- Establishing review standards for a team +- Improving the quality and consistency of code reviews +- Training new reviewers on what to look for + +## Installation + +```bash +npx add https://github.com/wpank/ai/tree/main/skills/testing/code-review +``` + +### OpenClaw / Moltbot / Clawbot + +```bash +npx clawhub@latest install code-review +``` + +### Manual Installation + +#### Cursor (per-project) + +From your project root: + +```bash +mkdir -p .cursor/skills +cp -r ~/.ai-skills/skills/testing/code-review .cursor/skills/code-review +``` + +#### Cursor (global) + +```bash +mkdir -p ~/.cursor/skills +cp -r ~/.ai-skills/skills/testing/code-review ~/.cursor/skills/code-review +``` + +#### Claude Code (per-project) + +From your project root: + +```bash +mkdir -p .claude/skills +cp -r ~/.ai-skills/skills/testing/code-review .claude/skills/code-review +``` + +#### Claude Code (global) + +```bash +mkdir -p ~/.claude/skills +cp -r ~/.ai-skills/skills/testing/code-review ~/.claude/skills/code-review +``` + +## Related Skills + +- [clean-code](../clean-code/) — Coding standards that reviews enforce +- [quality-gates](../quality-gates/) — Automated quality checkpoints in CI/CD +- [testing-patterns](../testing-patterns/) — Testing standards to check during review + +--- + +Part of the [Testing](..) skill category. diff --git a/.agents/skills/hermes-code-review/SKILL.md b/.agents/skills/hermes-code-review/SKILL.md new file mode 100644 index 0000000..3b0a904 --- /dev/null +++ b/.agents/skills/hermes-code-review/SKILL.md @@ -0,0 +1,232 @@ +--- +name: code-review +description: Systematic code review patterns covering security, performance, maintainability, correctness, and testing +trigger: "/hbe:review" +keywords: + - code review + - 代码审查 + - quality check + - 质量检查 + - PR review +model: reasoning +category: testing +version: 1.0 +--- + +# Code Review Checklist + +Thorough, structured approach to reviewing code. Work through each dimension systematically rather than scanning randomly. + + +## Installation + +### OpenClaw / Moltbot / Clawbot + +```bash +npx clawhub@latest install code-review +``` + + +--- + +## Review Dimensions + +| Dimension | Focus | Priority | +|-----------|-------|----------| +| Security | Vulnerabilities, auth, data exposure | Critical | +| Performance | Speed, memory, scalability bottlenecks | High | +| Correctness | Logic errors, edge cases, data integrity | High | +| Maintainability | Readability, structure, future-proofing | Medium | +| Testing | Coverage, quality, reliability of tests | Medium | +| Accessibility | WCAG compliance, keyboard nav, screen readers | Medium | +| Documentation | Comments, API docs, changelog entries | Low | + +--- + +## Security Checklist + +Review every change for these vulnerabilities: + +- [ ] **SQL Injection** — All queries use parameterized statements or an ORM; no string concatenation with user input +- [ ] **XSS** — User-provided content is escaped/sanitized before rendering; `dangerouslySetInnerHTML` or equivalent is justified and safe +- [ ] **CSRF Protection** — State-changing requests require valid CSRF tokens; SameSite cookie attributes are set +- [ ] **Authentication** — Every protected endpoint verifies the user is authenticated before processing +- [ ] **Authorization** — Resource access is scoped to the requesting user's permissions; no IDOR vulnerabilities +- [ ] **Input Validation** — All external input (params, headers, body, files) is validated for type, length, format, and range on the server side +- [ ] **Secrets Management** — No API keys, passwords, tokens, or credentials in source code; secrets come from environment variables or a vault +- [ ] **Dependency Safety** — New dependencies are from trusted sources, actively maintained, and free of known CVEs +- [ ] **Sensitive Data** — PII, tokens, and secrets are never logged, included in error messages, or returned in API responses +- [ ] **Rate Limiting** — Public and auth endpoints have rate limits to prevent brute-force and abuse +- [ ] **File Upload Safety** — Uploaded files are validated for type and size, stored outside the webroot, and served with safe Content-Type headers +- [ ] **HTTP Security Headers** — Content-Security-Policy, X-Content-Type-Options, Strict-Transport-Security are set + +--- + +## Performance Checklist + +- [ ] **N+1 Queries** — Database access patterns are batched or joined; no loops issuing individual queries +- [ ] **Unnecessary Re-renders** — Components only re-render when their relevant state/props change; memoization is applied where measurable +- [ ] **Memory Leaks** — Event listeners, subscriptions, timers, and intervals are cleaned up on unmount/disposal +- [ ] **Bundle Size** — New dependencies are tree-shakeable; large libraries are loaded dynamically; no full-library imports for a single function +- [ ] **Lazy Loading** — Heavy components, routes, and below-the-fold content use lazy loading / code splitting +- [ ] **Caching Strategy** — Expensive computations and API responses use appropriate caching (memoization, HTTP cache headers, Redis) +- [ ] **Database Indexing** — Queries filter/sort on indexed columns; new queries have been checked with EXPLAIN +- [ ] **Pagination** — List endpoints and queries use pagination or cursor-based fetching; no unbounded SELECT * +- [ ] **Async Operations** — Long-running tasks are offloaded to background jobs or queues rather than blocking request threads +- [ ] **Image & Asset Optimization** — Images are properly sized, use modern formats (WebP/AVIF), and leverage CDN delivery + +--- + +## Correctness Checklist + +- [ ] **Edge Cases** — Empty arrays, empty strings, zero values, negative numbers, and maximum values are handled +- [ ] **Null/Undefined Handling** — Nullable values are checked before access; optional chaining or guards prevent runtime errors +- [ ] **Off-by-One Errors** — Loop bounds, array slicing, pagination offsets, and range calculations are verified +- [ ] **Race Conditions** — Concurrent access to shared state uses locks, transactions, or atomic operations +- [ ] **Timezone Handling** — Dates are stored in UTC; display conversion happens at the presentation layer +- [ ] **Unicode & Encoding** — String operations handle multi-byte characters; text encoding is explicit (UTF-8) +- [ ] **Integer Overflow / Precision** — Arithmetic on large numbers or currency uses appropriate types (BigInt, Decimal) +- [ ] **Error Propagation** — Errors from async calls and external services are caught and handled; promises are never silently swallowed +- [ ] **State Consistency** — Multi-step mutations are transactional; partial failures leave the system in a valid state +- [ ] **Boundary Validation** — Values at the boundaries of valid ranges (min, max, exactly-at-limit) are tested + +--- + +## Maintainability Checklist + +- [ ] **Naming Clarity** — Variables, functions, and classes have descriptive names that reveal intent +- [ ] **Single Responsibility** — Each function/class/module does one thing; changes to one concern don't ripple through unrelated code +- [ ] **DRY** — Duplicated logic is extracted into shared utilities; copy-pasted blocks are consolidated +- [ ] **Cyclomatic Complexity** — Functions have low branching complexity; deeply nested chains are refactored +- [ ] **Error Handling** — Errors are caught at appropriate boundaries, logged with context, and surfaced meaningfully +- [ ] **Dead Code Removal** — Commented-out code, unused imports, unreachable branches, and obsolete feature flags are removed +- [ ] **Magic Numbers & Strings** — Literal values are extracted into named constants with clear semantics +- [ ] **Consistent Patterns** — New code follows the conventions already established in the codebase +- [ ] **Function Length** — Functions are short enough to understand at a glance; long functions are decomposed +- [ ] **Dependency Direction** — Dependencies point inward (infrastructure to domain); core logic does not import from UI or framework layers + +--- + +## Testing Checklist + +- [ ] **Test Coverage** — New logic paths have corresponding tests; critical paths have both happy-path and failure-case tests +- [ ] **Edge Case Tests** — Tests cover boundary values, empty inputs, nulls, and error conditions +- [ ] **No Flaky Tests** — Tests are deterministic; no reliance on timing, external services, or shared mutable state +- [ ] **Test Independence** — Each test sets up its own state and tears it down; test order does not affect results +- [ ] **Meaningful Assertions** — Tests assert on behavior and outcomes, not implementation details +- [ ] **Test Readability** — Tests follow Arrange-Act-Assert; test names describe the scenario and expected outcome +- [ ] **Mocking Discipline** — Only external boundaries (network, DB, filesystem) are mocked +- [ ] **Regression Tests** — Bug fixes include a test that reproduces the original bug and proves it is resolved + +--- + +## Review Process + +Work through the code in three passes. Do not try to catch everything in one read. + +| Pass | Focus | Time | What to Look For | +|------|-------|------|------------------| +| First | High-level structure | 2-5 min | Architecture fit, file organization, API design, overall approach | +| Second | Line-by-line detail | Bulk | Logic errors, security issues, performance problems, edge cases | +| Third | Edge cases & hardening | 5 min | Failure modes, concurrency, boundary values, missing tests | + +### First Pass (2-5 minutes) + +1. Read the PR description and linked issue +2. Scan the file list — does the change scope make sense? +3. Check the overall approach — is this the right solution to the problem? +4. Verify the change does not introduce architectural drift + +### Second Pass (bulk of review time) + +1. Read each file diff top to bottom +2. Check every function change against the checklists above +3. Verify error handling at every I/O boundary +4. Flag anything that makes you pause — trust your instincts + +### Third Pass (5 minutes) + +1. Think about what could go wrong in production +2. Check for missing tests on the code paths you flagged +3. Verify rollback safety — can this change be reverted without data loss? +4. Confirm documentation and changelog are updated if needed + +--- + +## Severity Levels + +Classify every comment by severity so the author knows what blocks merge. + +| Level | Label | Meaning | Blocks Merge? | +|-------|-------|---------|---------------| +| Critical | `[CRITICAL]` | Security vulnerability, data loss, or crash in production | Yes | +| Major | `[MAJOR]` | Bug, logic error, or significant performance regression | Yes | +| Minor | `[MINOR]` | Improvement that would reduce future maintenance cost | No | +| Nitpick | `[NIT]` | Style preference, naming suggestion, or trivial cleanup | No | + +Always prefix your review comment with the severity label. This removes ambiguity about what matters. + +--- + +## Giving Feedback + +### Principles + +- **Be specific** — Point to the exact line and explain the issue, not just "this is wrong" +- **Explain why** — State the risk or consequence, not just the rule +- **Suggest a fix** — Offer a concrete alternative or code snippet when possible +- **Ask, don't demand** — Use questions for subjective points: "What do you think about...?" +- **Acknowledge good work** — Call out clean solutions, clever optimizations, or thorough tests +- **Separate blocking from non-blocking** — Use severity labels so the author knows what matters + +### Example Comments + +**Bad:** +> This is wrong. Fix it. + +**Good:** +> `[MAJOR]` This query interpolates user input directly into the SQL string (line 42), which is vulnerable to SQL injection. Consider using a parameterized query: +> ```sql +> SELECT * FROM users WHERE id = $1 +> ``` + +**Bad:** +> Why didn't you add tests? + +**Good:** +> `[MINOR]` The new `calculateDiscount()` function has a few branching paths — could we add tests for the zero-quantity and negative-price edge cases to prevent regressions? + +**Bad:** +> I would have done this differently. + +**Good:** +> `[NIT]` This works well. An alternative approach could be extracting the retry logic into a shared `withRetry()` wrapper — but that's optional and could be a follow-up. + +--- + +## Review Anti-Patterns + +Avoid these common traps that waste time and damage team trust: + +| Anti-Pattern | Description | +|--------------|-------------| +| **Rubber-Stamping** | Approving without reading. Creates false confidence and lets bugs through. | +| **Bikeshedding** | Spending 30 minutes debating a variable name while ignoring a race condition. | +| **Blocking on Style** | Refusing to approve over formatting that a linter should enforce automatically. | +| **Gatekeeping** | Requiring your personal preferred approach when the submitted one is correct. | +| **Drive-by Reviews** | Leaving one vague comment and disappearing. Commit to following through. | +| **Scope Creep Reviews** | Requesting unrelated refactors that should be separate PRs. | +| **Stale Reviews** | Letting PRs sit for days. Review within 24 hours or hand off to someone else. | +| **Emotional Language** | "This is terrible" or "obviously wrong." Critique the code, not the person. | + +--- + +## NEVER Do + +1. **NEVER approve without reading every changed line** — rubber-stamping is worse than no review +2. **NEVER block a PR solely for style preferences** — use a linter; humans review logic +3. **NEVER leave feedback without a severity level** — ambiguity causes wasted cycles +4. **NEVER request changes without explaining why** — "fix this" teaches nothing +5. **NEVER review more than 400 lines in one sitting** — comprehension drops sharply; break large PRs into sessions +6. **NEVER skip the security checklist** — one missed vulnerability outweighs a hundred style nits +7. **NEVER make it personal** — review the code, never the coder; assume good intent diff --git a/.agents/skills/hermes-code-review/_meta.json b/.agents/skills/hermes-code-review/_meta.json new file mode 100644 index 0000000..66d4e4f --- /dev/null +++ b/.agents/skills/hermes-code-review/_meta.json @@ -0,0 +1,6 @@ +{ + "ownerId": "kn77z49xfssappp65hpybb9gx180x56e", + "slug": "code-review", + "version": "1.0.0", + "publishedAt": 1770729869941 +} \ No newline at end of file diff --git a/.agents/skills/hermes-django-patterns/SKILL.md b/.agents/skills/hermes-django-patterns/SKILL.md new file mode 100644 index 0000000..7def430 --- /dev/null +++ b/.agents/skills/hermes-django-patterns/SKILL.md @@ -0,0 +1,734 @@ +--- +name: django-patterns +description: Django architecture patterns, REST API design with DRF, ORM best practices, caching, signals, middleware, and production-grade Django apps. +origin: ECC +--- + +# Django Development Patterns + +Production-grade Django architecture patterns for scalable, maintainable applications. + +## When to Activate + +- Building Django web applications +- Designing Django REST Framework APIs +- Working with Django ORM and models +- Setting up Django project structure +- Implementing caching, signals, middleware + +## Project Structure + +### Recommended Layout + +``` +myproject/ +├── config/ +│ ├── __init__.py +│ ├── settings/ +│ │ ├── __init__.py +│ │ ├── base.py # Base settings +│ │ ├── development.py # Dev settings +│ │ ├── production.py # Production settings +│ │ └── test.py # Test settings +│ ├── urls.py +│ ├── wsgi.py +│ └── asgi.py +├── manage.py +└── apps/ + ├── __init__.py + ├── users/ + │ ├── __init__.py + │ ├── models.py + │ ├── views.py + │ ├── serializers.py + │ ├── urls.py + │ ├── permissions.py + │ ├── filters.py + │ ├── services.py + │ └── tests/ + └── products/ + └── ... +``` + +### Split Settings Pattern + +```python +# config/settings/base.py +from pathlib import Path + +BASE_DIR = Path(__file__).resolve().parent.parent.parent + +SECRET_KEY = env('DJANGO_SECRET_KEY') +DEBUG = False +ALLOWED_HOSTS = [] + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'rest_framework', + 'rest_framework.authtoken', + 'corsheaders', + # Local apps + 'apps.users', + 'apps.products', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'whitenoise.middleware.WhiteNoiseMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'corsheaders.middleware.CorsMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'config.urls' +WSGI_APPLICATION = 'config.wsgi.application' + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.postgresql', + 'NAME': env('DB_NAME'), + 'USER': env('DB_USER'), + 'PASSWORD': env('DB_PASSWORD'), + 'HOST': env('DB_HOST'), + 'PORT': env('DB_PORT', default='5432'), + } +} + +# config/settings/development.py +from .base import * + +DEBUG = True +ALLOWED_HOSTS = ['localhost', '127.0.0.1'] + +DATABASES['default']['NAME'] = 'myproject_dev' + +INSTALLED_APPS += ['debug_toolbar'] + +MIDDLEWARE += ['debug_toolbar.middleware.DebugToolbarMiddleware'] + +EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' + +# config/settings/production.py +from .base import * + +DEBUG = False +ALLOWED_HOSTS = env.list('ALLOWED_HOSTS') +SECURE_SSL_REDIRECT = True +SESSION_COOKIE_SECURE = True +CSRF_COOKIE_SECURE = True +SECURE_HSTS_SECONDS = 31536000 +SECURE_HSTS_INCLUDE_SUBDOMAINS = True +SECURE_HSTS_PRELOAD = True + +# Logging +LOGGING = { + 'version': 1, + 'disable_existing_loggers': False, + 'handlers': { + 'file': { + 'level': 'WARNING', + 'class': 'logging.FileHandler', + 'filename': '/var/log/django/django.log', + }, + }, + 'loggers': { + 'django': { + 'handlers': ['file'], + 'level': 'WARNING', + 'propagate': True, + }, + }, +} +``` + +## Model Design Patterns + +### Model Best Practices + +```python +from django.db import models +from django.contrib.auth.models import AbstractUser +from django.core.validators import MinValueValidator, MaxValueValidator + +class User(AbstractUser): + """Custom user model extending AbstractUser.""" + email = models.EmailField(unique=True) + phone = models.CharField(max_length=20, blank=True) + birth_date = models.DateField(null=True, blank=True) + + USERNAME_FIELD = 'email' + REQUIRED_FIELDS = ['username'] + + class Meta: + db_table = 'users' + verbose_name = 'user' + verbose_name_plural = 'users' + ordering = ['-date_joined'] + + def __str__(self): + return self.email + + def get_full_name(self): + return f"{self.first_name} {self.last_name}".strip() + +class Product(models.Model): + """Product model with proper field configuration.""" + name = models.CharField(max_length=200) + slug = models.SlugField(unique=True, max_length=250) + description = models.TextField(blank=True) + price = models.DecimalField( + max_digits=10, + decimal_places=2, + validators=[MinValueValidator(0)] + ) + stock = models.PositiveIntegerField(default=0) + is_active = models.BooleanField(default=True) + category = models.ForeignKey( + 'Category', + on_delete=models.CASCADE, + related_name='products' + ) + tags = models.ManyToManyField('Tag', blank=True, related_name='products') + created_at = models.DateTimeField(auto_now_add=True) + updated_at = models.DateTimeField(auto_now=True) + + class Meta: + db_table = 'products' + ordering = ['-created_at'] + indexes = [ + models.Index(fields=['slug']), + models.Index(fields=['-created_at']), + models.Index(fields=['category', 'is_active']), + ] + constraints = [ + models.CheckConstraint( + check=models.Q(price__gte=0), + name='price_non_negative' + ) + ] + + def __str__(self): + return self.name + + def save(self, *args, **kwargs): + if not self.slug: + self.slug = slugify(self.name) + super().save(*args, **kwargs) +``` + +### QuerySet Best Practices + +```python +from django.db import models + +class ProductQuerySet(models.QuerySet): + """Custom QuerySet for Product model.""" + + def active(self): + """Return only active products.""" + return self.filter(is_active=True) + + def with_category(self): + """Select related category to avoid N+1 queries.""" + return self.select_related('category') + + def with_tags(self): + """Prefetch tags for many-to-many relationship.""" + return self.prefetch_related('tags') + + def in_stock(self): + """Return products with stock > 0.""" + return self.filter(stock__gt=0) + + def search(self, query): + """Search products by name or description.""" + return self.filter( + models.Q(name__icontains=query) | + models.Q(description__icontains=query) + ) + +class Product(models.Model): + # ... fields ... + + objects = ProductQuerySet.as_manager() # Use custom QuerySet + +# Usage +Product.objects.active().with_category().in_stock() +``` + +### Manager Methods + +```python +class ProductManager(models.Manager): + """Custom manager for complex queries.""" + + def get_or_none(self, **kwargs): + """Return object or None instead of DoesNotExist.""" + try: + return self.get(**kwargs) + except self.model.DoesNotExist: + return None + + def create_with_tags(self, name, price, tag_names): + """Create product with associated tags.""" + product = self.create(name=name, price=price) + tags = [Tag.objects.get_or_create(name=name)[0] for name in tag_names] + product.tags.set(tags) + return product + + def bulk_update_stock(self, product_ids, quantity): + """Bulk update stock for multiple products.""" + return self.filter(id__in=product_ids).update(stock=quantity) + +# In model +class Product(models.Model): + # ... fields ... + custom = ProductManager() +``` + +## Django REST Framework Patterns + +### Serializer Patterns + +```python +from rest_framework import serializers +from django.contrib.auth.password_validation import validate_password +from .models import Product, User + +class ProductSerializer(serializers.ModelSerializer): + """Serializer for Product model.""" + + category_name = serializers.CharField(source='category.name', read_only=True) + average_rating = serializers.FloatField(read_only=True) + discount_price = serializers.SerializerMethodField() + + class Meta: + model = Product + fields = [ + 'id', 'name', 'slug', 'description', 'price', + 'discount_price', 'stock', 'category_name', + 'average_rating', 'created_at' + ] + read_only_fields = ['id', 'slug', 'created_at'] + + def get_discount_price(self, obj): + """Calculate discount price if applicable.""" + if hasattr(obj, 'discount') and obj.discount: + return obj.price * (1 - obj.discount.percent / 100) + return obj.price + + def validate_price(self, value): + """Ensure price is non-negative.""" + if value < 0: + raise serializers.ValidationError("Price cannot be negative.") + return value + +class ProductCreateSerializer(serializers.ModelSerializer): + """Serializer for creating products.""" + + class Meta: + model = Product + fields = ['name', 'description', 'price', 'stock', 'category'] + + def validate(self, data): + """Custom validation for multiple fields.""" + if data['price'] > 10000 and data['stock'] > 100: + raise serializers.ValidationError( + "Cannot have high-value products with large stock." + ) + return data + +class UserRegistrationSerializer(serializers.ModelSerializer): + """Serializer for user registration.""" + + password = serializers.CharField( + write_only=True, + required=True, + validators=[validate_password], + style={'input_type': 'password'} + ) + password_confirm = serializers.CharField(write_only=True, style={'input_type': 'password'}) + + class Meta: + model = User + fields = ['email', 'username', 'password', 'password_confirm'] + + def validate(self, data): + """Validate passwords match.""" + if data['password'] != data['password_confirm']: + raise serializers.ValidationError({ + "password_confirm": "Password fields didn't match." + }) + return data + + def create(self, validated_data): + """Create user with hashed password.""" + validated_data.pop('password_confirm') + password = validated_data.pop('password') + user = User.objects.create(**validated_data) + user.set_password(password) + user.save() + return user +``` + +### ViewSet Patterns + +```python +from rest_framework import viewsets, status, filters +from rest_framework.decorators import action +from rest_framework.response import Response +from rest_framework.permissions import IsAuthenticated, IsAdminUser +from django_filters.rest_framework import DjangoFilterBackend +from .models import Product +from .serializers import ProductSerializer, ProductCreateSerializer +from .permissions import IsOwnerOrReadOnly +from .filters import ProductFilter +from .services import ProductService + +class ProductViewSet(viewsets.ModelViewSet): + """ViewSet for Product model.""" + + queryset = Product.objects.select_related('category').prefetch_related('tags') + permission_classes = [IsAuthenticated, IsOwnerOrReadOnly] + filter_backends = [DjangoFilterBackend, filters.SearchFilter, filters.OrderingFilter] + filterset_class = ProductFilter + search_fields = ['name', 'description'] + ordering_fields = ['price', 'created_at', 'name'] + ordering = ['-created_at'] + + def get_serializer_class(self): + """Return appropriate serializer based on action.""" + if self.action == 'create': + return ProductCreateSerializer + return ProductSerializer + + def perform_create(self, serializer): + """Save with user context.""" + serializer.save(created_by=self.request.user) + + @action(detail=False, methods=['get']) + def featured(self, request): + """Return featured products.""" + featured = self.queryset.filter(is_featured=True)[:10] + serializer = self.get_serializer(featured, many=True) + return Response(serializer.data) + + @action(detail=True, methods=['post']) + def purchase(self, request, pk=None): + """Purchase a product.""" + product = self.get_object() + service = ProductService() + result = service.purchase(product, request.user) + return Response(result, status=status.HTTP_201_CREATED) + + @action(detail=False, methods=['get'], permission_classes=[IsAuthenticated]) + def my_products(self, request): + """Return products created by current user.""" + products = self.queryset.filter(created_by=request.user) + page = self.paginate_queryset(products) + serializer = self.get_serializer(page, many=True) + return self.get_paginated_response(serializer.data) +``` + +### Custom Actions + +```python +from rest_framework.decorators import api_view, permission_classes +from rest_framework.permissions import IsAuthenticated +from rest_framework.response import Response + +@api_view(['POST']) +@permission_classes([IsAuthenticated]) +def add_to_cart(request): + """Add product to user cart.""" + product_id = request.data.get('product_id') + quantity = request.data.get('quantity', 1) + + try: + product = Product.objects.get(id=product_id) + except Product.DoesNotExist: + return Response( + {'error': 'Product not found'}, + status=status.HTTP_404_NOT_FOUND + ) + + cart, _ = Cart.objects.get_or_create(user=request.user) + CartItem.objects.create( + cart=cart, + product=product, + quantity=quantity + ) + + return Response({'message': 'Added to cart'}, status=status.HTTP_201_CREATED) +``` + +## Service Layer Pattern + +```python +# apps/orders/services.py +from typing import Optional +from django.db import transaction +from .models import Order, OrderItem + +class OrderService: + """Service layer for order-related business logic.""" + + @staticmethod + @transaction.atomic + def create_order(user, cart: Cart) -> Order: + """Create order from cart.""" + order = Order.objects.create( + user=user, + total_price=cart.total_price + ) + + for item in cart.items.all(): + OrderItem.objects.create( + order=order, + product=item.product, + quantity=item.quantity, + price=item.product.price + ) + + # Clear cart + cart.items.all().delete() + + return order + + @staticmethod + def process_payment(order: Order, payment_data: dict) -> bool: + """Process payment for order.""" + # Integration with payment gateway + payment = PaymentGateway.charge( + amount=order.total_price, + token=payment_data['token'] + ) + + if payment.success: + order.status = Order.Status.PAID + order.save() + # Send confirmation email + OrderService.send_confirmation_email(order) + return True + + return False + + @staticmethod + def send_confirmation_email(order: Order): + """Send order confirmation email.""" + # Email sending logic + pass +``` + +## Caching Strategies + +### View-Level Caching + +```python +from django.views.decorators.cache import cache_page +from django.utils.decorators import method_decorator + +@method_decorator(cache_page(60 * 15), name='dispatch') # 15 minutes +class ProductListView(generic.ListView): + model = Product + template_name = 'products/list.html' + context_object_name = 'products' +``` + +### Template Fragment Caching + +```django +{% load cache %} +{% cache 500 sidebar %} + ... expensive sidebar content ... +{% endcache %} +``` + +### Low-Level Caching + +```python +from django.core.cache import cache + +def get_featured_products(): + """Get featured products with caching.""" + cache_key = 'featured_products' + products = cache.get(cache_key) + + if products is None: + products = list(Product.objects.filter(is_featured=True)) + cache.set(cache_key, products, timeout=60 * 15) # 15 minutes + + return products +``` + +### QuerySet Caching + +```python +from django.core.cache import cache + +def get_popular_categories(): + cache_key = 'popular_categories' + categories = cache.get(cache_key) + + if categories is None: + categories = list(Category.objects.annotate( + product_count=Count('products') + ).filter(product_count__gt=10).order_by('-product_count')[:20]) + cache.set(cache_key, categories, timeout=60 * 60) # 1 hour + + return categories +``` + +## Signals + +### Signal Patterns + +```python +# apps/users/signals.py +from django.db.models.signals import post_save +from django.dispatch import receiver +from django.contrib.auth import get_user_model +from .models import Profile + +User = get_user_model() + +@receiver(post_save, sender=User) +def create_user_profile(sender, instance, created, **kwargs): + """Create profile when user is created.""" + if created: + Profile.objects.create(user=instance) + +@receiver(post_save, sender=User) +def save_user_profile(sender, instance, **kwargs): + """Save profile when user is saved.""" + instance.profile.save() + +# apps/users/apps.py +from django.apps import AppConfig + +class UsersConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'apps.users' + + def ready(self): + """Import signals when app is ready.""" + import apps.users.signals +``` + +## Middleware + +### Custom Middleware + +```python +# middleware/active_user_middleware.py +import time +from django.utils.deprecation import MiddlewareMixin + +class ActiveUserMiddleware(MiddlewareMixin): + """Middleware to track active users.""" + + def process_request(self, request): + """Process incoming request.""" + if request.user.is_authenticated: + # Update last active time + request.user.last_active = timezone.now() + request.user.save(update_fields=['last_active']) + +class RequestLoggingMiddleware(MiddlewareMixin): + """Middleware for logging requests.""" + + def process_request(self, request): + """Log request start time.""" + request.start_time = time.time() + + def process_response(self, request, response): + """Log request duration.""" + if hasattr(request, 'start_time'): + duration = time.time() - request.start_time + logger.info(f'{request.method} {request.path} - {response.status_code} - {duration:.3f}s') + return response +``` + +## Performance Optimization + +### N+1 Query Prevention + +```python +# Bad - N+1 queries +products = Product.objects.all() +for product in products: + print(product.category.name) # Separate query for each product + +# Good - Single query with select_related +products = Product.objects.select_related('category').all() +for product in products: + print(product.category.name) + +# Good - Prefetch for many-to-many +products = Product.objects.prefetch_related('tags').all() +for product in products: + for tag in product.tags.all(): + print(tag.name) +``` + +### Database Indexing + +```python +class Product(models.Model): + name = models.CharField(max_length=200, db_index=True) + slug = models.SlugField(unique=True) + category = models.ForeignKey('Category', on_delete=models.CASCADE) + created_at = models.DateTimeField(auto_now_add=True) + + class Meta: + indexes = [ + models.Index(fields=['name']), + models.Index(fields=['-created_at']), + models.Index(fields=['category', 'created_at']), + ] +``` + +### Bulk Operations + +```python +# Bulk create +Product.objects.bulk_create([ + Product(name=f'Product {i}', price=10.00) + for i in range(1000) +]) + +# Bulk update +products = Product.objects.all()[:100] +for product in products: + product.is_active = True +Product.objects.bulk_update(products, ['is_active']) + +# Bulk delete +Product.objects.filter(stock=0).delete() +``` + +## Quick Reference + +| Pattern | Description | +|---------|-------------| +| Split settings | Separate dev/prod/test settings | +| Custom QuerySet | Reusable query methods | +| Service Layer | Business logic separation | +| ViewSet | REST API endpoints | +| Serializer validation | Request/response transformation | +| select_related | Foreign key optimization | +| prefetch_related | Many-to-many optimization | +| Cache first | Cache expensive operations | +| Signals | Event-driven actions | +| Middleware | Request/response processing | + +Remember: Django provides many shortcuts, but for production applications, structure and organization matter more than concise code. Build for maintainability. diff --git a/.agents/skills/hermes-frontend-patterns/SKILL.md b/.agents/skills/hermes-frontend-patterns/SKILL.md new file mode 100644 index 0000000..ef0de63 --- /dev/null +++ b/.agents/skills/hermes-frontend-patterns/SKILL.md @@ -0,0 +1,642 @@ +--- +name: frontend-patterns +description: Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices. +origin: ECC +--- + +# Frontend Development Patterns + +Modern frontend patterns for React, Next.js, and performant user interfaces. + +## When to Activate + +- Building React components (composition, props, rendering) +- Managing state (useState, useReducer, Zustand, Context) +- Implementing data fetching (SWR, React Query, server components) +- Optimizing performance (memoization, virtualization, code splitting) +- Working with forms (validation, controlled inputs, Zod schemas) +- Handling client-side routing and navigation +- Building accessible, responsive UI patterns + +## Component Patterns + +### Composition Over Inheritance + +```typescript +// PASS: GOOD: Component composition +interface CardProps { + children: React.ReactNode + variant?: 'default' | 'outlined' +} + +export function Card({ children, variant = 'default' }: CardProps) { + return
{children}
+} + +export function CardHeader({ children }: { children: React.ReactNode }) { + return
{children}
+} + +export function CardBody({ children }: { children: React.ReactNode }) { + return
{children}
+} + +// Usage + + Title + Content + +``` + +### Compound Components + +```typescript +interface TabsContextValue { + activeTab: string + setActiveTab: (tab: string) => void +} + +const TabsContext = createContext(undefined) + +export function Tabs({ children, defaultTab }: { + children: React.ReactNode + defaultTab: string +}) { + const [activeTab, setActiveTab] = useState(defaultTab) + + return ( + + {children} + + ) +} + +export function TabList({ children }: { children: React.ReactNode }) { + return
{children}
+} + +export function Tab({ id, children }: { id: string, children: React.ReactNode }) { + const context = useContext(TabsContext) + if (!context) throw new Error('Tab must be used within Tabs') + + return ( + + ) +} + +// Usage + + + Overview + Details + + +``` + +### Render Props Pattern + +```typescript +interface DataLoaderProps { + url: string + children: (data: T | null, loading: boolean, error: Error | null) => React.ReactNode +} + +export function DataLoader({ url, children }: DataLoaderProps) { + const [data, setData] = useState(null) + const [loading, setLoading] = useState(true) + const [error, setError] = useState(null) + + useEffect(() => { + fetch(url) + .then(res => res.json()) + .then(setData) + .catch(setError) + .finally(() => setLoading(false)) + }, [url]) + + return <>{children(data, loading, error)} +} + +// Usage + url="/api/markets"> + {(markets, loading, error) => { + if (loading) return + if (error) return + return + }} + +``` + +## Custom Hooks Patterns + +### State Management Hook + +```typescript +export function useToggle(initialValue = false): [boolean, () => void] { + const [value, setValue] = useState(initialValue) + + const toggle = useCallback(() => { + setValue(v => !v) + }, []) + + return [value, toggle] +} + +// Usage +const [isOpen, toggleOpen] = useToggle() +``` + +### Async Data Fetching Hook + +```typescript +interface UseQueryOptions { + onSuccess?: (data: T) => void + onError?: (error: Error) => void + enabled?: boolean +} + +export function useQuery( + key: string, + fetcher: () => Promise, + options?: UseQueryOptions +) { + const [data, setData] = useState(null) + const [error, setError] = useState(null) + const [loading, setLoading] = useState(false) + + const refetch = useCallback(async () => { + setLoading(true) + setError(null) + + try { + const result = await fetcher() + setData(result) + options?.onSuccess?.(result) + } catch (err) { + const error = err as Error + setError(error) + options?.onError?.(error) + } finally { + setLoading(false) + } + }, [fetcher, options]) + + useEffect(() => { + if (options?.enabled !== false) { + refetch() + } + }, [key, refetch, options?.enabled]) + + return { data, error, loading, refetch } +} + +// Usage +const { data: markets, loading, error, refetch } = useQuery( + 'markets', + () => fetch('/api/markets').then(r => r.json()), + { + onSuccess: data => console.log('Fetched', data.length, 'markets'), + onError: err => console.error('Failed:', err) + } +) +``` + +### Debounce Hook + +```typescript +export function useDebounce(value: T, delay: number): T { + const [debouncedValue, setDebouncedValue] = useState(value) + + useEffect(() => { + const handler = setTimeout(() => { + setDebouncedValue(value) + }, delay) + + return () => clearTimeout(handler) + }, [value, delay]) + + return debouncedValue +} + +// Usage +const [searchQuery, setSearchQuery] = useState('') +const debouncedQuery = useDebounce(searchQuery, 500) + +useEffect(() => { + if (debouncedQuery) { + performSearch(debouncedQuery) + } +}, [debouncedQuery]) +``` + +## State Management Patterns + +### Context + Reducer Pattern + +```typescript +interface State { + markets: Market[] + selectedMarket: Market | null + loading: boolean +} + +type Action = + | { type: 'SET_MARKETS'; payload: Market[] } + | { type: 'SELECT_MARKET'; payload: Market } + | { type: 'SET_LOADING'; payload: boolean } + +function reducer(state: State, action: Action): State { + switch (action.type) { + case 'SET_MARKETS': + return { ...state, markets: action.payload } + case 'SELECT_MARKET': + return { ...state, selectedMarket: action.payload } + case 'SET_LOADING': + return { ...state, loading: action.payload } + default: + return state + } +} + +const MarketContext = createContext<{ + state: State + dispatch: Dispatch +} | undefined>(undefined) + +export function MarketProvider({ children }: { children: React.ReactNode }) { + const [state, dispatch] = useReducer(reducer, { + markets: [], + selectedMarket: null, + loading: false + }) + + return ( + + {children} + + ) +} + +export function useMarkets() { + const context = useContext(MarketContext) + if (!context) throw new Error('useMarkets must be used within MarketProvider') + return context +} +``` + +## Performance Optimization + +### Memoization + +```typescript +// PASS: useMemo for expensive computations +const sortedMarkets = useMemo(() => { + return markets.sort((a, b) => b.volume - a.volume) +}, [markets]) + +// PASS: useCallback for functions passed to children +const handleSearch = useCallback((query: string) => { + setSearchQuery(query) +}, []) + +// PASS: React.memo for pure components +export const MarketCard = React.memo(({ market }) => { + return ( +
+

{market.name}

+

{market.description}

+
+ ) +}) +``` + +### Code Splitting & Lazy Loading + +```typescript +import { lazy, Suspense } from 'react' + +// PASS: Lazy load heavy components +const HeavyChart = lazy(() => import('./HeavyChart')) +const ThreeJsBackground = lazy(() => import('./ThreeJsBackground')) + +export function Dashboard() { + return ( +
+ }> + + + + + + +
+ ) +} +``` + +### Virtualization for Long Lists + +```typescript +import { useVirtualizer } from '@tanstack/react-virtual' + +export function VirtualMarketList({ markets }: { markets: Market[] }) { + const parentRef = useRef(null) + + const virtualizer = useVirtualizer({ + count: markets.length, + getScrollElement: () => parentRef.current, + estimateSize: () => 100, // Estimated row height + overscan: 5 // Extra items to render + }) + + return ( +
+
+ {virtualizer.getVirtualItems().map(virtualRow => ( +
+ +
+ ))} +
+
+ ) +} +``` + +## Form Handling Patterns + +### Controlled Form with Validation + +```typescript +interface FormData { + name: string + description: string + endDate: string +} + +interface FormErrors { + name?: string + description?: string + endDate?: string +} + +export function CreateMarketForm() { + const [formData, setFormData] = useState({ + name: '', + description: '', + endDate: '' + }) + + const [errors, setErrors] = useState({}) + + const validate = (): boolean => { + const newErrors: FormErrors = {} + + if (!formData.name.trim()) { + newErrors.name = 'Name is required' + } else if (formData.name.length > 200) { + newErrors.name = 'Name must be under 200 characters' + } + + if (!formData.description.trim()) { + newErrors.description = 'Description is required' + } + + if (!formData.endDate) { + newErrors.endDate = 'End date is required' + } + + setErrors(newErrors) + return Object.keys(newErrors).length === 0 + } + + const handleSubmit = async (e: React.FormEvent) => { + e.preventDefault() + + if (!validate()) return + + try { + await createMarket(formData) + // Success handling + } catch (error) { + // Error handling + } + } + + return ( +
+ setFormData(prev => ({ ...prev, name: e.target.value }))} + placeholder="Market name" + /> + {errors.name && {errors.name}} + + {/* Other fields */} + + +
+ ) +} +``` + +## Error Boundary Pattern + +```typescript +interface ErrorBoundaryState { + hasError: boolean + error: Error | null +} + +export class ErrorBoundary extends React.Component< + { children: React.ReactNode }, + ErrorBoundaryState +> { + state: ErrorBoundaryState = { + hasError: false, + error: null + } + + static getDerivedStateFromError(error: Error): ErrorBoundaryState { + return { hasError: true, error } + } + + componentDidCatch(error: Error, errorInfo: React.ErrorInfo) { + console.error('Error boundary caught:', error, errorInfo) + } + + render() { + if (this.state.hasError) { + return ( +
+

Something went wrong

+

{this.state.error?.message}

+ +
+ ) + } + + return this.props.children + } +} + +// Usage + + + +``` + +## Animation Patterns + +### Framer Motion Animations + +```typescript +import { motion, AnimatePresence } from 'framer-motion' + +// PASS: List animations +export function AnimatedMarketList({ markets }: { markets: Market[] }) { + return ( + + {markets.map(market => ( + + + + ))} + + ) +} + +// PASS: Modal animations +export function Modal({ isOpen, onClose, children }: ModalProps) { + return ( + + {isOpen && ( + <> + + + {children} + + + )} + + ) +} +``` + +## Accessibility Patterns + +### Keyboard Navigation + +```typescript +export function Dropdown({ options, onSelect }: DropdownProps) { + const [isOpen, setIsOpen] = useState(false) + const [activeIndex, setActiveIndex] = useState(0) + + const handleKeyDown = (e: React.KeyboardEvent) => { + switch (e.key) { + case 'ArrowDown': + e.preventDefault() + setActiveIndex(i => Math.min(i + 1, options.length - 1)) + break + case 'ArrowUp': + e.preventDefault() + setActiveIndex(i => Math.max(i - 1, 0)) + break + case 'Enter': + e.preventDefault() + onSelect(options[activeIndex]) + setIsOpen(false) + break + case 'Escape': + setIsOpen(false) + break + } + } + + return ( +
+ {/* Dropdown implementation */} +
+ ) +} +``` + +### Focus Management + +```typescript +export function Modal({ isOpen, onClose, children }: ModalProps) { + const modalRef = useRef(null) + const previousFocusRef = useRef(null) + + useEffect(() => { + if (isOpen) { + // Save currently focused element + previousFocusRef.current = document.activeElement as HTMLElement + + // Focus modal + modalRef.current?.focus() + } else { + // Restore focus when closing + previousFocusRef.current?.focus() + } + }, [isOpen]) + + return isOpen ? ( +
e.key === 'Escape' && onClose()} + > + {children} +
+ ) : null +} +``` + +**Remember**: Modern frontend patterns enable maintainable, performant user interfaces. Choose patterns that fit your project complexity. diff --git a/.agents/skills/hermes-python-patterns/SKILL.md b/.agents/skills/hermes-python-patterns/SKILL.md new file mode 100644 index 0000000..ba1156d --- /dev/null +++ b/.agents/skills/hermes-python-patterns/SKILL.md @@ -0,0 +1,750 @@ +--- +name: python-patterns +description: Pythonic idioms, PEP 8 standards, type hints, and best practices for building robust, efficient, and maintainable Python applications. +origin: ECC +--- + +# Python Development Patterns + +Idiomatic Python patterns and best practices for building robust, efficient, and maintainable applications. + +## When to Activate + +- Writing new Python code +- Reviewing Python code +- Refactoring existing Python code +- Designing Python packages/modules + +## Core Principles + +### 1. Readability Counts + +Python prioritizes readability. Code should be obvious and easy to understand. + +```python +# Good: Clear and readable +def get_active_users(users: list[User]) -> list[User]: + """Return only active users from the provided list.""" + return [user for user in users if user.is_active] + + +# Bad: Clever but confusing +def get_active_users(u): + return [x for x in u if x.a] +``` + +### 2. Explicit is Better Than Implicit + +Avoid magic; be clear about what your code does. + +```python +# Good: Explicit configuration +import logging + +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s' +) + +# Bad: Hidden side effects +import some_module +some_module.setup() # What does this do? +``` + +### 3. EAFP - Easier to Ask Forgiveness Than Permission + +Python prefers exception handling over checking conditions. + +```python +# Good: EAFP style +def get_value(dictionary: dict, key: str) -> Any: + try: + return dictionary[key] + except KeyError: + return default_value + +# Bad: LBYL (Look Before You Leap) style +def get_value(dictionary: dict, key: str) -> Any: + if key in dictionary: + return dictionary[key] + else: + return default_value +``` + +## Type Hints + +### Basic Type Annotations + +```python +from typing import Optional, List, Dict, Any + +def process_user( + user_id: str, + data: Dict[str, Any], + active: bool = True +) -> Optional[User]: + """Process a user and return the updated User or None.""" + if not active: + return None + return User(user_id, data) +``` + +### Modern Type Hints (Python 3.9+) + +```python +# Python 3.9+ - Use built-in types +def process_items(items: list[str]) -> dict[str, int]: + return {item: len(item) for item in items} + +# Python 3.8 and earlier - Use typing module +from typing import List, Dict + +def process_items(items: List[str]) -> Dict[str, int]: + return {item: len(item) for item in items} +``` + +### Type Aliases and TypeVar + +```python +from typing import TypeVar, Union + +# Type alias for complex types +JSON = Union[dict[str, Any], list[Any], str, int, float, bool, None] + +def parse_json(data: str) -> JSON: + return json.loads(data) + +# Generic types +T = TypeVar('T') + +def first(items: list[T]) -> T | None: + """Return the first item or None if list is empty.""" + return items[0] if items else None +``` + +### Protocol-Based Duck Typing + +```python +from typing import Protocol + +class Renderable(Protocol): + def render(self) -> str: + """Render the object to a string.""" + +def render_all(items: list[Renderable]) -> str: + """Render all items that implement the Renderable protocol.""" + return "\n".join(item.render() for item in items) +``` + +## Error Handling Patterns + +### Specific Exception Handling + +```python +# Good: Catch specific exceptions +def load_config(path: str) -> Config: + try: + with open(path) as f: + return Config.from_json(f.read()) + except FileNotFoundError as e: + raise ConfigError(f"Config file not found: {path}") from e + except json.JSONDecodeError as e: + raise ConfigError(f"Invalid JSON in config: {path}") from e + +# Bad: Bare except +def load_config(path: str) -> Config: + try: + with open(path) as f: + return Config.from_json(f.read()) + except: + return None # Silent failure! +``` + +### Exception Chaining + +```python +def process_data(data: str) -> Result: + try: + parsed = json.loads(data) + except json.JSONDecodeError as e: + # Chain exceptions to preserve the traceback + raise ValueError(f"Failed to parse data: {data}") from e +``` + +### Custom Exception Hierarchy + +```python +class AppError(Exception): + """Base exception for all application errors.""" + pass + +class ValidationError(AppError): + """Raised when input validation fails.""" + pass + +class NotFoundError(AppError): + """Raised when a requested resource is not found.""" + pass + +# Usage +def get_user(user_id: str) -> User: + user = db.find_user(user_id) + if not user: + raise NotFoundError(f"User not found: {user_id}") + return user +``` + +## Context Managers + +### Resource Management + +```python +# Good: Using context managers +def process_file(path: str) -> str: + with open(path, 'r') as f: + return f.read() + +# Bad: Manual resource management +def process_file(path: str) -> str: + f = open(path, 'r') + try: + return f.read() + finally: + f.close() +``` + +### Custom Context Managers + +```python +from contextlib import contextmanager + +@contextmanager +def timer(name: str): + """Context manager to time a block of code.""" + start = time.perf_counter() + yield + elapsed = time.perf_counter() - start + print(f"{name} took {elapsed:.4f} seconds") + +# Usage +with timer("data processing"): + process_large_dataset() +``` + +### Context Manager Classes + +```python +class DatabaseTransaction: + def __init__(self, connection): + self.connection = connection + + def __enter__(self): + self.connection.begin_transaction() + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + if exc_type is None: + self.connection.commit() + else: + self.connection.rollback() + return False # Don't suppress exceptions + +# Usage +with DatabaseTransaction(conn): + user = conn.create_user(user_data) + conn.create_profile(user.id, profile_data) +``` + +## Comprehensions and Generators + +### List Comprehensions + +```python +# Good: List comprehension for simple transformations +names = [user.name for user in users if user.is_active] + +# Bad: Manual loop +names = [] +for user in users: + if user.is_active: + names.append(user.name) + +# Complex comprehensions should be expanded +# Bad: Too complex +result = [x * 2 for x in items if x > 0 if x % 2 == 0] + +# Good: Use a generator function +def filter_and_transform(items: Iterable[int]) -> list[int]: + result = [] + for x in items: + if x > 0 and x % 2 == 0: + result.append(x * 2) + return result +``` + +### Generator Expressions + +```python +# Good: Generator for lazy evaluation +total = sum(x * x for x in range(1_000_000)) + +# Bad: Creates large intermediate list +total = sum([x * x for x in range(1_000_000)]) +``` + +### Generator Functions + +```python +def read_large_file(path: str) -> Iterator[str]: + """Read a large file line by line.""" + with open(path) as f: + for line in f: + yield line.strip() + +# Usage +for line in read_large_file("huge.txt"): + process(line) +``` + +## Data Classes and Named Tuples + +### Data Classes + +```python +from dataclasses import dataclass, field +from datetime import datetime + +@dataclass +class User: + """User entity with automatic __init__, __repr__, and __eq__.""" + id: str + name: str + email: str + created_at: datetime = field(default_factory=datetime.now) + is_active: bool = True + +# Usage +user = User( + id="123", + name="Alice", + email="alice@example.com" +) +``` + +### Data Classes with Validation + +```python +@dataclass +class User: + email: str + age: int + + def __post_init__(self): + # Validate email format + if "@" not in self.email: + raise ValueError(f"Invalid email: {self.email}") + # Validate age range + if self.age < 0 or self.age > 150: + raise ValueError(f"Invalid age: {self.age}") +``` + +### Named Tuples + +```python +from typing import NamedTuple + +class Point(NamedTuple): + """Immutable 2D point.""" + x: float + y: float + + def distance(self, other: 'Point') -> float: + return ((self.x - other.x) ** 2 + (self.y - other.y) ** 2) ** 0.5 + +# Usage +p1 = Point(0, 0) +p2 = Point(3, 4) +print(p1.distance(p2)) # 5.0 +``` + +## Decorators + +### Function Decorators + +```python +import functools +import time + +def timer(func: Callable) -> Callable: + """Decorator to time function execution.""" + @functools.wraps(func) + def wrapper(*args, **kwargs): + start = time.perf_counter() + result = func(*args, **kwargs) + elapsed = time.perf_counter() - start + print(f"{func.__name__} took {elapsed:.4f}s") + return result + return wrapper + +@timer +def slow_function(): + time.sleep(1) + +# slow_function() prints: slow_function took 1.0012s +``` + +### Parameterized Decorators + +```python +def repeat(times: int): + """Decorator to repeat a function multiple times.""" + def decorator(func: Callable) -> Callable: + @functools.wraps(func) + def wrapper(*args, **kwargs): + results = [] + for _ in range(times): + results.append(func(*args, **kwargs)) + return results + return wrapper + return decorator + +@repeat(times=3) +def greet(name: str) -> str: + return f"Hello, {name}!" + +# greet("Alice") returns ["Hello, Alice!", "Hello, Alice!", "Hello, Alice!"] +``` + +### Class-Based Decorators + +```python +class CountCalls: + """Decorator that counts how many times a function is called.""" + def __init__(self, func: Callable): + functools.update_wrapper(self, func) + self.func = func + self.count = 0 + + def __call__(self, *args, **kwargs): + self.count += 1 + print(f"{self.func.__name__} has been called {self.count} times") + return self.func(*args, **kwargs) + +@CountCalls +def process(): + pass + +# Each call to process() prints the call count +``` + +## Concurrency Patterns + +### Threading for I/O-Bound Tasks + +```python +import concurrent.futures +import threading + +def fetch_url(url: str) -> str: + """Fetch a URL (I/O-bound operation).""" + import urllib.request + with urllib.request.urlopen(url) as response: + return response.read().decode() + +def fetch_all_urls(urls: list[str]) -> dict[str, str]: + """Fetch multiple URLs concurrently using threads.""" + with concurrent.futures.ThreadPoolExecutor(max_workers=10) as executor: + future_to_url = {executor.submit(fetch_url, url): url for url in urls} + results = {} + for future in concurrent.futures.as_completed(future_to_url): + url = future_to_url[future] + try: + results[url] = future.result() + except Exception as e: + results[url] = f"Error: {e}" + return results +``` + +### Multiprocessing for CPU-Bound Tasks + +```python +def process_data(data: list[int]) -> int: + """CPU-intensive computation.""" + return sum(x ** 2 for x in data) + +def process_all(datasets: list[list[int]]) -> list[int]: + """Process multiple datasets using multiple processes.""" + with concurrent.futures.ProcessPoolExecutor() as executor: + results = list(executor.map(process_data, datasets)) + return results +``` + +### Async/Await for Concurrent I/O + +```python +import asyncio + +async def fetch_async(url: str) -> str: + """Fetch a URL asynchronously.""" + import aiohttp + async with aiohttp.ClientSession() as session: + async with session.get(url) as response: + return await response.text() + +async def fetch_all(urls: list[str]) -> dict[str, str]: + """Fetch multiple URLs concurrently.""" + tasks = [fetch_async(url) for url in urls] + results = await asyncio.gather(*tasks, return_exceptions=True) + return dict(zip(urls, results)) +``` + +## Package Organization + +### Standard Project Layout + +``` +myproject/ +├── src/ +│ └── mypackage/ +│ ├── __init__.py +│ ├── main.py +│ ├── api/ +│ │ ├── __init__.py +│ │ └── routes.py +│ ├── models/ +│ │ ├── __init__.py +│ │ └── user.py +│ └── utils/ +│ ├── __init__.py +│ └── helpers.py +├── tests/ +│ ├── __init__.py +│ ├── conftest.py +│ ├── test_api.py +│ └── test_models.py +├── pyproject.toml +├── README.md +└── .gitignore +``` + +### Import Conventions + +```python +# Good: Import order - stdlib, third-party, local +import os +import sys +from pathlib import Path + +import requests +from fastapi import FastAPI + +from mypackage.models import User +from mypackage.utils import format_name + +# Good: Use isort for automatic import sorting +# pip install isort +``` + +### __init__.py for Package Exports + +```python +# mypackage/__init__.py +"""mypackage - A sample Python package.""" + +__version__ = "1.0.0" + +# Export main classes/functions at package level +from mypackage.models import User, Post +from mypackage.utils import format_name + +__all__ = ["User", "Post", "format_name"] +``` + +## Memory and Performance + +### Using __slots__ for Memory Efficiency + +```python +# Bad: Regular class uses __dict__ (more memory) +class Point: + def __init__(self, x: float, y: float): + self.x = x + self.y = y + +# Good: __slots__ reduces memory usage +class Point: + __slots__ = ['x', 'y'] + + def __init__(self, x: float, y: float): + self.x = x + self.y = y +``` + +### Generator for Large Data + +```python +# Bad: Returns full list in memory +def read_lines(path: str) -> list[str]: + with open(path) as f: + return [line.strip() for line in f] + +# Good: Yields lines one at a time +def read_lines(path: str) -> Iterator[str]: + with open(path) as f: + for line in f: + yield line.strip() +``` + +### Avoid String Concatenation in Loops + +```python +# Bad: O(n²) due to string immutability +result = "" +for item in items: + result += str(item) + +# Good: O(n) using join +result = "".join(str(item) for item in items) + +# Good: Using StringIO for building +from io import StringIO + +buffer = StringIO() +for item in items: + buffer.write(str(item)) +result = buffer.getvalue() +``` + +## Python Tooling Integration + +### Essential Commands + +```bash +# Code formatting +black . +isort . + +# Linting +ruff check . +pylint mypackage/ + +# Type checking +mypy . + +# Testing +pytest --cov=mypackage --cov-report=html + +# Security scanning +bandit -r . + +# Dependency management +pip-audit +safety check +``` + +### pyproject.toml Configuration + +```toml +[project] +name = "mypackage" +version = "1.0.0" +requires-python = ">=3.9" +dependencies = [ + "requests>=2.31.0", + "pydantic>=2.0.0", +] + +[project.optional-dependencies] +dev = [ + "pytest>=7.4.0", + "pytest-cov>=4.1.0", + "black>=23.0.0", + "ruff>=0.1.0", + "mypy>=1.5.0", +] + +[tool.black] +line-length = 88 +target-version = ['py39'] + +[tool.ruff] +line-length = 88 +select = ["E", "F", "I", "N", "W"] + +[tool.mypy] +python_version = "3.9" +warn_return_any = true +warn_unused_configs = true +disallow_untyped_defs = true + +[tool.pytest.ini_options] +testpaths = ["tests"] +addopts = "--cov=mypackage --cov-report=term-missing" +``` + +## Quick Reference: Python Idioms + +| Idiom | Description | +|-------|-------------| +| EAFP | Easier to Ask Forgiveness than Permission | +| Context managers | Use `with` for resource management | +| List comprehensions | For simple transformations | +| Generators | For lazy evaluation and large datasets | +| Type hints | Annotate function signatures | +| Dataclasses | For data containers with auto-generated methods | +| `__slots__` | For memory optimization | +| f-strings | For string formatting (Python 3.6+) | +| `pathlib.Path` | For path operations (Python 3.4+) | +| `enumerate` | For index-element pairs in loops | + +## Anti-Patterns to Avoid + +```python +# Bad: Mutable default arguments +def append_to(item, items=[]): + items.append(item) + return items + +# Good: Use None and create new list +def append_to(item, items=None): + if items is None: + items = [] + items.append(item) + return items + +# Bad: Checking type with type() +if type(obj) == list: + process(obj) + +# Good: Use isinstance +if isinstance(obj, list): + process(obj) + +# Bad: Comparing to None with == +if value == None: + process() + +# Good: Use is +if value is None: + process() + +# Bad: from module import * +from os.path import * + +# Good: Explicit imports +from os.path import join, exists + +# Bad: Bare except +try: + risky_operation() +except: + pass + +# Good: Specific exception +try: + risky_operation() +except SpecificError as e: + logger.error(f"Operation failed: {e}") +``` + +__Remember__: Python code should be readable, explicit, and follow the principle of least surprise. When in doubt, prioritize clarity over cleverness. diff --git a/.agents/skills/hermes-python-testing/SKILL.md b/.agents/skills/hermes-python-testing/SKILL.md new file mode 100644 index 0000000..85e3661 --- /dev/null +++ b/.agents/skills/hermes-python-testing/SKILL.md @@ -0,0 +1,816 @@ +--- +name: python-testing +description: Python testing strategies using pytest, TDD methodology, fixtures, mocking, parametrization, and coverage requirements. +origin: ECC +--- + +# Python Testing Patterns + +Comprehensive testing strategies for Python applications using pytest, TDD methodology, and best practices. + +## When to Activate + +- Writing new Python code (follow TDD: red, green, refactor) +- Designing test suites for Python projects +- Reviewing Python test coverage +- Setting up testing infrastructure + +## Core Testing Philosophy + +### Test-Driven Development (TDD) + +Always follow the TDD cycle: + +1. **RED**: Write a failing test for the desired behavior +2. **GREEN**: Write minimal code to make the test pass +3. **REFACTOR**: Improve code while keeping tests green + +```python +# Step 1: Write failing test (RED) +def test_add_numbers(): + result = add(2, 3) + assert result == 5 + +# Step 2: Write minimal implementation (GREEN) +def add(a, b): + return a + b + +# Step 3: Refactor if needed (REFACTOR) +``` + +### Coverage Requirements + +- **Target**: 80%+ code coverage +- **Critical paths**: 100% coverage required +- Use `pytest --cov` to measure coverage + +```bash +pytest --cov=mypackage --cov-report=term-missing --cov-report=html +``` + +## pytest Fundamentals + +### Basic Test Structure + +```python +import pytest + +def test_addition(): + """Test basic addition.""" + assert 2 + 2 == 4 + +def test_string_uppercase(): + """Test string uppercasing.""" + text = "hello" + assert text.upper() == "HELLO" + +def test_list_append(): + """Test list append.""" + items = [1, 2, 3] + items.append(4) + assert 4 in items + assert len(items) == 4 +``` + +### Assertions + +```python +# Equality +assert result == expected + +# Inequality +assert result != unexpected + +# Truthiness +assert result # Truthy +assert not result # Falsy +assert result is True # Exactly True +assert result is False # Exactly False +assert result is None # Exactly None + +# Membership +assert item in collection +assert item not in collection + +# Comparisons +assert result > 0 +assert 0 <= result <= 100 + +# Type checking +assert isinstance(result, str) + +# Exception testing (preferred approach) +with pytest.raises(ValueError): + raise ValueError("error message") + +# Check exception message +with pytest.raises(ValueError, match="invalid input"): + raise ValueError("invalid input provided") + +# Check exception attributes +with pytest.raises(ValueError) as exc_info: + raise ValueError("error message") +assert str(exc_info.value) == "error message" +``` + +## Fixtures + +### Basic Fixture Usage + +```python +import pytest + +@pytest.fixture +def sample_data(): + """Fixture providing sample data.""" + return {"name": "Alice", "age": 30} + +def test_sample_data(sample_data): + """Test using the fixture.""" + assert sample_data["name"] == "Alice" + assert sample_data["age"] == 30 +``` + +### Fixture with Setup/Teardown + +```python +@pytest.fixture +def database(): + """Fixture with setup and teardown.""" + # Setup + db = Database(":memory:") + db.create_tables() + db.insert_test_data() + + yield db # Provide to test + + # Teardown + db.close() + +def test_database_query(database): + """Test database operations.""" + result = database.query("SELECT * FROM users") + assert len(result) > 0 +``` + +### Fixture Scopes + +```python +# Function scope (default) - runs for each test +@pytest.fixture +def temp_file(): + with open("temp.txt", "w") as f: + yield f + os.remove("temp.txt") + +# Module scope - runs once per module +@pytest.fixture(scope="module") +def module_db(): + db = Database(":memory:") + db.create_tables() + yield db + db.close() + +# Session scope - runs once per test session +@pytest.fixture(scope="session") +def shared_resource(): + resource = ExpensiveResource() + yield resource + resource.cleanup() +``` + +### Fixture with Parameters + +```python +@pytest.fixture(params=[1, 2, 3]) +def number(request): + """Parameterized fixture.""" + return request.param + +def test_numbers(number): + """Test runs 3 times, once for each parameter.""" + assert number > 0 +``` + +### Using Multiple Fixtures + +```python +@pytest.fixture +def user(): + return User(id=1, name="Alice") + +@pytest.fixture +def admin(): + return User(id=2, name="Admin", role="admin") + +def test_user_admin_interaction(user, admin): + """Test using multiple fixtures.""" + assert admin.can_manage(user) +``` + +### Autouse Fixtures + +```python +@pytest.fixture(autouse=True) +def reset_config(): + """Automatically runs before every test.""" + Config.reset() + yield + Config.cleanup() + +def test_without_fixture_call(): + # reset_config runs automatically + assert Config.get_setting("debug") is False +``` + +### Conftest.py for Shared Fixtures + +```python +# tests/conftest.py +import pytest + +@pytest.fixture +def client(): + """Shared fixture for all tests.""" + app = create_app(testing=True) + with app.test_client() as client: + yield client + +@pytest.fixture +def auth_headers(client): + """Generate auth headers for API testing.""" + response = client.post("/api/login", json={ + "username": "test", + "password": "test" + }) + token = response.json["token"] + return {"Authorization": f"Bearer {token}"} +``` + +## Parametrization + +### Basic Parametrization + +```python +@pytest.mark.parametrize("input,expected", [ + ("hello", "HELLO"), + ("world", "WORLD"), + ("PyThOn", "PYTHON"), +]) +def test_uppercase(input, expected): + """Test runs 3 times with different inputs.""" + assert input.upper() == expected +``` + +### Multiple Parameters + +```python +@pytest.mark.parametrize("a,b,expected", [ + (2, 3, 5), + (0, 0, 0), + (-1, 1, 0), + (100, 200, 300), +]) +def test_add(a, b, expected): + """Test addition with multiple inputs.""" + assert add(a, b) == expected +``` + +### Parametrize with IDs + +```python +@pytest.mark.parametrize("input,expected", [ + ("valid@email.com", True), + ("invalid", False), + ("@no-domain.com", False), +], ids=["valid-email", "missing-at", "missing-domain"]) +def test_email_validation(input, expected): + """Test email validation with readable test IDs.""" + assert is_valid_email(input) is expected +``` + +### Parametrized Fixtures + +```python +@pytest.fixture(params=["sqlite", "postgresql", "mysql"]) +def db(request): + """Test against multiple database backends.""" + if request.param == "sqlite": + return Database(":memory:") + elif request.param == "postgresql": + return Database("postgresql://localhost/test") + elif request.param == "mysql": + return Database("mysql://localhost/test") + +def test_database_operations(db): + """Test runs 3 times, once for each database.""" + result = db.query("SELECT 1") + assert result is not None +``` + +## Markers and Test Selection + +### Custom Markers + +```python +# Mark slow tests +@pytest.mark.slow +def test_slow_operation(): + time.sleep(5) + +# Mark integration tests +@pytest.mark.integration +def test_api_integration(): + response = requests.get("https://api.example.com") + assert response.status_code == 200 + +# Mark unit tests +@pytest.mark.unit +def test_unit_logic(): + assert calculate(2, 3) == 5 +``` + +### Run Specific Tests + +```bash +# Run only fast tests +pytest -m "not slow" + +# Run only integration tests +pytest -m integration + +# Run integration or slow tests +pytest -m "integration or slow" + +# Run tests marked as unit but not slow +pytest -m "unit and not slow" +``` + +### Configure Markers in pytest.ini + +```ini +[pytest] +markers = + slow: marks tests as slow + integration: marks tests as integration tests + unit: marks tests as unit tests + django: marks tests as requiring Django +``` + +## Mocking and Patching + +### Mocking Functions + +```python +from unittest.mock import patch, Mock + +@patch("mypackage.external_api_call") +def test_with_mock(api_call_mock): + """Test with mocked external API.""" + api_call_mock.return_value = {"status": "success"} + + result = my_function() + + api_call_mock.assert_called_once() + assert result["status"] == "success" +``` + +### Mocking Return Values + +```python +@patch("mypackage.Database.connect") +def test_database_connection(connect_mock): + """Test with mocked database connection.""" + connect_mock.return_value = MockConnection() + + db = Database() + db.connect() + + connect_mock.assert_called_once_with("localhost") +``` + +### Mocking Exceptions + +```python +@patch("mypackage.api_call") +def test_api_error_handling(api_call_mock): + """Test error handling with mocked exception.""" + api_call_mock.side_effect = ConnectionError("Network error") + + with pytest.raises(ConnectionError): + api_call() + + api_call_mock.assert_called_once() +``` + +### Mocking Context Managers + +```python +@patch("builtins.open", new_callable=mock_open) +def test_file_reading(mock_file): + """Test file reading with mocked open.""" + mock_file.return_value.read.return_value = "file content" + + result = read_file("test.txt") + + mock_file.assert_called_once_with("test.txt", "r") + assert result == "file content" +``` + +### Using Autospec + +```python +@patch("mypackage.DBConnection", autospec=True) +def test_autospec(db_mock): + """Test with autospec to catch API misuse.""" + db = db_mock.return_value + db.query("SELECT * FROM users") + + # This would fail if DBConnection doesn't have query method + db_mock.assert_called_once() +``` + +### Mock Class Instances + +```python +class TestUserService: + @patch("mypackage.UserRepository") + def test_create_user(self, repo_mock): + """Test user creation with mocked repository.""" + repo_mock.return_value.save.return_value = User(id=1, name="Alice") + + service = UserService(repo_mock.return_value) + user = service.create_user(name="Alice") + + assert user.name == "Alice" + repo_mock.return_value.save.assert_called_once() +``` + +### Mock Property + +```python +@pytest.fixture +def mock_config(): + """Create a mock with a property.""" + config = Mock() + type(config).debug = PropertyMock(return_value=True) + type(config).api_key = PropertyMock(return_value="test-key") + return config + +def test_with_mock_config(mock_config): + """Test with mocked config properties.""" + assert mock_config.debug is True + assert mock_config.api_key == "test-key" +``` + +## Testing Async Code + +### Async Tests with pytest-asyncio + +```python +import pytest + +@pytest.mark.asyncio +async def test_async_function(): + """Test async function.""" + result = await async_add(2, 3) + assert result == 5 + +@pytest.mark.asyncio +async def test_async_with_fixture(async_client): + """Test async with async fixture.""" + response = await async_client.get("/api/users") + assert response.status_code == 200 +``` + +### Async Fixture + +```python +@pytest.fixture +async def async_client(): + """Async fixture providing async test client.""" + app = create_app() + async with app.test_client() as client: + yield client + +@pytest.mark.asyncio +async def test_api_endpoint(async_client): + """Test using async fixture.""" + response = await async_client.get("/api/data") + assert response.status_code == 200 +``` + +### Mocking Async Functions + +```python +@pytest.mark.asyncio +@patch("mypackage.async_api_call") +async def test_async_mock(api_call_mock): + """Test async function with mock.""" + api_call_mock.return_value = {"status": "ok"} + + result = await my_async_function() + + api_call_mock.assert_awaited_once() + assert result["status"] == "ok" +``` + +## Testing Exceptions + +### Testing Expected Exceptions + +```python +def test_divide_by_zero(): + """Test that dividing by zero raises ZeroDivisionError.""" + with pytest.raises(ZeroDivisionError): + divide(10, 0) + +def test_custom_exception(): + """Test custom exception with message.""" + with pytest.raises(ValueError, match="invalid input"): + validate_input("invalid") +``` + +### Testing Exception Attributes + +```python +def test_exception_with_details(): + """Test exception with custom attributes.""" + with pytest.raises(CustomError) as exc_info: + raise CustomError("error", code=400) + + assert exc_info.value.code == 400 + assert "error" in str(exc_info.value) +``` + +## Testing Side Effects + +### Testing File Operations + +```python +import tempfile +import os + +def test_file_processing(): + """Test file processing with temp file.""" + with tempfile.NamedTemporaryFile(mode='w', delete=False, suffix='.txt') as f: + f.write("test content") + temp_path = f.name + + try: + result = process_file(temp_path) + assert result == "processed: test content" + finally: + os.unlink(temp_path) +``` + +### Testing with pytest's tmp_path Fixture + +```python +def test_with_tmp_path(tmp_path): + """Test using pytest's built-in temp path fixture.""" + test_file = tmp_path / "test.txt" + test_file.write_text("hello world") + + result = process_file(str(test_file)) + assert result == "hello world" + # tmp_path automatically cleaned up +``` + +### Testing with tmpdir Fixture + +```python +def test_with_tmpdir(tmpdir): + """Test using pytest's tmpdir fixture.""" + test_file = tmpdir.join("test.txt") + test_file.write("data") + + result = process_file(str(test_file)) + assert result == "data" +``` + +## Test Organization + +### Directory Structure + +``` +tests/ +├── conftest.py # Shared fixtures +├── __init__.py +├── unit/ # Unit tests +│ ├── __init__.py +│ ├── test_models.py +│ ├── test_utils.py +│ └── test_services.py +├── integration/ # Integration tests +│ ├── __init__.py +│ ├── test_api.py +│ └── test_database.py +└── e2e/ # End-to-end tests + ├── __init__.py + └── test_user_flow.py +``` + +### Test Classes + +```python +class TestUserService: + """Group related tests in a class.""" + + @pytest.fixture(autouse=True) + def setup(self): + """Setup runs before each test in this class.""" + self.service = UserService() + + def test_create_user(self): + """Test user creation.""" + user = self.service.create_user("Alice") + assert user.name == "Alice" + + def test_delete_user(self): + """Test user deletion.""" + user = User(id=1, name="Bob") + self.service.delete_user(user) + assert not self.service.user_exists(1) +``` + +## Best Practices + +### DO + +- **Follow TDD**: Write tests before code (red-green-refactor) +- **Test one thing**: Each test should verify a single behavior +- **Use descriptive names**: `test_user_login_with_invalid_credentials_fails` +- **Use fixtures**: Eliminate duplication with fixtures +- **Mock external dependencies**: Don't depend on external services +- **Test edge cases**: Empty inputs, None values, boundary conditions +- **Aim for 80%+ coverage**: Focus on critical paths +- **Keep tests fast**: Use marks to separate slow tests + +### DON'T + +- **Don't test implementation**: Test behavior, not internals +- **Don't use complex conditionals in tests**: Keep tests simple +- **Don't ignore test failures**: All tests must pass +- **Don't test third-party code**: Trust libraries to work +- **Don't share state between tests**: Tests should be independent +- **Don't catch exceptions in tests**: Use `pytest.raises` +- **Don't use print statements**: Use assertions and pytest output +- **Don't write tests that are too brittle**: Avoid over-specific mocks + +## Common Patterns + +### Testing API Endpoints (FastAPI/Flask) + +```python +@pytest.fixture +def client(): + app = create_app(testing=True) + return app.test_client() + +def test_get_user(client): + response = client.get("/api/users/1") + assert response.status_code == 200 + assert response.json["id"] == 1 + +def test_create_user(client): + response = client.post("/api/users", json={ + "name": "Alice", + "email": "alice@example.com" + }) + assert response.status_code == 201 + assert response.json["name"] == "Alice" +``` + +### Testing Database Operations + +```python +@pytest.fixture +def db_session(): + """Create a test database session.""" + session = Session(bind=engine) + session.begin_nested() + yield session + session.rollback() + session.close() + +def test_create_user(db_session): + user = User(name="Alice", email="alice@example.com") + db_session.add(user) + db_session.commit() + + retrieved = db_session.query(User).filter_by(name="Alice").first() + assert retrieved.email == "alice@example.com" +``` + +### Testing Class Methods + +```python +class TestCalculator: + @pytest.fixture + def calculator(self): + return Calculator() + + def test_add(self, calculator): + assert calculator.add(2, 3) == 5 + + def test_divide_by_zero(self, calculator): + with pytest.raises(ZeroDivisionError): + calculator.divide(10, 0) +``` + +## pytest Configuration + +### pytest.ini + +```ini +[pytest] +testpaths = tests +python_files = test_*.py +python_classes = Test* +python_functions = test_* +addopts = + --strict-markers + --disable-warnings + --cov=mypackage + --cov-report=term-missing + --cov-report=html +markers = + slow: marks tests as slow + integration: marks tests as integration tests + unit: marks tests as unit tests +``` + +### pyproject.toml + +```toml +[tool.pytest.ini_options] +testpaths = ["tests"] +python_files = ["test_*.py"] +python_classes = ["Test*"] +python_functions = ["test_*"] +addopts = [ + "--strict-markers", + "--cov=mypackage", + "--cov-report=term-missing", + "--cov-report=html", +] +markers = [ + "slow: marks tests as slow", + "integration: marks tests as integration tests", + "unit: marks tests as unit tests", +] +``` + +## Running Tests + +```bash +# Run all tests +pytest + +# Run specific file +pytest tests/test_utils.py + +# Run specific test +pytest tests/test_utils.py::test_function + +# Run with verbose output +pytest -v + +# Run with coverage +pytest --cov=mypackage --cov-report=html + +# Run only fast tests +pytest -m "not slow" + +# Run until first failure +pytest -x + +# Run and stop on N failures +pytest --maxfail=3 + +# Run last failed tests +pytest --lf + +# Run tests with pattern +pytest -k "test_user" + +# Run with debugger on failure +pytest --pdb +``` + +## Quick Reference + +| Pattern | Usage | +|---------|-------| +| `pytest.raises()` | Test expected exceptions | +| `@pytest.fixture()` | Create reusable test fixtures | +| `@pytest.mark.parametrize()` | Run tests with multiple inputs | +| `@pytest.mark.slow` | Mark slow tests | +| `pytest -m "not slow"` | Skip slow tests | +| `@patch()` | Mock functions and classes | +| `tmp_path` fixture | Automatic temp directory | +| `pytest --cov` | Generate coverage report | +| `assert` | Simple and readable assertions | + +**Remember**: Tests are code too. Keep them clean, readable, and maintainable. Good tests catch bugs; great tests prevent them. diff --git a/.agents/skills/hermes-security-auditor/SKILL.md b/.agents/skills/hermes-security-auditor/SKILL.md new file mode 100644 index 0000000..fc397f0 --- /dev/null +++ b/.agents/skills/hermes-security-auditor/SKILL.md @@ -0,0 +1,399 @@ +--- +name: security-auditor +version: 1.0.0 +description: Use when reviewing code for security vulnerabilities, implementing authentication flows, auditing OWASP Top 10, configuring CORS/CSP headers, handling secrets, input validation, SQL injection prevention, XSS protection, or any security-related code review. +triggers: + - security + - vulnerability + - OWASP + - XSS + - SQL injection + - CSRF + - CORS + - CSP + - authentication + - authorization + - encryption + - secrets + - JWT + - OAuth + - audit + - penetration + - sanitize + - validate input +role: specialist +scope: review +output-format: structured +--- + +# Security Auditor + +Comprehensive security audit and secure coding specialist. Adapted from buildwithclaude by Dave Poon (MIT). + +## Role Definition + +You are a senior application security engineer specializing in secure coding practices, vulnerability detection, and OWASP compliance. You conduct thorough security reviews and provide actionable fixes. + +## Audit Process + +1. **Conduct comprehensive security audit** of code and architecture +2. **Identify vulnerabilities** using OWASP Top 10 framework +3. **Design secure authentication and authorization** flows +4. **Implement input validation** and encryption mechanisms +5. **Create security tests** and monitoring strategies + +## Core Principles + +- Apply defense in depth with multiple security layers +- Follow principle of least privilege for all access controls +- Never trust user input — validate everything rigorously +- Design systems to fail securely without information leakage +- Conduct regular dependency scanning and updates +- Focus on practical fixes over theoretical security risks + +--- + +## OWASP Top 10 Checklist + +### 1. Broken Access Control (A01:2021) + +```typescript +// ❌ BAD: No authorization check +app.delete('/api/posts/:id', async (req, res) => { + await db.post.delete({ where: { id: req.params.id } }) + res.json({ success: true }) +}) + +// ✅ GOOD: Verify ownership +app.delete('/api/posts/:id', authenticate, async (req, res) => { + const post = await db.post.findUnique({ where: { id: req.params.id } }) + if (!post) return res.status(404).json({ error: 'Not found' }) + if (post.authorId !== req.user.id && req.user.role !== 'admin') { + return res.status(403).json({ error: 'Forbidden' }) + } + await db.post.delete({ where: { id: req.params.id } }) + res.json({ success: true }) +}) +``` + +**Checks:** +- [ ] Every endpoint verifies authentication +- [ ] Every data access verifies authorization (ownership or role) +- [ ] CORS configured with specific origins (not `*` in production) +- [ ] Directory listing disabled +- [ ] Rate limiting on sensitive endpoints +- [ ] JWT tokens validated on every request + +### 2. Cryptographic Failures (A02:2021) + +```typescript +// ❌ BAD: Storing plaintext passwords +await db.user.create({ data: { password: req.body.password } }) + +// ✅ GOOD: Bcrypt with sufficient rounds +import bcrypt from 'bcryptjs' +const hashedPassword = await bcrypt.hash(req.body.password, 12) +await db.user.create({ data: { password: hashedPassword } }) +``` + +**Checks:** +- [ ] Passwords hashed with bcrypt (12+ rounds) or argon2 +- [ ] Sensitive data encrypted at rest (AES-256) +- [ ] TLS/HTTPS enforced for all connections +- [ ] No secrets in source code or logs +- [ ] API keys rotated regularly +- [ ] Sensitive fields excluded from API responses + +### 3. Injection (A03:2021) + +```typescript +// ❌ BAD: SQL injection vulnerable +const query = `SELECT * FROM users WHERE email = '${email}'` + +// ✅ GOOD: Parameterized queries +const user = await db.query('SELECT * FROM users WHERE email = $1', [email]) + +// ✅ GOOD: ORM with parameterized input +const user = await prisma.user.findUnique({ where: { email } }) +``` + +```typescript +// ❌ BAD: Command injection +const result = exec(`ls ${userInput}`) + +// ✅ GOOD: Use execFile with argument array +import { execFile } from 'child_process' +execFile('ls', [sanitizedPath], callback) +``` + +**Checks:** +- [ ] All database queries use parameterized statements or ORM +- [ ] No string concatenation in queries +- [ ] OS command execution uses argument arrays, not shell strings +- [ ] LDAP, XPath, and NoSQL injection prevented +- [ ] User input never used in `eval()`, `Function()`, or template literals for code + +### 4. Cross-Site Scripting (XSS) (A07:2021) + +```typescript +// ❌ BAD: dangerouslySetInnerHTML with user input +
+ +// ✅ GOOD: Sanitize HTML +import DOMPurify from 'isomorphic-dompurify' +
+ +// ✅ BEST: Render as text (React auto-escapes) +
{userComment}
+``` + +**Checks:** +- [ ] React auto-escaping relied upon (avoid `dangerouslySetInnerHTML`) +- [ ] If HTML rendering needed, sanitize with DOMPurify +- [ ] CSP headers configured (see below) +- [ ] HttpOnly cookies for session tokens +- [ ] URL parameters validated before rendering + +### 5. Security Misconfiguration (A05:2021) + +**Checks:** +- [ ] Default credentials changed +- [ ] Error messages don't leak stack traces in production +- [ ] Unnecessary HTTP methods disabled +- [ ] Security headers configured (see below) +- [ ] Debug mode disabled in production +- [ ] Dependencies up to date (`npm audit`) + +--- + +## Security Headers + +```typescript +// next.config.js +const securityHeaders = [ + { key: 'X-DNS-Prefetch-Control', value: 'on' }, + { key: 'Strict-Transport-Security', value: 'max-age=63072000; includeSubDomains; preload' }, + { key: 'X-Frame-Options', value: 'SAMEORIGIN' }, + { key: 'X-Content-Type-Options', value: 'nosniff' }, + { key: 'Referrer-Policy', value: 'strict-origin-when-cross-origin' }, + { key: 'Permissions-Policy', value: 'camera=(), microphone=(), geolocation=()' }, + { + key: 'Content-Security-Policy', + value: [ + "default-src 'self'", + "script-src 'self' 'unsafe-eval' 'unsafe-inline'", // tighten in production + "style-src 'self' 'unsafe-inline'", + "img-src 'self' data: https:", + "font-src 'self'", + "connect-src 'self' https://api.example.com", + "frame-ancestors 'none'", + "base-uri 'self'", + "form-action 'self'", + ].join('; '), + }, +] + +module.exports = { + async headers() { + return [{ source: '/(.*)', headers: securityHeaders }] + }, +} +``` + +--- + +## Input Validation Patterns + +### Zod Validation for API/Actions + +```typescript +import { z } from 'zod' + +const userSchema = z.object({ + email: z.string().email().max(255), + password: z.string().min(8).max(128), + name: z.string().min(1).max(100).regex(/^[a-zA-Z\s'-]+$/), + age: z.number().int().min(13).max(150).optional(), +}) + +// Server Action +export async function createUser(formData: FormData) { + 'use server' + const parsed = userSchema.safeParse({ + email: formData.get('email'), + password: formData.get('password'), + name: formData.get('name'), + }) + + if (!parsed.success) { + return { error: parsed.error.flatten() } + } + + // Safe to use parsed.data +} +``` + +### File Upload Validation + +```typescript +const ALLOWED_TYPES = ['image/jpeg', 'image/png', 'image/webp'] +const MAX_SIZE = 5 * 1024 * 1024 // 5MB + +export async function uploadFile(formData: FormData) { + 'use server' + const file = formData.get('file') as File + + if (!file || file.size === 0) return { error: 'No file' } + if (!ALLOWED_TYPES.includes(file.type)) return { error: 'Invalid file type' } + if (file.size > MAX_SIZE) return { error: 'File too large' } + + // Read and validate magic bytes, not just extension + const bytes = new Uint8Array(await file.arrayBuffer()) + if (!validateMagicBytes(bytes, file.type)) return { error: 'File content mismatch' } +} +``` + +--- + +## Authentication Security + +### JWT Best Practices + +```typescript +import { SignJWT, jwtVerify } from 'jose' + +const secret = new TextEncoder().encode(process.env.JWT_SECRET) // min 256-bit + +export async function createToken(payload: { userId: string; role: string }) { + return new SignJWT(payload) + .setProtectedHeader({ alg: 'HS256' }) + .setIssuedAt() + .setExpirationTime('15m') // Short-lived access tokens + .setAudience('your-app') + .setIssuer('your-app') + .sign(secret) +} + +export async function verifyToken(token: string) { + try { + const { payload } = await jwtVerify(token, secret, { + algorithms: ['HS256'], + audience: 'your-app', + issuer: 'your-app', + }) + return payload + } catch { + return null + } +} +``` + +### Cookie Security + +```typescript +cookies().set('session', token, { + httpOnly: true, // No JavaScript access + secure: true, // HTTPS only + sameSite: 'lax', // CSRF protection + maxAge: 60 * 60 * 24 * 7, + path: '/', +}) +``` + +### Rate Limiting + +```typescript +import { Ratelimit } from '@upstash/ratelimit' +import { Redis } from '@upstash/redis' + +const ratelimit = new Ratelimit({ + redis: Redis.fromEnv(), + limiter: Ratelimit.slidingWindow(10, '10 s'), +}) + +// In middleware or route handler +const ip = request.headers.get('x-forwarded-for') ?? '127.0.0.1' +const { success, remaining } = await ratelimit.limit(ip) +if (!success) { + return NextResponse.json({ error: 'Too many requests' }, { status: 429 }) +} +``` + +--- + +## Environment & Secrets + +```typescript +// ❌ BAD +const API_KEY = 'sk-1234567890abcdef' + +// ✅ GOOD +const API_KEY = process.env.API_KEY +if (!API_KEY) throw new Error('API_KEY not configured') +``` + +**Rules:** +- Never commit `.env` files (only `.env.example` with placeholder values) +- Use different secrets per environment +- Rotate secrets regularly +- Use a secrets manager (Vault, AWS SSM, Doppler) for production +- Never log secrets or include them in error responses + +--- + +## Dependency Security + +```bash +# Regular audit +npm audit +npm audit fix + +# Check for known vulnerabilities +npx better-npm-audit audit + +# Keep dependencies updated +npx npm-check-updates -u +``` + +--- + +## Security Audit Report Format + +When conducting a review, output findings as: + +``` +## Security Audit Report + +### Critical (Must Fix) +1. **[A03:Injection]** SQL injection in `/api/search` — user input concatenated into query + - File: `app/api/search/route.ts:15` + - Fix: Use parameterized query + - Risk: Full database compromise + +### High (Should Fix) +1. **[A01:Access Control]** Missing auth check on DELETE endpoint + - File: `app/api/posts/[id]/route.ts:42` + - Fix: Add authentication middleware and ownership check + +### Medium (Recommended) +1. **[A05:Misconfiguration]** Missing security headers + - Fix: Add CSP, HSTS, X-Frame-Options headers + +### Low (Consider) +1. **[A06:Vulnerable Components]** 3 packages with known vulnerabilities + - Run: `npm audit fix` +``` + +--- + +## Protected File Patterns + +These files should be reviewed carefully before any modification: + +- `.env*` — environment secrets +- `auth.ts` / `auth.config.ts` — authentication configuration +- `middleware.ts` — route protection logic +- `**/api/auth/**` — auth endpoints +- `prisma/schema.prisma` — database schema (permissions, RLS) +- `next.config.*` — security headers, redirects +- `package.json` / `package-lock.json` — dependency changes diff --git a/.agents/skills/hermes-security-auditor/_meta.json b/.agents/skills/hermes-security-auditor/_meta.json new file mode 100644 index 0000000..505fc88 --- /dev/null +++ b/.agents/skills/hermes-security-auditor/_meta.json @@ -0,0 +1,6 @@ +{ + "ownerId": "kn783g0k8dgj2wyz27c0e9he9180ce6k", + "slug": "security-auditor", + "version": "1.0.0", + "publishedAt": 1770008217892 +} \ No newline at end of file diff --git a/.agents/skills/hermes-ui-ux-pro-max/SKILL.md b/.agents/skills/hermes-ui-ux-pro-max/SKILL.md new file mode 100644 index 0000000..b94ef59 --- /dev/null +++ b/.agents/skills/hermes-ui-ux-pro-max/SKILL.md @@ -0,0 +1,43 @@ +--- +name: ui-ux-pro-max +description: UI/UX design intelligence and implementation guidance for building polished interfaces. Use when the user asks for UI design, UX flows, information architecture, visual style direction, design systems/tokens, component specs, copy/microcopy, accessibility, or to generate/critique/refine frontend UI (HTML/CSS/JS, React, Next.js, Vue, Svelte, Tailwind). Includes workflows for (1) generating new UI layouts and styling, (2) improving existing UI/UX, (3) producing design-system tokens and component guidelines, and (4) turning UX recommendations into concrete code changes. +--- + +Follow these steps to deliver high-quality UI/UX output with minimal back-and-forth. + +## 1) Triage +Ask only what you must to avoid wrong work: +- Target platform: web / iOS / Android / desktop +- Stack (if code changes): React/Next/Vue/Svelte, CSS/Tailwind, component library +- Goal and constraints: conversion, speed, brand vibe, accessibility level (WCAG AA?) +- What you have: screenshot, Figma, repo, URL, user journey + +If the user says "全部都要" (design + UX + code + design system), treat it as four deliverables and ship in that order. + +## 2) Produce Deliverables (pick what fits) +Always be concrete: name components, states, spacing, typography, and interactions. + +- **UI concept + layout**: Provide a clear visual direction, grid, typography, color system, key screens/sections. +- **UX flow**: Map the user journey, critical paths, error/empty/loading states, edge cases. +- **Design system**: Tokens (color/typography/spacing/radius/shadow), component rules, accessibility notes. +- **Implementation plan**: Exact file-level edits, component breakdown, and acceptance criteria. + +## 3) Use Bundled Assets +This skill bundles data you can cite for inspiration/standards. + +- **Design intelligence data**: Read from `skills/ui-ux-pro-max/assets/data/` when you need palettes, patterns, or UI/UX heuristics. +- **Upstream reference**: If you need more phrasing/examples, consult `skills/ui-ux-pro-max/references/upstream-skill-content.md`. + +## 4) Optional Script (Design System Generator) +If you need to quickly generate tokens and page-specific overrides, use the bundled script: + +```bash +python3 skills/ui-ux-pro-max/scripts/design_system.py --help +``` + +Prefer running it when the user wants a structured token output (ASCII-friendly). + +## Output Standards +- Default to ASCII-only tokens/variables unless the project already uses Unicode. +- Include: spacing scale, type scale, 2-3 font pair options, color tokens, component states. +- Always cover: empty/loading/error, keyboard navigation, focus states, contrast. diff --git a/.agents/skills/hermes-ui-ux-pro-max/_meta.json b/.agents/skills/hermes-ui-ux-pro-max/_meta.json new file mode 100644 index 0000000..71bf465 --- /dev/null +++ b/.agents/skills/hermes-ui-ux-pro-max/_meta.json @@ -0,0 +1,6 @@ +{ + "ownerId": "kn7dzk42mb9ceh8sm1zdx51sws803c9b", + "slug": "ui-ux-pro-max", + "version": "0.1.0", + "publishedAt": 1769616159343 +} \ No newline at end of file diff --git a/.agents/skills/hermes-ui-ux-pro-max/assets/data/charts.csv b/.agents/skills/hermes-ui-ux-pro-max/assets/data/charts.csv new file mode 100644 index 0000000..9463c37 --- /dev/null +++ b/.agents/skills/hermes-ui-ux-pro-max/assets/data/charts.csv @@ -0,0 +1,26 @@ +No,Data Type,Keywords,Best Chart Type,Secondary Options,Color Guidance,Performance Impact,Accessibility Notes,Library Recommendation,Interactive Level +1,Trend Over Time,"trend, time-series, line, growth, timeline, progress",Line Chart,"Area Chart, Smooth Area",Primary: #0080FF. Multiple series: use distinct colors. Fill: 20% opacity,⚡ Excellent (optimized),✓ Clear line patterns for colorblind users. Add pattern overlays.,"Chart.js, Recharts, ApexCharts",Hover + Zoom +2,Compare Categories,"compare, categories, bar, comparison, ranking",Bar Chart (Horizontal or Vertical),"Column Chart, Grouped Bar",Each bar: distinct color. Category: grouped same color. Sorted: descending order,⚡ Excellent,✓ Easy to compare. Add value labels on bars for clarity.,"Chart.js, Recharts, D3.js",Hover + Sort +3,Part-to-Whole,"part-to-whole, pie, donut, percentage, proportion, share",Pie Chart or Donut,"Stacked Bar, Treemap",Colors: 5-6 max. Contrasting palette. Large slices first. Use labels.,⚡ Good (limit 6 slices),⚠ Hard for accessibility. Better: Stacked bar with legend. Avoid pie if >5 items.,"Chart.js, Recharts, D3.js",Hover + Drill +4,Correlation/Distribution,"correlation, distribution, scatter, relationship, pattern",Scatter Plot or Bubble Chart,"Heat Map, Matrix",Color axis: gradient (blue-red). Size: relative. Opacity: 0.6-0.8 to show density,⚠ Moderate (many points),⚠ Provide data table alternative. Use pattern + color distinction.,"D3.js, Plotly, Recharts",Hover + Brush +5,Heatmap/Intensity,"heatmap, heat-map, intensity, density, matrix",Heat Map or Choropleth,"Grid Heat Map, Bubble Heat",Gradient: Cool (blue) to Hot (red). Scale: clear legend. Divergent for ±data,⚡ Excellent (color CSS),⚠ Colorblind: Use pattern overlay. Provide numerical legend.,"D3.js, Plotly, ApexCharts",Hover + Zoom +6,Geographic Data,"geographic, map, location, region, geo, spatial","Choropleth Map, Bubble Map",Geographic Heat Map,Regional: single color gradient or categorized colors. Legend: clear scale,⚠ Moderate (rendering),⚠ Include text labels for regions. Provide data table alternative.,"D3.js, Mapbox, Leaflet",Pan + Zoom + Drill +7,Funnel/Flow,funnel/flow,"Funnel Chart, Sankey",Waterfall (for flows),Stages: gradient (starting color → ending color). Show conversion %,⚡ Good,✓ Clear stage labels + percentages. Good for accessibility if labeled.,"D3.js, Recharts, Custom SVG",Hover + Drill +8,Performance vs Target,performance-vs-target,Gauge Chart or Bullet Chart,"Dial, Thermometer",Performance: Red→Yellow→Green gradient. Target: marker line. Threshold colors,⚡ Good,✓ Add numerical value + percentage label beside gauge.,"D3.js, ApexCharts, Custom SVG",Hover +9,Time-Series Forecast,time-series-forecast,Line with Confidence Band,Ribbon Chart,Actual: solid line #0080FF. Forecast: dashed #FF9500. Band: light shading,⚡ Good,✓ Clearly distinguish actual vs forecast. Add legend.,"Chart.js, ApexCharts, Plotly",Hover + Toggle +10,Anomaly Detection,anomaly-detection,Line Chart with Highlights,Scatter with Alert,Normal: blue #0080FF. Anomaly: red #FF0000 circle/square marker + alert,⚡ Good,✓ Circle/marker for anomalies. Add text alert annotation.,"D3.js, Plotly, ApexCharts",Hover + Alert +11,Hierarchical/Nested Data,hierarchical/nested-data,Treemap,"Sunburst, Nested Donut, Icicle",Parent: distinct hues. Children: lighter shades. White borders 2-3px.,⚠ Moderate,⚠ Poor - provide table alternative. Label large areas.,"D3.js, Recharts, ApexCharts",Hover + Drilldown +12,Flow/Process Data,flow/process-data,Sankey Diagram,"Alluvial, Chord Diagram",Gradient from source to target. Opacity 0.4-0.6 for flows.,⚠ Moderate,⚠ Poor - provide flow table alternative.,"D3.js (d3-sankey), Plotly",Hover + Drilldown +13,Cumulative Changes,cumulative-changes,Waterfall Chart,"Stacked Bar, Cascade",Increases: #4CAF50. Decreases: #F44336. Start: #2196F3. End: #0D47A1.,⚡ Good,✓ Good - clear directional colors with labels.,"ApexCharts, Highcharts, Plotly",Hover +14,Multi-Variable Comparison,multi-variable-comparison,Radar/Spider Chart,"Parallel Coordinates, Grouped Bar",Single: #0080FF 20% fill. Multiple: distinct colors per dataset.,⚡ Good,⚠ Moderate - limit 5-8 axes. Add data table.,"Chart.js, Recharts, ApexCharts",Hover + Toggle +15,Stock/Trading OHLC,stock/trading-ohlc,Candlestick Chart,"OHLC Bar, Heikin-Ashi",Bullish: #26A69A. Bearish: #EF5350. Volume: 40% opacity below.,⚡ Good,⚠ Moderate - provide OHLC data table.,"Lightweight Charts (TradingView), ApexCharts",Real-time + Hover + Zoom +16,Relationship/Connection Data,relationship/connection-data,Network Graph,"Hierarchical Tree, Adjacency Matrix",Node types: categorical colors. Edges: #90A4AE 60% opacity.,❌ Poor (500+ nodes struggles),❌ Very Poor - provide adjacency list alternative.,"D3.js (d3-force), Vis.js, Cytoscape.js",Drilldown + Hover + Drag +17,Distribution/Statistical,distribution/statistical,Box Plot,"Violin Plot, Beeswarm",Box: #BBDEFB. Border: #1976D2. Median: #D32F2F. Outliers: #F44336.,⚡ Excellent,"✓ Good - include stats table (min, Q1, median, Q3, max).","Plotly, D3.js, Chart.js (plugin)",Hover +18,Performance vs Target (Compact),performance-vs-target-(compact),Bullet Chart,"Gauge, Progress Bar","Ranges: #FFCDD2, #FFF9C4, #C8E6C9. Performance: #1976D2. Target: black 3px.",⚡ Excellent,✓ Excellent - compact with clear values.,"D3.js, Plotly, Custom SVG",Hover +19,Proportional/Percentage,proportional/percentage,Waffle Chart,"Pictogram, Stacked Bar 100%",10x10 grid. 3-5 categories max. 2-3px spacing between squares.,⚡ Good,✓ Good - better than pie for accessibility.,"D3.js, React-Waffle, Custom CSS Grid",Hover +20,Hierarchical Proportional,hierarchical-proportional,Sunburst Chart,"Treemap, Icicle, Circle Packing",Center to outer: darker to lighter. 15-20% lighter per level.,⚠ Moderate,⚠ Poor - provide hierarchy table alternative.,"D3.js (d3-hierarchy), Recharts, ApexCharts",Drilldown + Hover +21,Root Cause Analysis,"root cause, decomposition, tree, hierarchy, drill-down, ai-split",Decomposition Tree,"Decision Tree, Flow Chart",Nodes: #2563EB (Primary) vs #EF4444 (Negative impact). Connectors: Neutral grey.,⚠ Moderate (calculation heavy),✓ clear hierarchy. Allow keyboard navigation for nodes.,"Power BI (native), React-Flow, Custom D3.js",Drill + Expand +22,3D Spatial Data,"3d, spatial, immersive, terrain, molecular, volumetric",3D Scatter/Surface Plot,"Volumetric Rendering, Point Cloud",Depth cues: lighting/shading. Z-axis: color gradient (cool to warm).,❌ Heavy (WebGL required),❌ Poor - requires alternative 2D view or data table.,"Three.js, Deck.gl, Plotly 3D",Rotate + Zoom + VR +23,Real-Time Streaming,"streaming, real-time, ticker, live, velocity, pulse",Streaming Area Chart,"Ticker Tape, Moving Gauge",Current: Bright Pulse (#00FF00). History: Fading opacity. Grid: Dark.,⚡ Optimized (canvas/webgl),⚠ Flashing elements - provide pause button. High contrast.,Smoothed D3.js, CanvasJS +24,Sentiment/Emotion,"sentiment, emotion, nlp, opinion, feeling",Word Cloud with Sentiment,"Sentiment Arc, Radar Chart",Positive: #22C55E. Negative: #EF4444. Neutral: #94A3B8. Size = Frequency.,⚡ Good,⚠ Word clouds poor for screen readers. Use list view.,"D3-cloud, Highcharts, Nivo",Hover + Filter +25,Process Mining,"process, mining, variants, path, bottleneck, log",Process Map / Graph,"Directed Acyclic Graph (DAG), Petri Net",Happy path: #10B981 (Thick). Deviations: #F59E0B (Thin). Bottlenecks: #EF4444.,⚠ Moderate to Heavy,⚠ Complex graphs hard to navigate. Provide path summary.,"React-Flow, Cytoscape.js, Recharts",Drag + Node-Click diff --git a/.agents/skills/hermes-ui-ux-pro-max/assets/data/colors.csv b/.agents/skills/hermes-ui-ux-pro-max/assets/data/colors.csv new file mode 100644 index 0000000..a187845 --- /dev/null +++ b/.agents/skills/hermes-ui-ux-pro-max/assets/data/colors.csv @@ -0,0 +1,97 @@ +No,Product Type,Primary (Hex),Secondary (Hex),CTA (Hex),Background (Hex),Text (Hex),Border (Hex),Notes +1,SaaS (General),#2563EB,#3B82F6,#F97316,#F8FAFC,#1E293B,#E2E8F0,Trust blue + orange CTA contrast +2,Micro SaaS,#6366F1,#818CF8,#10B981,#F5F3FF,#1E1B4B,#E0E7FF,Indigo primary + emerald CTA +3,E-commerce,#059669,#10B981,#F97316,#ECFDF5,#064E3B,#A7F3D0,Success green + urgency orange +4,E-commerce Luxury,#1C1917,#44403C,#CA8A04,#FAFAF9,#0C0A09,#D6D3D1,Premium dark + gold accent +5,Service Landing Page,#0EA5E9,#38BDF8,#F97316,#F0F9FF,#0C4A6E,#BAE6FD,Sky blue trust + warm CTA +6,B2B Service,#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,Professional navy + blue CTA +7,Financial Dashboard,#0F172A,#1E293B,#22C55E,#020617,#F8FAFC,#334155,Dark bg + green positive indicators +8,Analytics Dashboard,#1E40AF,#3B82F6,#F59E0B,#F8FAFC,#1E3A8A,#DBEAFE,Blue data + amber highlights +9,Healthcare App,#0891B2,#22D3EE,#059669,#ECFEFF,#164E63,#A5F3FC,Calm cyan + health green +10,Educational App,#4F46E5,#818CF8,#F97316,#EEF2FF,#1E1B4B,#C7D2FE,Playful indigo + energetic orange +11,Creative Agency,#EC4899,#F472B6,#06B6D4,#FDF2F8,#831843,#FBCFE8,Bold pink + cyan accent +12,Portfolio/Personal,#18181B,#3F3F46,#2563EB,#FAFAFA,#09090B,#E4E4E7,Monochrome + blue accent +13,Gaming,#7C3AED,#A78BFA,#F43F5E,#0F0F23,#E2E8F0,#4C1D95,Neon purple + rose action +14,Government/Public Service,#0F172A,#334155,#0369A1,#F8FAFC,#020617,#E2E8F0,High contrast navy + blue +15,Fintech/Crypto,#F59E0B,#FBBF24,#8B5CF6,#0F172A,#F8FAFC,#334155,Gold trust + purple tech +16,Social Media App,#E11D48,#FB7185,#2563EB,#FFF1F2,#881337,#FECDD3,Vibrant rose + engagement blue +17,Productivity Tool,#0D9488,#14B8A6,#F97316,#F0FDFA,#134E4A,#99F6E4,Teal focus + action orange +18,Design System/Component Library,#4F46E5,#6366F1,#F97316,#EEF2FF,#312E81,#C7D2FE,Indigo brand + doc hierarchy +19,AI/Chatbot Platform,#7C3AED,#A78BFA,#06B6D4,#FAF5FF,#1E1B4B,#DDD6FE,AI purple + cyan interactions +20,NFT/Web3 Platform,#8B5CF6,#A78BFA,#FBBF24,#0F0F23,#F8FAFC,#4C1D95,Purple tech + gold value +21,Creator Economy Platform,#EC4899,#F472B6,#F97316,#FDF2F8,#831843,#FBCFE8,Creator pink + engagement orange +22,Sustainability/ESG Platform,#059669,#10B981,#0891B2,#ECFDF5,#064E3B,#A7F3D0,Nature green + ocean blue +23,Remote Work/Collaboration Tool,#6366F1,#818CF8,#10B981,#F5F3FF,#312E81,#E0E7FF,Calm indigo + success green +24,Mental Health App,#8B5CF6,#C4B5FD,#10B981,#FAF5FF,#4C1D95,#EDE9FE,Calming lavender + wellness green +25,Pet Tech App,#F97316,#FB923C,#2563EB,#FFF7ED,#9A3412,#FED7AA,Playful orange + trust blue +26,Smart Home/IoT Dashboard,#1E293B,#334155,#22C55E,#0F172A,#F8FAFC,#475569,Dark tech + status green +27,EV/Charging Ecosystem,#0891B2,#22D3EE,#22C55E,#ECFEFF,#164E63,#A5F3FC,Electric cyan + eco green +28,Subscription Box Service,#D946EF,#E879F9,#F97316,#FDF4FF,#86198F,#F5D0FE,Excitement purple + urgency orange +29,Podcast Platform,#1E1B4B,#312E81,#F97316,#0F0F23,#F8FAFC,#4338CA,Dark audio + warm accent +30,Dating App,#E11D48,#FB7185,#F97316,#FFF1F2,#881337,#FECDD3,Romantic rose + warm orange +31,Micro-Credentials/Badges Platform,#0369A1,#0EA5E9,#CA8A04,#F0F9FF,#0C4A6E,#BAE6FD,Trust blue + achievement gold +32,Knowledge Base/Documentation,#475569,#64748B,#2563EB,#F8FAFC,#1E293B,#E2E8F0,Neutral grey + link blue +33,Hyperlocal Services,#059669,#10B981,#F97316,#ECFDF5,#064E3B,#A7F3D0,Location green + action orange +34,Beauty/Spa/Wellness Service,#EC4899,#F9A8D4,#8B5CF6,#FDF2F8,#831843,#FBCFE8,Soft pink + lavender luxury +35,Luxury/Premium Brand,#1C1917,#44403C,#CA8A04,#FAFAF9,#0C0A09,#D6D3D1,Premium black + gold accent +36,Restaurant/Food Service,#DC2626,#F87171,#CA8A04,#FEF2F2,#450A0A,#FECACA,Appetizing red + warm gold +37,Fitness/Gym App,#F97316,#FB923C,#22C55E,#1F2937,#F8FAFC,#374151,Energy orange + success green +38,Real Estate/Property,#0F766E,#14B8A6,#0369A1,#F0FDFA,#134E4A,#99F6E4,Trust teal + professional blue +39,Travel/Tourism Agency,#0EA5E9,#38BDF8,#F97316,#F0F9FF,#0C4A6E,#BAE6FD,Sky blue + adventure orange +40,Hotel/Hospitality,#1E3A8A,#3B82F6,#CA8A04,#F8FAFC,#1E40AF,#BFDBFE,Luxury navy + gold service +41,Wedding/Event Planning,#DB2777,#F472B6,#CA8A04,#FDF2F8,#831843,#FBCFE8,Romantic pink + elegant gold +42,Legal Services,#1E3A8A,#1E40AF,#B45309,#F8FAFC,#0F172A,#CBD5E1,Authority navy + trust gold +43,Insurance Platform,#0369A1,#0EA5E9,#22C55E,#F0F9FF,#0C4A6E,#BAE6FD,Security blue + protected green +44,Banking/Traditional Finance,#0F172A,#1E3A8A,#CA8A04,#F8FAFC,#020617,#E2E8F0,Trust navy + premium gold +45,Online Course/E-learning,#0D9488,#2DD4BF,#F97316,#F0FDFA,#134E4A,#5EEAD4,Progress teal + achievement orange +46,Non-profit/Charity,#0891B2,#22D3EE,#F97316,#ECFEFF,#164E63,#A5F3FC,Compassion blue + action orange +47,Music Streaming,#1E1B4B,#4338CA,#22C55E,#0F0F23,#F8FAFC,#312E81,Dark audio + play green +48,Video Streaming/OTT,#0F0F23,#1E1B4B,#E11D48,#000000,#F8FAFC,#312E81,Cinema dark + play red +49,Job Board/Recruitment,#0369A1,#0EA5E9,#22C55E,#F0F9FF,#0C4A6E,#BAE6FD,Professional blue + success green +50,Marketplace (P2P),#7C3AED,#A78BFA,#22C55E,#FAF5FF,#4C1D95,#DDD6FE,Trust purple + transaction green +51,Logistics/Delivery,#2563EB,#3B82F6,#F97316,#EFF6FF,#1E40AF,#BFDBFE,Tracking blue + delivery orange +52,Agriculture/Farm Tech,#15803D,#22C55E,#CA8A04,#F0FDF4,#14532D,#BBF7D0,Earth green + harvest gold +53,Construction/Architecture,#64748B,#94A3B8,#F97316,#F8FAFC,#334155,#E2E8F0,Industrial grey + safety orange +54,Automotive/Car Dealership,#1E293B,#334155,#DC2626,#F8FAFC,#0F172A,#E2E8F0,Premium dark + action red +55,Photography Studio,#18181B,#27272A,#F8FAFC,#000000,#FAFAFA,#3F3F46,Pure black + white contrast +56,Coworking Space,#F59E0B,#FBBF24,#2563EB,#FFFBEB,#78350F,#FDE68A,Energetic amber + booking blue +57,Cleaning Service,#0891B2,#22D3EE,#22C55E,#ECFEFF,#164E63,#A5F3FC,Fresh cyan + clean green +58,Home Services (Plumber/Electrician),#1E40AF,#3B82F6,#F97316,#EFF6FF,#1E3A8A,#BFDBFE,Professional blue + urgent orange +59,Childcare/Daycare,#F472B6,#FBCFE8,#22C55E,#FDF2F8,#9D174D,#FCE7F3,Soft pink + safe green +60,Senior Care/Elderly,#0369A1,#38BDF8,#22C55E,#F0F9FF,#0C4A6E,#E0F2FE,Calm blue + reassuring green +61,Medical Clinic,#0891B2,#22D3EE,#22C55E,#F0FDFA,#134E4A,#CCFBF1,Medical teal + health green +62,Pharmacy/Drug Store,#15803D,#22C55E,#0369A1,#F0FDF4,#14532D,#BBF7D0,Pharmacy green + trust blue +63,Dental Practice,#0EA5E9,#38BDF8,#FBBF24,#F0F9FF,#0C4A6E,#BAE6FD,Fresh blue + smile yellow +64,Veterinary Clinic,#0D9488,#14B8A6,#F97316,#F0FDFA,#134E4A,#99F6E4,Caring teal + warm orange +65,Florist/Plant Shop,#15803D,#22C55E,#EC4899,#F0FDF4,#14532D,#BBF7D0,Natural green + floral pink +66,Bakery/Cafe,#92400E,#B45309,#F8FAFC,#FEF3C7,#78350F,#FDE68A,Warm brown + cream white +67,Coffee Shop,#78350F,#92400E,#FBBF24,#FEF3C7,#451A03,#FDE68A,Coffee brown + warm gold +68,Brewery/Winery,#7C2D12,#B91C1C,#CA8A04,#FEF2F2,#450A0A,#FECACA,Deep burgundy + craft gold +69,Airline,#1E3A8A,#3B82F6,#F97316,#EFF6FF,#1E40AF,#BFDBFE,Sky blue + booking orange +70,News/Media Platform,#DC2626,#EF4444,#1E40AF,#FEF2F2,#450A0A,#FECACA,Breaking red + link blue +71,Magazine/Blog,#18181B,#3F3F46,#EC4899,#FAFAFA,#09090B,#E4E4E7,Editorial black + accent pink +72,Freelancer Platform,#6366F1,#818CF8,#22C55E,#EEF2FF,#312E81,#C7D2FE,Creative indigo + hire green +73,Consulting Firm,#0F172A,#334155,#CA8A04,#F8FAFC,#020617,#E2E8F0,Authority navy + premium gold +74,Marketing Agency,#EC4899,#F472B6,#06B6D4,#FDF2F8,#831843,#FBCFE8,Bold pink + creative cyan +75,Event Management,#7C3AED,#A78BFA,#F97316,#FAF5FF,#4C1D95,#DDD6FE,Excitement purple + action orange +76,Conference/Webinar Platform,#1E40AF,#3B82F6,#22C55E,#EFF6FF,#1E3A8A,#BFDBFE,Professional blue + join green +77,Membership/Community,#7C3AED,#A78BFA,#22C55E,#FAF5FF,#4C1D95,#DDD6FE,Community purple + join green +78,Newsletter Platform,#0369A1,#0EA5E9,#F97316,#F0F9FF,#0C4A6E,#BAE6FD,Trust blue + subscribe orange +79,Digital Products/Downloads,#6366F1,#818CF8,#22C55E,#EEF2FF,#312E81,#C7D2FE,Digital indigo + buy green +80,Church/Religious Organization,#7C3AED,#A78BFA,#CA8A04,#FAF5FF,#4C1D95,#DDD6FE,Spiritual purple + warm gold +81,Sports Team/Club,#DC2626,#EF4444,#FBBF24,#FEF2F2,#7F1D1D,#FECACA,Team red + championship gold +82,Museum/Gallery,#18181B,#27272A,#F8FAFC,#FAFAFA,#09090B,#E4E4E7,Gallery black + white space +83,Theater/Cinema,#1E1B4B,#312E81,#CA8A04,#0F0F23,#F8FAFC,#4338CA,Dramatic dark + spotlight gold +84,Language Learning App,#4F46E5,#818CF8,#22C55E,#EEF2FF,#312E81,#C7D2FE,Learning indigo + progress green +85,Coding Bootcamp,#0F172A,#1E293B,#22C55E,#020617,#F8FAFC,#334155,Terminal dark + success green +86,Cybersecurity Platform,#00FF41,#0D0D0D,#FF3333,#000000,#E0E0E0,#1F1F1F,Matrix green + alert red +87,Developer Tool / IDE,#1E293B,#334155,#22C55E,#0F172A,#F8FAFC,#475569,Code dark + run green +88,Biotech / Life Sciences,#0EA5E9,#0284C7,#10B981,#F0F9FF,#0C4A6E,#BAE6FD,DNA blue + life green +89,Space Tech / Aerospace,#F8FAFC,#94A3B8,#3B82F6,#0B0B10,#F8FAFC,#1E293B,Star white + launch blue +90,Architecture / Interior,#171717,#404040,#D4AF37,#FFFFFF,#171717,#E5E5E5,Minimal black + accent gold +91,Quantum Computing,#00FFFF,#7B61FF,#FF00FF,#050510,#E0E0FF,#333344,Quantum cyan + interference purple +92,Biohacking / Longevity,#FF4D4D,#4D94FF,#00E676,#F5F5F7,#1C1C1E,#E5E5EA,Bio red/blue + vitality green +93,Autonomous Systems,#00FF41,#008F11,#FF3333,#0D1117,#E6EDF3,#30363D,Terminal green + alert red +94,Generative AI Art,#18181B,#3F3F46,#EC4899,#FAFAFA,#09090B,#E4E4E7,Canvas neutral + creative pink +95,Spatial / Vision OS,#FFFFFF,#E5E5E5,#007AFF,#888888,#000000,#CCCCCC,Glass white + system blue +96,Climate Tech,#059669,#10B981,#FBBF24,#ECFDF5,#064E3B,#A7F3D0,Nature green + solar gold diff --git a/.agents/skills/hermes-ui-ux-pro-max/assets/data/icons.csv b/.agents/skills/hermes-ui-ux-pro-max/assets/data/icons.csv new file mode 100644 index 0000000..a85e97f --- /dev/null +++ b/.agents/skills/hermes-ui-ux-pro-max/assets/data/icons.csv @@ -0,0 +1,101 @@ +No,Category,Icon Name,Keywords,Library,Import Code,Usage,Best For,Style +1,Navigation,menu,hamburger menu navigation toggle bars,Lucide,import { Menu } from 'lucide-react',,Mobile navigation drawer toggle sidebar,Outline +2,Navigation,arrow-left,back previous return navigate,Lucide,import { ArrowLeft } from 'lucide-react',,Back button breadcrumb navigation,Outline +3,Navigation,arrow-right,next forward continue navigate,Lucide,import { ArrowRight } from 'lucide-react',,Forward button next step CTA,Outline +4,Navigation,chevron-down,dropdown expand accordion select,Lucide,import { ChevronDown } from 'lucide-react',,Dropdown toggle accordion header,Outline +5,Navigation,chevron-up,collapse close accordion minimize,Lucide,import { ChevronUp } from 'lucide-react',,Accordion collapse minimize,Outline +6,Navigation,home,homepage main dashboard start,Lucide,import { Home } from 'lucide-react',,Home navigation main page,Outline +7,Navigation,x,close cancel dismiss remove exit,Lucide,import { X } from 'lucide-react',,Modal close dismiss button,Outline +8,Navigation,external-link,open new tab external link,Lucide,import { ExternalLink } from 'lucide-react',,External link indicator,Outline +9,Action,plus,add create new insert,Lucide,import { Plus } from 'lucide-react',,Add button create new item,Outline +10,Action,minus,remove subtract decrease delete,Lucide,import { Minus } from 'lucide-react',,Remove item quantity decrease,Outline +11,Action,trash-2,delete remove discard bin,Lucide,import { Trash2 } from 'lucide-react',,Delete action destructive,Outline +12,Action,edit,pencil modify change update,Lucide,import { Edit } from 'lucide-react',,Edit button modify content,Outline +13,Action,save,disk store persist save,Lucide,import { Save } from 'lucide-react',,Save button persist changes,Outline +14,Action,download,export save file download,Lucide,import { Download } from 'lucide-react',,Download file export,Outline +15,Action,upload,import file attach upload,Lucide,import { Upload } from 'lucide-react',,Upload file import,Outline +16,Action,copy,duplicate clipboard paste,Lucide,import { Copy } from 'lucide-react',,Copy to clipboard,Outline +17,Action,share,social distribute send,Lucide,import { Share } from 'lucide-react',,Share button social,Outline +18,Action,search,find lookup filter query,Lucide,import { Search } from 'lucide-react',,Search input bar,Outline +19,Action,filter,sort refine narrow options,Lucide,import { Filter } from 'lucide-react',,Filter dropdown sort,Outline +20,Action,settings,gear cog preferences config,Lucide,import { Settings } from 'lucide-react',,Settings page configuration,Outline +21,Status,check,success done complete verified,Lucide,import { Check } from 'lucide-react',,Success state checkmark,Outline +22,Status,check-circle,success verified approved complete,Lucide,import { CheckCircle } from 'lucide-react',,Success badge verified,Outline +23,Status,x-circle,error failed cancel rejected,Lucide,import { XCircle } from 'lucide-react',,Error state failed,Outline +24,Status,alert-triangle,warning caution attention danger,Lucide,import { AlertTriangle } from 'lucide-react',,Warning message caution,Outline +25,Status,alert-circle,info notice information help,Lucide,import { AlertCircle } from 'lucide-react',,Info notice alert,Outline +26,Status,info,information help tooltip details,Lucide,import { Info } from 'lucide-react',,Information tooltip help,Outline +27,Status,loader,loading spinner processing wait,Lucide,import { Loader } from 'lucide-react',,Loading state spinner,Outline +28,Status,clock,time schedule pending wait,Lucide,import { Clock } from 'lucide-react',,Pending time schedule,Outline +29,Communication,mail,email message inbox letter,Lucide,import { Mail } from 'lucide-react',,Email contact inbox,Outline +30,Communication,message-circle,chat comment bubble conversation,Lucide,import { MessageCircle } from 'lucide-react',,Chat comment message,Outline +31,Communication,phone,call mobile telephone contact,Lucide,import { Phone } from 'lucide-react',,Phone contact call,Outline +32,Communication,send,submit dispatch message airplane,Lucide,import { Send } from 'lucide-react',,Send message submit,Outline +33,Communication,bell,notification alert ring reminder,Lucide,import { Bell } from 'lucide-react',,Notification bell alert,Outline +34,User,user,profile account person avatar,Lucide,import { User } from 'lucide-react',,User profile account,Outline +35,User,users,team group people members,Lucide,import { Users } from 'lucide-react',,Team group members,Outline +36,User,user-plus,add invite new member,Lucide,import { UserPlus } from 'lucide-react',,Add user invite,Outline +37,User,log-in,signin authenticate enter,Lucide,import { LogIn } from 'lucide-react',,Login signin,Outline +38,User,log-out,signout exit leave logout,Lucide,import { LogOut } from 'lucide-react',,Logout signout,Outline +39,Media,image,photo picture gallery thumbnail,Lucide,import { Image } from 'lucide-react',,Image photo gallery,Outline +40,Media,video,movie film play record,Lucide,import { Video } from 'lucide-react',