From 4f88319896f46eff5e4001cf8447f33ac458e9e9 Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Tue, 21 Jul 2026 12:01:46 +0100 Subject: [PATCH 01/11] feat: improve HA dashboard --- dashboards/dashboards/AGENTS.md | 2 +- .../PMM Health/PMM_HA_Health_Overview.json | 1194 ++++++++++++----- dashboards/pmm-app/src/plugin.json | 2 +- .../docs/install-pmm/install-HA-clustered.md | 8 +- .../dashboard-ha-health-overview.md | 47 +- .../navigation/navigation.constants.ts | 9 +- .../contexts/navigation/navigation.utils.tsx | 2 + 7 files changed, 887 insertions(+), 377 deletions(-) diff --git a/dashboards/dashboards/AGENTS.md b/dashboards/dashboards/AGENTS.md index 201725de8ec..3510759dccb 100644 --- a/dashboards/dashboards/AGENTS.md +++ b/dashboards/dashboards/AGENTS.md @@ -30,7 +30,7 @@ dashboards/dashboards/*.json | `Valkey/` | Valkey/Redis clients, cluster, memory, replication, slowlog | | `Insight/` | Home Dashboard, Advanced Data Exploration, VictoriaMetrics, Exporters | | `Experimental/` | Databases Overview, DB Cluster Summary | -| `PMM Health/` | Environments Overview, PMM Health Overview, HA Health Overview | +| `PMM Health/` | Environments Overview, PMM Health Overview, PMM HA Overview | | `Query Analytics/` | QAN panel wrapper (`pmm-qan.json`) | | `Kubernetes (experimental)/` | Kubernetes operator monitoring | diff --git a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json index eb2ad26b96d..42495f14f3e 100644 --- a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json +++ b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json @@ -15,7 +15,7 @@ } ] }, - "description": "High-level health overview of PMM-HA components: PostgreSQL/Patroni, ClickHouse, VictoriaMetrics, HAProxy", + "description": "GA overview of cluster-level and instance-level health for PMM HA, PostgreSQL/Patroni, ClickHouse, VictoriaMetrics, and HAProxy.", "editable": false, "fiscalYearStartMonth": 0, "graphTooltip": 1, @@ -37,53 +37,68 @@ }, { "datasource": "Metrics", - "description": "Click row below to see PMM pod details", + "description": "PMM instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", "fieldConfig": { "defaults": { "color": { - "mode": "thresholds" + "fixedColor": "text", + "mode": "fixed" }, - "mappings": [ - { - "options": { - "0": { - "color": "red", - "index": 1, - "text": "Not Healthy" - } - }, - "type": "value" - }, - { - "options": { - "1": { - "color": "green", - "index": 0, - "text": "Healthy" - } - }, - "type": "value" - } - ], + "mappings": [], "thresholds": { "mode": "absolute", "steps": [ { - "color": "red" - }, - { - "color": "green", - "value": 1 + "color": "green" } ] }, "unit": "none" }, - "overrides": [] + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Health" + }, + "properties": [ + { + "id": "color", + "value": { + "mode": "thresholds" + } + }, + { + "id": "thresholds", + "value": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "green", + "value": 100 + } + ] + } + }, + { + "id": "unit", + "value": "percent" + } + ] + } + ] }, "gridPos": { "h": 4, - "w": 4, + "w": 4.8, "x": 0, "y": 1 }, @@ -102,7 +117,7 @@ "values": false }, "showPercentChange": false, - "textMode": "value", + "textMode": "value_and_name", "wideLayout": true }, "pluginVersion": "11.6.4", @@ -110,10 +125,29 @@ { "datasource": "Metrics", "editorMode": "code", - "expr": "(\n count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}) == 1)\n ==\n count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}))\n and\n count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"})) > 0\n) * 0 + 1 or vector(0)", - "legendFormat": "PMM", - "range": true, + "expr": "count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}) == 1)", + "instant": true, + "legendFormat": "Alive", + "range": false, "refId": "A" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}))", + "instant": true, + "legendFormat": "Expected", + "range": false, + "refId": "B" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}))), 1)) * 100", + "instant": true, + "legendFormat": "Health", + "range": false, + "refId": "C" } ], "title": "🧭 PMM", @@ -121,57 +155,308 @@ }, { "datasource": "Metrics", - "description": "Click row below to see PostgreSQL pod details", + "description": "PostgreSQL instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", "fieldConfig": { "defaults": { "color": { - "mode": "thresholds" + "fixedColor": "text", + "mode": "fixed" }, - "mappings": [ - { - "options": { - "0": { - "color": "red", - "index": 1, - "text": "Not Healthy" + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Health" + }, + "properties": [ + { + "id": "color", + "value": { + "mode": "thresholds" } }, - "type": "value" - }, - { - "options": { - "1": { - "color": "green", - "index": 0, - "text": "Healthy" + { + "id": "thresholds", + "value": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "green", + "value": 100 + } + ] } }, - "type": "value" - } + { + "id": "unit", + "value": "percent" + } + ] + } + ] + }, + "gridPos": { + "h": 4, + "w": 4.8, + "x": 4.8, + "y": 1 + }, + "id": 1, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "center", + "orientation": "auto", + "percentChangeColorMode": "standard", + "reduceOptions": { + "calcs": [ + "lastNotNull" ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "value_and_name", + "wideLayout": true + }, + "pluginVersion": "11.6.4", + "targets": [ + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}) == 1)", + "instant": true, + "legendFormat": "Alive", + "range": false, + "refId": "A" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}))", + "instant": true, + "legendFormat": "Expected", + "range": false, + "refId": "B" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}))), 1)) * 100", + "instant": true, + "legendFormat": "Health", + "range": false, + "refId": "C" + } + ], + "title": "🐘 PostgreSQL", + "type": "stat" + }, + { + "datasource": "Metrics", + "description": "ClickHouse instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", + "fieldConfig": { + "defaults": { + "color": { + "fixedColor": "text", + "mode": "fixed" + }, + "mappings": [], "thresholds": { "mode": "absolute", "steps": [ { - "color": "red" + "color": "green" + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Health" + }, + "properties": [ + { + "id": "color", + "value": { + "mode": "thresholds" + } }, { - "color": "green", - "value": 1 + "id": "thresholds", + "value": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "green", + "value": 100 + } + ] + } + }, + { + "id": "unit", + "value": "percent" + } + ] + } + ] + }, + "gridPos": { + "h": 4, + "w": 4.8, + "x": 9.6, + "y": 1 + }, + "id": 2, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "center", + "orientation": "auto", + "percentChangeColorMode": "standard", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "value_and_name", + "wideLayout": true + }, + "pluginVersion": "11.6.4", + "targets": [ + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}) == 1)", + "instant": true, + "legendFormat": "Alive", + "range": false, + "refId": "A" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}))", + "instant": true, + "legendFormat": "Expected", + "range": false, + "refId": "B" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}))), 1)) * 100", + "instant": true, + "legendFormat": "Health", + "range": false, + "refId": "C" + } + ], + "title": "🖱️ ClickHouse", + "type": "stat" + }, + { + "datasource": "Metrics", + "description": "VictoriaMetrics instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", + "fieldConfig": { + "defaults": { + "color": { + "fixedColor": "text", + "mode": "fixed" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" } ] }, "unit": "none" }, - "overrides": [] + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Health" + }, + "properties": [ + { + "id": "color", + "value": { + "mode": "thresholds" + } + }, + { + "id": "thresholds", + "value": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "green", + "value": 100 + } + ] + } + }, + { + "id": "unit", + "value": "percent" + } + ] + } + ] }, "gridPos": { "h": 4, - "w": 4, - "x": 4, + "w": 4.8, + "x": 14.4, "y": 1 }, - "id": 1, + "id": 3, "options": { "colorMode": "background", "graphMode": "none", @@ -186,7 +471,7 @@ "values": false }, "showPercentChange": false, - "textMode": "value", + "textMode": "value_and_name", "wideLayout": true }, "pluginVersion": "11.6.4", @@ -194,74 +479,194 @@ { "datasource": "Metrics", "editorMode": "code", - "expr": "(\n count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}) == 1)\n ==\n count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}))\n and\n count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"})) > 0\n) * 0 + 1 or vector(0)", - "legendFormat": "PostgreSQL", - "range": true, + "expr": "count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}) == 1)", + "instant": true, + "legendFormat": "Alive", + "range": false, "refId": "A" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}))", + "instant": true, + "legendFormat": "Expected", + "range": false, + "refId": "B" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}))), 1)) * 100", + "instant": true, + "legendFormat": "Health", + "range": false, + "refId": "C" } ], - "title": "🐘 PostgreSQL", + "title": "📊 VictoriaMetrics", "type": "stat" }, { "datasource": "Metrics", - "description": "Click row below to see ClickHouse pod details", + "description": "HAProxy instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", "fieldConfig": { "defaults": { "color": { - "mode": "thresholds" + "fixedColor": "text", + "mode": "fixed" }, - "mappings": [ - { - "options": { - "0": { - "color": "red", - "index": 1, - "text": "Not Healthy" + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Health" + }, + "properties": [ + { + "id": "color", + "value": { + "mode": "thresholds" } }, - "type": "value" - }, - { - "options": { - "1": { - "color": "green", - "index": 0, - "text": "Healthy" + { + "id": "thresholds", + "value": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "green", + "value": 100 + } + ] } }, - "type": "value" - } + { + "id": "unit", + "value": "percent" + } + ] + } + ] + }, + "gridPos": { + "h": 4, + "w": 4.8, + "x": 19.2, + "y": 1 + }, + "id": 4, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "center", + "orientation": "auto", + "percentChangeColorMode": "standard", + "reduceOptions": { + "calcs": [ + "lastNotNull" ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "value_and_name", + "wideLayout": true + }, + "pluginVersion": "11.6.4", + "targets": [ + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"}) == 1)", + "instant": true, + "legendFormat": "Alive", + "range": false, + "refId": "A" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"}))", + "instant": true, + "legendFormat": "Expected", + "range": false, + "refId": "B" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"}))), 1)) * 100", + "instant": true, + "legendFormat": "Health", + "range": false, + "refId": "C" + } + ], + "title": "⚖️ HAProxy", + "type": "stat" + }, + { + "datasource": "Metrics", + "description": "Overall health percentage of all PMM HA pods", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "max": 100, + "min": 0, "thresholds": { "mode": "absolute", "steps": [ { "color": "red" }, + { + "color": "yellow", + "value": 80 + }, { "color": "green", - "value": 1 + "value": 95 } ] }, - "unit": "none" + "unit": "percent" }, "overrides": [] }, "gridPos": { - "h": 4, - "w": 4, - "x": 8, - "y": 1 + "h": 6, + "w": 6, + "x": 0, + "y": 5 }, - "id": 2, + "id": 201, "options": { - "colorMode": "background", - "graphMode": "none", - "justifyMode": "center", + "minVizHeight": 75, + "minVizWidth": 75, "orientation": "auto", - "percentChangeColorMode": "standard", "reduceOptions": { "calcs": [ "lastNotNull" @@ -269,63 +674,38 @@ "fields": "", "values": false }, - "showPercentChange": false, - "textMode": "value", - "wideLayout": true + "showThresholdLabels": false, + "showThresholdMarkers": true, + "sizing": "auto" }, "pluginVersion": "11.6.4", "targets": [ { "datasource": "Metrics", "editorMode": "code", - "expr": "(\n count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}) == 1)\n ==\n count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}))\n and\n count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"})) > 0\n) * 0 + 1 or vector(0)", - "legendFormat": "ClickHouse", + "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", + "legendFormat": "Health", "range": true, "refId": "A" } ], - "title": "🖱️ ClickHouse", - "type": "stat" + "title": "🎯 Overall System Health", + "type": "gauge" }, { "datasource": "Metrics", - "description": "Click row below to see VictoriaMetrics pod details", + "description": "Number of running pods vs total pods", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, - "mappings": [ - { - "options": { - "0": { - "color": "red", - "index": 1, - "text": "Not Healthy" - } - }, - "type": "value" - }, - { - "options": { - "1": { - "color": "green", - "index": 0, - "text": "Healthy" - } - }, - "type": "value" - } - ], + "mappings": [], "thresholds": { "mode": "absolute", "steps": [ { - "color": "red" - }, - { - "color": "green", - "value": 1 + "color": "green" } ] }, @@ -334,16 +714,16 @@ "overrides": [] }, "gridPos": { - "h": 4, - "w": 4, - "x": 12, - "y": 1 + "h": 6, + "w": 6, + "x": 6, + "y": 5 }, - "id": 3, + "id": 202, "options": { - "colorMode": "background", - "graphMode": "none", - "justifyMode": "center", + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", "orientation": "auto", "percentChangeColorMode": "standard", "reduceOptions": { @@ -354,7 +734,7 @@ "values": false }, "showPercentChange": false, - "textMode": "value", + "textMode": "value_and_name", "wideLayout": true }, "pluginVersion": "11.6.4", @@ -362,54 +742,45 @@ { "datasource": "Metrics", "editorMode": "code", - "expr": "(\n count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}) == 1)\n ==\n count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}))\n and\n count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"})) > 0\n) * 0 + 1 or vector(0)", - "legendFormat": "VictoriaMetrics", + "expr": "count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)", + "legendFormat": "Running", "range": true, "refId": "A" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod!~\".*($health_exclude_regex).*\"})", + "legendFormat": "Total", + "range": true, + "refId": "B" } ], - "title": "📊 VictoriaMetrics", + "title": "🔢 Pod Count", "type": "stat" }, { "datasource": "Metrics", - "description": "Click row below to see HAProxy pod details", + "description": "Total pod restarts in the last 24 hours", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, - "mappings": [ - { - "options": { - "0": { - "color": "red", - "index": 1, - "text": "Not Healthy" - } - }, - "type": "value" - }, - { - "options": { - "1": { - "color": "green", - "index": 0, - "text": "Healthy" - } - }, - "type": "value" - } - ], + "mappings": [], "thresholds": { "mode": "absolute", "steps": [ { - "color": "red" + "color": "green" }, { - "color": "green", + "color": "yellow", "value": 1 + }, + { + "color": "red", + "value": 5 } ] }, @@ -418,16 +789,16 @@ "overrides": [] }, "gridPos": { - "h": 4, - "w": 4, - "x": 16, - "y": 1 + "h": 6, + "w": 6, + "x": 12, + "y": 5 }, - "id": 4, + "id": 203, "options": { "colorMode": "background", - "graphMode": "none", - "justifyMode": "center", + "graphMode": "area", + "justifyMode": "auto", "orientation": "auto", "percentChangeColorMode": "standard", "reduceOptions": { @@ -438,7 +809,7 @@ "values": false }, "showPercentChange": false, - "textMode": "value", + "textMode": "value_and_name", "wideLayout": true }, "pluginVersion": "11.6.4", @@ -446,85 +817,126 @@ { "datasource": "Metrics", "editorMode": "code", - "expr": "(\n count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"}) == 1)\n ==\n count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"}))\n and\n count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"})) > 0\n) * 0 + 1 or vector(0)", - "legendFormat": "HAProxy", + "expr": "sum(increase(kube_pod_container_status_restarts_total{namespace=\"$namespace\", pod!~\".*($health_exclude_regex).*\"}[24h]))", + "legendFormat": "Restarts (24h)", "range": true, "refId": "A" } ], - "title": "⚖️ HAProxy", + "title": "🔄 Pod Restarts", "type": "stat" }, { "datasource": "Metrics", - "description": "Overall health percentage of all PMM HA pods", + "description": "Pods with restarts in the last 24 hours", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, + "custom": { + "align": "center", + "cellOptions": { + "type": "color-background" + }, + "inspect": false + }, "mappings": [], - "max": 100, - "min": 0, "thresholds": { "mode": "absolute", "steps": [ { - "color": "red" + "color": "green" }, { "color": "yellow", - "value": 80 + "value": 1 }, { - "color": "green", - "value": 95 + "color": "red", + "value": 3 } ] - }, - "unit": "percent" + } }, - "overrides": [] + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Pod" + }, + "properties": [ + { + "id": "custom.width", + "value": 400 + }, + { + "id": "custom.cellOptions", + "value": { + "type": "auto" + } + } + ] + } + ] }, "gridPos": { "h": 6, "w": 6, - "x": 0, + "x": 18, "y": 5 }, - "id": 201, + "id": 204, "options": { - "minVizHeight": 75, - "minVizWidth": 75, - "orientation": "auto", - "reduceOptions": { - "calcs": [ - "lastNotNull" - ], + "cellHeight": "sm", + "footer": { + "countRows": false, "fields": "", - "values": false + "reducer": [ + "sum" + ], + "show": false }, - "showThresholdLabels": false, - "showThresholdMarkers": true, - "sizing": "auto" + "showHeader": true }, "pluginVersion": "11.6.4", "targets": [ { "datasource": "Metrics", "editorMode": "code", - "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "Health", - "range": true, + "exemplar": false, + "expr": "sum by(pod) (increase(kube_pod_container_status_restarts_total{namespace=\"$namespace\", pod!~\".*($health_exclude_regex).*\"}[24h])) > 0", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, "refId": "A" } ], - "title": "🎯 Overall System Health", - "type": "gauge" + "title": "⚠️ Pods with Restarts", + "transformations": [ + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true + }, + "indexByName": { + "Value": 1, + "pod": 0 + }, + "renameByName": { + "Value": "Restarts (24h)", + "pod": "Pod" + } + } + } + ], + "type": "table" }, { "datasource": "Metrics", - "description": "Number of running pods vs total pods", + "description": "Current PMM Raft leader. Shows the active instance name, or No active instance when no leader is visible.", "fieldConfig": { "defaults": { "color": { @@ -535,7 +947,12 @@ "mode": "absolute", "steps": [ { - "color": "green" + "color": "red", + "value": null + }, + { + "color": "green", + "value": 1 } ] }, @@ -544,16 +961,16 @@ "overrides": [] }, "gridPos": { - "h": 6, + "h": 5, "w": 6, - "x": 6, - "y": 5 + "x": 0, + "y": 11 }, - "id": 202, + "id": 213, "options": { - "colorMode": "value", - "graphMode": "area", - "justifyMode": "auto", + "colorMode": "background", + "graphMode": "none", + "justifyMode": "center", "orientation": "auto", "percentChangeColorMode": "standard", "reduceOptions": { @@ -564,7 +981,7 @@ "values": false }, "showPercentChange": false, - "textMode": "value_and_name", + "textMode": "name", "wideLayout": true }, "pluginVersion": "11.6.4", @@ -572,45 +989,37 @@ { "datasource": "Metrics", "editorMode": "code", - "expr": "count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)", - "legendFormat": "Running", - "range": true, + "expr": "(max by(node_id) (pmm_ha_leader_status) == 1) or label_replace(vector(0), \"node_id\", \"No active instance\", \"\", \"\")", + "instant": true, + "legendFormat": "{{node_id}}", + "range": false, "refId": "A" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod!~\".*($health_exclude_regex).*\"})", - "legendFormat": "Total", - "range": true, - "refId": "B" } ], - "title": "🔢 Pod Count", + "title": "Active PMM Instance", "type": "stat" }, { "datasource": "Metrics", - "description": "Total pod restarts in the last 24 hours", + "description": "Current Patroni primary instance.", "fieldConfig": { "defaults": { "color": { - "mode": "thresholds" + "fixedColor": "green", + "mode": "fixed" }, "mappings": [], + "noValue": "No primary", "thresholds": { "mode": "absolute", "steps": [ { - "color": "green" + "color": "red", + "value": null }, { - "color": "yellow", + "color": "green", "value": 1 - }, - { - "color": "red", - "value": 5 } ] }, @@ -619,16 +1028,16 @@ "overrides": [] }, "gridPos": { - "h": 6, + "h": 5, "w": 6, - "x": 12, - "y": 5 + "x": 6, + "y": 11 }, - "id": 203, + "id": 214, "options": { "colorMode": "background", - "graphMode": "area", - "justifyMode": "auto", + "graphMode": "none", + "justifyMode": "center", "orientation": "auto", "percentChangeColorMode": "standard", "reduceOptions": { @@ -639,7 +1048,7 @@ "values": false }, "showPercentChange": false, - "textMode": "value_and_name", + "textMode": "name", "wideLayout": true }, "pluginVersion": "11.6.4", @@ -647,122 +1056,120 @@ { "datasource": "Metrics", "editorMode": "code", - "expr": "sum(increase(kube_pod_container_status_restarts_total{namespace=\"$namespace\", pod!~\".*($health_exclude_regex).*\"}[24h]))", - "legendFormat": "Restarts (24h)", - "range": true, + "expr": "max by(name) (patroni_primary) == 1", + "instant": true, + "legendFormat": "{{name}}", + "range": false, "refId": "A" } ], - "title": "🔄 Pod Restarts", + "title": "PostgreSQL Primary", "type": "stat" }, { "datasource": "Metrics", - "description": "Pods with restarts in the last 24 hours", + "description": "Health percentage for vmauth, vminsert, vmselect, vmstorage, and vmagent.", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, - "custom": { - "align": "center", - "cellOptions": { - "type": "color-background" - }, - "inspect": false - }, "mappings": [], "thresholds": { "mode": "absolute", "steps": [ { - "color": "green" + "color": "red", + "value": null }, { "color": "yellow", "value": 1 }, { - "color": "red", - "value": 3 + "color": "green", + "value": 100 } ] - } + }, + "unit": "percent" }, - "overrides": [ - { - "matcher": { - "id": "byName", - "options": "Pod" - }, - "properties": [ - { - "id": "custom.width", - "value": 400 - }, - { - "id": "custom.cellOptions", - "value": { - "type": "auto" - } - } - ] - } - ] + "overrides": [] }, "gridPos": { - "h": 6, - "w": 6, - "x": 18, - "y": 5 + "h": 5, + "w": 12, + "x": 12, + "y": 11 }, - "id": 204, + "id": 215, "options": { - "cellHeight": "sm", - "footer": { - "countRows": false, - "fields": "", - "reducer": [ - "sum" + "colorMode": "background", + "graphMode": "none", + "justifyMode": "center", + "orientation": "auto", + "percentChangeColorMode": "standard", + "reduceOptions": { + "calcs": [ + "lastNotNull" ], - "show": false + "fields": "", + "values": false }, - "showHeader": true + "showPercentChange": false, + "textMode": "value_and_name", + "wideLayout": true }, "pluginVersion": "11.6.4", "targets": [ { "datasource": "Metrics", "editorMode": "code", - "exemplar": false, - "expr": "sum by(pod) (increase(kube_pod_container_status_restarts_total{namespace=\"$namespace\", pod!~\".*($health_exclude_regex).*\"}[24h])) > 0", - "format": "table", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"vmauth.*${release}.*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"vmauth.*${release}.*\"}))), 1)) * 100", "instant": true, - "legendFormat": "__auto", + "legendFormat": "vmauth", "range": false, "refId": "A" - } - ], - "title": "⚠️ Pods with Restarts", - "transformations": [ + }, { - "id": "organize", - "options": { - "excludeByName": { - "Time": true - }, - "indexByName": { - "Value": 1, - "pod": 0 - }, - "renameByName": { - "Value": "Restarts (24h)", - "pod": "Pod" - } - } + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"vminsert.*${release}.*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"vminsert.*${release}.*\"}))), 1)) * 100", + "instant": true, + "legendFormat": "vminsert", + "range": false, + "refId": "B" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"vmselect.*${release}.*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"vmselect.*${release}.*\"}))), 1)) * 100", + "instant": true, + "legendFormat": "vmselect", + "range": false, + "refId": "C" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"vmstorage.*${release}.*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"vmstorage.*${release}.*\"}))), 1)) * 100", + "instant": true, + "legendFormat": "vmstorage", + "range": false, + "refId": "D" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"vmagent.*${release}.*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"vmagent.*${release}.*\"}))), 1)) * 100", + "instant": true, + "legendFormat": "vmagent", + "range": false, + "refId": "E" } ], - "type": "table" + "title": "VictoriaMetrics Components", + "type": "stat" }, { "collapsed": false, @@ -770,7 +1177,7 @@ "h": 1, "w": 24, "x": 0, - "y": 11 + "y": 16 }, "id": 205, "panels": [], @@ -839,7 +1246,7 @@ "h": 8, "w": 12, "x": 0, - "y": 12 + "y": 17 }, "id": 6, "options": { @@ -935,7 +1342,7 @@ "h": 8, "w": 12, "x": 12, - "y": 12 + "y": 17 }, "id": 206, "options": { @@ -975,7 +1382,7 @@ "h": 1, "w": 24, "x": 0, - "y": 20 + "y": 25 }, "id": 207, "panels": [], @@ -1017,7 +1424,7 @@ "h": 6, "w": 8, "x": 0, - "y": 21 + "y": 26 }, "id": 208, "options": { @@ -1084,7 +1491,7 @@ "h": 6, "w": 8, "x": 8, - "y": 21 + "y": 26 }, "id": 209, "options": { @@ -1151,7 +1558,7 @@ "h": 6, "w": 8, "x": 16, - "y": 21 + "y": 26 }, "id": 210, "options": { @@ -1189,7 +1596,7 @@ "h": 1, "w": 24, "x": 0, - "y": 27 + "y": 32 }, "id": 211, "panels": [], @@ -1248,7 +1655,7 @@ "h": 8, "w": 24, "x": 0, - "y": 28 + "y": 33 }, "id": 212, "options": { @@ -1319,13 +1726,13 @@ "h": 1, "w": 24, "x": 0, - "y": 43 + "y": 48 }, "id": 105, "panels": [ { "datasource": "Metrics", - "description": "Status of each PMM server pod (Running = UP).", + "description": "Status and Raft role of every PMM server instance.", "fieldConfig": { "defaults": { "color": { @@ -1391,6 +1798,34 @@ } } ] + }, + { + "matcher": { + "id": "byName", + "options": "Role" + }, + "properties": [ + { + "id": "mappings", + "value": [ + { + "options": { + "0": { + "color": "yellow", + "index": 1, + "text": "Follower" + }, + "1": { + "color": "green", + "index": 0, + "text": "Active" + } + }, + "type": "value" + } + ] + } + ] } ] }, @@ -1425,24 +1860,44 @@ "legendFormat": "__auto", "range": false, "refId": "Status" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "exemplar": false, + "expr": "label_replace(max by(node_id) (pmm_ha_leader_status), \"exported_pod\", \"$1\", \"node_id\", \"(.*)\")", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Leader" } ], "title": "PMM Pods", "transformations": [ + { + "id": "seriesToColumns", + "options": { + "byField": "exported_pod" + } + }, { "id": "organize", "options": { "excludeByName": { "Time": true, + "node_id": true, "service_name": true }, "indexByName": { - "Value": 1, + "Value #Leader": 2, + "Value #Status": 1, "exported_pod": 0 }, "renameByName": { - "Value": "Status", - "exported_pod": "Pod" + "Value #Leader": "Role", + "Value #Status": "Status", + "exported_pod": "Instance" } } } @@ -1459,7 +1914,7 @@ "h": 1, "w": 24, "x": 0, - "y": 37 + "y": 42 }, "id": 101, "panels": [], @@ -1468,7 +1923,7 @@ }, { "datasource": "Metrics", - "description": "Status of each PostgreSQL pod based on Kubernetes phase (Running = UP).", + "description": "Status, primary/replica role, and replication streaming health for every PostgreSQL instance.", "fieldConfig": { "defaults": { "color": { @@ -1575,6 +2030,34 @@ ] } ] + }, + { + "matcher": { + "id": "byName", + "options": "Replication" + }, + "properties": [ + { + "id": "mappings", + "value": [ + { + "options": { + "0": { + "color": "yellow", + "index": 1, + "text": "Not streaming" + }, + "1": { + "color": "green", + "index": 0, + "text": "Healthy" + } + }, + "type": "value" + } + ] + } + ] } ] }, @@ -1582,7 +2065,7 @@ "h": 6, "w": 24, "x": 0, - "y": 38 + "y": 43 }, "id": 10, "options": { @@ -1620,6 +2103,17 @@ "legendFormat": "__auto", "range": true, "refId": "Primary" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "exemplar": false, + "expr": "label_replace(max by(name) (patroni_postgres_streaming) + on(name) max by(name) (patroni_primary), \"exported_pod\", \"$1\", \"name\", \"(.*)\")", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Replication" } ], "title": "PostgreSQL Pods", @@ -1641,11 +2135,13 @@ "includeByName": {}, "indexByName": { "Value #Primary": 2, + "Value #Replication": 3, "Value #Status": 1, "exported_pod": 0 }, "renameByName": { "Value #Primary": "Role", + "Value #Replication": "Replication", "Value #Status": "Status", "exported_pod": "Pod" } @@ -1660,13 +2156,13 @@ "h": 1, "w": 24, "x": 0, - "y": 44 + "y": 49 }, "id": 102, "panels": [ { "datasource": "Metrics", - "description": "Status of each ClickHouse pod with leader/follower role.", + "description": "Health of all ClickHouse database and Keeper nodes. Keeper nodes additionally show leader/follower role.", "fieldConfig": { "defaults": { "color": { @@ -1801,7 +2297,7 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"})", + "expr": "max by(exported_pod, component) (label_replace(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}, \"component\", \"$1\", \"exported_pod\", \".*(pmmdb|keeper).*\"))", "format": "table", "instant": true, "legendFormat": "__auto", @@ -1837,13 +2333,15 @@ "pod_ip": true }, "indexByName": { - "Value #Leader": 2, - "Value #Status": 1, + "Value #Leader": 3, + "Value #Status": 2, + "component": 1, "exported_pod": 0 }, "renameByName": { "Value #Leader": "Role", "Value #Status": "Status", + "component": "Component", "exported_pod": "Pod" } } @@ -1861,7 +2359,7 @@ "h": 1, "w": 24, "x": 0, - "y": 45 + "y": 50 }, "id": 103, "panels": [ @@ -2035,7 +2533,7 @@ "h": 1, "w": 24, "x": 0, - "y": 46 + "y": 51 }, "id": 104, "panels": [ @@ -2166,7 +2664,7 @@ }, { "datasource": "Metrics", - "description": "Status of HAProxy backends", + "description": "UP/DOWN status of every HAProxy backend server.", "fieldConfig": { "defaults": { "color": { @@ -2278,7 +2776,7 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "max by(service_name, proxy) (haproxy_backend_status)", + "expr": "max by(service_name, proxy, server) (haproxy_server_status)", "format": "table", "instant": true, "legendFormat": "__auto", @@ -2286,7 +2784,7 @@ "refId": "Backend" } ], - "title": "HAProxy Backends", + "title": "HAProxy Backend Servers", "transformations": [ { "id": "organize", @@ -2295,13 +2793,15 @@ "Time": true }, "indexByName": { - "Value": 2, + "Value": 3, "proxy": 1, + "server": 2, "service_name": 0 }, "renameByName": { "Value": "Status", "proxy": "Backend", + "server": "Server", "service_name": "Service" } } @@ -2488,7 +2988,7 @@ }, "timepicker": {}, "timezone": "", - "title": "PMM HA Health Overview", + "title": "PMM HA Overview", "uid": "pmm-ha-health-overview", - "version": 3 + "version": 4 } diff --git a/dashboards/pmm-app/src/plugin.json b/dashboards/pmm-app/src/plugin.json index 7d678dd6016..8f66b1d3d72 100755 --- a/dashboards/pmm-app/src/plugin.json +++ b/dashboards/pmm-app/src/plugin.json @@ -300,7 +300,7 @@ }, { "type": "dashboard", - "name": "PMM HA Health Overview", + "name": "PMM HA Overview", "path": "dashboards/PMM Health/PMM_HA_Health_Overview.json" }, { diff --git a/documentation/docs/install-pmm/install-HA-clustered.md b/documentation/docs/install-pmm/install-HA-clustered.md index 704fe512ed2..31395ca99c9 100644 --- a/documentation/docs/install-pmm/install-HA-clustered.md +++ b/documentation/docs/install-pmm/install-HA-clustered.md @@ -773,15 +773,15 @@ To create additional service tokens manually, see the [PMM documentation on serv #### Monitor cluster health -Use the **PMM HA Health Overview** dashboard to monitor your entire HA deployment from a single view. +Use the **PMM HA Overview** dashboard to monitor your entire HA deployment from a single view. -This dashboard shows real-time health status for all critical components including PMM server replicas, PostgreSQL, ClickHouse, VictoriaMetrics, and HAProxy. +This dashboard shows alive versus expected instance counts, active or primary nodes, replication health, and real-time status for PMM, PostgreSQL, ClickHouse, VictoriaMetrics, and HAProxy. -Access the dashboard from **All Dashboards > Browse all dashboards > Experimental > PMM HA Health Overview**. +Access the dashboard from **PMM HA > Overview** in the main menu, or from **All Dashboards > Browse all dashboards > PMM Health > PMM HA Overview**. The dashboard helps you quickly identify component failures, resource constraints, and stability issues across your high-availability infrastructure. -For detailed information about each panel and what to check, see the [PMM HA Health Overview dashboard reference](../reference/dashboards/dashboard-ha-health-overview.md). +For detailed information about each panel and what to check, see the [PMM HA Overview dashboard reference](../reference/dashboards/dashboard-ha-health-overview.md). #### Identify the leader node diff --git a/documentation/docs/reference/dashboards/dashboard-ha-health-overview.md b/documentation/docs/reference/dashboards/dashboard-ha-health-overview.md index 4a3c9e64be6..957312ae24b 100644 --- a/documentation/docs/reference/dashboards/dashboard-ha-health-overview.md +++ b/documentation/docs/reference/dashboards/dashboard-ha-health-overview.md @@ -1,26 +1,26 @@ -# PMM HA Health Overview +# PMM HA Overview -![PMM HA Health Overview Dashboard](../../images/PMM_HA_Health_Overview.png) +![PMM HA Overview Dashboard](../../images/PMM_HA_Health_Overview.png) -The PMM HA Health Overview dashboard provides at-a-glance monitoring of your PMM High Availability Cluster deployment health. +The PMM HA Overview dashboard provides at-a-glance monitoring of cluster-level and instance-level health for your PMM High Availability deployment. -Use this dashboard to quickly identify component failures, resource constraints, and stability issues across your high-availability infrastructure. +Use the **Alive**, **Expected**, and **Health** values to identify component failures. Green means all expected instances are alive, yellow means the service is degraded, and red means no instances are alive or no expected instances were discovered. -This dashboard monitors all critical components: PMM server replicas, PostgreSQL database cluster, ClickHouse query analytics storage, VictoriaMetrics time series storage, and HAProxy load balancers. +The dashboard monitors PMM server replicas, PostgreSQL, ClickHouse, VictoriaMetrics, and HAProxy. It also identifies the active PMM instance, PostgreSQL primary, ClickHouse Keeper leader, VictoriaMetrics component health, and HAProxy backend server status. ## Overview ### PMM -Shows the overall health status of PMM server pods with green **Healthy** when all pods are running normally or red **Not Healthy** when one or more pods are down. +Shows PMM instances alive versus expected and the resulting health percentage. In HA Cluster mode, you have three PMM server replicas providing full redundancy. If one replica fails, the remaining two continue serving requests with no user-visible impact, but you should investigate quickly to restore full redundancy. -Check the **PMM Pods** table in the Pod Status Details section below to see which specific pods are affected. +The **Active PMM Instance** panel identifies the current Raft leader. Check the **PMM Pods** table to see every instance's status and Active or Follower role. ### PostgreSQL -Shows the overall health status of PostgreSQL database pods. Green **Healthy** indicates the cluster is fully operational with primary and replicas running. Red **Not Healthy** signals the cluster is degraded, putting metadata and configuration storage at risk. +Shows PostgreSQL instances alive versus expected. The **PostgreSQL Primary** panel identifies the current primary, and the instance table reports replication streaming health. PostgreSQL stores PMM's critical data including user accounts, dashboard configurations, alerting rules, and inventory information. @@ -30,20 +30,21 @@ Check the [**PostgreSQL Pods**](#postgresql-pods) panel in the **PostgreSQL Pod' ### ClickHouse -Shows the overall health status of ClickHouse pods. Green **Healthy** indicates the cluster is operating normally with all keeper and database nodes running. Red **Not Healthy** signals Query Analytics data storage is degraded. +Shows ClickHouse database and Keeper nodes alive versus expected. ClickHouse stores all Query Analytics (QAN) data. When pods fail, QAN dashboards will show incomplete query performance metrics, you won't be able to analyze slow queries during the outage, and you'll have permanent gaps in your historical query analysis data. -Check the **ClickHouse Pods** panel in the **ClickHouse Pod's Status** section below to see which pods are down. +Check the **ClickHouse Pods** panel to distinguish database (`pmmdb`) and Keeper nodes and to identify the Keeper leader. The dashboard reports Kubernetes node role and Keeper election state; it does not infer ClickHouse logical shard topology. Loss of keeper nodes (which handle coordination) is more critical than loss of a single database node (which handles storage). ### VictoriaMetrics -Shows the overall health status of VictoriaMetrics components. Green **Healthy** indicates all components are operational and metrics collection and querying are working properly. Red **Not Healthy** signals the time series infrastructure is degraded. +Shows VictoriaMetrics instances alive versus expected. The **VictoriaMetrics Components** panel breaks health down by `vmauth`, `vminsert`, `vmselect`, `vmstorage`, and `vmagent`. -VictoriaMetrics uses multiple components working together: -- `vminsert` receives metrics from monitored services, - `vmselect` processes dashboard queries +VictoriaMetrics uses multiple components working together: +- `vminsert` receives metrics from monitored services +- `vmselect` processes dashboard queries - `vmstorage` stores time series data - `vmagent` scrapes metrics from targets - `vmauth` handles authentication @@ -54,7 +55,7 @@ Failures in `vminsert` or `vmstorage` are most critical as they prevent metrics ### HAProxy -Shows the overall health status of HAProxy load balancer pods. Green **Healthy** means load balancing is working and traffic is properly distributed across your PMM replicas. Red **Not Healthy** means the load balancer has problems and you may not be able to access PMM. +Shows HAProxy instances alive versus expected. The backend server table reports the UP or DOWN state of each server in each backend. HAProxy is how you get into your PMM cluster. It routes web traffic to healthy PMM server replicas and handles automatic failover when the leader changes. @@ -196,7 +197,7 @@ A healthy PMM HA deployment should be mostly green with only short gaps during p ### PostgreSQL Pods -Shows each of your PostgreSQL pods with their status (UP or DOWN) and role (Primary or Replica). In a healthy cluster, you should see one Primary and the rest as Replicas, all showing UP in green. +Shows each PostgreSQL instance with its status (UP or DOWN), role (Primary or Replica), and replication health. In a healthy cluster, you should see one Primary, the remaining instances as Replicas, and all rows showing UP and Healthy. If the Primary shows DOWN, a failover is either in progress or just completed. Check that a Replica was promoted to become the new Primary. @@ -212,18 +213,18 @@ After a failover, verify that the new Primary is handling writes correctly. ### PMM Pods -Shows each of your PMM server pods with their current status. Green UP means the pod is running normally. Red DOWN means the pod has failed or isn't running. +Shows each PMM server instance with its current status and Raft role. Green UP means the pod is running normally; **Active** identifies the Raft leader and **Follower** identifies the remaining instances. If one pod shows DOWN, identify which replica is affected and investigate the cause. Two or more DOWN pods means your deployment is at serious risk—investigate immediately. If all three show DOWN, your entire PMM system is unavailable. -Use this table to identify which specific PMM server pods need attention when the [**PMM**](#pmm) health indicator shows **Not Healthy**. +Use this table to identify which PMM server instances need attention when the [**PMM**](#pmm) health percentage is below 100%. ### ClickHouse Pods -Shows each of your ClickHouse pods with their status (UP or DOWN) and role (Leader or Follower). +Shows every ClickHouse database and Keeper node with its UP or DOWN status. Keeper nodes also show their Leader or Follower role. ClickHouse uses two types of pods: keeper nodes that handle coordination and metadata, and database nodes that handle storage. @@ -243,7 +244,7 @@ Check for failures in `vmstorage` pods first—each stores a subset of your metr Failures in `vmselect` pods reduce query capacity but don't cause data loss. Down `vmagent` or `vmauth` pods affect metric scraping and authentication respectively. -Use this table to identify which specific components need attention when the [**VictoriaMetrics**](#victoriametrics) health indicator shows **Not Healthy**. +Use this table to identify which components need attention when the [**VictoriaMetrics**](#victoriametrics) health percentage is below 100%. ## HAProxy Pod's Status @@ -257,11 +258,11 @@ If one pod shows DOWN, your load balancing is still working but with reduced cap Investigate DOWN pods quickly to restore full redundancy and prevent a single point of failure. Check pod logs to identify whether the issue is configuration, resource limits, or connectivity problems. -Use this table to identify which specific HAProxy pods need attention when the [**HAProxy**](#haproxy) health indicator shows **Not Healthy**. +Use this table to identify which HAProxy pods need attention when the [**HAProxy**](#haproxy) health percentage is below 100%. -### HAProxy Backends +### HAProxy Backend Servers -Shows the health status of each backend service that HAProxy routes traffic to. +Shows the health status of every server in each backend that HAProxy routes traffic to. Green UP means HAProxy can reach the backend and will route traffic to it. Red DOWN means HAProxy detected the backend is unavailable and won't route traffic there. @@ -278,7 +279,7 @@ Check pod status in the tables above to identify why backends remain unavailable ## Dashboard Usage Tips ### Refresh rate -This dashboard auto-refreshes every 30 seconds to provide near real-time monitoring. +Use Grafana's refresh control to update the dashboard while investigating failovers or degraded components. ### Filters Use the namespace and Helm release variables at the top to focus on your specific PMM HA deployment if you have multiple installations. diff --git a/ui/apps/pmm/src/contexts/navigation/navigation.constants.ts b/ui/apps/pmm/src/contexts/navigation/navigation.constants.ts index 81e6315944a..ea41108d2d3 100644 --- a/ui/apps/pmm/src/contexts/navigation/navigation.constants.ts +++ b/ui/apps/pmm/src/contexts/navigation/navigation.constants.ts @@ -797,7 +797,14 @@ export const NAV_HIGH_AVAILABILITY: NavItem = { id: 'high-availability', icon: 'cluster', text: 'PMM HA', - url: `${PMM_NEW_NAV_GRAFANA_PATH}/high-availability`, + url: `${PMM_NEW_NAV_GRAFANA_PATH}/d/pmm-ha-health-overview/pmm-ha-overview`, +}; + +export const NAV_HIGH_AVAILABILITY_OVERVIEW: NavItem = { + id: 'high-availability-overview', + icon: 'overview', + text: 'Overview', + url: `${PMM_NEW_NAV_GRAFANA_PATH}/d/pmm-ha-health-overview/pmm-ha-overview`, }; export const NAV_HIGH_AVAILABILITY_LEADER: NavItem = { diff --git a/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx b/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx index 8f715e7a7ce..18f847884c7 100644 --- a/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx +++ b/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx @@ -45,6 +45,7 @@ import { NAV_ACCESS_CONTROL, NAV_HIGH_AVAILABILITY_LEADER, NAV_HIGH_AVAILABILITY_NODES, + NAV_HIGH_AVAILABILITY_OVERVIEW, NAV_HOME_PAGE, } from './navigation.constants'; import { CombinedSettings } from 'contexts/settings'; @@ -260,6 +261,7 @@ export const addHighAvailability = ({ health, leader }: HAInfo): NavItem => { ...NAV_HIGH_AVAILABILITY_LEADER, secondaryText: leader?.nodeName || 'Unknown', }, + NAV_HIGH_AVAILABILITY_OVERVIEW, NAV_HIGH_AVAILABILITY_NODES, ]; From e85b282c12a459baff0dfd4623e4169a52de83bd Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Wed, 22 Jul 2026 18:52:31 +0100 Subject: [PATCH 02/11] chore: improve layout --- .../PMM Health/PMM_HA_Health_Overview.json | 36714 +++++++++++++++- 1 file changed, 35285 insertions(+), 1429 deletions(-) diff --git a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json index 42495f14f3e..2c789568b45 100644 --- a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json +++ b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json @@ -32,7 +32,7 @@ }, "id": 200, "panels": [], - "title": "📊 Overview", + "title": "\ud83d\udcca Overview", "type": "row" }, { @@ -59,286 +59,27414 @@ { "matcher": { "id": "byName", - "options": "Health" - }, - "properties": [ - { - "id": "color", - "value": { - "mode": "thresholds" - } - }, - { - "id": "thresholds", - "value": { - "mode": "absolute", - "steps": [ - { - "color": "red", - "value": null - }, - { - "color": "yellow", - "value": 1 - }, - { - "color": "green", - "value": 100 - } - ] - } - }, - { - "id": "unit", - "value": "percent" - } - ] - } - ] - }, - "gridPos": { - "h": 4, - "w": 4.8, - "x": 0, - "y": 1 - }, - "id": 5, - "options": { - "colorMode": "background", - "graphMode": "none", - "justifyMode": "center", - "orientation": "auto", - "percentChangeColorMode": "standard", - "reduceOptions": { - "calcs": [ - "lastNotNull" - ], - "fields": "", - "values": false - }, - "showPercentChange": false, - "textMode": "value_and_name", - "wideLayout": true - }, - "pluginVersion": "11.6.4", - "targets": [ - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}) == 1)", - "instant": true, - "legendFormat": "Alive", - "range": false, - "refId": "A" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}))", - "instant": true, - "legendFormat": "Expected", - "range": false, - "refId": "B" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}))), 1)) * 100", - "instant": true, - "legendFormat": "Health", - "range": false, - "refId": "C" - } - ], - "title": "🧭 PMM", - "type": "stat" - }, - { - "datasource": "Metrics", - "description": "PostgreSQL instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", - "fieldConfig": { - "defaults": { - "color": { - "fixedColor": "text", - "mode": "fixed" - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - } - ] - }, - "unit": "none" - }, - "overrides": [ - { - "matcher": { - "id": "byName", - "options": "Health" - }, - "properties": [ - { - "id": "color", - "value": { - "mode": "thresholds" - } - }, - { - "id": "thresholds", - "value": { - "mode": "absolute", - "steps": [ - { - "color": "red", - "value": null - }, - { - "color": "yellow", - "value": 1 - }, - { - "color": "green", - "value": 100 - } - ] - } - }, - { - "id": "unit", - "value": "percent" - } - ] - } - ] - }, - "gridPos": { - "h": 4, - "w": 4.8, - "x": 4.8, - "y": 1 - }, - "id": 1, - "options": { - "colorMode": "background", - "graphMode": "none", - "justifyMode": "center", - "orientation": "auto", - "percentChangeColorMode": "standard", - "reduceOptions": { - "calcs": [ - "lastNotNull" - ], - "fields": "", - "values": false - }, - "showPercentChange": false, - "textMode": "value_and_name", - "wideLayout": true - }, - "pluginVersion": "11.6.4", - "targets": [ - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}) == 1)", - "instant": true, - "legendFormat": "Alive", - "range": false, - "refId": "A" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}))", - "instant": true, - "legendFormat": "Expected", - "range": false, - "refId": "B" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}))), 1)) * 100", - "instant": true, - "legendFormat": "Health", - "range": false, - "refId": "C" - } - ], - "title": "🐘 PostgreSQL", - "type": "stat" - }, - { - "datasource": "Metrics", - "description": "ClickHouse instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", - "fieldConfig": { - "defaults": { - "color": { - "fixedColor": "text", - "mode": "fixed" - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - } - ] - }, - "unit": "none" - }, - "overrides": [ - { - "matcher": { - "id": "byName", - "options": "Health" + "options": "Alive/Expected" }, "properties": [ { - "id": "color", - "value": { - "mode": "thresholds" - } - }, - { - "id": "thresholds", - "value": { - "mode": "absolute", - "steps": [ - { - "color": "red", - "value": null - }, - { - "color": "yellow", - "value": 1 - }, - { - "color": "green", - "value": 100 - } - ] - } - }, - { - "id": "unit", - "value": "percent" - } - ] - } + "id": "mappings", + "value": [ + { + "type": "value", + "options": { + "0": { + "text": "0/0", + "index": 0 + }, + "1": { + "text": "0/1", + "index": 1 + }, + "2": { + "text": "0/2", + "index": 2 + }, + "3": { + "text": "0/3", + "index": 3 + }, + "4": { + "text": "0/4", + "index": 4 + }, + "5": { + "text": "0/5", + "index": 5 + }, + "6": { + "text": "0/6", + "index": 6 + }, + "7": { + "text": "0/7", + "index": 7 + }, + "8": { + "text": "0/8", + "index": 8 + }, + "9": { + "text": "0/9", + "index": 9 + }, + "10": { + "text": "0/10", + "index": 10 + }, + "11": { + "text": "0/11", + "index": 11 + }, + "12": { + "text": "0/12", + "index": 12 + }, + "13": { + "text": "0/13", + "index": 13 + }, + "14": { + "text": "0/14", + "index": 14 + }, + "15": { + "text": "0/15", + "index": 15 + }, + "16": { + "text": "0/16", + "index": 16 + }, + "17": { + "text": "0/17", + "index": 17 + }, + "18": { + "text": "0/18", + "index": 18 + }, + "19": { + "text": "0/19", + "index": 19 + }, + "20": { + "text": "0/20", + "index": 20 + }, + "21": { + "text": "0/21", + "index": 21 + }, + "22": { + "text": "0/22", + "index": 22 + }, + "23": { + "text": "0/23", + "index": 23 + }, + "24": { + "text": "0/24", + "index": 24 + }, + "25": { + "text": "0/25", + "index": 25 + }, + "26": { + "text": "0/26", + "index": 26 + }, + "27": { + "text": "0/27", + "index": 27 + }, + "28": { + "text": "0/28", + "index": 28 + }, + "29": { + "text": "0/29", + "index": 29 + }, + "30": { + "text": "0/30", + "index": 30 + }, + "31": { + "text": "0/31", + "index": 31 + }, + "32": { + "text": "0/32", + "index": 32 + }, + "33": { + "text": "0/33", + "index": 33 + }, + "34": { + "text": "0/34", + "index": 34 + }, + "35": { + "text": "0/35", + "index": 35 + }, + "36": { + "text": "0/36", + "index": 36 + }, + "37": { + "text": "0/37", + "index": 37 + }, + "38": { + "text": "0/38", + "index": 38 + }, + "39": { + "text": "0/39", + "index": 39 + }, + "40": { + "text": "0/40", + "index": 40 + }, + "1000": { + "text": "1/0", + "index": 1000 + }, + "1001": { + "text": "1/1", + "index": 1001 + }, + "1002": { + "text": "1/2", + "index": 1002 + }, + "1003": { + "text": "1/3", + "index": 1003 + }, + "1004": { + "text": "1/4", + "index": 1004 + }, + "1005": { + "text": "1/5", + "index": 1005 + }, + "1006": { + "text": "1/6", + "index": 1006 + }, + "1007": { + "text": "1/7", + "index": 1007 + }, + "1008": { + "text": "1/8", + "index": 1008 + }, + "1009": { + "text": "1/9", + "index": 1009 + }, + "1010": { + "text": "1/10", + "index": 1010 + }, + "1011": { + "text": "1/11", + "index": 1011 + }, + "1012": { + "text": "1/12", + "index": 1012 + }, + "1013": { + "text": "1/13", + "index": 1013 + }, + "1014": { + "text": "1/14", + "index": 1014 + }, + "1015": { + "text": "1/15", + "index": 1015 + }, + "1016": { + "text": "1/16", + "index": 1016 + }, + "1017": { + "text": "1/17", + "index": 1017 + }, + "1018": { + "text": "1/18", + "index": 1018 + }, + "1019": { + "text": "1/19", + "index": 1019 + }, + "1020": { + "text": "1/20", + "index": 1020 + }, + "1021": { + "text": "1/21", + "index": 1021 + }, + "1022": { + "text": "1/22", + "index": 1022 + }, + "1023": { + "text": "1/23", + "index": 1023 + }, + "1024": { + "text": "1/24", + "index": 1024 + }, + "1025": { + "text": "1/25", + "index": 1025 + }, + "1026": { + "text": "1/26", + "index": 1026 + }, + "1027": { + "text": "1/27", + "index": 1027 + }, + "1028": { + "text": "1/28", + "index": 1028 + }, + "1029": { + "text": "1/29", + "index": 1029 + }, + "1030": { + "text": "1/30", + "index": 1030 + }, + "1031": { + "text": "1/31", + "index": 1031 + }, + "1032": { + "text": "1/32", + "index": 1032 + }, + "1033": { + "text": "1/33", + "index": 1033 + }, + "1034": { + "text": "1/34", + "index": 1034 + }, + "1035": { + "text": "1/35", + "index": 1035 + }, + "1036": { + "text": "1/36", + "index": 1036 + }, + "1037": { + "text": "1/37", + "index": 1037 + }, + "1038": { + "text": "1/38", + "index": 1038 + }, + "1039": { + "text": "1/39", + "index": 1039 + }, + "1040": { + "text": "1/40", + "index": 1040 + }, + "2000": { + "text": "2/0", + "index": 2000 + }, + "2001": { + "text": "2/1", + "index": 2001 + }, + "2002": { + "text": "2/2", + "index": 2002 + }, + "2003": { + "text": "2/3", + "index": 2003 + }, + "2004": { + "text": "2/4", + "index": 2004 + }, + "2005": { + "text": "2/5", + "index": 2005 + }, + "2006": { + "text": "2/6", + "index": 2006 + }, + "2007": { + "text": "2/7", + "index": 2007 + }, + "2008": { + "text": "2/8", + "index": 2008 + }, + "2009": { + "text": "2/9", + "index": 2009 + }, + "2010": { + "text": "2/10", + "index": 2010 + }, + "2011": { + "text": "2/11", + "index": 2011 + }, + "2012": { + "text": "2/12", + "index": 2012 + }, + "2013": { + "text": "2/13", + "index": 2013 + }, + "2014": { + "text": "2/14", + "index": 2014 + }, + "2015": { + "text": "2/15", + "index": 2015 + }, + "2016": { + "text": "2/16", + "index": 2016 + }, + "2017": { + "text": "2/17", + "index": 2017 + }, + "2018": { + "text": "2/18", + "index": 2018 + }, + "2019": { + "text": "2/19", + "index": 2019 + }, + "2020": { + "text": "2/20", + "index": 2020 + }, + "2021": { + "text": "2/21", + "index": 2021 + }, + "2022": { + "text": "2/22", + "index": 2022 + }, + "2023": { + "text": "2/23", + "index": 2023 + }, + "2024": { + "text": "2/24", + "index": 2024 + }, + "2025": { + "text": "2/25", + "index": 2025 + }, + "2026": { + "text": "2/26", + "index": 2026 + }, + "2027": { + "text": "2/27", + "index": 2027 + }, + "2028": { + "text": "2/28", + "index": 2028 + }, + "2029": { + "text": "2/29", + "index": 2029 + }, + "2030": { + "text": "2/30", + "index": 2030 + }, + "2031": { + "text": "2/31", + "index": 2031 + }, + "2032": { + "text": "2/32", + "index": 2032 + }, + "2033": { + "text": "2/33", + "index": 2033 + }, + "2034": { + "text": "2/34", + "index": 2034 + }, + "2035": { + "text": "2/35", + "index": 2035 + }, + "2036": { + "text": "2/36", + "index": 2036 + }, + "2037": { + "text": "2/37", + "index": 2037 + }, + "2038": { + "text": "2/38", + "index": 2038 + }, + "2039": { + "text": "2/39", + "index": 2039 + }, + "2040": { + "text": "2/40", + "index": 2040 + }, + "3000": { + "text": "3/0", + "index": 3000 + }, + "3001": { + "text": "3/1", + "index": 3001 + }, + "3002": { + "text": "3/2", + "index": 3002 + }, + "3003": { + "text": "3/3", + "index": 3003 + }, + "3004": { + "text": "3/4", + "index": 3004 + }, + "3005": { + "text": "3/5", + "index": 3005 + }, + "3006": { + "text": "3/6", + "index": 3006 + }, + "3007": { + "text": "3/7", + "index": 3007 + }, + "3008": { + "text": "3/8", + "index": 3008 + }, + "3009": { + "text": "3/9", + "index": 3009 + }, + "3010": { + "text": "3/10", + "index": 3010 + }, + "3011": { + "text": "3/11", + "index": 3011 + }, + "3012": { + "text": "3/12", + "index": 3012 + }, + "3013": { + "text": "3/13", + "index": 3013 + }, + "3014": { + "text": "3/14", + "index": 3014 + }, + "3015": { + "text": "3/15", + "index": 3015 + }, + "3016": { + "text": "3/16", + "index": 3016 + }, + "3017": { + "text": "3/17", + "index": 3017 + }, + "3018": { + "text": "3/18", + "index": 3018 + }, + "3019": { + "text": "3/19", + "index": 3019 + }, + "3020": { + "text": "3/20", + "index": 3020 + }, + "3021": { + "text": "3/21", + "index": 3021 + }, + "3022": { + "text": "3/22", + "index": 3022 + }, + "3023": { + "text": "3/23", + "index": 3023 + }, + "3024": { + "text": "3/24", + "index": 3024 + }, + "3025": { + "text": "3/25", + "index": 3025 + }, + "3026": { + "text": "3/26", + "index": 3026 + }, + "3027": { + "text": "3/27", + "index": 3027 + }, + "3028": { + "text": "3/28", + "index": 3028 + }, + "3029": { + "text": "3/29", + "index": 3029 + }, + "3030": { + "text": "3/30", + "index": 3030 + }, + "3031": { + "text": "3/31", + "index": 3031 + }, + "3032": { + "text": "3/32", + "index": 3032 + }, + "3033": { + "text": "3/33", + "index": 3033 + }, + "3034": { + "text": "3/34", + "index": 3034 + }, + "3035": { + "text": "3/35", + "index": 3035 + }, + "3036": { + "text": "3/36", + "index": 3036 + }, + "3037": { + "text": "3/37", + "index": 3037 + }, + "3038": { + "text": "3/38", + "index": 3038 + }, + "3039": { + "text": "3/39", + "index": 3039 + }, + "3040": { + "text": "3/40", + "index": 3040 + }, + "4000": { + "text": "4/0", + "index": 4000 + }, + "4001": { + "text": "4/1", + "index": 4001 + }, + "4002": { + "text": "4/2", + "index": 4002 + }, + "4003": { + "text": "4/3", + "index": 4003 + }, + "4004": { + "text": "4/4", + "index": 4004 + }, + "4005": { + "text": "4/5", + "index": 4005 + }, + "4006": { + "text": "4/6", + "index": 4006 + }, + "4007": { + "text": "4/7", + "index": 4007 + }, + "4008": { + "text": "4/8", + "index": 4008 + }, + "4009": { + "text": "4/9", + "index": 4009 + }, + "4010": { + "text": "4/10", + "index": 4010 + }, + "4011": { + "text": "4/11", + "index": 4011 + }, + "4012": { + "text": "4/12", + "index": 4012 + }, + "4013": { + "text": "4/13", + "index": 4013 + }, + "4014": { + "text": "4/14", + "index": 4014 + }, + "4015": { + "text": "4/15", + "index": 4015 + }, + "4016": { + "text": "4/16", + "index": 4016 + }, + "4017": { + "text": "4/17", + "index": 4017 + }, + "4018": { + "text": "4/18", + "index": 4018 + }, + "4019": { + "text": "4/19", + "index": 4019 + }, + "4020": { + "text": "4/20", + "index": 4020 + }, + "4021": { + "text": "4/21", + "index": 4021 + }, + "4022": { + "text": "4/22", + "index": 4022 + }, + "4023": { + "text": "4/23", + "index": 4023 + }, + "4024": { + "text": "4/24", + "index": 4024 + }, + "4025": { + "text": "4/25", + "index": 4025 + }, + "4026": { + "text": "4/26", + "index": 4026 + }, + "4027": { + "text": "4/27", + "index": 4027 + }, + "4028": { + "text": "4/28", + "index": 4028 + }, + "4029": { + "text": "4/29", + "index": 4029 + }, + "4030": { + "text": "4/30", + "index": 4030 + }, + "4031": { + "text": "4/31", + "index": 4031 + }, + "4032": { + "text": "4/32", + "index": 4032 + }, + "4033": { + "text": "4/33", + "index": 4033 + }, + "4034": { + "text": "4/34", + "index": 4034 + }, + "4035": { + "text": "4/35", + "index": 4035 + }, + "4036": { + "text": "4/36", + "index": 4036 + }, + "4037": { + "text": "4/37", + "index": 4037 + }, + "4038": { + "text": "4/38", + "index": 4038 + }, + "4039": { + "text": "4/39", + "index": 4039 + }, + "4040": { + "text": "4/40", + "index": 4040 + }, + "5000": { + "text": "5/0", + "index": 5000 + }, + "5001": { + "text": "5/1", + "index": 5001 + }, + "5002": { + "text": "5/2", + "index": 5002 + }, + "5003": { + "text": "5/3", + "index": 5003 + }, + "5004": { + "text": "5/4", + "index": 5004 + }, + "5005": { + "text": "5/5", + "index": 5005 + }, + "5006": { + "text": "5/6", + "index": 5006 + }, + "5007": { + "text": "5/7", + "index": 5007 + }, + "5008": { + "text": "5/8", + "index": 5008 + }, + "5009": { + "text": "5/9", + "index": 5009 + }, + "5010": { + "text": "5/10", + "index": 5010 + }, + "5011": { + "text": "5/11", + "index": 5011 + }, + "5012": { + "text": "5/12", + "index": 5012 + }, + "5013": { + "text": "5/13", + "index": 5013 + }, + "5014": { + "text": "5/14", + "index": 5014 + }, + "5015": { + "text": "5/15", + "index": 5015 + }, + "5016": { + "text": "5/16", + "index": 5016 + }, + "5017": { + "text": "5/17", + "index": 5017 + }, + "5018": { + "text": "5/18", + "index": 5018 + }, + "5019": { + "text": "5/19", + "index": 5019 + }, + "5020": { + "text": "5/20", + "index": 5020 + }, + "5021": { + "text": "5/21", + "index": 5021 + }, + "5022": { + "text": "5/22", + "index": 5022 + }, + "5023": { + "text": "5/23", + "index": 5023 + }, + "5024": { + "text": "5/24", + "index": 5024 + }, + "5025": { + "text": "5/25", + "index": 5025 + }, + "5026": { + "text": "5/26", + "index": 5026 + }, + "5027": { + "text": "5/27", + "index": 5027 + }, + "5028": { + "text": "5/28", + "index": 5028 + }, + "5029": { + "text": "5/29", + "index": 5029 + }, + "5030": { + "text": "5/30", + "index": 5030 + }, + "5031": { + "text": "5/31", + "index": 5031 + }, + "5032": { + "text": "5/32", + "index": 5032 + }, + "5033": { + "text": "5/33", + "index": 5033 + }, + "5034": { + "text": "5/34", + "index": 5034 + }, + "5035": { + "text": "5/35", + "index": 5035 + }, + "5036": { + "text": "5/36", + "index": 5036 + }, + "5037": { + "text": "5/37", + "index": 5037 + }, + "5038": { + "text": "5/38", + "index": 5038 + }, + "5039": { + "text": "5/39", + "index": 5039 + }, + "5040": { + "text": "5/40", + "index": 5040 + }, + "6000": { + "text": "6/0", + "index": 6000 + }, + "6001": { + "text": "6/1", + "index": 6001 + }, + "6002": { + "text": "6/2", + "index": 6002 + }, + "6003": { + "text": "6/3", + "index": 6003 + }, + "6004": { + "text": "6/4", + "index": 6004 + }, + "6005": { + "text": "6/5", + "index": 6005 + }, + "6006": { + "text": "6/6", + "index": 6006 + }, + "6007": { + "text": "6/7", + "index": 6007 + }, + "6008": { + "text": "6/8", + "index": 6008 + }, + "6009": { + "text": "6/9", + "index": 6009 + }, + "6010": { + "text": "6/10", + "index": 6010 + }, + "6011": { + "text": "6/11", + "index": 6011 + }, + "6012": { + "text": "6/12", + "index": 6012 + }, + "6013": { + "text": "6/13", + "index": 6013 + }, + "6014": { + "text": "6/14", + "index": 6014 + }, + "6015": { + "text": "6/15", + "index": 6015 + }, + "6016": { + "text": "6/16", + "index": 6016 + }, + "6017": { + "text": "6/17", + "index": 6017 + }, + "6018": { + "text": "6/18", + "index": 6018 + }, + "6019": { + "text": "6/19", + "index": 6019 + }, + "6020": { + "text": "6/20", + "index": 6020 + }, + "6021": { + "text": "6/21", + "index": 6021 + }, + "6022": { + "text": "6/22", + "index": 6022 + }, + "6023": { + "text": "6/23", + "index": 6023 + }, + "6024": { + "text": "6/24", + "index": 6024 + }, + "6025": { + "text": "6/25", + "index": 6025 + }, + "6026": { + "text": "6/26", + "index": 6026 + }, + "6027": { + "text": "6/27", + "index": 6027 + }, + "6028": { + "text": "6/28", + "index": 6028 + }, + "6029": { + "text": "6/29", + "index": 6029 + }, + "6030": { + "text": "6/30", + "index": 6030 + }, + "6031": { + "text": "6/31", + "index": 6031 + }, + "6032": { + "text": "6/32", + "index": 6032 + }, + "6033": { + "text": "6/33", + "index": 6033 + }, + "6034": { + "text": "6/34", + "index": 6034 + }, + "6035": { + "text": "6/35", + "index": 6035 + }, + "6036": { + "text": "6/36", + "index": 6036 + }, + "6037": { + "text": "6/37", + "index": 6037 + }, + "6038": { + "text": "6/38", + "index": 6038 + }, + "6039": { + "text": "6/39", + "index": 6039 + }, + "6040": { + "text": "6/40", + "index": 6040 + }, + "7000": { + "text": "7/0", + "index": 7000 + }, + "7001": { + "text": "7/1", + "index": 7001 + }, + "7002": { + "text": "7/2", + "index": 7002 + }, + "7003": { + "text": "7/3", + "index": 7003 + }, + "7004": { + "text": "7/4", + "index": 7004 + }, + "7005": { + "text": "7/5", + "index": 7005 + }, + "7006": { + "text": "7/6", + "index": 7006 + }, + "7007": { + "text": "7/7", + "index": 7007 + }, + "7008": { + "text": "7/8", + "index": 7008 + }, + "7009": { + "text": "7/9", + "index": 7009 + }, + "7010": { + "text": "7/10", + "index": 7010 + }, + "7011": { + "text": "7/11", + "index": 7011 + }, + "7012": { + "text": "7/12", + "index": 7012 + }, + "7013": { + "text": "7/13", + "index": 7013 + }, + "7014": { + "text": "7/14", + "index": 7014 + }, + "7015": { + "text": "7/15", + "index": 7015 + }, + "7016": { + "text": "7/16", + "index": 7016 + }, + "7017": { + "text": "7/17", + "index": 7017 + }, + "7018": { + "text": "7/18", + "index": 7018 + }, + "7019": { + "text": "7/19", + "index": 7019 + }, + "7020": { + "text": "7/20", + "index": 7020 + }, + "7021": { + "text": "7/21", + "index": 7021 + }, + "7022": { + "text": "7/22", + "index": 7022 + }, + "7023": { + "text": "7/23", + "index": 7023 + }, + "7024": { + "text": "7/24", + "index": 7024 + }, + "7025": { + "text": "7/25", + "index": 7025 + }, + "7026": { + "text": "7/26", + "index": 7026 + }, + "7027": { + "text": "7/27", + "index": 7027 + }, + "7028": { + "text": "7/28", + "index": 7028 + }, + "7029": { + "text": "7/29", + "index": 7029 + }, + "7030": { + "text": "7/30", + "index": 7030 + }, + "7031": { + "text": "7/31", + "index": 7031 + }, + "7032": { + "text": "7/32", + "index": 7032 + }, + "7033": { + "text": "7/33", + "index": 7033 + }, + "7034": { + "text": "7/34", + "index": 7034 + }, + "7035": { + "text": "7/35", + "index": 7035 + }, + "7036": { + "text": "7/36", + "index": 7036 + }, + "7037": { + "text": "7/37", + "index": 7037 + }, + "7038": { + "text": "7/38", + "index": 7038 + }, + "7039": { + "text": "7/39", + "index": 7039 + }, + "7040": { + "text": "7/40", + "index": 7040 + }, + "8000": { + "text": "8/0", + "index": 8000 + }, + "8001": { + "text": "8/1", + "index": 8001 + }, + "8002": { + "text": "8/2", + "index": 8002 + }, + "8003": { + "text": "8/3", + "index": 8003 + }, + "8004": { + "text": "8/4", + "index": 8004 + }, + "8005": { + "text": "8/5", + "index": 8005 + }, + "8006": { + "text": "8/6", + "index": 8006 + }, + "8007": { + "text": "8/7", + "index": 8007 + }, + "8008": { + "text": "8/8", + "index": 8008 + }, + "8009": { + "text": "8/9", + "index": 8009 + }, + "8010": { + "text": "8/10", + "index": 8010 + }, + "8011": { + "text": "8/11", + "index": 8011 + }, + "8012": { + "text": "8/12", + "index": 8012 + }, + "8013": { + "text": "8/13", + "index": 8013 + }, + "8014": { + "text": "8/14", + "index": 8014 + }, + "8015": { + "text": "8/15", + "index": 8015 + }, + "8016": { + "text": "8/16", + "index": 8016 + }, + "8017": { + "text": "8/17", + "index": 8017 + }, + "8018": { + "text": "8/18", + "index": 8018 + }, + "8019": { + "text": "8/19", + "index": 8019 + }, + "8020": { + "text": "8/20", + "index": 8020 + }, + "8021": { + "text": "8/21", + "index": 8021 + }, + "8022": { + "text": "8/22", + "index": 8022 + }, + "8023": { + "text": "8/23", + "index": 8023 + }, + "8024": { + "text": "8/24", + "index": 8024 + }, + "8025": { + "text": "8/25", + "index": 8025 + }, + "8026": { + "text": "8/26", + "index": 8026 + }, + "8027": { + "text": "8/27", + "index": 8027 + }, + "8028": { + "text": "8/28", + "index": 8028 + }, + "8029": { + "text": "8/29", + "index": 8029 + }, + "8030": { + "text": "8/30", + "index": 8030 + }, + "8031": { + "text": "8/31", + "index": 8031 + }, + "8032": { + "text": "8/32", + "index": 8032 + }, + "8033": { + "text": "8/33", + "index": 8033 + }, + "8034": { + "text": "8/34", + "index": 8034 + }, + "8035": { + "text": "8/35", + "index": 8035 + }, + "8036": { + "text": "8/36", + "index": 8036 + }, + "8037": { + "text": "8/37", + "index": 8037 + }, + "8038": { + "text": "8/38", + "index": 8038 + }, + "8039": { + "text": "8/39", + "index": 8039 + }, + "8040": { + "text": "8/40", + "index": 8040 + }, + "9000": { + "text": "9/0", + "index": 9000 + }, + "9001": { + "text": "9/1", + "index": 9001 + }, + "9002": { + "text": "9/2", + "index": 9002 + }, + "9003": { + "text": "9/3", + "index": 9003 + }, + "9004": { + "text": "9/4", + "index": 9004 + }, + "9005": { + "text": "9/5", + "index": 9005 + }, + "9006": { + "text": "9/6", + "index": 9006 + }, + "9007": { + "text": "9/7", + "index": 9007 + }, + "9008": { + "text": "9/8", + "index": 9008 + }, + "9009": { + "text": "9/9", + "index": 9009 + }, + "9010": { + "text": "9/10", + "index": 9010 + }, + "9011": { + "text": "9/11", + "index": 9011 + }, + "9012": { + "text": "9/12", + "index": 9012 + }, + "9013": { + "text": "9/13", + "index": 9013 + }, + "9014": { + "text": "9/14", + "index": 9014 + }, + "9015": { + "text": "9/15", + "index": 9015 + }, + "9016": { + "text": "9/16", + "index": 9016 + }, + "9017": { + "text": "9/17", + "index": 9017 + }, + "9018": { + "text": "9/18", + "index": 9018 + }, + "9019": { + "text": "9/19", + "index": 9019 + }, + "9020": { + "text": "9/20", + "index": 9020 + }, + "9021": { + "text": "9/21", + "index": 9021 + }, + "9022": { + "text": "9/22", + "index": 9022 + }, + "9023": { + "text": "9/23", + "index": 9023 + }, + "9024": { + "text": "9/24", + "index": 9024 + }, + "9025": { + "text": "9/25", + "index": 9025 + }, + "9026": { + "text": "9/26", + "index": 9026 + }, + "9027": { + "text": "9/27", + "index": 9027 + }, + "9028": { + "text": "9/28", + "index": 9028 + }, + "9029": { + "text": "9/29", + "index": 9029 + }, + "9030": { + "text": "9/30", + "index": 9030 + }, + "9031": { + "text": "9/31", + "index": 9031 + }, + "9032": { + "text": "9/32", + "index": 9032 + }, + "9033": { + "text": "9/33", + "index": 9033 + }, + "9034": { + "text": "9/34", + "index": 9034 + }, + "9035": { + "text": "9/35", + "index": 9035 + }, + "9036": { + "text": "9/36", + "index": 9036 + }, + "9037": { + "text": "9/37", + "index": 9037 + }, + "9038": { + "text": "9/38", + "index": 9038 + }, + "9039": { + "text": "9/39", + "index": 9039 + }, + "9040": { + "text": "9/40", + "index": 9040 + }, + "10000": { + "text": "10/0", + "index": 10000 + }, + "10001": { + "text": "10/1", + "index": 10001 + }, + "10002": { + "text": "10/2", + "index": 10002 + }, + "10003": { + "text": "10/3", + "index": 10003 + }, + "10004": { + "text": "10/4", + "index": 10004 + }, + "10005": { + "text": "10/5", + "index": 10005 + }, + "10006": { + "text": "10/6", + "index": 10006 + }, + "10007": { + "text": "10/7", + "index": 10007 + }, + "10008": { + "text": "10/8", + "index": 10008 + }, + "10009": { + "text": "10/9", + "index": 10009 + }, + "10010": { + "text": "10/10", + "index": 10010 + }, + "10011": { + "text": "10/11", + "index": 10011 + }, + "10012": { + "text": "10/12", + "index": 10012 + }, + "10013": { + "text": "10/13", + "index": 10013 + }, + "10014": { + "text": "10/14", + "index": 10014 + }, + "10015": { + "text": "10/15", + "index": 10015 + }, + "10016": { + "text": "10/16", + "index": 10016 + }, + "10017": { + "text": "10/17", + "index": 10017 + }, + "10018": { + "text": "10/18", + "index": 10018 + }, + "10019": { + "text": "10/19", + "index": 10019 + }, + "10020": { + "text": "10/20", + "index": 10020 + }, + "10021": { + "text": "10/21", + "index": 10021 + }, + "10022": { + "text": "10/22", + "index": 10022 + }, + "10023": { + "text": "10/23", + "index": 10023 + }, + "10024": { + "text": "10/24", + "index": 10024 + }, + "10025": { + "text": "10/25", + "index": 10025 + }, + "10026": { + "text": "10/26", + "index": 10026 + }, + "10027": { + "text": "10/27", + "index": 10027 + }, + "10028": { + "text": "10/28", + "index": 10028 + }, + "10029": { + "text": "10/29", + "index": 10029 + }, + "10030": { + "text": "10/30", + "index": 10030 + }, + "10031": { + "text": "10/31", + "index": 10031 + }, + "10032": { + "text": "10/32", + "index": 10032 + }, + "10033": { + "text": "10/33", + "index": 10033 + }, + "10034": { + "text": "10/34", + "index": 10034 + }, + "10035": { + "text": "10/35", + "index": 10035 + }, + "10036": { + "text": "10/36", + "index": 10036 + }, + "10037": { + "text": "10/37", + "index": 10037 + }, + "10038": { + "text": "10/38", + "index": 10038 + }, + "10039": { + "text": "10/39", + "index": 10039 + }, + "10040": { + "text": "10/40", + "index": 10040 + }, + "11000": { + "text": "11/0", + "index": 11000 + }, + "11001": { + "text": "11/1", + "index": 11001 + }, + "11002": { + "text": "11/2", + "index": 11002 + }, + "11003": { + "text": "11/3", + "index": 11003 + }, + "11004": { + "text": "11/4", + "index": 11004 + }, + "11005": { + "text": "11/5", + "index": 11005 + }, + "11006": { + "text": "11/6", + "index": 11006 + }, + "11007": { + "text": "11/7", + "index": 11007 + }, + "11008": { + "text": "11/8", + "index": 11008 + }, + "11009": { + "text": "11/9", + "index": 11009 + }, + "11010": { + "text": "11/10", + "index": 11010 + }, + "11011": { + "text": "11/11", + "index": 11011 + }, + "11012": { + "text": "11/12", + "index": 11012 + }, + "11013": { + "text": "11/13", + "index": 11013 + }, + "11014": { + "text": "11/14", + "index": 11014 + }, + "11015": { + "text": "11/15", + "index": 11015 + }, + "11016": { + "text": "11/16", + "index": 11016 + }, + "11017": { + "text": "11/17", + "index": 11017 + }, + "11018": { + "text": "11/18", + "index": 11018 + }, + "11019": { + "text": "11/19", + "index": 11019 + }, + "11020": { + "text": "11/20", + "index": 11020 + }, + "11021": { + "text": "11/21", + "index": 11021 + }, + "11022": { + "text": "11/22", + "index": 11022 + }, + "11023": { + "text": "11/23", + "index": 11023 + }, + "11024": { + "text": "11/24", + "index": 11024 + }, + "11025": { + "text": "11/25", + "index": 11025 + }, + "11026": { + "text": "11/26", + "index": 11026 + }, + "11027": { + "text": "11/27", + "index": 11027 + }, + "11028": { + "text": "11/28", + "index": 11028 + }, + "11029": { + "text": "11/29", + "index": 11029 + }, + "11030": { + "text": "11/30", + "index": 11030 + }, + "11031": { + "text": "11/31", + "index": 11031 + }, + "11032": { + "text": "11/32", + "index": 11032 + }, + "11033": { + "text": "11/33", + "index": 11033 + }, + "11034": { + "text": "11/34", + "index": 11034 + }, + "11035": { + "text": "11/35", + "index": 11035 + }, + "11036": { + "text": "11/36", + "index": 11036 + }, + "11037": { + "text": "11/37", + "index": 11037 + }, + "11038": { + "text": "11/38", + "index": 11038 + }, + "11039": { + "text": "11/39", + "index": 11039 + }, + "11040": { + "text": "11/40", + "index": 11040 + }, + "12000": { + "text": "12/0", + "index": 12000 + }, + "12001": { + "text": "12/1", + "index": 12001 + }, + "12002": { + "text": "12/2", + "index": 12002 + }, + "12003": { + "text": "12/3", + "index": 12003 + }, + "12004": { + "text": "12/4", + "index": 12004 + }, + "12005": { + "text": "12/5", + "index": 12005 + }, + "12006": { + "text": "12/6", + "index": 12006 + }, + "12007": { + "text": "12/7", + "index": 12007 + }, + "12008": { + "text": "12/8", + "index": 12008 + }, + "12009": { + "text": "12/9", + "index": 12009 + }, + "12010": { + "text": "12/10", + "index": 12010 + }, + "12011": { + "text": "12/11", + "index": 12011 + }, + "12012": { + "text": "12/12", + "index": 12012 + }, + "12013": { + "text": "12/13", + "index": 12013 + }, + "12014": { + "text": "12/14", + "index": 12014 + }, + "12015": { + "text": "12/15", + "index": 12015 + }, + "12016": { + "text": "12/16", + "index": 12016 + }, + "12017": { + "text": "12/17", + "index": 12017 + }, + "12018": { + "text": "12/18", + "index": 12018 + }, + "12019": { + "text": "12/19", + "index": 12019 + }, + "12020": { + "text": "12/20", + "index": 12020 + }, + "12021": { + "text": "12/21", + "index": 12021 + }, + "12022": { + "text": "12/22", + "index": 12022 + }, + "12023": { + "text": "12/23", + "index": 12023 + }, + "12024": { + "text": "12/24", + "index": 12024 + }, + "12025": { + "text": "12/25", + "index": 12025 + }, + "12026": { + "text": "12/26", + "index": 12026 + }, + "12027": { + "text": "12/27", + "index": 12027 + }, + "12028": { + "text": "12/28", + "index": 12028 + }, + "12029": { + "text": "12/29", + "index": 12029 + }, + "12030": { + "text": "12/30", + "index": 12030 + }, + "12031": { + "text": "12/31", + "index": 12031 + }, + "12032": { + "text": "12/32", + "index": 12032 + }, + "12033": { + "text": "12/33", + "index": 12033 + }, + "12034": { + "text": "12/34", + "index": 12034 + }, + "12035": { + "text": "12/35", + "index": 12035 + }, + "12036": { + "text": "12/36", + "index": 12036 + }, + "12037": { + "text": "12/37", + "index": 12037 + }, + "12038": { + "text": "12/38", + "index": 12038 + }, + "12039": { + "text": "12/39", + "index": 12039 + }, + "12040": { + "text": "12/40", + "index": 12040 + }, + "13000": { + "text": "13/0", + "index": 13000 + }, + "13001": { + "text": "13/1", + "index": 13001 + }, + "13002": { + "text": "13/2", + "index": 13002 + }, + "13003": { + "text": "13/3", + "index": 13003 + }, + "13004": { + "text": "13/4", + "index": 13004 + }, + "13005": { + "text": "13/5", + "index": 13005 + }, + "13006": { + "text": "13/6", + "index": 13006 + }, + "13007": { + "text": "13/7", + "index": 13007 + }, + "13008": { + "text": "13/8", + "index": 13008 + }, + "13009": { + "text": "13/9", + "index": 13009 + }, + "13010": { + "text": "13/10", + "index": 13010 + }, + "13011": { + "text": "13/11", + "index": 13011 + }, + "13012": { + "text": "13/12", + "index": 13012 + }, + "13013": { + "text": "13/13", + "index": 13013 + }, + "13014": { + "text": "13/14", + "index": 13014 + }, + "13015": { + "text": "13/15", + "index": 13015 + }, + "13016": { + "text": "13/16", + "index": 13016 + }, + "13017": { + "text": "13/17", + "index": 13017 + }, + "13018": { + "text": "13/18", + "index": 13018 + }, + "13019": { + "text": "13/19", + "index": 13019 + }, + "13020": { + "text": "13/20", + "index": 13020 + }, + "13021": { + "text": "13/21", + "index": 13021 + }, + "13022": { + "text": "13/22", + "index": 13022 + }, + "13023": { + "text": "13/23", + "index": 13023 + }, + "13024": { + "text": "13/24", + "index": 13024 + }, + "13025": { + "text": "13/25", + "index": 13025 + }, + "13026": { + "text": "13/26", + "index": 13026 + }, + "13027": { + "text": "13/27", + "index": 13027 + }, + "13028": { + "text": "13/28", + "index": 13028 + }, + "13029": { + "text": "13/29", + "index": 13029 + }, + "13030": { + "text": "13/30", + "index": 13030 + }, + "13031": { + "text": "13/31", + "index": 13031 + }, + "13032": { + "text": "13/32", + "index": 13032 + }, + "13033": { + "text": "13/33", + "index": 13033 + }, + "13034": { + "text": "13/34", + "index": 13034 + }, + "13035": { + "text": "13/35", + "index": 13035 + }, + "13036": { + "text": "13/36", + "index": 13036 + }, + "13037": { + "text": "13/37", + "index": 13037 + }, + "13038": { + "text": "13/38", + "index": 13038 + }, + "13039": { + "text": "13/39", + "index": 13039 + }, + "13040": { + "text": "13/40", + "index": 13040 + }, + "14000": { + "text": "14/0", + "index": 14000 + }, + "14001": { + "text": "14/1", + "index": 14001 + }, + "14002": { + "text": "14/2", + "index": 14002 + }, + "14003": { + "text": "14/3", + "index": 14003 + }, + "14004": { + "text": "14/4", + "index": 14004 + }, + "14005": { + "text": "14/5", + "index": 14005 + }, + "14006": { + "text": "14/6", + "index": 14006 + }, + "14007": { + "text": "14/7", + "index": 14007 + }, + "14008": { + "text": "14/8", + "index": 14008 + }, + "14009": { + "text": "14/9", + "index": 14009 + }, + "14010": { + "text": "14/10", + "index": 14010 + }, + "14011": { + "text": "14/11", + "index": 14011 + }, + "14012": { + "text": "14/12", + "index": 14012 + }, + "14013": { + "text": "14/13", + "index": 14013 + }, + "14014": { + "text": "14/14", + "index": 14014 + }, + "14015": { + "text": "14/15", + "index": 14015 + }, + "14016": { + "text": "14/16", + "index": 14016 + }, + "14017": { + "text": "14/17", + "index": 14017 + }, + "14018": { + "text": "14/18", + "index": 14018 + }, + "14019": { + "text": "14/19", + "index": 14019 + }, + "14020": { + "text": "14/20", + "index": 14020 + }, + "14021": { + "text": "14/21", + "index": 14021 + }, + "14022": { + "text": "14/22", + "index": 14022 + }, + "14023": { + "text": "14/23", + "index": 14023 + }, + "14024": { + "text": "14/24", + "index": 14024 + }, + "14025": { + "text": "14/25", + "index": 14025 + }, + "14026": { + "text": "14/26", + "index": 14026 + }, + "14027": { + "text": "14/27", + "index": 14027 + }, + "14028": { + "text": "14/28", + "index": 14028 + }, + "14029": { + "text": "14/29", + "index": 14029 + }, + "14030": { + "text": "14/30", + "index": 14030 + }, + "14031": { + "text": "14/31", + "index": 14031 + }, + "14032": { + "text": "14/32", + "index": 14032 + }, + "14033": { + "text": "14/33", + "index": 14033 + }, + "14034": { + "text": "14/34", + "index": 14034 + }, + "14035": { + "text": "14/35", + "index": 14035 + }, + "14036": { + "text": "14/36", + "index": 14036 + }, + "14037": { + "text": "14/37", + "index": 14037 + }, + "14038": { + "text": "14/38", + "index": 14038 + }, + "14039": { + "text": "14/39", + "index": 14039 + }, + "14040": { + "text": "14/40", + "index": 14040 + }, + "15000": { + "text": "15/0", + "index": 15000 + }, + "15001": { + "text": "15/1", + "index": 15001 + }, + "15002": { + "text": "15/2", + "index": 15002 + }, + "15003": { + "text": "15/3", + "index": 15003 + }, + "15004": { + "text": "15/4", + "index": 15004 + }, + "15005": { + "text": "15/5", + "index": 15005 + }, + "15006": { + "text": "15/6", + "index": 15006 + }, + "15007": { + "text": "15/7", + "index": 15007 + }, + "15008": { + "text": "15/8", + "index": 15008 + }, + "15009": { + "text": "15/9", + "index": 15009 + }, + "15010": { + "text": "15/10", + "index": 15010 + }, + "15011": { + "text": "15/11", + "index": 15011 + }, + "15012": { + "text": "15/12", + "index": 15012 + }, + "15013": { + "text": "15/13", + "index": 15013 + }, + "15014": { + "text": "15/14", + "index": 15014 + }, + "15015": { + "text": "15/15", + "index": 15015 + }, + "15016": { + "text": "15/16", + "index": 15016 + }, + "15017": { + "text": "15/17", + "index": 15017 + }, + "15018": { + "text": "15/18", + "index": 15018 + }, + "15019": { + "text": "15/19", + "index": 15019 + }, + "15020": { + "text": "15/20", + "index": 15020 + }, + "15021": { + "text": "15/21", + "index": 15021 + }, + "15022": { + "text": "15/22", + "index": 15022 + }, + "15023": { + "text": "15/23", + "index": 15023 + }, + "15024": { + "text": "15/24", + "index": 15024 + }, + "15025": { + "text": "15/25", + "index": 15025 + }, + "15026": { + "text": "15/26", + "index": 15026 + }, + "15027": { + "text": "15/27", + "index": 15027 + }, + "15028": { + "text": "15/28", + "index": 15028 + }, + "15029": { + "text": "15/29", + "index": 15029 + }, + "15030": { + "text": "15/30", + "index": 15030 + }, + "15031": { + "text": "15/31", + "index": 15031 + }, + "15032": { + "text": "15/32", + "index": 15032 + }, + "15033": { + "text": "15/33", + "index": 15033 + }, + "15034": { + "text": "15/34", + "index": 15034 + }, + "15035": { + "text": "15/35", + "index": 15035 + }, + "15036": { + "text": "15/36", + "index": 15036 + }, + "15037": { + "text": "15/37", + "index": 15037 + }, + "15038": { + "text": "15/38", + "index": 15038 + }, + "15039": { + "text": "15/39", + "index": 15039 + }, + "15040": { + "text": "15/40", + "index": 15040 + }, + "16000": { + "text": "16/0", + "index": 16000 + }, + "16001": { + "text": "16/1", + "index": 16001 + }, + "16002": { + "text": "16/2", + "index": 16002 + }, + "16003": { + "text": "16/3", + "index": 16003 + }, + "16004": { + "text": "16/4", + "index": 16004 + }, + "16005": { + "text": "16/5", + "index": 16005 + }, + "16006": { + "text": "16/6", + "index": 16006 + }, + "16007": { + "text": "16/7", + "index": 16007 + }, + "16008": { + "text": "16/8", + "index": 16008 + }, + "16009": { + "text": "16/9", + "index": 16009 + }, + "16010": { + "text": "16/10", + "index": 16010 + }, + "16011": { + "text": "16/11", + "index": 16011 + }, + "16012": { + "text": "16/12", + "index": 16012 + }, + "16013": { + "text": "16/13", + "index": 16013 + }, + "16014": { + "text": "16/14", + "index": 16014 + }, + "16015": { + "text": "16/15", + "index": 16015 + }, + "16016": { + "text": "16/16", + "index": 16016 + }, + "16017": { + "text": "16/17", + "index": 16017 + }, + "16018": { + "text": "16/18", + "index": 16018 + }, + "16019": { + "text": "16/19", + "index": 16019 + }, + "16020": { + "text": "16/20", + "index": 16020 + }, + "16021": { + "text": "16/21", + "index": 16021 + }, + "16022": { + "text": "16/22", + "index": 16022 + }, + "16023": { + "text": "16/23", + "index": 16023 + }, + "16024": { + "text": "16/24", + "index": 16024 + }, + "16025": { + "text": "16/25", + "index": 16025 + }, + "16026": { + "text": "16/26", + "index": 16026 + }, + "16027": { + "text": "16/27", + "index": 16027 + }, + "16028": { + "text": "16/28", + "index": 16028 + }, + "16029": { + "text": "16/29", + "index": 16029 + }, + "16030": { + "text": "16/30", + "index": 16030 + }, + "16031": { + "text": "16/31", + "index": 16031 + }, + "16032": { + "text": "16/32", + "index": 16032 + }, + "16033": { + "text": "16/33", + "index": 16033 + }, + "16034": { + "text": "16/34", + "index": 16034 + }, + "16035": { + "text": "16/35", + "index": 16035 + }, + "16036": { + "text": "16/36", + "index": 16036 + }, + "16037": { + "text": "16/37", + "index": 16037 + }, + "16038": { + "text": "16/38", + "index": 16038 + }, + "16039": { + "text": "16/39", + "index": 16039 + }, + "16040": { + "text": "16/40", + "index": 16040 + }, + "17000": { + "text": "17/0", + "index": 17000 + }, + "17001": { + "text": "17/1", + "index": 17001 + }, + "17002": { + "text": "17/2", + "index": 17002 + }, + "17003": { + "text": "17/3", + "index": 17003 + }, + "17004": { + "text": "17/4", + "index": 17004 + }, + "17005": { + "text": "17/5", + "index": 17005 + }, + "17006": { + "text": "17/6", + "index": 17006 + }, + "17007": { + "text": "17/7", + "index": 17007 + }, + "17008": { + "text": "17/8", + "index": 17008 + }, + "17009": { + "text": "17/9", + "index": 17009 + }, + "17010": { + "text": "17/10", + "index": 17010 + }, + "17011": { + "text": "17/11", + "index": 17011 + }, + "17012": { + "text": "17/12", + "index": 17012 + }, + "17013": { + "text": "17/13", + "index": 17013 + }, + "17014": { + "text": "17/14", + "index": 17014 + }, + "17015": { + "text": "17/15", + "index": 17015 + }, + "17016": { + "text": "17/16", + "index": 17016 + }, + "17017": { + "text": "17/17", + "index": 17017 + }, + "17018": { + "text": "17/18", + "index": 17018 + }, + "17019": { + "text": "17/19", + "index": 17019 + }, + "17020": { + "text": "17/20", + "index": 17020 + }, + "17021": { + "text": "17/21", + "index": 17021 + }, + "17022": { + "text": "17/22", + "index": 17022 + }, + "17023": { + "text": "17/23", + "index": 17023 + }, + "17024": { + "text": "17/24", + "index": 17024 + }, + "17025": { + "text": "17/25", + "index": 17025 + }, + "17026": { + "text": "17/26", + "index": 17026 + }, + "17027": { + "text": "17/27", + "index": 17027 + }, + "17028": { + "text": "17/28", + "index": 17028 + }, + "17029": { + "text": "17/29", + "index": 17029 + }, + "17030": { + "text": "17/30", + "index": 17030 + }, + "17031": { + "text": "17/31", + "index": 17031 + }, + "17032": { + "text": "17/32", + "index": 17032 + }, + "17033": { + "text": "17/33", + "index": 17033 + }, + "17034": { + "text": "17/34", + "index": 17034 + }, + "17035": { + "text": "17/35", + "index": 17035 + }, + "17036": { + "text": "17/36", + "index": 17036 + }, + "17037": { + "text": "17/37", + "index": 17037 + }, + "17038": { + "text": "17/38", + "index": 17038 + }, + "17039": { + "text": "17/39", + "index": 17039 + }, + "17040": { + "text": "17/40", + "index": 17040 + }, + "18000": { + "text": "18/0", + "index": 18000 + }, + "18001": { + "text": "18/1", + "index": 18001 + }, + "18002": { + "text": "18/2", + "index": 18002 + }, + "18003": { + "text": "18/3", + "index": 18003 + }, + "18004": { + "text": "18/4", + "index": 18004 + }, + "18005": { + "text": "18/5", + "index": 18005 + }, + "18006": { + "text": "18/6", + "index": 18006 + }, + "18007": { + "text": "18/7", + "index": 18007 + }, + "18008": { + "text": "18/8", + "index": 18008 + }, + "18009": { + "text": "18/9", + "index": 18009 + }, + "18010": { + "text": "18/10", + "index": 18010 + }, + "18011": { + "text": "18/11", + "index": 18011 + }, + "18012": { + "text": "18/12", + "index": 18012 + }, + "18013": { + "text": "18/13", + "index": 18013 + }, + "18014": { + "text": "18/14", + "index": 18014 + }, + "18015": { + "text": "18/15", + "index": 18015 + }, + "18016": { + "text": "18/16", + "index": 18016 + }, + "18017": { + "text": "18/17", + "index": 18017 + }, + "18018": { + "text": "18/18", + "index": 18018 + }, + "18019": { + "text": "18/19", + "index": 18019 + }, + "18020": { + "text": "18/20", + "index": 18020 + }, + "18021": { + "text": "18/21", + "index": 18021 + }, + "18022": { + "text": "18/22", + "index": 18022 + }, + "18023": { + "text": "18/23", + "index": 18023 + }, + "18024": { + "text": "18/24", + "index": 18024 + }, + "18025": { + "text": "18/25", + "index": 18025 + }, + "18026": { + "text": "18/26", + "index": 18026 + }, + "18027": { + "text": "18/27", + "index": 18027 + }, + "18028": { + "text": "18/28", + "index": 18028 + }, + "18029": { + "text": "18/29", + "index": 18029 + }, + "18030": { + "text": "18/30", + "index": 18030 + }, + "18031": { + "text": "18/31", + "index": 18031 + }, + "18032": { + "text": "18/32", + "index": 18032 + }, + "18033": { + "text": "18/33", + "index": 18033 + }, + "18034": { + "text": "18/34", + "index": 18034 + }, + "18035": { + "text": "18/35", + "index": 18035 + }, + "18036": { + "text": "18/36", + "index": 18036 + }, + "18037": { + "text": "18/37", + "index": 18037 + }, + "18038": { + "text": "18/38", + "index": 18038 + }, + "18039": { + "text": "18/39", + "index": 18039 + }, + "18040": { + "text": "18/40", + "index": 18040 + }, + "19000": { + "text": "19/0", + "index": 19000 + }, + "19001": { + "text": "19/1", + "index": 19001 + }, + "19002": { + "text": "19/2", + "index": 19002 + }, + "19003": { + "text": "19/3", + "index": 19003 + }, + "19004": { + "text": "19/4", + "index": 19004 + }, + "19005": { + "text": "19/5", + "index": 19005 + }, + "19006": { + "text": "19/6", + "index": 19006 + }, + "19007": { + "text": "19/7", + "index": 19007 + }, + "19008": { + "text": "19/8", + "index": 19008 + }, + "19009": { + "text": "19/9", + "index": 19009 + }, + "19010": { + "text": "19/10", + "index": 19010 + }, + "19011": { + "text": "19/11", + "index": 19011 + }, + "19012": { + "text": "19/12", + "index": 19012 + }, + "19013": { + "text": "19/13", + "index": 19013 + }, + "19014": { + "text": "19/14", + "index": 19014 + }, + "19015": { + "text": "19/15", + "index": 19015 + }, + "19016": { + "text": "19/16", + "index": 19016 + }, + "19017": { + "text": "19/17", + "index": 19017 + }, + "19018": { + "text": "19/18", + "index": 19018 + }, + "19019": { + "text": "19/19", + "index": 19019 + }, + "19020": { + "text": "19/20", + "index": 19020 + }, + "19021": { + "text": "19/21", + "index": 19021 + }, + "19022": { + "text": "19/22", + "index": 19022 + }, + "19023": { + "text": "19/23", + "index": 19023 + }, + "19024": { + "text": "19/24", + "index": 19024 + }, + "19025": { + "text": "19/25", + "index": 19025 + }, + "19026": { + "text": "19/26", + "index": 19026 + }, + "19027": { + "text": "19/27", + "index": 19027 + }, + "19028": { + "text": "19/28", + "index": 19028 + }, + "19029": { + "text": "19/29", + "index": 19029 + }, + "19030": { + "text": "19/30", + "index": 19030 + }, + "19031": { + "text": "19/31", + "index": 19031 + }, + "19032": { + "text": "19/32", + "index": 19032 + }, + "19033": { + "text": "19/33", + "index": 19033 + }, + "19034": { + "text": "19/34", + "index": 19034 + }, + "19035": { + "text": "19/35", + "index": 19035 + }, + "19036": { + "text": "19/36", + "index": 19036 + }, + "19037": { + "text": "19/37", + "index": 19037 + }, + "19038": { + "text": "19/38", + "index": 19038 + }, + "19039": { + "text": "19/39", + "index": 19039 + }, + "19040": { + "text": "19/40", + "index": 19040 + }, + "20000": { + "text": "20/0", + "index": 20000 + }, + "20001": { + "text": "20/1", + "index": 20001 + }, + "20002": { + "text": "20/2", + "index": 20002 + }, + "20003": { + "text": "20/3", + "index": 20003 + }, + "20004": { + "text": "20/4", + "index": 20004 + }, + "20005": { + "text": "20/5", + "index": 20005 + }, + "20006": { + "text": "20/6", + "index": 20006 + }, + "20007": { + "text": "20/7", + "index": 20007 + }, + "20008": { + "text": "20/8", + "index": 20008 + }, + "20009": { + "text": "20/9", + "index": 20009 + }, + "20010": { + "text": "20/10", + "index": 20010 + }, + "20011": { + "text": "20/11", + "index": 20011 + }, + "20012": { + "text": "20/12", + "index": 20012 + }, + "20013": { + "text": "20/13", + "index": 20013 + }, + "20014": { + "text": "20/14", + "index": 20014 + }, + "20015": { + "text": "20/15", + "index": 20015 + }, + "20016": { + "text": "20/16", + "index": 20016 + }, + "20017": { + "text": "20/17", + "index": 20017 + }, + "20018": { + "text": "20/18", + "index": 20018 + }, + "20019": { + "text": "20/19", + "index": 20019 + }, + "20020": { + "text": "20/20", + "index": 20020 + }, + "20021": { + "text": "20/21", + "index": 20021 + }, + "20022": { + "text": "20/22", + "index": 20022 + }, + "20023": { + "text": "20/23", + "index": 20023 + }, + "20024": { + "text": "20/24", + "index": 20024 + }, + "20025": { + "text": "20/25", + "index": 20025 + }, + "20026": { + "text": "20/26", + "index": 20026 + }, + "20027": { + "text": "20/27", + "index": 20027 + }, + "20028": { + "text": "20/28", + "index": 20028 + }, + "20029": { + "text": "20/29", + "index": 20029 + }, + "20030": { + "text": "20/30", + "index": 20030 + }, + "20031": { + "text": "20/31", + "index": 20031 + }, + "20032": { + "text": "20/32", + "index": 20032 + }, + "20033": { + "text": "20/33", + "index": 20033 + }, + "20034": { + "text": "20/34", + "index": 20034 + }, + "20035": { + "text": "20/35", + "index": 20035 + }, + "20036": { + "text": "20/36", + "index": 20036 + }, + "20037": { + "text": "20/37", + "index": 20037 + }, + "20038": { + "text": "20/38", + "index": 20038 + }, + "20039": { + "text": "20/39", + "index": 20039 + }, + "20040": { + "text": "20/40", + "index": 20040 + }, + "21000": { + "text": "21/0", + "index": 21000 + }, + "21001": { + "text": "21/1", + "index": 21001 + }, + "21002": { + "text": "21/2", + "index": 21002 + }, + "21003": { + "text": "21/3", + "index": 21003 + }, + "21004": { + "text": "21/4", + "index": 21004 + }, + "21005": { + "text": "21/5", + "index": 21005 + }, + "21006": { + "text": "21/6", + "index": 21006 + }, + "21007": { + "text": "21/7", + "index": 21007 + }, + "21008": { + "text": "21/8", + "index": 21008 + }, + "21009": { + "text": "21/9", + "index": 21009 + }, + "21010": { + "text": "21/10", + "index": 21010 + }, + "21011": { + "text": "21/11", + "index": 21011 + }, + "21012": { + "text": "21/12", + "index": 21012 + }, + "21013": { + "text": "21/13", + "index": 21013 + }, + "21014": { + "text": "21/14", + "index": 21014 + }, + "21015": { + "text": "21/15", + "index": 21015 + }, + "21016": { + "text": "21/16", + "index": 21016 + }, + "21017": { + "text": "21/17", + "index": 21017 + }, + "21018": { + "text": "21/18", + "index": 21018 + }, + "21019": { + "text": "21/19", + "index": 21019 + }, + "21020": { + "text": "21/20", + "index": 21020 + }, + "21021": { + "text": "21/21", + "index": 21021 + }, + "21022": { + "text": "21/22", + "index": 21022 + }, + "21023": { + "text": "21/23", + "index": 21023 + }, + "21024": { + "text": "21/24", + "index": 21024 + }, + "21025": { + "text": "21/25", + "index": 21025 + }, + "21026": { + "text": "21/26", + "index": 21026 + }, + "21027": { + "text": "21/27", + "index": 21027 + }, + "21028": { + "text": "21/28", + "index": 21028 + }, + "21029": { + "text": "21/29", + "index": 21029 + }, + "21030": { + "text": "21/30", + "index": 21030 + }, + "21031": { + "text": "21/31", + "index": 21031 + }, + "21032": { + "text": "21/32", + "index": 21032 + }, + "21033": { + "text": "21/33", + "index": 21033 + }, + "21034": { + "text": "21/34", + "index": 21034 + }, + "21035": { + "text": "21/35", + "index": 21035 + }, + "21036": { + "text": "21/36", + "index": 21036 + }, + "21037": { + "text": "21/37", + "index": 21037 + }, + "21038": { + "text": "21/38", + "index": 21038 + }, + "21039": { + "text": "21/39", + "index": 21039 + }, + "21040": { + "text": "21/40", + "index": 21040 + }, + "22000": { + "text": "22/0", + "index": 22000 + }, + "22001": { + "text": "22/1", + "index": 22001 + }, + "22002": { + "text": "22/2", + "index": 22002 + }, + "22003": { + "text": "22/3", + "index": 22003 + }, + "22004": { + "text": "22/4", + "index": 22004 + }, + "22005": { + "text": "22/5", + "index": 22005 + }, + "22006": { + "text": "22/6", + "index": 22006 + }, + "22007": { + "text": "22/7", + "index": 22007 + }, + "22008": { + "text": "22/8", + "index": 22008 + }, + "22009": { + "text": "22/9", + "index": 22009 + }, + "22010": { + "text": "22/10", + "index": 22010 + }, + "22011": { + "text": "22/11", + "index": 22011 + }, + "22012": { + "text": "22/12", + "index": 22012 + }, + "22013": { + "text": "22/13", + "index": 22013 + }, + "22014": { + "text": "22/14", + "index": 22014 + }, + "22015": { + "text": "22/15", + "index": 22015 + }, + "22016": { + "text": "22/16", + "index": 22016 + }, + "22017": { + "text": "22/17", + "index": 22017 + }, + "22018": { + "text": "22/18", + "index": 22018 + }, + "22019": { + "text": "22/19", + "index": 22019 + }, + "22020": { + "text": "22/20", + "index": 22020 + }, + "22021": { + "text": "22/21", + "index": 22021 + }, + "22022": { + "text": "22/22", + "index": 22022 + }, + "22023": { + "text": "22/23", + "index": 22023 + }, + "22024": { + "text": "22/24", + "index": 22024 + }, + "22025": { + "text": "22/25", + "index": 22025 + }, + "22026": { + "text": "22/26", + "index": 22026 + }, + "22027": { + "text": "22/27", + "index": 22027 + }, + "22028": { + "text": "22/28", + "index": 22028 + }, + "22029": { + "text": "22/29", + "index": 22029 + }, + "22030": { + "text": "22/30", + "index": 22030 + }, + "22031": { + "text": "22/31", + "index": 22031 + }, + "22032": { + "text": "22/32", + "index": 22032 + }, + "22033": { + "text": "22/33", + "index": 22033 + }, + "22034": { + "text": "22/34", + "index": 22034 + }, + "22035": { + "text": "22/35", + "index": 22035 + }, + "22036": { + "text": "22/36", + "index": 22036 + }, + "22037": { + "text": "22/37", + "index": 22037 + }, + "22038": { + "text": "22/38", + "index": 22038 + }, + "22039": { + "text": "22/39", + "index": 22039 + }, + "22040": { + "text": "22/40", + "index": 22040 + }, + "23000": { + "text": "23/0", + "index": 23000 + }, + "23001": { + "text": "23/1", + "index": 23001 + }, + "23002": { + "text": "23/2", + "index": 23002 + }, + "23003": { + "text": "23/3", + "index": 23003 + }, + "23004": { + "text": "23/4", + "index": 23004 + }, + "23005": { + "text": "23/5", + "index": 23005 + }, + "23006": { + "text": "23/6", + "index": 23006 + }, + "23007": { + "text": "23/7", + "index": 23007 + }, + "23008": { + "text": "23/8", + "index": 23008 + }, + "23009": { + "text": "23/9", + "index": 23009 + }, + "23010": { + "text": "23/10", + "index": 23010 + }, + "23011": { + "text": "23/11", + "index": 23011 + }, + "23012": { + "text": "23/12", + "index": 23012 + }, + "23013": { + "text": "23/13", + "index": 23013 + }, + "23014": { + "text": "23/14", + "index": 23014 + }, + "23015": { + "text": "23/15", + "index": 23015 + }, + "23016": { + "text": "23/16", + "index": 23016 + }, + "23017": { + "text": "23/17", + "index": 23017 + }, + "23018": { + "text": "23/18", + "index": 23018 + }, + "23019": { + "text": "23/19", + "index": 23019 + }, + "23020": { + "text": "23/20", + "index": 23020 + }, + "23021": { + "text": "23/21", + "index": 23021 + }, + "23022": { + "text": "23/22", + "index": 23022 + }, + "23023": { + "text": "23/23", + "index": 23023 + }, + "23024": { + "text": "23/24", + "index": 23024 + }, + "23025": { + "text": "23/25", + "index": 23025 + }, + "23026": { + "text": "23/26", + "index": 23026 + }, + "23027": { + "text": "23/27", + "index": 23027 + }, + "23028": { + "text": "23/28", + "index": 23028 + }, + "23029": { + "text": "23/29", + "index": 23029 + }, + "23030": { + "text": "23/30", + "index": 23030 + }, + "23031": { + "text": "23/31", + "index": 23031 + }, + "23032": { + "text": "23/32", + "index": 23032 + }, + "23033": { + "text": "23/33", + "index": 23033 + }, + "23034": { + "text": "23/34", + "index": 23034 + }, + "23035": { + "text": "23/35", + "index": 23035 + }, + "23036": { + "text": "23/36", + "index": 23036 + }, + "23037": { + "text": "23/37", + "index": 23037 + }, + "23038": { + "text": "23/38", + "index": 23038 + }, + "23039": { + "text": "23/39", + "index": 23039 + }, + "23040": { + "text": "23/40", + "index": 23040 + }, + "24000": { + "text": "24/0", + "index": 24000 + }, + "24001": { + "text": "24/1", + "index": 24001 + }, + "24002": { + "text": "24/2", + "index": 24002 + }, + "24003": { + "text": "24/3", + "index": 24003 + }, + "24004": { + "text": "24/4", + "index": 24004 + }, + "24005": { + "text": "24/5", + "index": 24005 + }, + "24006": { + "text": "24/6", + "index": 24006 + }, + "24007": { + "text": "24/7", + "index": 24007 + }, + "24008": { + "text": "24/8", + "index": 24008 + }, + "24009": { + "text": "24/9", + "index": 24009 + }, + "24010": { + "text": "24/10", + "index": 24010 + }, + "24011": { + "text": "24/11", + "index": 24011 + }, + "24012": { + "text": "24/12", + "index": 24012 + }, + "24013": { + "text": "24/13", + "index": 24013 + }, + "24014": { + "text": "24/14", + "index": 24014 + }, + "24015": { + "text": "24/15", + "index": 24015 + }, + "24016": { + "text": "24/16", + "index": 24016 + }, + "24017": { + "text": "24/17", + "index": 24017 + }, + "24018": { + "text": "24/18", + "index": 24018 + }, + "24019": { + "text": "24/19", + "index": 24019 + }, + "24020": { + "text": "24/20", + "index": 24020 + }, + "24021": { + "text": "24/21", + "index": 24021 + }, + "24022": { + "text": "24/22", + "index": 24022 + }, + "24023": { + "text": "24/23", + "index": 24023 + }, + "24024": { + "text": "24/24", + "index": 24024 + }, + "24025": { + "text": "24/25", + "index": 24025 + }, + "24026": { + "text": "24/26", + "index": 24026 + }, + "24027": { + "text": "24/27", + "index": 24027 + }, + "24028": { + "text": "24/28", + "index": 24028 + }, + "24029": { + "text": "24/29", + "index": 24029 + }, + "24030": { + "text": "24/30", + "index": 24030 + }, + "24031": { + "text": "24/31", + "index": 24031 + }, + "24032": { + "text": "24/32", + "index": 24032 + }, + "24033": { + "text": "24/33", + "index": 24033 + }, + "24034": { + "text": "24/34", + "index": 24034 + }, + "24035": { + "text": "24/35", + "index": 24035 + }, + "24036": { + "text": "24/36", + "index": 24036 + }, + "24037": { + "text": "24/37", + "index": 24037 + }, + "24038": { + "text": "24/38", + "index": 24038 + }, + "24039": { + "text": "24/39", + "index": 24039 + }, + "24040": { + "text": "24/40", + "index": 24040 + }, + "25000": { + "text": "25/0", + "index": 25000 + }, + "25001": { + "text": "25/1", + "index": 25001 + }, + "25002": { + "text": "25/2", + "index": 25002 + }, + "25003": { + "text": "25/3", + "index": 25003 + }, + "25004": { + "text": "25/4", + "index": 25004 + }, + "25005": { + "text": "25/5", + "index": 25005 + }, + "25006": { + "text": "25/6", + "index": 25006 + }, + "25007": { + "text": "25/7", + "index": 25007 + }, + "25008": { + "text": "25/8", + "index": 25008 + }, + "25009": { + "text": "25/9", + "index": 25009 + }, + "25010": { + "text": "25/10", + "index": 25010 + }, + "25011": { + "text": "25/11", + "index": 25011 + }, + "25012": { + "text": "25/12", + "index": 25012 + }, + "25013": { + "text": "25/13", + "index": 25013 + }, + "25014": { + "text": "25/14", + "index": 25014 + }, + "25015": { + "text": "25/15", + "index": 25015 + }, + "25016": { + "text": "25/16", + "index": 25016 + }, + "25017": { + "text": "25/17", + "index": 25017 + }, + "25018": { + "text": "25/18", + "index": 25018 + }, + "25019": { + "text": "25/19", + "index": 25019 + }, + "25020": { + "text": "25/20", + "index": 25020 + }, + "25021": { + "text": "25/21", + "index": 25021 + }, + "25022": { + "text": "25/22", + "index": 25022 + }, + "25023": { + "text": "25/23", + "index": 25023 + }, + "25024": { + "text": "25/24", + "index": 25024 + }, + "25025": { + "text": "25/25", + "index": 25025 + }, + "25026": { + "text": "25/26", + "index": 25026 + }, + "25027": { + "text": "25/27", + "index": 25027 + }, + "25028": { + "text": "25/28", + "index": 25028 + }, + "25029": { + "text": "25/29", + "index": 25029 + }, + "25030": { + "text": "25/30", + "index": 25030 + }, + "25031": { + "text": "25/31", + "index": 25031 + }, + "25032": { + "text": "25/32", + "index": 25032 + }, + "25033": { + "text": "25/33", + "index": 25033 + }, + "25034": { + "text": "25/34", + "index": 25034 + }, + "25035": { + "text": "25/35", + "index": 25035 + }, + "25036": { + "text": "25/36", + "index": 25036 + }, + "25037": { + "text": "25/37", + "index": 25037 + }, + "25038": { + "text": "25/38", + "index": 25038 + }, + "25039": { + "text": "25/39", + "index": 25039 + }, + "25040": { + "text": "25/40", + "index": 25040 + }, + "26000": { + "text": "26/0", + "index": 26000 + }, + "26001": { + "text": "26/1", + "index": 26001 + }, + "26002": { + "text": "26/2", + "index": 26002 + }, + "26003": { + "text": "26/3", + "index": 26003 + }, + "26004": { + "text": "26/4", + "index": 26004 + }, + "26005": { + "text": "26/5", + "index": 26005 + }, + "26006": { + "text": "26/6", + "index": 26006 + }, + "26007": { + "text": "26/7", + "index": 26007 + }, + "26008": { + "text": "26/8", + "index": 26008 + }, + "26009": { + "text": "26/9", + "index": 26009 + }, + "26010": { + "text": "26/10", + "index": 26010 + }, + "26011": { + "text": "26/11", + "index": 26011 + }, + "26012": { + "text": "26/12", + "index": 26012 + }, + "26013": { + "text": "26/13", + "index": 26013 + }, + "26014": { + "text": "26/14", + "index": 26014 + }, + "26015": { + "text": "26/15", + "index": 26015 + }, + "26016": { + "text": "26/16", + "index": 26016 + }, + "26017": { + "text": "26/17", + "index": 26017 + }, + "26018": { + "text": "26/18", + "index": 26018 + }, + "26019": { + "text": "26/19", + "index": 26019 + }, + "26020": { + "text": "26/20", + "index": 26020 + }, + "26021": { + "text": "26/21", + "index": 26021 + }, + "26022": { + "text": "26/22", + "index": 26022 + }, + "26023": { + "text": "26/23", + "index": 26023 + }, + "26024": { + "text": "26/24", + "index": 26024 + }, + "26025": { + "text": "26/25", + "index": 26025 + }, + "26026": { + "text": "26/26", + "index": 26026 + }, + "26027": { + "text": "26/27", + "index": 26027 + }, + "26028": { + "text": "26/28", + "index": 26028 + }, + "26029": { + "text": "26/29", + "index": 26029 + }, + "26030": { + "text": "26/30", + "index": 26030 + }, + "26031": { + "text": "26/31", + "index": 26031 + }, + "26032": { + "text": "26/32", + "index": 26032 + }, + "26033": { + "text": "26/33", + "index": 26033 + }, + "26034": { + "text": "26/34", + "index": 26034 + }, + "26035": { + "text": "26/35", + "index": 26035 + }, + "26036": { + "text": "26/36", + "index": 26036 + }, + "26037": { + "text": "26/37", + "index": 26037 + }, + "26038": { + "text": "26/38", + "index": 26038 + }, + "26039": { + "text": "26/39", + "index": 26039 + }, + "26040": { + "text": "26/40", + "index": 26040 + }, + "27000": { + "text": "27/0", + "index": 27000 + }, + "27001": { + "text": "27/1", + "index": 27001 + }, + "27002": { + "text": "27/2", + "index": 27002 + }, + "27003": { + "text": "27/3", + "index": 27003 + }, + "27004": { + "text": "27/4", + "index": 27004 + }, + "27005": { + "text": "27/5", + "index": 27005 + }, + "27006": { + "text": "27/6", + "index": 27006 + }, + "27007": { + "text": "27/7", + "index": 27007 + }, + "27008": { + "text": "27/8", + "index": 27008 + }, + "27009": { + "text": "27/9", + "index": 27009 + }, + "27010": { + "text": "27/10", + "index": 27010 + }, + "27011": { + "text": "27/11", + "index": 27011 + }, + "27012": { + "text": "27/12", + "index": 27012 + }, + "27013": { + "text": "27/13", + "index": 27013 + }, + "27014": { + "text": "27/14", + "index": 27014 + }, + "27015": { + "text": "27/15", + "index": 27015 + }, + "27016": { + "text": "27/16", + "index": 27016 + }, + "27017": { + "text": "27/17", + "index": 27017 + }, + "27018": { + "text": "27/18", + "index": 27018 + }, + "27019": { + "text": "27/19", + "index": 27019 + }, + "27020": { + "text": "27/20", + "index": 27020 + }, + "27021": { + "text": "27/21", + "index": 27021 + }, + "27022": { + "text": "27/22", + "index": 27022 + }, + "27023": { + "text": "27/23", + "index": 27023 + }, + "27024": { + "text": "27/24", + "index": 27024 + }, + "27025": { + "text": "27/25", + "index": 27025 + }, + "27026": { + "text": "27/26", + "index": 27026 + }, + "27027": { + "text": "27/27", + "index": 27027 + }, + "27028": { + "text": "27/28", + "index": 27028 + }, + "27029": { + "text": "27/29", + "index": 27029 + }, + "27030": { + "text": "27/30", + "index": 27030 + }, + "27031": { + "text": "27/31", + "index": 27031 + }, + "27032": { + "text": "27/32", + "index": 27032 + }, + "27033": { + "text": "27/33", + "index": 27033 + }, + "27034": { + "text": "27/34", + "index": 27034 + }, + "27035": { + "text": "27/35", + "index": 27035 + }, + "27036": { + "text": "27/36", + "index": 27036 + }, + "27037": { + "text": "27/37", + "index": 27037 + }, + "27038": { + "text": "27/38", + "index": 27038 + }, + "27039": { + "text": "27/39", + "index": 27039 + }, + "27040": { + "text": "27/40", + "index": 27040 + }, + "28000": { + "text": "28/0", + "index": 28000 + }, + "28001": { + "text": "28/1", + "index": 28001 + }, + "28002": { + "text": "28/2", + "index": 28002 + }, + "28003": { + "text": "28/3", + "index": 28003 + }, + "28004": { + "text": "28/4", + "index": 28004 + }, + "28005": { + "text": "28/5", + "index": 28005 + }, + "28006": { + "text": "28/6", + "index": 28006 + }, + "28007": { + "text": "28/7", + "index": 28007 + }, + "28008": { + "text": "28/8", + "index": 28008 + }, + "28009": { + "text": "28/9", + "index": 28009 + }, + "28010": { + "text": "28/10", + "index": 28010 + }, + "28011": { + "text": "28/11", + "index": 28011 + }, + "28012": { + "text": "28/12", + "index": 28012 + }, + "28013": { + "text": "28/13", + "index": 28013 + }, + "28014": { + "text": "28/14", + "index": 28014 + }, + "28015": { + "text": "28/15", + "index": 28015 + }, + "28016": { + "text": "28/16", + "index": 28016 + }, + "28017": { + "text": "28/17", + "index": 28017 + }, + "28018": { + "text": "28/18", + "index": 28018 + }, + "28019": { + "text": "28/19", + "index": 28019 + }, + "28020": { + "text": "28/20", + "index": 28020 + }, + "28021": { + "text": "28/21", + "index": 28021 + }, + "28022": { + "text": "28/22", + "index": 28022 + }, + "28023": { + "text": "28/23", + "index": 28023 + }, + "28024": { + "text": "28/24", + "index": 28024 + }, + "28025": { + "text": "28/25", + "index": 28025 + }, + "28026": { + "text": "28/26", + "index": 28026 + }, + "28027": { + "text": "28/27", + "index": 28027 + }, + "28028": { + "text": "28/28", + "index": 28028 + }, + "28029": { + "text": "28/29", + "index": 28029 + }, + "28030": { + "text": "28/30", + "index": 28030 + }, + "28031": { + "text": "28/31", + "index": 28031 + }, + "28032": { + "text": "28/32", + "index": 28032 + }, + "28033": { + "text": "28/33", + "index": 28033 + }, + "28034": { + "text": "28/34", + "index": 28034 + }, + "28035": { + "text": "28/35", + "index": 28035 + }, + "28036": { + "text": "28/36", + "index": 28036 + }, + "28037": { + "text": "28/37", + "index": 28037 + }, + "28038": { + "text": "28/38", + "index": 28038 + }, + "28039": { + "text": "28/39", + "index": 28039 + }, + "28040": { + "text": "28/40", + "index": 28040 + }, + "29000": { + "text": "29/0", + "index": 29000 + }, + "29001": { + "text": "29/1", + "index": 29001 + }, + "29002": { + "text": "29/2", + "index": 29002 + }, + "29003": { + "text": "29/3", + "index": 29003 + }, + "29004": { + "text": "29/4", + "index": 29004 + }, + "29005": { + "text": "29/5", + "index": 29005 + }, + "29006": { + "text": "29/6", + "index": 29006 + }, + "29007": { + "text": "29/7", + "index": 29007 + }, + "29008": { + "text": "29/8", + "index": 29008 + }, + "29009": { + "text": "29/9", + "index": 29009 + }, + "29010": { + "text": "29/10", + "index": 29010 + }, + "29011": { + "text": "29/11", + "index": 29011 + }, + "29012": { + "text": "29/12", + "index": 29012 + }, + "29013": { + "text": "29/13", + "index": 29013 + }, + "29014": { + "text": "29/14", + "index": 29014 + }, + "29015": { + "text": "29/15", + "index": 29015 + }, + "29016": { + "text": "29/16", + "index": 29016 + }, + "29017": { + "text": "29/17", + "index": 29017 + }, + "29018": { + "text": "29/18", + "index": 29018 + }, + "29019": { + "text": "29/19", + "index": 29019 + }, + "29020": { + "text": "29/20", + "index": 29020 + }, + "29021": { + "text": "29/21", + "index": 29021 + }, + "29022": { + "text": "29/22", + "index": 29022 + }, + "29023": { + "text": "29/23", + "index": 29023 + }, + "29024": { + "text": "29/24", + "index": 29024 + }, + "29025": { + "text": "29/25", + "index": 29025 + }, + "29026": { + "text": "29/26", + "index": 29026 + }, + "29027": { + "text": "29/27", + "index": 29027 + }, + "29028": { + "text": "29/28", + "index": 29028 + }, + "29029": { + "text": "29/29", + "index": 29029 + }, + "29030": { + "text": "29/30", + "index": 29030 + }, + "29031": { + "text": "29/31", + "index": 29031 + }, + "29032": { + "text": "29/32", + "index": 29032 + }, + "29033": { + "text": "29/33", + "index": 29033 + }, + "29034": { + "text": "29/34", + "index": 29034 + }, + "29035": { + "text": "29/35", + "index": 29035 + }, + "29036": { + "text": "29/36", + "index": 29036 + }, + "29037": { + "text": "29/37", + "index": 29037 + }, + "29038": { + "text": "29/38", + "index": 29038 + }, + "29039": { + "text": "29/39", + "index": 29039 + }, + "29040": { + "text": "29/40", + "index": 29040 + }, + "30000": { + "text": "30/0", + "index": 30000 + }, + "30001": { + "text": "30/1", + "index": 30001 + }, + "30002": { + "text": "30/2", + "index": 30002 + }, + "30003": { + "text": "30/3", + "index": 30003 + }, + "30004": { + "text": "30/4", + "index": 30004 + }, + "30005": { + "text": "30/5", + "index": 30005 + }, + "30006": { + "text": "30/6", + "index": 30006 + }, + "30007": { + "text": "30/7", + "index": 30007 + }, + "30008": { + "text": "30/8", + "index": 30008 + }, + "30009": { + "text": "30/9", + "index": 30009 + }, + "30010": { + "text": "30/10", + "index": 30010 + }, + "30011": { + "text": "30/11", + "index": 30011 + }, + "30012": { + "text": "30/12", + "index": 30012 + }, + "30013": { + "text": "30/13", + "index": 30013 + }, + "30014": { + "text": "30/14", + "index": 30014 + }, + "30015": { + "text": "30/15", + "index": 30015 + }, + "30016": { + "text": "30/16", + "index": 30016 + }, + "30017": { + "text": "30/17", + "index": 30017 + }, + "30018": { + "text": "30/18", + "index": 30018 + }, + "30019": { + "text": "30/19", + "index": 30019 + }, + "30020": { + "text": "30/20", + "index": 30020 + }, + "30021": { + "text": "30/21", + "index": 30021 + }, + "30022": { + "text": "30/22", + "index": 30022 + }, + "30023": { + "text": "30/23", + "index": 30023 + }, + "30024": { + "text": "30/24", + "index": 30024 + }, + "30025": { + "text": "30/25", + "index": 30025 + }, + "30026": { + "text": "30/26", + "index": 30026 + }, + "30027": { + "text": "30/27", + "index": 30027 + }, + "30028": { + "text": "30/28", + "index": 30028 + }, + "30029": { + "text": "30/29", + "index": 30029 + }, + "30030": { + "text": "30/30", + "index": 30030 + }, + "30031": { + "text": "30/31", + "index": 30031 + }, + "30032": { + "text": "30/32", + "index": 30032 + }, + "30033": { + "text": "30/33", + "index": 30033 + }, + "30034": { + "text": "30/34", + "index": 30034 + }, + "30035": { + "text": "30/35", + "index": 30035 + }, + "30036": { + "text": "30/36", + "index": 30036 + }, + "30037": { + "text": "30/37", + "index": 30037 + }, + "30038": { + "text": "30/38", + "index": 30038 + }, + "30039": { + "text": "30/39", + "index": 30039 + }, + "30040": { + "text": "30/40", + "index": 30040 + }, + "31000": { + "text": "31/0", + "index": 31000 + }, + "31001": { + "text": "31/1", + "index": 31001 + }, + "31002": { + "text": "31/2", + "index": 31002 + }, + "31003": { + "text": "31/3", + "index": 31003 + }, + "31004": { + "text": "31/4", + "index": 31004 + }, + "31005": { + "text": "31/5", + "index": 31005 + }, + "31006": { + "text": "31/6", + "index": 31006 + }, + "31007": { + "text": "31/7", + "index": 31007 + }, + "31008": { + "text": "31/8", + "index": 31008 + }, + "31009": { + "text": "31/9", + "index": 31009 + }, + "31010": { + "text": "31/10", + "index": 31010 + }, + "31011": { + "text": "31/11", + "index": 31011 + }, + "31012": { + "text": "31/12", + "index": 31012 + }, + "31013": { + "text": "31/13", + "index": 31013 + }, + "31014": { + "text": "31/14", + "index": 31014 + }, + "31015": { + "text": "31/15", + "index": 31015 + }, + "31016": { + "text": "31/16", + "index": 31016 + }, + "31017": { + "text": "31/17", + "index": 31017 + }, + "31018": { + "text": "31/18", + "index": 31018 + }, + "31019": { + "text": "31/19", + "index": 31019 + }, + "31020": { + "text": "31/20", + "index": 31020 + }, + "31021": { + "text": "31/21", + "index": 31021 + }, + "31022": { + "text": "31/22", + "index": 31022 + }, + "31023": { + "text": "31/23", + "index": 31023 + }, + "31024": { + "text": "31/24", + "index": 31024 + }, + "31025": { + "text": "31/25", + "index": 31025 + }, + "31026": { + "text": "31/26", + "index": 31026 + }, + "31027": { + "text": "31/27", + "index": 31027 + }, + "31028": { + "text": "31/28", + "index": 31028 + }, + "31029": { + "text": "31/29", + "index": 31029 + }, + "31030": { + "text": "31/30", + "index": 31030 + }, + "31031": { + "text": "31/31", + "index": 31031 + }, + "31032": { + "text": "31/32", + "index": 31032 + }, + "31033": { + "text": "31/33", + "index": 31033 + }, + "31034": { + "text": "31/34", + "index": 31034 + }, + "31035": { + "text": "31/35", + "index": 31035 + }, + "31036": { + "text": "31/36", + "index": 31036 + }, + "31037": { + "text": "31/37", + "index": 31037 + }, + "31038": { + "text": "31/38", + "index": 31038 + }, + "31039": { + "text": "31/39", + "index": 31039 + }, + "31040": { + "text": "31/40", + "index": 31040 + }, + "32000": { + "text": "32/0", + "index": 32000 + }, + "32001": { + "text": "32/1", + "index": 32001 + }, + "32002": { + "text": "32/2", + "index": 32002 + }, + "32003": { + "text": "32/3", + "index": 32003 + }, + "32004": { + "text": "32/4", + "index": 32004 + }, + "32005": { + "text": "32/5", + "index": 32005 + }, + "32006": { + "text": "32/6", + "index": 32006 + }, + "32007": { + "text": "32/7", + "index": 32007 + }, + "32008": { + "text": "32/8", + "index": 32008 + }, + "32009": { + "text": "32/9", + "index": 32009 + }, + "32010": { + "text": "32/10", + "index": 32010 + }, + "32011": { + "text": "32/11", + "index": 32011 + }, + "32012": { + "text": "32/12", + "index": 32012 + }, + "32013": { + "text": "32/13", + "index": 32013 + }, + "32014": { + "text": "32/14", + "index": 32014 + }, + "32015": { + "text": "32/15", + "index": 32015 + }, + "32016": { + "text": "32/16", + "index": 32016 + }, + "32017": { + "text": "32/17", + "index": 32017 + }, + "32018": { + "text": "32/18", + "index": 32018 + }, + "32019": { + "text": "32/19", + "index": 32019 + }, + "32020": { + "text": "32/20", + "index": 32020 + }, + "32021": { + "text": "32/21", + "index": 32021 + }, + "32022": { + "text": "32/22", + "index": 32022 + }, + "32023": { + "text": "32/23", + "index": 32023 + }, + "32024": { + "text": "32/24", + "index": 32024 + }, + "32025": { + "text": "32/25", + "index": 32025 + }, + "32026": { + "text": "32/26", + "index": 32026 + }, + "32027": { + "text": "32/27", + "index": 32027 + }, + "32028": { + "text": "32/28", + "index": 32028 + }, + "32029": { + "text": "32/29", + "index": 32029 + }, + "32030": { + "text": "32/30", + "index": 32030 + }, + "32031": { + "text": "32/31", + "index": 32031 + }, + "32032": { + "text": "32/32", + "index": 32032 + }, + "32033": { + "text": "32/33", + "index": 32033 + }, + "32034": { + "text": "32/34", + "index": 32034 + }, + "32035": { + "text": "32/35", + "index": 32035 + }, + "32036": { + "text": "32/36", + "index": 32036 + }, + "32037": { + "text": "32/37", + "index": 32037 + }, + "32038": { + "text": "32/38", + "index": 32038 + }, + "32039": { + "text": "32/39", + "index": 32039 + }, + "32040": { + "text": "32/40", + "index": 32040 + }, + "33000": { + "text": "33/0", + "index": 33000 + }, + "33001": { + "text": "33/1", + "index": 33001 + }, + "33002": { + "text": "33/2", + "index": 33002 + }, + "33003": { + "text": "33/3", + "index": 33003 + }, + "33004": { + "text": "33/4", + "index": 33004 + }, + "33005": { + "text": "33/5", + "index": 33005 + }, + "33006": { + "text": "33/6", + "index": 33006 + }, + "33007": { + "text": "33/7", + "index": 33007 + }, + "33008": { + "text": "33/8", + "index": 33008 + }, + "33009": { + "text": "33/9", + "index": 33009 + }, + "33010": { + "text": "33/10", + "index": 33010 + }, + "33011": { + "text": "33/11", + "index": 33011 + }, + "33012": { + "text": "33/12", + "index": 33012 + }, + "33013": { + "text": "33/13", + "index": 33013 + }, + "33014": { + "text": "33/14", + "index": 33014 + }, + "33015": { + "text": "33/15", + "index": 33015 + }, + "33016": { + "text": "33/16", + "index": 33016 + }, + "33017": { + "text": "33/17", + "index": 33017 + }, + "33018": { + "text": "33/18", + "index": 33018 + }, + "33019": { + "text": "33/19", + "index": 33019 + }, + "33020": { + "text": "33/20", + "index": 33020 + }, + "33021": { + "text": "33/21", + "index": 33021 + }, + "33022": { + "text": "33/22", + "index": 33022 + }, + "33023": { + "text": "33/23", + "index": 33023 + }, + "33024": { + "text": "33/24", + "index": 33024 + }, + "33025": { + "text": "33/25", + "index": 33025 + }, + "33026": { + "text": "33/26", + "index": 33026 + }, + "33027": { + "text": "33/27", + "index": 33027 + }, + "33028": { + "text": "33/28", + "index": 33028 + }, + "33029": { + "text": "33/29", + "index": 33029 + }, + "33030": { + "text": "33/30", + "index": 33030 + }, + "33031": { + "text": "33/31", + "index": 33031 + }, + "33032": { + "text": "33/32", + "index": 33032 + }, + "33033": { + "text": "33/33", + "index": 33033 + }, + "33034": { + "text": "33/34", + "index": 33034 + }, + "33035": { + "text": "33/35", + "index": 33035 + }, + "33036": { + "text": "33/36", + "index": 33036 + }, + "33037": { + "text": "33/37", + "index": 33037 + }, + "33038": { + "text": "33/38", + "index": 33038 + }, + "33039": { + "text": "33/39", + "index": 33039 + }, + "33040": { + "text": "33/40", + "index": 33040 + }, + "34000": { + "text": "34/0", + "index": 34000 + }, + "34001": { + "text": "34/1", + "index": 34001 + }, + "34002": { + "text": "34/2", + "index": 34002 + }, + "34003": { + "text": "34/3", + "index": 34003 + }, + "34004": { + "text": "34/4", + "index": 34004 + }, + "34005": { + "text": "34/5", + "index": 34005 + }, + "34006": { + "text": "34/6", + "index": 34006 + }, + "34007": { + "text": "34/7", + "index": 34007 + }, + "34008": { + "text": "34/8", + "index": 34008 + }, + "34009": { + "text": "34/9", + "index": 34009 + }, + "34010": { + "text": "34/10", + "index": 34010 + }, + "34011": { + "text": "34/11", + "index": 34011 + }, + "34012": { + "text": "34/12", + "index": 34012 + }, + "34013": { + "text": "34/13", + "index": 34013 + }, + "34014": { + "text": "34/14", + "index": 34014 + }, + "34015": { + "text": "34/15", + "index": 34015 + }, + "34016": { + "text": "34/16", + "index": 34016 + }, + "34017": { + "text": "34/17", + "index": 34017 + }, + "34018": { + "text": "34/18", + "index": 34018 + }, + "34019": { + "text": "34/19", + "index": 34019 + }, + "34020": { + "text": "34/20", + "index": 34020 + }, + "34021": { + "text": "34/21", + "index": 34021 + }, + "34022": { + "text": "34/22", + "index": 34022 + }, + "34023": { + "text": "34/23", + "index": 34023 + }, + "34024": { + "text": "34/24", + "index": 34024 + }, + "34025": { + "text": "34/25", + "index": 34025 + }, + "34026": { + "text": "34/26", + "index": 34026 + }, + "34027": { + "text": "34/27", + "index": 34027 + }, + "34028": { + "text": "34/28", + "index": 34028 + }, + "34029": { + "text": "34/29", + "index": 34029 + }, + "34030": { + "text": "34/30", + "index": 34030 + }, + "34031": { + "text": "34/31", + "index": 34031 + }, + "34032": { + "text": "34/32", + "index": 34032 + }, + "34033": { + "text": "34/33", + "index": 34033 + }, + "34034": { + "text": "34/34", + "index": 34034 + }, + "34035": { + "text": "34/35", + "index": 34035 + }, + "34036": { + "text": "34/36", + "index": 34036 + }, + "34037": { + "text": "34/37", + "index": 34037 + }, + "34038": { + "text": "34/38", + "index": 34038 + }, + "34039": { + "text": "34/39", + "index": 34039 + }, + "34040": { + "text": "34/40", + "index": 34040 + }, + "35000": { + "text": "35/0", + "index": 35000 + }, + "35001": { + "text": "35/1", + "index": 35001 + }, + "35002": { + "text": "35/2", + "index": 35002 + }, + "35003": { + "text": "35/3", + "index": 35003 + }, + "35004": { + "text": "35/4", + "index": 35004 + }, + "35005": { + "text": "35/5", + "index": 35005 + }, + "35006": { + "text": "35/6", + "index": 35006 + }, + "35007": { + "text": "35/7", + "index": 35007 + }, + "35008": { + "text": "35/8", + "index": 35008 + }, + "35009": { + "text": "35/9", + "index": 35009 + }, + "35010": { + "text": "35/10", + "index": 35010 + }, + "35011": { + "text": "35/11", + "index": 35011 + }, + "35012": { + "text": "35/12", + "index": 35012 + }, + "35013": { + "text": "35/13", + "index": 35013 + }, + "35014": { + "text": "35/14", + "index": 35014 + }, + "35015": { + "text": "35/15", + "index": 35015 + }, + "35016": { + "text": "35/16", + "index": 35016 + }, + "35017": { + "text": "35/17", + "index": 35017 + }, + "35018": { + "text": "35/18", + "index": 35018 + }, + "35019": { + "text": "35/19", + "index": 35019 + }, + "35020": { + "text": "35/20", + "index": 35020 + }, + "35021": { + "text": "35/21", + "index": 35021 + }, + "35022": { + "text": "35/22", + "index": 35022 + }, + "35023": { + "text": "35/23", + "index": 35023 + }, + "35024": { + "text": "35/24", + "index": 35024 + }, + "35025": { + "text": "35/25", + "index": 35025 + }, + "35026": { + "text": "35/26", + "index": 35026 + }, + "35027": { + "text": "35/27", + "index": 35027 + }, + "35028": { + "text": "35/28", + "index": 35028 + }, + "35029": { + "text": "35/29", + "index": 35029 + }, + "35030": { + "text": "35/30", + "index": 35030 + }, + "35031": { + "text": "35/31", + "index": 35031 + }, + "35032": { + "text": "35/32", + "index": 35032 + }, + "35033": { + "text": "35/33", + "index": 35033 + }, + "35034": { + "text": "35/34", + "index": 35034 + }, + "35035": { + "text": "35/35", + "index": 35035 + }, + "35036": { + "text": "35/36", + "index": 35036 + }, + "35037": { + "text": "35/37", + "index": 35037 + }, + "35038": { + "text": "35/38", + "index": 35038 + }, + "35039": { + "text": "35/39", + "index": 35039 + }, + "35040": { + "text": "35/40", + "index": 35040 + }, + "36000": { + "text": "36/0", + "index": 36000 + }, + "36001": { + "text": "36/1", + "index": 36001 + }, + "36002": { + "text": "36/2", + "index": 36002 + }, + "36003": { + "text": "36/3", + "index": 36003 + }, + "36004": { + "text": "36/4", + "index": 36004 + }, + "36005": { + "text": "36/5", + "index": 36005 + }, + "36006": { + "text": "36/6", + "index": 36006 + }, + "36007": { + "text": "36/7", + "index": 36007 + }, + "36008": { + "text": "36/8", + "index": 36008 + }, + "36009": { + "text": "36/9", + "index": 36009 + }, + "36010": { + "text": "36/10", + "index": 36010 + }, + "36011": { + "text": "36/11", + "index": 36011 + }, + "36012": { + "text": "36/12", + "index": 36012 + }, + "36013": { + "text": "36/13", + "index": 36013 + }, + "36014": { + "text": "36/14", + "index": 36014 + }, + "36015": { + "text": "36/15", + "index": 36015 + }, + "36016": { + "text": "36/16", + "index": 36016 + }, + "36017": { + "text": "36/17", + "index": 36017 + }, + "36018": { + "text": "36/18", + "index": 36018 + }, + "36019": { + "text": "36/19", + "index": 36019 + }, + "36020": { + "text": "36/20", + "index": 36020 + }, + "36021": { + "text": "36/21", + "index": 36021 + }, + "36022": { + "text": "36/22", + "index": 36022 + }, + "36023": { + "text": "36/23", + "index": 36023 + }, + "36024": { + "text": "36/24", + "index": 36024 + }, + "36025": { + "text": "36/25", + "index": 36025 + }, + "36026": { + "text": "36/26", + "index": 36026 + }, + "36027": { + "text": "36/27", + "index": 36027 + }, + "36028": { + "text": "36/28", + "index": 36028 + }, + "36029": { + "text": "36/29", + "index": 36029 + }, + "36030": { + "text": "36/30", + "index": 36030 + }, + "36031": { + "text": "36/31", + "index": 36031 + }, + "36032": { + "text": "36/32", + "index": 36032 + }, + "36033": { + "text": "36/33", + "index": 36033 + }, + "36034": { + "text": "36/34", + "index": 36034 + }, + "36035": { + "text": "36/35", + "index": 36035 + }, + "36036": { + "text": "36/36", + "index": 36036 + }, + "36037": { + "text": "36/37", + "index": 36037 + }, + "36038": { + "text": "36/38", + "index": 36038 + }, + "36039": { + "text": "36/39", + "index": 36039 + }, + "36040": { + "text": "36/40", + "index": 36040 + }, + "37000": { + "text": "37/0", + "index": 37000 + }, + "37001": { + "text": "37/1", + "index": 37001 + }, + "37002": { + "text": "37/2", + "index": 37002 + }, + "37003": { + "text": "37/3", + "index": 37003 + }, + "37004": { + "text": "37/4", + "index": 37004 + }, + "37005": { + "text": "37/5", + "index": 37005 + }, + "37006": { + "text": "37/6", + "index": 37006 + }, + "37007": { + "text": "37/7", + "index": 37007 + }, + "37008": { + "text": "37/8", + "index": 37008 + }, + "37009": { + "text": "37/9", + "index": 37009 + }, + "37010": { + "text": "37/10", + "index": 37010 + }, + "37011": { + "text": "37/11", + "index": 37011 + }, + "37012": { + "text": "37/12", + "index": 37012 + }, + "37013": { + "text": "37/13", + "index": 37013 + }, + "37014": { + "text": "37/14", + "index": 37014 + }, + "37015": { + "text": "37/15", + "index": 37015 + }, + "37016": { + "text": "37/16", + "index": 37016 + }, + "37017": { + "text": "37/17", + "index": 37017 + }, + "37018": { + "text": "37/18", + "index": 37018 + }, + "37019": { + "text": "37/19", + "index": 37019 + }, + "37020": { + "text": "37/20", + "index": 37020 + }, + "37021": { + "text": "37/21", + "index": 37021 + }, + "37022": { + "text": "37/22", + "index": 37022 + }, + "37023": { + "text": "37/23", + "index": 37023 + }, + "37024": { + "text": "37/24", + "index": 37024 + }, + "37025": { + "text": "37/25", + "index": 37025 + }, + "37026": { + "text": "37/26", + "index": 37026 + }, + "37027": { + "text": "37/27", + "index": 37027 + }, + "37028": { + "text": "37/28", + "index": 37028 + }, + "37029": { + "text": "37/29", + "index": 37029 + }, + "37030": { + "text": "37/30", + "index": 37030 + }, + "37031": { + "text": "37/31", + "index": 37031 + }, + "37032": { + "text": "37/32", + "index": 37032 + }, + "37033": { + "text": "37/33", + "index": 37033 + }, + "37034": { + "text": "37/34", + "index": 37034 + }, + "37035": { + "text": "37/35", + "index": 37035 + }, + "37036": { + "text": "37/36", + "index": 37036 + }, + "37037": { + "text": "37/37", + "index": 37037 + }, + "37038": { + "text": "37/38", + "index": 37038 + }, + "37039": { + "text": "37/39", + "index": 37039 + }, + "37040": { + "text": "37/40", + "index": 37040 + }, + "38000": { + "text": "38/0", + "index": 38000 + }, + "38001": { + "text": "38/1", + "index": 38001 + }, + "38002": { + "text": "38/2", + "index": 38002 + }, + "38003": { + "text": "38/3", + "index": 38003 + }, + "38004": { + "text": "38/4", + "index": 38004 + }, + "38005": { + "text": "38/5", + "index": 38005 + }, + "38006": { + "text": "38/6", + "index": 38006 + }, + "38007": { + "text": "38/7", + "index": 38007 + }, + "38008": { + "text": "38/8", + "index": 38008 + }, + "38009": { + "text": "38/9", + "index": 38009 + }, + "38010": { + "text": "38/10", + "index": 38010 + }, + "38011": { + "text": "38/11", + "index": 38011 + }, + "38012": { + "text": "38/12", + "index": 38012 + }, + "38013": { + "text": "38/13", + "index": 38013 + }, + "38014": { + "text": "38/14", + "index": 38014 + }, + "38015": { + "text": "38/15", + "index": 38015 + }, + "38016": { + "text": "38/16", + "index": 38016 + }, + "38017": { + "text": "38/17", + "index": 38017 + }, + "38018": { + "text": "38/18", + "index": 38018 + }, + "38019": { + "text": "38/19", + "index": 38019 + }, + "38020": { + "text": "38/20", + "index": 38020 + }, + "38021": { + "text": "38/21", + "index": 38021 + }, + "38022": { + "text": "38/22", + "index": 38022 + }, + "38023": { + "text": "38/23", + "index": 38023 + }, + "38024": { + "text": "38/24", + "index": 38024 + }, + "38025": { + "text": "38/25", + "index": 38025 + }, + "38026": { + "text": "38/26", + "index": 38026 + }, + "38027": { + "text": "38/27", + "index": 38027 + }, + "38028": { + "text": "38/28", + "index": 38028 + }, + "38029": { + "text": "38/29", + "index": 38029 + }, + "38030": { + "text": "38/30", + "index": 38030 + }, + "38031": { + "text": "38/31", + "index": 38031 + }, + "38032": { + "text": "38/32", + "index": 38032 + }, + "38033": { + "text": "38/33", + "index": 38033 + }, + "38034": { + "text": "38/34", + "index": 38034 + }, + "38035": { + "text": "38/35", + "index": 38035 + }, + "38036": { + "text": "38/36", + "index": 38036 + }, + "38037": { + "text": "38/37", + "index": 38037 + }, + "38038": { + "text": "38/38", + "index": 38038 + }, + "38039": { + "text": "38/39", + "index": 38039 + }, + "38040": { + "text": "38/40", + "index": 38040 + }, + "39000": { + "text": "39/0", + "index": 39000 + }, + "39001": { + "text": "39/1", + "index": 39001 + }, + "39002": { + "text": "39/2", + "index": 39002 + }, + "39003": { + "text": "39/3", + "index": 39003 + }, + "39004": { + "text": "39/4", + "index": 39004 + }, + "39005": { + "text": "39/5", + "index": 39005 + }, + "39006": { + "text": "39/6", + "index": 39006 + }, + "39007": { + "text": "39/7", + "index": 39007 + }, + "39008": { + "text": "39/8", + "index": 39008 + }, + "39009": { + "text": "39/9", + "index": 39009 + }, + "39010": { + "text": "39/10", + "index": 39010 + }, + "39011": { + "text": "39/11", + "index": 39011 + }, + "39012": { + "text": "39/12", + "index": 39012 + }, + "39013": { + "text": "39/13", + "index": 39013 + }, + "39014": { + "text": "39/14", + "index": 39014 + }, + "39015": { + "text": "39/15", + "index": 39015 + }, + "39016": { + "text": "39/16", + "index": 39016 + }, + "39017": { + "text": "39/17", + "index": 39017 + }, + "39018": { + "text": "39/18", + "index": 39018 + }, + "39019": { + "text": "39/19", + "index": 39019 + }, + "39020": { + "text": "39/20", + "index": 39020 + }, + "39021": { + "text": "39/21", + "index": 39021 + }, + "39022": { + "text": "39/22", + "index": 39022 + }, + "39023": { + "text": "39/23", + "index": 39023 + }, + "39024": { + "text": "39/24", + "index": 39024 + }, + "39025": { + "text": "39/25", + "index": 39025 + }, + "39026": { + "text": "39/26", + "index": 39026 + }, + "39027": { + "text": "39/27", + "index": 39027 + }, + "39028": { + "text": "39/28", + "index": 39028 + }, + "39029": { + "text": "39/29", + "index": 39029 + }, + "39030": { + "text": "39/30", + "index": 39030 + }, + "39031": { + "text": "39/31", + "index": 39031 + }, + "39032": { + "text": "39/32", + "index": 39032 + }, + "39033": { + "text": "39/33", + "index": 39033 + }, + "39034": { + "text": "39/34", + "index": 39034 + }, + "39035": { + "text": "39/35", + "index": 39035 + }, + "39036": { + "text": "39/36", + "index": 39036 + }, + "39037": { + "text": "39/37", + "index": 39037 + }, + "39038": { + "text": "39/38", + "index": 39038 + }, + "39039": { + "text": "39/39", + "index": 39039 + }, + "39040": { + "text": "39/40", + "index": 39040 + }, + "40000": { + "text": "40/0", + "index": 40000 + }, + "40001": { + "text": "40/1", + "index": 40001 + }, + "40002": { + "text": "40/2", + "index": 40002 + }, + "40003": { + "text": "40/3", + "index": 40003 + }, + "40004": { + "text": "40/4", + "index": 40004 + }, + "40005": { + "text": "40/5", + "index": 40005 + }, + "40006": { + "text": "40/6", + "index": 40006 + }, + "40007": { + "text": "40/7", + "index": 40007 + }, + "40008": { + "text": "40/8", + "index": 40008 + }, + "40009": { + "text": "40/9", + "index": 40009 + }, + "40010": { + "text": "40/10", + "index": 40010 + }, + "40011": { + "text": "40/11", + "index": 40011 + }, + "40012": { + "text": "40/12", + "index": 40012 + }, + "40013": { + "text": "40/13", + "index": 40013 + }, + "40014": { + "text": "40/14", + "index": 40014 + }, + "40015": { + "text": "40/15", + "index": 40015 + }, + "40016": { + "text": "40/16", + "index": 40016 + }, + "40017": { + "text": "40/17", + "index": 40017 + }, + "40018": { + "text": "40/18", + "index": 40018 + }, + "40019": { + "text": "40/19", + "index": 40019 + }, + "40020": { + "text": "40/20", + "index": 40020 + }, + "40021": { + "text": "40/21", + "index": 40021 + }, + "40022": { + "text": "40/22", + "index": 40022 + }, + "40023": { + "text": "40/23", + "index": 40023 + }, + "40024": { + "text": "40/24", + "index": 40024 + }, + "40025": { + "text": "40/25", + "index": 40025 + }, + "40026": { + "text": "40/26", + "index": 40026 + }, + "40027": { + "text": "40/27", + "index": 40027 + }, + "40028": { + "text": "40/28", + "index": 40028 + }, + "40029": { + "text": "40/29", + "index": 40029 + }, + "40030": { + "text": "40/30", + "index": 40030 + }, + "40031": { + "text": "40/31", + "index": 40031 + }, + "40032": { + "text": "40/32", + "index": 40032 + }, + "40033": { + "text": "40/33", + "index": 40033 + }, + "40034": { + "text": "40/34", + "index": 40034 + }, + "40035": { + "text": "40/35", + "index": 40035 + }, + "40036": { + "text": "40/36", + "index": 40036 + }, + "40037": { + "text": "40/37", + "index": 40037 + }, + "40038": { + "text": "40/38", + "index": 40038 + }, + "40039": { + "text": "40/39", + "index": 40039 + }, + "40040": { + "text": "40/40", + "index": 40040 + } + } + } + ] + }, + { + "id": "decimals", + "value": 0 + }, + { + "id": "unit", + "value": "none" + }, + { + "id": "color", + "value": { + "mode": "fixed", + "fixedColor": "text" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Health" + }, + "properties": [ + { + "id": "color", + "value": { + "mode": "thresholds" + } + }, + { + "id": "thresholds", + "value": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "green", + "value": 100 + } + ] + } + }, + { + "id": "unit", + "value": "percent" + } + ] + } + ] + }, + "gridPos": { + "h": 4, + "w": 4.8, + "x": 0, + "y": 1 + }, + "id": 5, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "center", + "orientation": "auto", + "percentChangeColorMode": "standard", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "value_and_name", + "wideLayout": true, + "text": { + "valueSize": 24 + } + }, + "pluginVersion": "11.6.4", + "targets": [ + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}) == 1)) * 1000 + (count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}))))", + "instant": true, + "legendFormat": "Alive/Expected", + "range": false, + "refId": "A" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\"}))), 1)) * 100", + "instant": true, + "legendFormat": "Health", + "range": false, + "refId": "B" + } + ], + "title": "\ud83e\udded PMM", + "type": "stat" + }, + { + "datasource": "Metrics", + "description": "PostgreSQL instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", + "fieldConfig": { + "defaults": { + "color": { + "fixedColor": "text", + "mode": "fixed" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Alive/Expected" + }, + "properties": [ + { + "id": "mappings", + "value": [ + { + "type": "value", + "options": { + "0": { + "text": "0/0", + "index": 0 + }, + "1": { + "text": "0/1", + "index": 1 + }, + "2": { + "text": "0/2", + "index": 2 + }, + "3": { + "text": "0/3", + "index": 3 + }, + "4": { + "text": "0/4", + "index": 4 + }, + "5": { + "text": "0/5", + "index": 5 + }, + "6": { + "text": "0/6", + "index": 6 + }, + "7": { + "text": "0/7", + "index": 7 + }, + "8": { + "text": "0/8", + "index": 8 + }, + "9": { + "text": "0/9", + "index": 9 + }, + "10": { + "text": "0/10", + "index": 10 + }, + "11": { + "text": "0/11", + "index": 11 + }, + "12": { + "text": "0/12", + "index": 12 + }, + "13": { + "text": "0/13", + "index": 13 + }, + "14": { + "text": "0/14", + "index": 14 + }, + "15": { + "text": "0/15", + "index": 15 + }, + "16": { + "text": "0/16", + "index": 16 + }, + "17": { + "text": "0/17", + "index": 17 + }, + "18": { + "text": "0/18", + "index": 18 + }, + "19": { + "text": "0/19", + "index": 19 + }, + "20": { + "text": "0/20", + "index": 20 + }, + "21": { + "text": "0/21", + "index": 21 + }, + "22": { + "text": "0/22", + "index": 22 + }, + "23": { + "text": "0/23", + "index": 23 + }, + "24": { + "text": "0/24", + "index": 24 + }, + "25": { + "text": "0/25", + "index": 25 + }, + "26": { + "text": "0/26", + "index": 26 + }, + "27": { + "text": "0/27", + "index": 27 + }, + "28": { + "text": "0/28", + "index": 28 + }, + "29": { + "text": "0/29", + "index": 29 + }, + "30": { + "text": "0/30", + "index": 30 + }, + "31": { + "text": "0/31", + "index": 31 + }, + "32": { + "text": "0/32", + "index": 32 + }, + "33": { + "text": "0/33", + "index": 33 + }, + "34": { + "text": "0/34", + "index": 34 + }, + "35": { + "text": "0/35", + "index": 35 + }, + "36": { + "text": "0/36", + "index": 36 + }, + "37": { + "text": "0/37", + "index": 37 + }, + "38": { + "text": "0/38", + "index": 38 + }, + "39": { + "text": "0/39", + "index": 39 + }, + "40": { + "text": "0/40", + "index": 40 + }, + "1000": { + "text": "1/0", + "index": 1000 + }, + "1001": { + "text": "1/1", + "index": 1001 + }, + "1002": { + "text": "1/2", + "index": 1002 + }, + "1003": { + "text": "1/3", + "index": 1003 + }, + "1004": { + "text": "1/4", + "index": 1004 + }, + "1005": { + "text": "1/5", + "index": 1005 + }, + "1006": { + "text": "1/6", + "index": 1006 + }, + "1007": { + "text": "1/7", + "index": 1007 + }, + "1008": { + "text": "1/8", + "index": 1008 + }, + "1009": { + "text": "1/9", + "index": 1009 + }, + "1010": { + "text": "1/10", + "index": 1010 + }, + "1011": { + "text": "1/11", + "index": 1011 + }, + "1012": { + "text": "1/12", + "index": 1012 + }, + "1013": { + "text": "1/13", + "index": 1013 + }, + "1014": { + "text": "1/14", + "index": 1014 + }, + "1015": { + "text": "1/15", + "index": 1015 + }, + "1016": { + "text": "1/16", + "index": 1016 + }, + "1017": { + "text": "1/17", + "index": 1017 + }, + "1018": { + "text": "1/18", + "index": 1018 + }, + "1019": { + "text": "1/19", + "index": 1019 + }, + "1020": { + "text": "1/20", + "index": 1020 + }, + "1021": { + "text": "1/21", + "index": 1021 + }, + "1022": { + "text": "1/22", + "index": 1022 + }, + "1023": { + "text": "1/23", + "index": 1023 + }, + "1024": { + "text": "1/24", + "index": 1024 + }, + "1025": { + "text": "1/25", + "index": 1025 + }, + "1026": { + "text": "1/26", + "index": 1026 + }, + "1027": { + "text": "1/27", + "index": 1027 + }, + "1028": { + "text": "1/28", + "index": 1028 + }, + "1029": { + "text": "1/29", + "index": 1029 + }, + "1030": { + "text": "1/30", + "index": 1030 + }, + "1031": { + "text": "1/31", + "index": 1031 + }, + "1032": { + "text": "1/32", + "index": 1032 + }, + "1033": { + "text": "1/33", + "index": 1033 + }, + "1034": { + "text": "1/34", + "index": 1034 + }, + "1035": { + "text": "1/35", + "index": 1035 + }, + "1036": { + "text": "1/36", + "index": 1036 + }, + "1037": { + "text": "1/37", + "index": 1037 + }, + "1038": { + "text": "1/38", + "index": 1038 + }, + "1039": { + "text": "1/39", + "index": 1039 + }, + "1040": { + "text": "1/40", + "index": 1040 + }, + "2000": { + "text": "2/0", + "index": 2000 + }, + "2001": { + "text": "2/1", + "index": 2001 + }, + "2002": { + "text": "2/2", + "index": 2002 + }, + "2003": { + "text": "2/3", + "index": 2003 + }, + "2004": { + "text": "2/4", + "index": 2004 + }, + "2005": { + "text": "2/5", + "index": 2005 + }, + "2006": { + "text": "2/6", + "index": 2006 + }, + "2007": { + "text": "2/7", + "index": 2007 + }, + "2008": { + "text": "2/8", + "index": 2008 + }, + "2009": { + "text": "2/9", + "index": 2009 + }, + "2010": { + "text": "2/10", + "index": 2010 + }, + "2011": { + "text": "2/11", + "index": 2011 + }, + "2012": { + "text": "2/12", + "index": 2012 + }, + "2013": { + "text": "2/13", + "index": 2013 + }, + "2014": { + "text": "2/14", + "index": 2014 + }, + "2015": { + "text": "2/15", + "index": 2015 + }, + "2016": { + "text": "2/16", + "index": 2016 + }, + "2017": { + "text": "2/17", + "index": 2017 + }, + "2018": { + "text": "2/18", + "index": 2018 + }, + "2019": { + "text": "2/19", + "index": 2019 + }, + "2020": { + "text": "2/20", + "index": 2020 + }, + "2021": { + "text": "2/21", + "index": 2021 + }, + "2022": { + "text": "2/22", + "index": 2022 + }, + "2023": { + "text": "2/23", + "index": 2023 + }, + "2024": { + "text": "2/24", + "index": 2024 + }, + "2025": { + "text": "2/25", + "index": 2025 + }, + "2026": { + "text": "2/26", + "index": 2026 + }, + "2027": { + "text": "2/27", + "index": 2027 + }, + "2028": { + "text": "2/28", + "index": 2028 + }, + "2029": { + "text": "2/29", + "index": 2029 + }, + "2030": { + "text": "2/30", + "index": 2030 + }, + "2031": { + "text": "2/31", + "index": 2031 + }, + "2032": { + "text": "2/32", + "index": 2032 + }, + "2033": { + "text": "2/33", + "index": 2033 + }, + "2034": { + "text": "2/34", + "index": 2034 + }, + "2035": { + "text": "2/35", + "index": 2035 + }, + "2036": { + "text": "2/36", + "index": 2036 + }, + "2037": { + "text": "2/37", + "index": 2037 + }, + "2038": { + "text": "2/38", + "index": 2038 + }, + "2039": { + "text": "2/39", + "index": 2039 + }, + "2040": { + "text": "2/40", + "index": 2040 + }, + "3000": { + "text": "3/0", + "index": 3000 + }, + "3001": { + "text": "3/1", + "index": 3001 + }, + "3002": { + "text": "3/2", + "index": 3002 + }, + "3003": { + "text": "3/3", + "index": 3003 + }, + "3004": { + "text": "3/4", + "index": 3004 + }, + "3005": { + "text": "3/5", + "index": 3005 + }, + "3006": { + "text": "3/6", + "index": 3006 + }, + "3007": { + "text": "3/7", + "index": 3007 + }, + "3008": { + "text": "3/8", + "index": 3008 + }, + "3009": { + "text": "3/9", + "index": 3009 + }, + "3010": { + "text": "3/10", + "index": 3010 + }, + "3011": { + "text": "3/11", + "index": 3011 + }, + "3012": { + "text": "3/12", + "index": 3012 + }, + "3013": { + "text": "3/13", + "index": 3013 + }, + "3014": { + "text": "3/14", + "index": 3014 + }, + "3015": { + "text": "3/15", + "index": 3015 + }, + "3016": { + "text": "3/16", + "index": 3016 + }, + "3017": { + "text": "3/17", + "index": 3017 + }, + "3018": { + "text": "3/18", + "index": 3018 + }, + "3019": { + "text": "3/19", + "index": 3019 + }, + "3020": { + "text": "3/20", + "index": 3020 + }, + "3021": { + "text": "3/21", + "index": 3021 + }, + "3022": { + "text": "3/22", + "index": 3022 + }, + "3023": { + "text": "3/23", + "index": 3023 + }, + "3024": { + "text": "3/24", + "index": 3024 + }, + "3025": { + "text": "3/25", + "index": 3025 + }, + "3026": { + "text": "3/26", + "index": 3026 + }, + "3027": { + "text": "3/27", + "index": 3027 + }, + "3028": { + "text": "3/28", + "index": 3028 + }, + "3029": { + "text": "3/29", + "index": 3029 + }, + "3030": { + "text": "3/30", + "index": 3030 + }, + "3031": { + "text": "3/31", + "index": 3031 + }, + "3032": { + "text": "3/32", + "index": 3032 + }, + "3033": { + "text": "3/33", + "index": 3033 + }, + "3034": { + "text": "3/34", + "index": 3034 + }, + "3035": { + "text": "3/35", + "index": 3035 + }, + "3036": { + "text": "3/36", + "index": 3036 + }, + "3037": { + "text": "3/37", + "index": 3037 + }, + "3038": { + "text": "3/38", + "index": 3038 + }, + "3039": { + "text": "3/39", + "index": 3039 + }, + "3040": { + "text": "3/40", + "index": 3040 + }, + "4000": { + "text": "4/0", + "index": 4000 + }, + "4001": { + "text": "4/1", + "index": 4001 + }, + "4002": { + "text": "4/2", + "index": 4002 + }, + "4003": { + "text": "4/3", + "index": 4003 + }, + "4004": { + "text": "4/4", + "index": 4004 + }, + "4005": { + "text": "4/5", + "index": 4005 + }, + "4006": { + "text": "4/6", + "index": 4006 + }, + "4007": { + "text": "4/7", + "index": 4007 + }, + "4008": { + "text": "4/8", + "index": 4008 + }, + "4009": { + "text": "4/9", + "index": 4009 + }, + "4010": { + "text": "4/10", + "index": 4010 + }, + "4011": { + "text": "4/11", + "index": 4011 + }, + "4012": { + "text": "4/12", + "index": 4012 + }, + "4013": { + "text": "4/13", + "index": 4013 + }, + "4014": { + "text": "4/14", + "index": 4014 + }, + "4015": { + "text": "4/15", + "index": 4015 + }, + "4016": { + "text": "4/16", + "index": 4016 + }, + "4017": { + "text": "4/17", + "index": 4017 + }, + "4018": { + "text": "4/18", + "index": 4018 + }, + "4019": { + "text": "4/19", + "index": 4019 + }, + "4020": { + "text": "4/20", + "index": 4020 + }, + "4021": { + "text": "4/21", + "index": 4021 + }, + "4022": { + "text": "4/22", + "index": 4022 + }, + "4023": { + "text": "4/23", + "index": 4023 + }, + "4024": { + "text": "4/24", + "index": 4024 + }, + "4025": { + "text": "4/25", + "index": 4025 + }, + "4026": { + "text": "4/26", + "index": 4026 + }, + "4027": { + "text": "4/27", + "index": 4027 + }, + "4028": { + "text": "4/28", + "index": 4028 + }, + "4029": { + "text": "4/29", + "index": 4029 + }, + "4030": { + "text": "4/30", + "index": 4030 + }, + "4031": { + "text": "4/31", + "index": 4031 + }, + "4032": { + "text": "4/32", + "index": 4032 + }, + "4033": { + "text": "4/33", + "index": 4033 + }, + "4034": { + "text": "4/34", + "index": 4034 + }, + "4035": { + "text": "4/35", + "index": 4035 + }, + "4036": { + "text": "4/36", + "index": 4036 + }, + "4037": { + "text": "4/37", + "index": 4037 + }, + "4038": { + "text": "4/38", + "index": 4038 + }, + "4039": { + "text": "4/39", + "index": 4039 + }, + "4040": { + "text": "4/40", + "index": 4040 + }, + "5000": { + "text": "5/0", + "index": 5000 + }, + "5001": { + "text": "5/1", + "index": 5001 + }, + "5002": { + "text": "5/2", + "index": 5002 + }, + "5003": { + "text": "5/3", + "index": 5003 + }, + "5004": { + "text": "5/4", + "index": 5004 + }, + "5005": { + "text": "5/5", + "index": 5005 + }, + "5006": { + "text": "5/6", + "index": 5006 + }, + "5007": { + "text": "5/7", + "index": 5007 + }, + "5008": { + "text": "5/8", + "index": 5008 + }, + "5009": { + "text": "5/9", + "index": 5009 + }, + "5010": { + "text": "5/10", + "index": 5010 + }, + "5011": { + "text": "5/11", + "index": 5011 + }, + "5012": { + "text": "5/12", + "index": 5012 + }, + "5013": { + "text": "5/13", + "index": 5013 + }, + "5014": { + "text": "5/14", + "index": 5014 + }, + "5015": { + "text": "5/15", + "index": 5015 + }, + "5016": { + "text": "5/16", + "index": 5016 + }, + "5017": { + "text": "5/17", + "index": 5017 + }, + "5018": { + "text": "5/18", + "index": 5018 + }, + "5019": { + "text": "5/19", + "index": 5019 + }, + "5020": { + "text": "5/20", + "index": 5020 + }, + "5021": { + "text": "5/21", + "index": 5021 + }, + "5022": { + "text": "5/22", + "index": 5022 + }, + "5023": { + "text": "5/23", + "index": 5023 + }, + "5024": { + "text": "5/24", + "index": 5024 + }, + "5025": { + "text": "5/25", + "index": 5025 + }, + "5026": { + "text": "5/26", + "index": 5026 + }, + "5027": { + "text": "5/27", + "index": 5027 + }, + "5028": { + "text": "5/28", + "index": 5028 + }, + "5029": { + "text": "5/29", + "index": 5029 + }, + "5030": { + "text": "5/30", + "index": 5030 + }, + "5031": { + "text": "5/31", + "index": 5031 + }, + "5032": { + "text": "5/32", + "index": 5032 + }, + "5033": { + "text": "5/33", + "index": 5033 + }, + "5034": { + "text": "5/34", + "index": 5034 + }, + "5035": { + "text": "5/35", + "index": 5035 + }, + "5036": { + "text": "5/36", + "index": 5036 + }, + "5037": { + "text": "5/37", + "index": 5037 + }, + "5038": { + "text": "5/38", + "index": 5038 + }, + "5039": { + "text": "5/39", + "index": 5039 + }, + "5040": { + "text": "5/40", + "index": 5040 + }, + "6000": { + "text": "6/0", + "index": 6000 + }, + "6001": { + "text": "6/1", + "index": 6001 + }, + "6002": { + "text": "6/2", + "index": 6002 + }, + "6003": { + "text": "6/3", + "index": 6003 + }, + "6004": { + "text": "6/4", + "index": 6004 + }, + "6005": { + "text": "6/5", + "index": 6005 + }, + "6006": { + "text": "6/6", + "index": 6006 + }, + "6007": { + "text": "6/7", + "index": 6007 + }, + "6008": { + "text": "6/8", + "index": 6008 + }, + "6009": { + "text": "6/9", + "index": 6009 + }, + "6010": { + "text": "6/10", + "index": 6010 + }, + "6011": { + "text": "6/11", + "index": 6011 + }, + "6012": { + "text": "6/12", + "index": 6012 + }, + "6013": { + "text": "6/13", + "index": 6013 + }, + "6014": { + "text": "6/14", + "index": 6014 + }, + "6015": { + "text": "6/15", + "index": 6015 + }, + "6016": { + "text": "6/16", + "index": 6016 + }, + "6017": { + "text": "6/17", + "index": 6017 + }, + "6018": { + "text": "6/18", + "index": 6018 + }, + "6019": { + "text": "6/19", + "index": 6019 + }, + "6020": { + "text": "6/20", + "index": 6020 + }, + "6021": { + "text": "6/21", + "index": 6021 + }, + "6022": { + "text": "6/22", + "index": 6022 + }, + "6023": { + "text": "6/23", + "index": 6023 + }, + "6024": { + "text": "6/24", + "index": 6024 + }, + "6025": { + "text": "6/25", + "index": 6025 + }, + "6026": { + "text": "6/26", + "index": 6026 + }, + "6027": { + "text": "6/27", + "index": 6027 + }, + "6028": { + "text": "6/28", + "index": 6028 + }, + "6029": { + "text": "6/29", + "index": 6029 + }, + "6030": { + "text": "6/30", + "index": 6030 + }, + "6031": { + "text": "6/31", + "index": 6031 + }, + "6032": { + "text": "6/32", + "index": 6032 + }, + "6033": { + "text": "6/33", + "index": 6033 + }, + "6034": { + "text": "6/34", + "index": 6034 + }, + "6035": { + "text": "6/35", + "index": 6035 + }, + "6036": { + "text": "6/36", + "index": 6036 + }, + "6037": { + "text": "6/37", + "index": 6037 + }, + "6038": { + "text": "6/38", + "index": 6038 + }, + "6039": { + "text": "6/39", + "index": 6039 + }, + "6040": { + "text": "6/40", + "index": 6040 + }, + "7000": { + "text": "7/0", + "index": 7000 + }, + "7001": { + "text": "7/1", + "index": 7001 + }, + "7002": { + "text": "7/2", + "index": 7002 + }, + "7003": { + "text": "7/3", + "index": 7003 + }, + "7004": { + "text": "7/4", + "index": 7004 + }, + "7005": { + "text": "7/5", + "index": 7005 + }, + "7006": { + "text": "7/6", + "index": 7006 + }, + "7007": { + "text": "7/7", + "index": 7007 + }, + "7008": { + "text": "7/8", + "index": 7008 + }, + "7009": { + "text": "7/9", + "index": 7009 + }, + "7010": { + "text": "7/10", + "index": 7010 + }, + "7011": { + "text": "7/11", + "index": 7011 + }, + "7012": { + "text": "7/12", + "index": 7012 + }, + "7013": { + "text": "7/13", + "index": 7013 + }, + "7014": { + "text": "7/14", + "index": 7014 + }, + "7015": { + "text": "7/15", + "index": 7015 + }, + "7016": { + "text": "7/16", + "index": 7016 + }, + "7017": { + "text": "7/17", + "index": 7017 + }, + "7018": { + "text": "7/18", + "index": 7018 + }, + "7019": { + "text": "7/19", + "index": 7019 + }, + "7020": { + "text": "7/20", + "index": 7020 + }, + "7021": { + "text": "7/21", + "index": 7021 + }, + "7022": { + "text": "7/22", + "index": 7022 + }, + "7023": { + "text": "7/23", + "index": 7023 + }, + "7024": { + "text": "7/24", + "index": 7024 + }, + "7025": { + "text": "7/25", + "index": 7025 + }, + "7026": { + "text": "7/26", + "index": 7026 + }, + "7027": { + "text": "7/27", + "index": 7027 + }, + "7028": { + "text": "7/28", + "index": 7028 + }, + "7029": { + "text": "7/29", + "index": 7029 + }, + "7030": { + "text": "7/30", + "index": 7030 + }, + "7031": { + "text": "7/31", + "index": 7031 + }, + "7032": { + "text": "7/32", + "index": 7032 + }, + "7033": { + "text": "7/33", + "index": 7033 + }, + "7034": { + "text": "7/34", + "index": 7034 + }, + "7035": { + "text": "7/35", + "index": 7035 + }, + "7036": { + "text": "7/36", + "index": 7036 + }, + "7037": { + "text": "7/37", + "index": 7037 + }, + "7038": { + "text": "7/38", + "index": 7038 + }, + "7039": { + "text": "7/39", + "index": 7039 + }, + "7040": { + "text": "7/40", + "index": 7040 + }, + "8000": { + "text": "8/0", + "index": 8000 + }, + "8001": { + "text": "8/1", + "index": 8001 + }, + "8002": { + "text": "8/2", + "index": 8002 + }, + "8003": { + "text": "8/3", + "index": 8003 + }, + "8004": { + "text": "8/4", + "index": 8004 + }, + "8005": { + "text": "8/5", + "index": 8005 + }, + "8006": { + "text": "8/6", + "index": 8006 + }, + "8007": { + "text": "8/7", + "index": 8007 + }, + "8008": { + "text": "8/8", + "index": 8008 + }, + "8009": { + "text": "8/9", + "index": 8009 + }, + "8010": { + "text": "8/10", + "index": 8010 + }, + "8011": { + "text": "8/11", + "index": 8011 + }, + "8012": { + "text": "8/12", + "index": 8012 + }, + "8013": { + "text": "8/13", + "index": 8013 + }, + "8014": { + "text": "8/14", + "index": 8014 + }, + "8015": { + "text": "8/15", + "index": 8015 + }, + "8016": { + "text": "8/16", + "index": 8016 + }, + "8017": { + "text": "8/17", + "index": 8017 + }, + "8018": { + "text": "8/18", + "index": 8018 + }, + "8019": { + "text": "8/19", + "index": 8019 + }, + "8020": { + "text": "8/20", + "index": 8020 + }, + "8021": { + "text": "8/21", + "index": 8021 + }, + "8022": { + "text": "8/22", + "index": 8022 + }, + "8023": { + "text": "8/23", + "index": 8023 + }, + "8024": { + "text": "8/24", + "index": 8024 + }, + "8025": { + "text": "8/25", + "index": 8025 + }, + "8026": { + "text": "8/26", + "index": 8026 + }, + "8027": { + "text": "8/27", + "index": 8027 + }, + "8028": { + "text": "8/28", + "index": 8028 + }, + "8029": { + "text": "8/29", + "index": 8029 + }, + "8030": { + "text": "8/30", + "index": 8030 + }, + "8031": { + "text": "8/31", + "index": 8031 + }, + "8032": { + "text": "8/32", + "index": 8032 + }, + "8033": { + "text": "8/33", + "index": 8033 + }, + "8034": { + "text": "8/34", + "index": 8034 + }, + "8035": { + "text": "8/35", + "index": 8035 + }, + "8036": { + "text": "8/36", + "index": 8036 + }, + "8037": { + "text": "8/37", + "index": 8037 + }, + "8038": { + "text": "8/38", + "index": 8038 + }, + "8039": { + "text": "8/39", + "index": 8039 + }, + "8040": { + "text": "8/40", + "index": 8040 + }, + "9000": { + "text": "9/0", + "index": 9000 + }, + "9001": { + "text": "9/1", + "index": 9001 + }, + "9002": { + "text": "9/2", + "index": 9002 + }, + "9003": { + "text": "9/3", + "index": 9003 + }, + "9004": { + "text": "9/4", + "index": 9004 + }, + "9005": { + "text": "9/5", + "index": 9005 + }, + "9006": { + "text": "9/6", + "index": 9006 + }, + "9007": { + "text": "9/7", + "index": 9007 + }, + "9008": { + "text": "9/8", + "index": 9008 + }, + "9009": { + "text": "9/9", + "index": 9009 + }, + "9010": { + "text": "9/10", + "index": 9010 + }, + "9011": { + "text": "9/11", + "index": 9011 + }, + "9012": { + "text": "9/12", + "index": 9012 + }, + "9013": { + "text": "9/13", + "index": 9013 + }, + "9014": { + "text": "9/14", + "index": 9014 + }, + "9015": { + "text": "9/15", + "index": 9015 + }, + "9016": { + "text": "9/16", + "index": 9016 + }, + "9017": { + "text": "9/17", + "index": 9017 + }, + "9018": { + "text": "9/18", + "index": 9018 + }, + "9019": { + "text": "9/19", + "index": 9019 + }, + "9020": { + "text": "9/20", + "index": 9020 + }, + "9021": { + "text": "9/21", + "index": 9021 + }, + "9022": { + "text": "9/22", + "index": 9022 + }, + "9023": { + "text": "9/23", + "index": 9023 + }, + "9024": { + "text": "9/24", + "index": 9024 + }, + "9025": { + "text": "9/25", + "index": 9025 + }, + "9026": { + "text": "9/26", + "index": 9026 + }, + "9027": { + "text": "9/27", + "index": 9027 + }, + "9028": { + "text": "9/28", + "index": 9028 + }, + "9029": { + "text": "9/29", + "index": 9029 + }, + "9030": { + "text": "9/30", + "index": 9030 + }, + "9031": { + "text": "9/31", + "index": 9031 + }, + "9032": { + "text": "9/32", + "index": 9032 + }, + "9033": { + "text": "9/33", + "index": 9033 + }, + "9034": { + "text": "9/34", + "index": 9034 + }, + "9035": { + "text": "9/35", + "index": 9035 + }, + "9036": { + "text": "9/36", + "index": 9036 + }, + "9037": { + "text": "9/37", + "index": 9037 + }, + "9038": { + "text": "9/38", + "index": 9038 + }, + "9039": { + "text": "9/39", + "index": 9039 + }, + "9040": { + "text": "9/40", + "index": 9040 + }, + "10000": { + "text": "10/0", + "index": 10000 + }, + "10001": { + "text": "10/1", + "index": 10001 + }, + "10002": { + "text": "10/2", + "index": 10002 + }, + "10003": { + "text": "10/3", + "index": 10003 + }, + "10004": { + "text": "10/4", + "index": 10004 + }, + "10005": { + "text": "10/5", + "index": 10005 + }, + "10006": { + "text": "10/6", + "index": 10006 + }, + "10007": { + "text": "10/7", + "index": 10007 + }, + "10008": { + "text": "10/8", + "index": 10008 + }, + "10009": { + "text": "10/9", + "index": 10009 + }, + "10010": { + "text": "10/10", + "index": 10010 + }, + "10011": { + "text": "10/11", + "index": 10011 + }, + "10012": { + "text": "10/12", + "index": 10012 + }, + "10013": { + "text": "10/13", + "index": 10013 + }, + "10014": { + "text": "10/14", + "index": 10014 + }, + "10015": { + "text": "10/15", + "index": 10015 + }, + "10016": { + "text": "10/16", + "index": 10016 + }, + "10017": { + "text": "10/17", + "index": 10017 + }, + "10018": { + "text": "10/18", + "index": 10018 + }, + "10019": { + "text": "10/19", + "index": 10019 + }, + "10020": { + "text": "10/20", + "index": 10020 + }, + "10021": { + "text": "10/21", + "index": 10021 + }, + "10022": { + "text": "10/22", + "index": 10022 + }, + "10023": { + "text": "10/23", + "index": 10023 + }, + "10024": { + "text": "10/24", + "index": 10024 + }, + "10025": { + "text": "10/25", + "index": 10025 + }, + "10026": { + "text": "10/26", + "index": 10026 + }, + "10027": { + "text": "10/27", + "index": 10027 + }, + "10028": { + "text": "10/28", + "index": 10028 + }, + "10029": { + "text": "10/29", + "index": 10029 + }, + "10030": { + "text": "10/30", + "index": 10030 + }, + "10031": { + "text": "10/31", + "index": 10031 + }, + "10032": { + "text": "10/32", + "index": 10032 + }, + "10033": { + "text": "10/33", + "index": 10033 + }, + "10034": { + "text": "10/34", + "index": 10034 + }, + "10035": { + "text": "10/35", + "index": 10035 + }, + "10036": { + "text": "10/36", + "index": 10036 + }, + "10037": { + "text": "10/37", + "index": 10037 + }, + "10038": { + "text": "10/38", + "index": 10038 + }, + "10039": { + "text": "10/39", + "index": 10039 + }, + "10040": { + "text": "10/40", + "index": 10040 + }, + "11000": { + "text": "11/0", + "index": 11000 + }, + "11001": { + "text": "11/1", + "index": 11001 + }, + "11002": { + "text": "11/2", + "index": 11002 + }, + "11003": { + "text": "11/3", + "index": 11003 + }, + "11004": { + "text": "11/4", + "index": 11004 + }, + "11005": { + "text": "11/5", + "index": 11005 + }, + "11006": { + "text": "11/6", + "index": 11006 + }, + "11007": { + "text": "11/7", + "index": 11007 + }, + "11008": { + "text": "11/8", + "index": 11008 + }, + "11009": { + "text": "11/9", + "index": 11009 + }, + "11010": { + "text": "11/10", + "index": 11010 + }, + "11011": { + "text": "11/11", + "index": 11011 + }, + "11012": { + "text": "11/12", + "index": 11012 + }, + "11013": { + "text": "11/13", + "index": 11013 + }, + "11014": { + "text": "11/14", + "index": 11014 + }, + "11015": { + "text": "11/15", + "index": 11015 + }, + "11016": { + "text": "11/16", + "index": 11016 + }, + "11017": { + "text": "11/17", + "index": 11017 + }, + "11018": { + "text": "11/18", + "index": 11018 + }, + "11019": { + "text": "11/19", + "index": 11019 + }, + "11020": { + "text": "11/20", + "index": 11020 + }, + "11021": { + "text": "11/21", + "index": 11021 + }, + "11022": { + "text": "11/22", + "index": 11022 + }, + "11023": { + "text": "11/23", + "index": 11023 + }, + "11024": { + "text": "11/24", + "index": 11024 + }, + "11025": { + "text": "11/25", + "index": 11025 + }, + "11026": { + "text": "11/26", + "index": 11026 + }, + "11027": { + "text": "11/27", + "index": 11027 + }, + "11028": { + "text": "11/28", + "index": 11028 + }, + "11029": { + "text": "11/29", + "index": 11029 + }, + "11030": { + "text": "11/30", + "index": 11030 + }, + "11031": { + "text": "11/31", + "index": 11031 + }, + "11032": { + "text": "11/32", + "index": 11032 + }, + "11033": { + "text": "11/33", + "index": 11033 + }, + "11034": { + "text": "11/34", + "index": 11034 + }, + "11035": { + "text": "11/35", + "index": 11035 + }, + "11036": { + "text": "11/36", + "index": 11036 + }, + "11037": { + "text": "11/37", + "index": 11037 + }, + "11038": { + "text": "11/38", + "index": 11038 + }, + "11039": { + "text": "11/39", + "index": 11039 + }, + "11040": { + "text": "11/40", + "index": 11040 + }, + "12000": { + "text": "12/0", + "index": 12000 + }, + "12001": { + "text": "12/1", + "index": 12001 + }, + "12002": { + "text": "12/2", + "index": 12002 + }, + "12003": { + "text": "12/3", + "index": 12003 + }, + "12004": { + "text": "12/4", + "index": 12004 + }, + "12005": { + "text": "12/5", + "index": 12005 + }, + "12006": { + "text": "12/6", + "index": 12006 + }, + "12007": { + "text": "12/7", + "index": 12007 + }, + "12008": { + "text": "12/8", + "index": 12008 + }, + "12009": { + "text": "12/9", + "index": 12009 + }, + "12010": { + "text": "12/10", + "index": 12010 + }, + "12011": { + "text": "12/11", + "index": 12011 + }, + "12012": { + "text": "12/12", + "index": 12012 + }, + "12013": { + "text": "12/13", + "index": 12013 + }, + "12014": { + "text": "12/14", + "index": 12014 + }, + "12015": { + "text": "12/15", + "index": 12015 + }, + "12016": { + "text": "12/16", + "index": 12016 + }, + "12017": { + "text": "12/17", + "index": 12017 + }, + "12018": { + "text": "12/18", + "index": 12018 + }, + "12019": { + "text": "12/19", + "index": 12019 + }, + "12020": { + "text": "12/20", + "index": 12020 + }, + "12021": { + "text": "12/21", + "index": 12021 + }, + "12022": { + "text": "12/22", + "index": 12022 + }, + "12023": { + "text": "12/23", + "index": 12023 + }, + "12024": { + "text": "12/24", + "index": 12024 + }, + "12025": { + "text": "12/25", + "index": 12025 + }, + "12026": { + "text": "12/26", + "index": 12026 + }, + "12027": { + "text": "12/27", + "index": 12027 + }, + "12028": { + "text": "12/28", + "index": 12028 + }, + "12029": { + "text": "12/29", + "index": 12029 + }, + "12030": { + "text": "12/30", + "index": 12030 + }, + "12031": { + "text": "12/31", + "index": 12031 + }, + "12032": { + "text": "12/32", + "index": 12032 + }, + "12033": { + "text": "12/33", + "index": 12033 + }, + "12034": { + "text": "12/34", + "index": 12034 + }, + "12035": { + "text": "12/35", + "index": 12035 + }, + "12036": { + "text": "12/36", + "index": 12036 + }, + "12037": { + "text": "12/37", + "index": 12037 + }, + "12038": { + "text": "12/38", + "index": 12038 + }, + "12039": { + "text": "12/39", + "index": 12039 + }, + "12040": { + "text": "12/40", + "index": 12040 + }, + "13000": { + "text": "13/0", + "index": 13000 + }, + "13001": { + "text": "13/1", + "index": 13001 + }, + "13002": { + "text": "13/2", + "index": 13002 + }, + "13003": { + "text": "13/3", + "index": 13003 + }, + "13004": { + "text": "13/4", + "index": 13004 + }, + "13005": { + "text": "13/5", + "index": 13005 + }, + "13006": { + "text": "13/6", + "index": 13006 + }, + "13007": { + "text": "13/7", + "index": 13007 + }, + "13008": { + "text": "13/8", + "index": 13008 + }, + "13009": { + "text": "13/9", + "index": 13009 + }, + "13010": { + "text": "13/10", + "index": 13010 + }, + "13011": { + "text": "13/11", + "index": 13011 + }, + "13012": { + "text": "13/12", + "index": 13012 + }, + "13013": { + "text": "13/13", + "index": 13013 + }, + "13014": { + "text": "13/14", + "index": 13014 + }, + "13015": { + "text": "13/15", + "index": 13015 + }, + "13016": { + "text": "13/16", + "index": 13016 + }, + "13017": { + "text": "13/17", + "index": 13017 + }, + "13018": { + "text": "13/18", + "index": 13018 + }, + "13019": { + "text": "13/19", + "index": 13019 + }, + "13020": { + "text": "13/20", + "index": 13020 + }, + "13021": { + "text": "13/21", + "index": 13021 + }, + "13022": { + "text": "13/22", + "index": 13022 + }, + "13023": { + "text": "13/23", + "index": 13023 + }, + "13024": { + "text": "13/24", + "index": 13024 + }, + "13025": { + "text": "13/25", + "index": 13025 + }, + "13026": { + "text": "13/26", + "index": 13026 + }, + "13027": { + "text": "13/27", + "index": 13027 + }, + "13028": { + "text": "13/28", + "index": 13028 + }, + "13029": { + "text": "13/29", + "index": 13029 + }, + "13030": { + "text": "13/30", + "index": 13030 + }, + "13031": { + "text": "13/31", + "index": 13031 + }, + "13032": { + "text": "13/32", + "index": 13032 + }, + "13033": { + "text": "13/33", + "index": 13033 + }, + "13034": { + "text": "13/34", + "index": 13034 + }, + "13035": { + "text": "13/35", + "index": 13035 + }, + "13036": { + "text": "13/36", + "index": 13036 + }, + "13037": { + "text": "13/37", + "index": 13037 + }, + "13038": { + "text": "13/38", + "index": 13038 + }, + "13039": { + "text": "13/39", + "index": 13039 + }, + "13040": { + "text": "13/40", + "index": 13040 + }, + "14000": { + "text": "14/0", + "index": 14000 + }, + "14001": { + "text": "14/1", + "index": 14001 + }, + "14002": { + "text": "14/2", + "index": 14002 + }, + "14003": { + "text": "14/3", + "index": 14003 + }, + "14004": { + "text": "14/4", + "index": 14004 + }, + "14005": { + "text": "14/5", + "index": 14005 + }, + "14006": { + "text": "14/6", + "index": 14006 + }, + "14007": { + "text": "14/7", + "index": 14007 + }, + "14008": { + "text": "14/8", + "index": 14008 + }, + "14009": { + "text": "14/9", + "index": 14009 + }, + "14010": { + "text": "14/10", + "index": 14010 + }, + "14011": { + "text": "14/11", + "index": 14011 + }, + "14012": { + "text": "14/12", + "index": 14012 + }, + "14013": { + "text": "14/13", + "index": 14013 + }, + "14014": { + "text": "14/14", + "index": 14014 + }, + "14015": { + "text": "14/15", + "index": 14015 + }, + "14016": { + "text": "14/16", + "index": 14016 + }, + "14017": { + "text": "14/17", + "index": 14017 + }, + "14018": { + "text": "14/18", + "index": 14018 + }, + "14019": { + "text": "14/19", + "index": 14019 + }, + "14020": { + "text": "14/20", + "index": 14020 + }, + "14021": { + "text": "14/21", + "index": 14021 + }, + "14022": { + "text": "14/22", + "index": 14022 + }, + "14023": { + "text": "14/23", + "index": 14023 + }, + "14024": { + "text": "14/24", + "index": 14024 + }, + "14025": { + "text": "14/25", + "index": 14025 + }, + "14026": { + "text": "14/26", + "index": 14026 + }, + "14027": { + "text": "14/27", + "index": 14027 + }, + "14028": { + "text": "14/28", + "index": 14028 + }, + "14029": { + "text": "14/29", + "index": 14029 + }, + "14030": { + "text": "14/30", + "index": 14030 + }, + "14031": { + "text": "14/31", + "index": 14031 + }, + "14032": { + "text": "14/32", + "index": 14032 + }, + "14033": { + "text": "14/33", + "index": 14033 + }, + "14034": { + "text": "14/34", + "index": 14034 + }, + "14035": { + "text": "14/35", + "index": 14035 + }, + "14036": { + "text": "14/36", + "index": 14036 + }, + "14037": { + "text": "14/37", + "index": 14037 + }, + "14038": { + "text": "14/38", + "index": 14038 + }, + "14039": { + "text": "14/39", + "index": 14039 + }, + "14040": { + "text": "14/40", + "index": 14040 + }, + "15000": { + "text": "15/0", + "index": 15000 + }, + "15001": { + "text": "15/1", + "index": 15001 + }, + "15002": { + "text": "15/2", + "index": 15002 + }, + "15003": { + "text": "15/3", + "index": 15003 + }, + "15004": { + "text": "15/4", + "index": 15004 + }, + "15005": { + "text": "15/5", + "index": 15005 + }, + "15006": { + "text": "15/6", + "index": 15006 + }, + "15007": { + "text": "15/7", + "index": 15007 + }, + "15008": { + "text": "15/8", + "index": 15008 + }, + "15009": { + "text": "15/9", + "index": 15009 + }, + "15010": { + "text": "15/10", + "index": 15010 + }, + "15011": { + "text": "15/11", + "index": 15011 + }, + "15012": { + "text": "15/12", + "index": 15012 + }, + "15013": { + "text": "15/13", + "index": 15013 + }, + "15014": { + "text": "15/14", + "index": 15014 + }, + "15015": { + "text": "15/15", + "index": 15015 + }, + "15016": { + "text": "15/16", + "index": 15016 + }, + "15017": { + "text": "15/17", + "index": 15017 + }, + "15018": { + "text": "15/18", + "index": 15018 + }, + "15019": { + "text": "15/19", + "index": 15019 + }, + "15020": { + "text": "15/20", + "index": 15020 + }, + "15021": { + "text": "15/21", + "index": 15021 + }, + "15022": { + "text": "15/22", + "index": 15022 + }, + "15023": { + "text": "15/23", + "index": 15023 + }, + "15024": { + "text": "15/24", + "index": 15024 + }, + "15025": { + "text": "15/25", + "index": 15025 + }, + "15026": { + "text": "15/26", + "index": 15026 + }, + "15027": { + "text": "15/27", + "index": 15027 + }, + "15028": { + "text": "15/28", + "index": 15028 + }, + "15029": { + "text": "15/29", + "index": 15029 + }, + "15030": { + "text": "15/30", + "index": 15030 + }, + "15031": { + "text": "15/31", + "index": 15031 + }, + "15032": { + "text": "15/32", + "index": 15032 + }, + "15033": { + "text": "15/33", + "index": 15033 + }, + "15034": { + "text": "15/34", + "index": 15034 + }, + "15035": { + "text": "15/35", + "index": 15035 + }, + "15036": { + "text": "15/36", + "index": 15036 + }, + "15037": { + "text": "15/37", + "index": 15037 + }, + "15038": { + "text": "15/38", + "index": 15038 + }, + "15039": { + "text": "15/39", + "index": 15039 + }, + "15040": { + "text": "15/40", + "index": 15040 + }, + "16000": { + "text": "16/0", + "index": 16000 + }, + "16001": { + "text": "16/1", + "index": 16001 + }, + "16002": { + "text": "16/2", + "index": 16002 + }, + "16003": { + "text": "16/3", + "index": 16003 + }, + "16004": { + "text": "16/4", + "index": 16004 + }, + "16005": { + "text": "16/5", + "index": 16005 + }, + "16006": { + "text": "16/6", + "index": 16006 + }, + "16007": { + "text": "16/7", + "index": 16007 + }, + "16008": { + "text": "16/8", + "index": 16008 + }, + "16009": { + "text": "16/9", + "index": 16009 + }, + "16010": { + "text": "16/10", + "index": 16010 + }, + "16011": { + "text": "16/11", + "index": 16011 + }, + "16012": { + "text": "16/12", + "index": 16012 + }, + "16013": { + "text": "16/13", + "index": 16013 + }, + "16014": { + "text": "16/14", + "index": 16014 + }, + "16015": { + "text": "16/15", + "index": 16015 + }, + "16016": { + "text": "16/16", + "index": 16016 + }, + "16017": { + "text": "16/17", + "index": 16017 + }, + "16018": { + "text": "16/18", + "index": 16018 + }, + "16019": { + "text": "16/19", + "index": 16019 + }, + "16020": { + "text": "16/20", + "index": 16020 + }, + "16021": { + "text": "16/21", + "index": 16021 + }, + "16022": { + "text": "16/22", + "index": 16022 + }, + "16023": { + "text": "16/23", + "index": 16023 + }, + "16024": { + "text": "16/24", + "index": 16024 + }, + "16025": { + "text": "16/25", + "index": 16025 + }, + "16026": { + "text": "16/26", + "index": 16026 + }, + "16027": { + "text": "16/27", + "index": 16027 + }, + "16028": { + "text": "16/28", + "index": 16028 + }, + "16029": { + "text": "16/29", + "index": 16029 + }, + "16030": { + "text": "16/30", + "index": 16030 + }, + "16031": { + "text": "16/31", + "index": 16031 + }, + "16032": { + "text": "16/32", + "index": 16032 + }, + "16033": { + "text": "16/33", + "index": 16033 + }, + "16034": { + "text": "16/34", + "index": 16034 + }, + "16035": { + "text": "16/35", + "index": 16035 + }, + "16036": { + "text": "16/36", + "index": 16036 + }, + "16037": { + "text": "16/37", + "index": 16037 + }, + "16038": { + "text": "16/38", + "index": 16038 + }, + "16039": { + "text": "16/39", + "index": 16039 + }, + "16040": { + "text": "16/40", + "index": 16040 + }, + "17000": { + "text": "17/0", + "index": 17000 + }, + "17001": { + "text": "17/1", + "index": 17001 + }, + "17002": { + "text": "17/2", + "index": 17002 + }, + "17003": { + "text": "17/3", + "index": 17003 + }, + "17004": { + "text": "17/4", + "index": 17004 + }, + "17005": { + "text": "17/5", + "index": 17005 + }, + "17006": { + "text": "17/6", + "index": 17006 + }, + "17007": { + "text": "17/7", + "index": 17007 + }, + "17008": { + "text": "17/8", + "index": 17008 + }, + "17009": { + "text": "17/9", + "index": 17009 + }, + "17010": { + "text": "17/10", + "index": 17010 + }, + "17011": { + "text": "17/11", + "index": 17011 + }, + "17012": { + "text": "17/12", + "index": 17012 + }, + "17013": { + "text": "17/13", + "index": 17013 + }, + "17014": { + "text": "17/14", + "index": 17014 + }, + "17015": { + "text": "17/15", + "index": 17015 + }, + "17016": { + "text": "17/16", + "index": 17016 + }, + "17017": { + "text": "17/17", + "index": 17017 + }, + "17018": { + "text": "17/18", + "index": 17018 + }, + "17019": { + "text": "17/19", + "index": 17019 + }, + "17020": { + "text": "17/20", + "index": 17020 + }, + "17021": { + "text": "17/21", + "index": 17021 + }, + "17022": { + "text": "17/22", + "index": 17022 + }, + "17023": { + "text": "17/23", + "index": 17023 + }, + "17024": { + "text": "17/24", + "index": 17024 + }, + "17025": { + "text": "17/25", + "index": 17025 + }, + "17026": { + "text": "17/26", + "index": 17026 + }, + "17027": { + "text": "17/27", + "index": 17027 + }, + "17028": { + "text": "17/28", + "index": 17028 + }, + "17029": { + "text": "17/29", + "index": 17029 + }, + "17030": { + "text": "17/30", + "index": 17030 + }, + "17031": { + "text": "17/31", + "index": 17031 + }, + "17032": { + "text": "17/32", + "index": 17032 + }, + "17033": { + "text": "17/33", + "index": 17033 + }, + "17034": { + "text": "17/34", + "index": 17034 + }, + "17035": { + "text": "17/35", + "index": 17035 + }, + "17036": { + "text": "17/36", + "index": 17036 + }, + "17037": { + "text": "17/37", + "index": 17037 + }, + "17038": { + "text": "17/38", + "index": 17038 + }, + "17039": { + "text": "17/39", + "index": 17039 + }, + "17040": { + "text": "17/40", + "index": 17040 + }, + "18000": { + "text": "18/0", + "index": 18000 + }, + "18001": { + "text": "18/1", + "index": 18001 + }, + "18002": { + "text": "18/2", + "index": 18002 + }, + "18003": { + "text": "18/3", + "index": 18003 + }, + "18004": { + "text": "18/4", + "index": 18004 + }, + "18005": { + "text": "18/5", + "index": 18005 + }, + "18006": { + "text": "18/6", + "index": 18006 + }, + "18007": { + "text": "18/7", + "index": 18007 + }, + "18008": { + "text": "18/8", + "index": 18008 + }, + "18009": { + "text": "18/9", + "index": 18009 + }, + "18010": { + "text": "18/10", + "index": 18010 + }, + "18011": { + "text": "18/11", + "index": 18011 + }, + "18012": { + "text": "18/12", + "index": 18012 + }, + "18013": { + "text": "18/13", + "index": 18013 + }, + "18014": { + "text": "18/14", + "index": 18014 + }, + "18015": { + "text": "18/15", + "index": 18015 + }, + "18016": { + "text": "18/16", + "index": 18016 + }, + "18017": { + "text": "18/17", + "index": 18017 + }, + "18018": { + "text": "18/18", + "index": 18018 + }, + "18019": { + "text": "18/19", + "index": 18019 + }, + "18020": { + "text": "18/20", + "index": 18020 + }, + "18021": { + "text": "18/21", + "index": 18021 + }, + "18022": { + "text": "18/22", + "index": 18022 + }, + "18023": { + "text": "18/23", + "index": 18023 + }, + "18024": { + "text": "18/24", + "index": 18024 + }, + "18025": { + "text": "18/25", + "index": 18025 + }, + "18026": { + "text": "18/26", + "index": 18026 + }, + "18027": { + "text": "18/27", + "index": 18027 + }, + "18028": { + "text": "18/28", + "index": 18028 + }, + "18029": { + "text": "18/29", + "index": 18029 + }, + "18030": { + "text": "18/30", + "index": 18030 + }, + "18031": { + "text": "18/31", + "index": 18031 + }, + "18032": { + "text": "18/32", + "index": 18032 + }, + "18033": { + "text": "18/33", + "index": 18033 + }, + "18034": { + "text": "18/34", + "index": 18034 + }, + "18035": { + "text": "18/35", + "index": 18035 + }, + "18036": { + "text": "18/36", + "index": 18036 + }, + "18037": { + "text": "18/37", + "index": 18037 + }, + "18038": { + "text": "18/38", + "index": 18038 + }, + "18039": { + "text": "18/39", + "index": 18039 + }, + "18040": { + "text": "18/40", + "index": 18040 + }, + "19000": { + "text": "19/0", + "index": 19000 + }, + "19001": { + "text": "19/1", + "index": 19001 + }, + "19002": { + "text": "19/2", + "index": 19002 + }, + "19003": { + "text": "19/3", + "index": 19003 + }, + "19004": { + "text": "19/4", + "index": 19004 + }, + "19005": { + "text": "19/5", + "index": 19005 + }, + "19006": { + "text": "19/6", + "index": 19006 + }, + "19007": { + "text": "19/7", + "index": 19007 + }, + "19008": { + "text": "19/8", + "index": 19008 + }, + "19009": { + "text": "19/9", + "index": 19009 + }, + "19010": { + "text": "19/10", + "index": 19010 + }, + "19011": { + "text": "19/11", + "index": 19011 + }, + "19012": { + "text": "19/12", + "index": 19012 + }, + "19013": { + "text": "19/13", + "index": 19013 + }, + "19014": { + "text": "19/14", + "index": 19014 + }, + "19015": { + "text": "19/15", + "index": 19015 + }, + "19016": { + "text": "19/16", + "index": 19016 + }, + "19017": { + "text": "19/17", + "index": 19017 + }, + "19018": { + "text": "19/18", + "index": 19018 + }, + "19019": { + "text": "19/19", + "index": 19019 + }, + "19020": { + "text": "19/20", + "index": 19020 + }, + "19021": { + "text": "19/21", + "index": 19021 + }, + "19022": { + "text": "19/22", + "index": 19022 + }, + "19023": { + "text": "19/23", + "index": 19023 + }, + "19024": { + "text": "19/24", + "index": 19024 + }, + "19025": { + "text": "19/25", + "index": 19025 + }, + "19026": { + "text": "19/26", + "index": 19026 + }, + "19027": { + "text": "19/27", + "index": 19027 + }, + "19028": { + "text": "19/28", + "index": 19028 + }, + "19029": { + "text": "19/29", + "index": 19029 + }, + "19030": { + "text": "19/30", + "index": 19030 + }, + "19031": { + "text": "19/31", + "index": 19031 + }, + "19032": { + "text": "19/32", + "index": 19032 + }, + "19033": { + "text": "19/33", + "index": 19033 + }, + "19034": { + "text": "19/34", + "index": 19034 + }, + "19035": { + "text": "19/35", + "index": 19035 + }, + "19036": { + "text": "19/36", + "index": 19036 + }, + "19037": { + "text": "19/37", + "index": 19037 + }, + "19038": { + "text": "19/38", + "index": 19038 + }, + "19039": { + "text": "19/39", + "index": 19039 + }, + "19040": { + "text": "19/40", + "index": 19040 + }, + "20000": { + "text": "20/0", + "index": 20000 + }, + "20001": { + "text": "20/1", + "index": 20001 + }, + "20002": { + "text": "20/2", + "index": 20002 + }, + "20003": { + "text": "20/3", + "index": 20003 + }, + "20004": { + "text": "20/4", + "index": 20004 + }, + "20005": { + "text": "20/5", + "index": 20005 + }, + "20006": { + "text": "20/6", + "index": 20006 + }, + "20007": { + "text": "20/7", + "index": 20007 + }, + "20008": { + "text": "20/8", + "index": 20008 + }, + "20009": { + "text": "20/9", + "index": 20009 + }, + "20010": { + "text": "20/10", + "index": 20010 + }, + "20011": { + "text": "20/11", + "index": 20011 + }, + "20012": { + "text": "20/12", + "index": 20012 + }, + "20013": { + "text": "20/13", + "index": 20013 + }, + "20014": { + "text": "20/14", + "index": 20014 + }, + "20015": { + "text": "20/15", + "index": 20015 + }, + "20016": { + "text": "20/16", + "index": 20016 + }, + "20017": { + "text": "20/17", + "index": 20017 + }, + "20018": { + "text": "20/18", + "index": 20018 + }, + "20019": { + "text": "20/19", + "index": 20019 + }, + "20020": { + "text": "20/20", + "index": 20020 + }, + "20021": { + "text": "20/21", + "index": 20021 + }, + "20022": { + "text": "20/22", + "index": 20022 + }, + "20023": { + "text": "20/23", + "index": 20023 + }, + "20024": { + "text": "20/24", + "index": 20024 + }, + "20025": { + "text": "20/25", + "index": 20025 + }, + "20026": { + "text": "20/26", + "index": 20026 + }, + "20027": { + "text": "20/27", + "index": 20027 + }, + "20028": { + "text": "20/28", + "index": 20028 + }, + "20029": { + "text": "20/29", + "index": 20029 + }, + "20030": { + "text": "20/30", + "index": 20030 + }, + "20031": { + "text": "20/31", + "index": 20031 + }, + "20032": { + "text": "20/32", + "index": 20032 + }, + "20033": { + "text": "20/33", + "index": 20033 + }, + "20034": { + "text": "20/34", + "index": 20034 + }, + "20035": { + "text": "20/35", + "index": 20035 + }, + "20036": { + "text": "20/36", + "index": 20036 + }, + "20037": { + "text": "20/37", + "index": 20037 + }, + "20038": { + "text": "20/38", + "index": 20038 + }, + "20039": { + "text": "20/39", + "index": 20039 + }, + "20040": { + "text": "20/40", + "index": 20040 + }, + "21000": { + "text": "21/0", + "index": 21000 + }, + "21001": { + "text": "21/1", + "index": 21001 + }, + "21002": { + "text": "21/2", + "index": 21002 + }, + "21003": { + "text": "21/3", + "index": 21003 + }, + "21004": { + "text": "21/4", + "index": 21004 + }, + "21005": { + "text": "21/5", + "index": 21005 + }, + "21006": { + "text": "21/6", + "index": 21006 + }, + "21007": { + "text": "21/7", + "index": 21007 + }, + "21008": { + "text": "21/8", + "index": 21008 + }, + "21009": { + "text": "21/9", + "index": 21009 + }, + "21010": { + "text": "21/10", + "index": 21010 + }, + "21011": { + "text": "21/11", + "index": 21011 + }, + "21012": { + "text": "21/12", + "index": 21012 + }, + "21013": { + "text": "21/13", + "index": 21013 + }, + "21014": { + "text": "21/14", + "index": 21014 + }, + "21015": { + "text": "21/15", + "index": 21015 + }, + "21016": { + "text": "21/16", + "index": 21016 + }, + "21017": { + "text": "21/17", + "index": 21017 + }, + "21018": { + "text": "21/18", + "index": 21018 + }, + "21019": { + "text": "21/19", + "index": 21019 + }, + "21020": { + "text": "21/20", + "index": 21020 + }, + "21021": { + "text": "21/21", + "index": 21021 + }, + "21022": { + "text": "21/22", + "index": 21022 + }, + "21023": { + "text": "21/23", + "index": 21023 + }, + "21024": { + "text": "21/24", + "index": 21024 + }, + "21025": { + "text": "21/25", + "index": 21025 + }, + "21026": { + "text": "21/26", + "index": 21026 + }, + "21027": { + "text": "21/27", + "index": 21027 + }, + "21028": { + "text": "21/28", + "index": 21028 + }, + "21029": { + "text": "21/29", + "index": 21029 + }, + "21030": { + "text": "21/30", + "index": 21030 + }, + "21031": { + "text": "21/31", + "index": 21031 + }, + "21032": { + "text": "21/32", + "index": 21032 + }, + "21033": { + "text": "21/33", + "index": 21033 + }, + "21034": { + "text": "21/34", + "index": 21034 + }, + "21035": { + "text": "21/35", + "index": 21035 + }, + "21036": { + "text": "21/36", + "index": 21036 + }, + "21037": { + "text": "21/37", + "index": 21037 + }, + "21038": { + "text": "21/38", + "index": 21038 + }, + "21039": { + "text": "21/39", + "index": 21039 + }, + "21040": { + "text": "21/40", + "index": 21040 + }, + "22000": { + "text": "22/0", + "index": 22000 + }, + "22001": { + "text": "22/1", + "index": 22001 + }, + "22002": { + "text": "22/2", + "index": 22002 + }, + "22003": { + "text": "22/3", + "index": 22003 + }, + "22004": { + "text": "22/4", + "index": 22004 + }, + "22005": { + "text": "22/5", + "index": 22005 + }, + "22006": { + "text": "22/6", + "index": 22006 + }, + "22007": { + "text": "22/7", + "index": 22007 + }, + "22008": { + "text": "22/8", + "index": 22008 + }, + "22009": { + "text": "22/9", + "index": 22009 + }, + "22010": { + "text": "22/10", + "index": 22010 + }, + "22011": { + "text": "22/11", + "index": 22011 + }, + "22012": { + "text": "22/12", + "index": 22012 + }, + "22013": { + "text": "22/13", + "index": 22013 + }, + "22014": { + "text": "22/14", + "index": 22014 + }, + "22015": { + "text": "22/15", + "index": 22015 + }, + "22016": { + "text": "22/16", + "index": 22016 + }, + "22017": { + "text": "22/17", + "index": 22017 + }, + "22018": { + "text": "22/18", + "index": 22018 + }, + "22019": { + "text": "22/19", + "index": 22019 + }, + "22020": { + "text": "22/20", + "index": 22020 + }, + "22021": { + "text": "22/21", + "index": 22021 + }, + "22022": { + "text": "22/22", + "index": 22022 + }, + "22023": { + "text": "22/23", + "index": 22023 + }, + "22024": { + "text": "22/24", + "index": 22024 + }, + "22025": { + "text": "22/25", + "index": 22025 + }, + "22026": { + "text": "22/26", + "index": 22026 + }, + "22027": { + "text": "22/27", + "index": 22027 + }, + "22028": { + "text": "22/28", + "index": 22028 + }, + "22029": { + "text": "22/29", + "index": 22029 + }, + "22030": { + "text": "22/30", + "index": 22030 + }, + "22031": { + "text": "22/31", + "index": 22031 + }, + "22032": { + "text": "22/32", + "index": 22032 + }, + "22033": { + "text": "22/33", + "index": 22033 + }, + "22034": { + "text": "22/34", + "index": 22034 + }, + "22035": { + "text": "22/35", + "index": 22035 + }, + "22036": { + "text": "22/36", + "index": 22036 + }, + "22037": { + "text": "22/37", + "index": 22037 + }, + "22038": { + "text": "22/38", + "index": 22038 + }, + "22039": { + "text": "22/39", + "index": 22039 + }, + "22040": { + "text": "22/40", + "index": 22040 + }, + "23000": { + "text": "23/0", + "index": 23000 + }, + "23001": { + "text": "23/1", + "index": 23001 + }, + "23002": { + "text": "23/2", + "index": 23002 + }, + "23003": { + "text": "23/3", + "index": 23003 + }, + "23004": { + "text": "23/4", + "index": 23004 + }, + "23005": { + "text": "23/5", + "index": 23005 + }, + "23006": { + "text": "23/6", + "index": 23006 + }, + "23007": { + "text": "23/7", + "index": 23007 + }, + "23008": { + "text": "23/8", + "index": 23008 + }, + "23009": { + "text": "23/9", + "index": 23009 + }, + "23010": { + "text": "23/10", + "index": 23010 + }, + "23011": { + "text": "23/11", + "index": 23011 + }, + "23012": { + "text": "23/12", + "index": 23012 + }, + "23013": { + "text": "23/13", + "index": 23013 + }, + "23014": { + "text": "23/14", + "index": 23014 + }, + "23015": { + "text": "23/15", + "index": 23015 + }, + "23016": { + "text": "23/16", + "index": 23016 + }, + "23017": { + "text": "23/17", + "index": 23017 + }, + "23018": { + "text": "23/18", + "index": 23018 + }, + "23019": { + "text": "23/19", + "index": 23019 + }, + "23020": { + "text": "23/20", + "index": 23020 + }, + "23021": { + "text": "23/21", + "index": 23021 + }, + "23022": { + "text": "23/22", + "index": 23022 + }, + "23023": { + "text": "23/23", + "index": 23023 + }, + "23024": { + "text": "23/24", + "index": 23024 + }, + "23025": { + "text": "23/25", + "index": 23025 + }, + "23026": { + "text": "23/26", + "index": 23026 + }, + "23027": { + "text": "23/27", + "index": 23027 + }, + "23028": { + "text": "23/28", + "index": 23028 + }, + "23029": { + "text": "23/29", + "index": 23029 + }, + "23030": { + "text": "23/30", + "index": 23030 + }, + "23031": { + "text": "23/31", + "index": 23031 + }, + "23032": { + "text": "23/32", + "index": 23032 + }, + "23033": { + "text": "23/33", + "index": 23033 + }, + "23034": { + "text": "23/34", + "index": 23034 + }, + "23035": { + "text": "23/35", + "index": 23035 + }, + "23036": { + "text": "23/36", + "index": 23036 + }, + "23037": { + "text": "23/37", + "index": 23037 + }, + "23038": { + "text": "23/38", + "index": 23038 + }, + "23039": { + "text": "23/39", + "index": 23039 + }, + "23040": { + "text": "23/40", + "index": 23040 + }, + "24000": { + "text": "24/0", + "index": 24000 + }, + "24001": { + "text": "24/1", + "index": 24001 + }, + "24002": { + "text": "24/2", + "index": 24002 + }, + "24003": { + "text": "24/3", + "index": 24003 + }, + "24004": { + "text": "24/4", + "index": 24004 + }, + "24005": { + "text": "24/5", + "index": 24005 + }, + "24006": { + "text": "24/6", + "index": 24006 + }, + "24007": { + "text": "24/7", + "index": 24007 + }, + "24008": { + "text": "24/8", + "index": 24008 + }, + "24009": { + "text": "24/9", + "index": 24009 + }, + "24010": { + "text": "24/10", + "index": 24010 + }, + "24011": { + "text": "24/11", + "index": 24011 + }, + "24012": { + "text": "24/12", + "index": 24012 + }, + "24013": { + "text": "24/13", + "index": 24013 + }, + "24014": { + "text": "24/14", + "index": 24014 + }, + "24015": { + "text": "24/15", + "index": 24015 + }, + "24016": { + "text": "24/16", + "index": 24016 + }, + "24017": { + "text": "24/17", + "index": 24017 + }, + "24018": { + "text": "24/18", + "index": 24018 + }, + "24019": { + "text": "24/19", + "index": 24019 + }, + "24020": { + "text": "24/20", + "index": 24020 + }, + "24021": { + "text": "24/21", + "index": 24021 + }, + "24022": { + "text": "24/22", + "index": 24022 + }, + "24023": { + "text": "24/23", + "index": 24023 + }, + "24024": { + "text": "24/24", + "index": 24024 + }, + "24025": { + "text": "24/25", + "index": 24025 + }, + "24026": { + "text": "24/26", + "index": 24026 + }, + "24027": { + "text": "24/27", + "index": 24027 + }, + "24028": { + "text": "24/28", + "index": 24028 + }, + "24029": { + "text": "24/29", + "index": 24029 + }, + "24030": { + "text": "24/30", + "index": 24030 + }, + "24031": { + "text": "24/31", + "index": 24031 + }, + "24032": { + "text": "24/32", + "index": 24032 + }, + "24033": { + "text": "24/33", + "index": 24033 + }, + "24034": { + "text": "24/34", + "index": 24034 + }, + "24035": { + "text": "24/35", + "index": 24035 + }, + "24036": { + "text": "24/36", + "index": 24036 + }, + "24037": { + "text": "24/37", + "index": 24037 + }, + "24038": { + "text": "24/38", + "index": 24038 + }, + "24039": { + "text": "24/39", + "index": 24039 + }, + "24040": { + "text": "24/40", + "index": 24040 + }, + "25000": { + "text": "25/0", + "index": 25000 + }, + "25001": { + "text": "25/1", + "index": 25001 + }, + "25002": { + "text": "25/2", + "index": 25002 + }, + "25003": { + "text": "25/3", + "index": 25003 + }, + "25004": { + "text": "25/4", + "index": 25004 + }, + "25005": { + "text": "25/5", + "index": 25005 + }, + "25006": { + "text": "25/6", + "index": 25006 + }, + "25007": { + "text": "25/7", + "index": 25007 + }, + "25008": { + "text": "25/8", + "index": 25008 + }, + "25009": { + "text": "25/9", + "index": 25009 + }, + "25010": { + "text": "25/10", + "index": 25010 + }, + "25011": { + "text": "25/11", + "index": 25011 + }, + "25012": { + "text": "25/12", + "index": 25012 + }, + "25013": { + "text": "25/13", + "index": 25013 + }, + "25014": { + "text": "25/14", + "index": 25014 + }, + "25015": { + "text": "25/15", + "index": 25015 + }, + "25016": { + "text": "25/16", + "index": 25016 + }, + "25017": { + "text": "25/17", + "index": 25017 + }, + "25018": { + "text": "25/18", + "index": 25018 + }, + "25019": { + "text": "25/19", + "index": 25019 + }, + "25020": { + "text": "25/20", + "index": 25020 + }, + "25021": { + "text": "25/21", + "index": 25021 + }, + "25022": { + "text": "25/22", + "index": 25022 + }, + "25023": { + "text": "25/23", + "index": 25023 + }, + "25024": { + "text": "25/24", + "index": 25024 + }, + "25025": { + "text": "25/25", + "index": 25025 + }, + "25026": { + "text": "25/26", + "index": 25026 + }, + "25027": { + "text": "25/27", + "index": 25027 + }, + "25028": { + "text": "25/28", + "index": 25028 + }, + "25029": { + "text": "25/29", + "index": 25029 + }, + "25030": { + "text": "25/30", + "index": 25030 + }, + "25031": { + "text": "25/31", + "index": 25031 + }, + "25032": { + "text": "25/32", + "index": 25032 + }, + "25033": { + "text": "25/33", + "index": 25033 + }, + "25034": { + "text": "25/34", + "index": 25034 + }, + "25035": { + "text": "25/35", + "index": 25035 + }, + "25036": { + "text": "25/36", + "index": 25036 + }, + "25037": { + "text": "25/37", + "index": 25037 + }, + "25038": { + "text": "25/38", + "index": 25038 + }, + "25039": { + "text": "25/39", + "index": 25039 + }, + "25040": { + "text": "25/40", + "index": 25040 + }, + "26000": { + "text": "26/0", + "index": 26000 + }, + "26001": { + "text": "26/1", + "index": 26001 + }, + "26002": { + "text": "26/2", + "index": 26002 + }, + "26003": { + "text": "26/3", + "index": 26003 + }, + "26004": { + "text": "26/4", + "index": 26004 + }, + "26005": { + "text": "26/5", + "index": 26005 + }, + "26006": { + "text": "26/6", + "index": 26006 + }, + "26007": { + "text": "26/7", + "index": 26007 + }, + "26008": { + "text": "26/8", + "index": 26008 + }, + "26009": { + "text": "26/9", + "index": 26009 + }, + "26010": { + "text": "26/10", + "index": 26010 + }, + "26011": { + "text": "26/11", + "index": 26011 + }, + "26012": { + "text": "26/12", + "index": 26012 + }, + "26013": { + "text": "26/13", + "index": 26013 + }, + "26014": { + "text": "26/14", + "index": 26014 + }, + "26015": { + "text": "26/15", + "index": 26015 + }, + "26016": { + "text": "26/16", + "index": 26016 + }, + "26017": { + "text": "26/17", + "index": 26017 + }, + "26018": { + "text": "26/18", + "index": 26018 + }, + "26019": { + "text": "26/19", + "index": 26019 + }, + "26020": { + "text": "26/20", + "index": 26020 + }, + "26021": { + "text": "26/21", + "index": 26021 + }, + "26022": { + "text": "26/22", + "index": 26022 + }, + "26023": { + "text": "26/23", + "index": 26023 + }, + "26024": { + "text": "26/24", + "index": 26024 + }, + "26025": { + "text": "26/25", + "index": 26025 + }, + "26026": { + "text": "26/26", + "index": 26026 + }, + "26027": { + "text": "26/27", + "index": 26027 + }, + "26028": { + "text": "26/28", + "index": 26028 + }, + "26029": { + "text": "26/29", + "index": 26029 + }, + "26030": { + "text": "26/30", + "index": 26030 + }, + "26031": { + "text": "26/31", + "index": 26031 + }, + "26032": { + "text": "26/32", + "index": 26032 + }, + "26033": { + "text": "26/33", + "index": 26033 + }, + "26034": { + "text": "26/34", + "index": 26034 + }, + "26035": { + "text": "26/35", + "index": 26035 + }, + "26036": { + "text": "26/36", + "index": 26036 + }, + "26037": { + "text": "26/37", + "index": 26037 + }, + "26038": { + "text": "26/38", + "index": 26038 + }, + "26039": { + "text": "26/39", + "index": 26039 + }, + "26040": { + "text": "26/40", + "index": 26040 + }, + "27000": { + "text": "27/0", + "index": 27000 + }, + "27001": { + "text": "27/1", + "index": 27001 + }, + "27002": { + "text": "27/2", + "index": 27002 + }, + "27003": { + "text": "27/3", + "index": 27003 + }, + "27004": { + "text": "27/4", + "index": 27004 + }, + "27005": { + "text": "27/5", + "index": 27005 + }, + "27006": { + "text": "27/6", + "index": 27006 + }, + "27007": { + "text": "27/7", + "index": 27007 + }, + "27008": { + "text": "27/8", + "index": 27008 + }, + "27009": { + "text": "27/9", + "index": 27009 + }, + "27010": { + "text": "27/10", + "index": 27010 + }, + "27011": { + "text": "27/11", + "index": 27011 + }, + "27012": { + "text": "27/12", + "index": 27012 + }, + "27013": { + "text": "27/13", + "index": 27013 + }, + "27014": { + "text": "27/14", + "index": 27014 + }, + "27015": { + "text": "27/15", + "index": 27015 + }, + "27016": { + "text": "27/16", + "index": 27016 + }, + "27017": { + "text": "27/17", + "index": 27017 + }, + "27018": { + "text": "27/18", + "index": 27018 + }, + "27019": { + "text": "27/19", + "index": 27019 + }, + "27020": { + "text": "27/20", + "index": 27020 + }, + "27021": { + "text": "27/21", + "index": 27021 + }, + "27022": { + "text": "27/22", + "index": 27022 + }, + "27023": { + "text": "27/23", + "index": 27023 + }, + "27024": { + "text": "27/24", + "index": 27024 + }, + "27025": { + "text": "27/25", + "index": 27025 + }, + "27026": { + "text": "27/26", + "index": 27026 + }, + "27027": { + "text": "27/27", + "index": 27027 + }, + "27028": { + "text": "27/28", + "index": 27028 + }, + "27029": { + "text": "27/29", + "index": 27029 + }, + "27030": { + "text": "27/30", + "index": 27030 + }, + "27031": { + "text": "27/31", + "index": 27031 + }, + "27032": { + "text": "27/32", + "index": 27032 + }, + "27033": { + "text": "27/33", + "index": 27033 + }, + "27034": { + "text": "27/34", + "index": 27034 + }, + "27035": { + "text": "27/35", + "index": 27035 + }, + "27036": { + "text": "27/36", + "index": 27036 + }, + "27037": { + "text": "27/37", + "index": 27037 + }, + "27038": { + "text": "27/38", + "index": 27038 + }, + "27039": { + "text": "27/39", + "index": 27039 + }, + "27040": { + "text": "27/40", + "index": 27040 + }, + "28000": { + "text": "28/0", + "index": 28000 + }, + "28001": { + "text": "28/1", + "index": 28001 + }, + "28002": { + "text": "28/2", + "index": 28002 + }, + "28003": { + "text": "28/3", + "index": 28003 + }, + "28004": { + "text": "28/4", + "index": 28004 + }, + "28005": { + "text": "28/5", + "index": 28005 + }, + "28006": { + "text": "28/6", + "index": 28006 + }, + "28007": { + "text": "28/7", + "index": 28007 + }, + "28008": { + "text": "28/8", + "index": 28008 + }, + "28009": { + "text": "28/9", + "index": 28009 + }, + "28010": { + "text": "28/10", + "index": 28010 + }, + "28011": { + "text": "28/11", + "index": 28011 + }, + "28012": { + "text": "28/12", + "index": 28012 + }, + "28013": { + "text": "28/13", + "index": 28013 + }, + "28014": { + "text": "28/14", + "index": 28014 + }, + "28015": { + "text": "28/15", + "index": 28015 + }, + "28016": { + "text": "28/16", + "index": 28016 + }, + "28017": { + "text": "28/17", + "index": 28017 + }, + "28018": { + "text": "28/18", + "index": 28018 + }, + "28019": { + "text": "28/19", + "index": 28019 + }, + "28020": { + "text": "28/20", + "index": 28020 + }, + "28021": { + "text": "28/21", + "index": 28021 + }, + "28022": { + "text": "28/22", + "index": 28022 + }, + "28023": { + "text": "28/23", + "index": 28023 + }, + "28024": { + "text": "28/24", + "index": 28024 + }, + "28025": { + "text": "28/25", + "index": 28025 + }, + "28026": { + "text": "28/26", + "index": 28026 + }, + "28027": { + "text": "28/27", + "index": 28027 + }, + "28028": { + "text": "28/28", + "index": 28028 + }, + "28029": { + "text": "28/29", + "index": 28029 + }, + "28030": { + "text": "28/30", + "index": 28030 + }, + "28031": { + "text": "28/31", + "index": 28031 + }, + "28032": { + "text": "28/32", + "index": 28032 + }, + "28033": { + "text": "28/33", + "index": 28033 + }, + "28034": { + "text": "28/34", + "index": 28034 + }, + "28035": { + "text": "28/35", + "index": 28035 + }, + "28036": { + "text": "28/36", + "index": 28036 + }, + "28037": { + "text": "28/37", + "index": 28037 + }, + "28038": { + "text": "28/38", + "index": 28038 + }, + "28039": { + "text": "28/39", + "index": 28039 + }, + "28040": { + "text": "28/40", + "index": 28040 + }, + "29000": { + "text": "29/0", + "index": 29000 + }, + "29001": { + "text": "29/1", + "index": 29001 + }, + "29002": { + "text": "29/2", + "index": 29002 + }, + "29003": { + "text": "29/3", + "index": 29003 + }, + "29004": { + "text": "29/4", + "index": 29004 + }, + "29005": { + "text": "29/5", + "index": 29005 + }, + "29006": { + "text": "29/6", + "index": 29006 + }, + "29007": { + "text": "29/7", + "index": 29007 + }, + "29008": { + "text": "29/8", + "index": 29008 + }, + "29009": { + "text": "29/9", + "index": 29009 + }, + "29010": { + "text": "29/10", + "index": 29010 + }, + "29011": { + "text": "29/11", + "index": 29011 + }, + "29012": { + "text": "29/12", + "index": 29012 + }, + "29013": { + "text": "29/13", + "index": 29013 + }, + "29014": { + "text": "29/14", + "index": 29014 + }, + "29015": { + "text": "29/15", + "index": 29015 + }, + "29016": { + "text": "29/16", + "index": 29016 + }, + "29017": { + "text": "29/17", + "index": 29017 + }, + "29018": { + "text": "29/18", + "index": 29018 + }, + "29019": { + "text": "29/19", + "index": 29019 + }, + "29020": { + "text": "29/20", + "index": 29020 + }, + "29021": { + "text": "29/21", + "index": 29021 + }, + "29022": { + "text": "29/22", + "index": 29022 + }, + "29023": { + "text": "29/23", + "index": 29023 + }, + "29024": { + "text": "29/24", + "index": 29024 + }, + "29025": { + "text": "29/25", + "index": 29025 + }, + "29026": { + "text": "29/26", + "index": 29026 + }, + "29027": { + "text": "29/27", + "index": 29027 + }, + "29028": { + "text": "29/28", + "index": 29028 + }, + "29029": { + "text": "29/29", + "index": 29029 + }, + "29030": { + "text": "29/30", + "index": 29030 + }, + "29031": { + "text": "29/31", + "index": 29031 + }, + "29032": { + "text": "29/32", + "index": 29032 + }, + "29033": { + "text": "29/33", + "index": 29033 + }, + "29034": { + "text": "29/34", + "index": 29034 + }, + "29035": { + "text": "29/35", + "index": 29035 + }, + "29036": { + "text": "29/36", + "index": 29036 + }, + "29037": { + "text": "29/37", + "index": 29037 + }, + "29038": { + "text": "29/38", + "index": 29038 + }, + "29039": { + "text": "29/39", + "index": 29039 + }, + "29040": { + "text": "29/40", + "index": 29040 + }, + "30000": { + "text": "30/0", + "index": 30000 + }, + "30001": { + "text": "30/1", + "index": 30001 + }, + "30002": { + "text": "30/2", + "index": 30002 + }, + "30003": { + "text": "30/3", + "index": 30003 + }, + "30004": { + "text": "30/4", + "index": 30004 + }, + "30005": { + "text": "30/5", + "index": 30005 + }, + "30006": { + "text": "30/6", + "index": 30006 + }, + "30007": { + "text": "30/7", + "index": 30007 + }, + "30008": { + "text": "30/8", + "index": 30008 + }, + "30009": { + "text": "30/9", + "index": 30009 + }, + "30010": { + "text": "30/10", + "index": 30010 + }, + "30011": { + "text": "30/11", + "index": 30011 + }, + "30012": { + "text": "30/12", + "index": 30012 + }, + "30013": { + "text": "30/13", + "index": 30013 + }, + "30014": { + "text": "30/14", + "index": 30014 + }, + "30015": { + "text": "30/15", + "index": 30015 + }, + "30016": { + "text": "30/16", + "index": 30016 + }, + "30017": { + "text": "30/17", + "index": 30017 + }, + "30018": { + "text": "30/18", + "index": 30018 + }, + "30019": { + "text": "30/19", + "index": 30019 + }, + "30020": { + "text": "30/20", + "index": 30020 + }, + "30021": { + "text": "30/21", + "index": 30021 + }, + "30022": { + "text": "30/22", + "index": 30022 + }, + "30023": { + "text": "30/23", + "index": 30023 + }, + "30024": { + "text": "30/24", + "index": 30024 + }, + "30025": { + "text": "30/25", + "index": 30025 + }, + "30026": { + "text": "30/26", + "index": 30026 + }, + "30027": { + "text": "30/27", + "index": 30027 + }, + "30028": { + "text": "30/28", + "index": 30028 + }, + "30029": { + "text": "30/29", + "index": 30029 + }, + "30030": { + "text": "30/30", + "index": 30030 + }, + "30031": { + "text": "30/31", + "index": 30031 + }, + "30032": { + "text": "30/32", + "index": 30032 + }, + "30033": { + "text": "30/33", + "index": 30033 + }, + "30034": { + "text": "30/34", + "index": 30034 + }, + "30035": { + "text": "30/35", + "index": 30035 + }, + "30036": { + "text": "30/36", + "index": 30036 + }, + "30037": { + "text": "30/37", + "index": 30037 + }, + "30038": { + "text": "30/38", + "index": 30038 + }, + "30039": { + "text": "30/39", + "index": 30039 + }, + "30040": { + "text": "30/40", + "index": 30040 + }, + "31000": { + "text": "31/0", + "index": 31000 + }, + "31001": { + "text": "31/1", + "index": 31001 + }, + "31002": { + "text": "31/2", + "index": 31002 + }, + "31003": { + "text": "31/3", + "index": 31003 + }, + "31004": { + "text": "31/4", + "index": 31004 + }, + "31005": { + "text": "31/5", + "index": 31005 + }, + "31006": { + "text": "31/6", + "index": 31006 + }, + "31007": { + "text": "31/7", + "index": 31007 + }, + "31008": { + "text": "31/8", + "index": 31008 + }, + "31009": { + "text": "31/9", + "index": 31009 + }, + "31010": { + "text": "31/10", + "index": 31010 + }, + "31011": { + "text": "31/11", + "index": 31011 + }, + "31012": { + "text": "31/12", + "index": 31012 + }, + "31013": { + "text": "31/13", + "index": 31013 + }, + "31014": { + "text": "31/14", + "index": 31014 + }, + "31015": { + "text": "31/15", + "index": 31015 + }, + "31016": { + "text": "31/16", + "index": 31016 + }, + "31017": { + "text": "31/17", + "index": 31017 + }, + "31018": { + "text": "31/18", + "index": 31018 + }, + "31019": { + "text": "31/19", + "index": 31019 + }, + "31020": { + "text": "31/20", + "index": 31020 + }, + "31021": { + "text": "31/21", + "index": 31021 + }, + "31022": { + "text": "31/22", + "index": 31022 + }, + "31023": { + "text": "31/23", + "index": 31023 + }, + "31024": { + "text": "31/24", + "index": 31024 + }, + "31025": { + "text": "31/25", + "index": 31025 + }, + "31026": { + "text": "31/26", + "index": 31026 + }, + "31027": { + "text": "31/27", + "index": 31027 + }, + "31028": { + "text": "31/28", + "index": 31028 + }, + "31029": { + "text": "31/29", + "index": 31029 + }, + "31030": { + "text": "31/30", + "index": 31030 + }, + "31031": { + "text": "31/31", + "index": 31031 + }, + "31032": { + "text": "31/32", + "index": 31032 + }, + "31033": { + "text": "31/33", + "index": 31033 + }, + "31034": { + "text": "31/34", + "index": 31034 + }, + "31035": { + "text": "31/35", + "index": 31035 + }, + "31036": { + "text": "31/36", + "index": 31036 + }, + "31037": { + "text": "31/37", + "index": 31037 + }, + "31038": { + "text": "31/38", + "index": 31038 + }, + "31039": { + "text": "31/39", + "index": 31039 + }, + "31040": { + "text": "31/40", + "index": 31040 + }, + "32000": { + "text": "32/0", + "index": 32000 + }, + "32001": { + "text": "32/1", + "index": 32001 + }, + "32002": { + "text": "32/2", + "index": 32002 + }, + "32003": { + "text": "32/3", + "index": 32003 + }, + "32004": { + "text": "32/4", + "index": 32004 + }, + "32005": { + "text": "32/5", + "index": 32005 + }, + "32006": { + "text": "32/6", + "index": 32006 + }, + "32007": { + "text": "32/7", + "index": 32007 + }, + "32008": { + "text": "32/8", + "index": 32008 + }, + "32009": { + "text": "32/9", + "index": 32009 + }, + "32010": { + "text": "32/10", + "index": 32010 + }, + "32011": { + "text": "32/11", + "index": 32011 + }, + "32012": { + "text": "32/12", + "index": 32012 + }, + "32013": { + "text": "32/13", + "index": 32013 + }, + "32014": { + "text": "32/14", + "index": 32014 + }, + "32015": { + "text": "32/15", + "index": 32015 + }, + "32016": { + "text": "32/16", + "index": 32016 + }, + "32017": { + "text": "32/17", + "index": 32017 + }, + "32018": { + "text": "32/18", + "index": 32018 + }, + "32019": { + "text": "32/19", + "index": 32019 + }, + "32020": { + "text": "32/20", + "index": 32020 + }, + "32021": { + "text": "32/21", + "index": 32021 + }, + "32022": { + "text": "32/22", + "index": 32022 + }, + "32023": { + "text": "32/23", + "index": 32023 + }, + "32024": { + "text": "32/24", + "index": 32024 + }, + "32025": { + "text": "32/25", + "index": 32025 + }, + "32026": { + "text": "32/26", + "index": 32026 + }, + "32027": { + "text": "32/27", + "index": 32027 + }, + "32028": { + "text": "32/28", + "index": 32028 + }, + "32029": { + "text": "32/29", + "index": 32029 + }, + "32030": { + "text": "32/30", + "index": 32030 + }, + "32031": { + "text": "32/31", + "index": 32031 + }, + "32032": { + "text": "32/32", + "index": 32032 + }, + "32033": { + "text": "32/33", + "index": 32033 + }, + "32034": { + "text": "32/34", + "index": 32034 + }, + "32035": { + "text": "32/35", + "index": 32035 + }, + "32036": { + "text": "32/36", + "index": 32036 + }, + "32037": { + "text": "32/37", + "index": 32037 + }, + "32038": { + "text": "32/38", + "index": 32038 + }, + "32039": { + "text": "32/39", + "index": 32039 + }, + "32040": { + "text": "32/40", + "index": 32040 + }, + "33000": { + "text": "33/0", + "index": 33000 + }, + "33001": { + "text": "33/1", + "index": 33001 + }, + "33002": { + "text": "33/2", + "index": 33002 + }, + "33003": { + "text": "33/3", + "index": 33003 + }, + "33004": { + "text": "33/4", + "index": 33004 + }, + "33005": { + "text": "33/5", + "index": 33005 + }, + "33006": { + "text": "33/6", + "index": 33006 + }, + "33007": { + "text": "33/7", + "index": 33007 + }, + "33008": { + "text": "33/8", + "index": 33008 + }, + "33009": { + "text": "33/9", + "index": 33009 + }, + "33010": { + "text": "33/10", + "index": 33010 + }, + "33011": { + "text": "33/11", + "index": 33011 + }, + "33012": { + "text": "33/12", + "index": 33012 + }, + "33013": { + "text": "33/13", + "index": 33013 + }, + "33014": { + "text": "33/14", + "index": 33014 + }, + "33015": { + "text": "33/15", + "index": 33015 + }, + "33016": { + "text": "33/16", + "index": 33016 + }, + "33017": { + "text": "33/17", + "index": 33017 + }, + "33018": { + "text": "33/18", + "index": 33018 + }, + "33019": { + "text": "33/19", + "index": 33019 + }, + "33020": { + "text": "33/20", + "index": 33020 + }, + "33021": { + "text": "33/21", + "index": 33021 + }, + "33022": { + "text": "33/22", + "index": 33022 + }, + "33023": { + "text": "33/23", + "index": 33023 + }, + "33024": { + "text": "33/24", + "index": 33024 + }, + "33025": { + "text": "33/25", + "index": 33025 + }, + "33026": { + "text": "33/26", + "index": 33026 + }, + "33027": { + "text": "33/27", + "index": 33027 + }, + "33028": { + "text": "33/28", + "index": 33028 + }, + "33029": { + "text": "33/29", + "index": 33029 + }, + "33030": { + "text": "33/30", + "index": 33030 + }, + "33031": { + "text": "33/31", + "index": 33031 + }, + "33032": { + "text": "33/32", + "index": 33032 + }, + "33033": { + "text": "33/33", + "index": 33033 + }, + "33034": { + "text": "33/34", + "index": 33034 + }, + "33035": { + "text": "33/35", + "index": 33035 + }, + "33036": { + "text": "33/36", + "index": 33036 + }, + "33037": { + "text": "33/37", + "index": 33037 + }, + "33038": { + "text": "33/38", + "index": 33038 + }, + "33039": { + "text": "33/39", + "index": 33039 + }, + "33040": { + "text": "33/40", + "index": 33040 + }, + "34000": { + "text": "34/0", + "index": 34000 + }, + "34001": { + "text": "34/1", + "index": 34001 + }, + "34002": { + "text": "34/2", + "index": 34002 + }, + "34003": { + "text": "34/3", + "index": 34003 + }, + "34004": { + "text": "34/4", + "index": 34004 + }, + "34005": { + "text": "34/5", + "index": 34005 + }, + "34006": { + "text": "34/6", + "index": 34006 + }, + "34007": { + "text": "34/7", + "index": 34007 + }, + "34008": { + "text": "34/8", + "index": 34008 + }, + "34009": { + "text": "34/9", + "index": 34009 + }, + "34010": { + "text": "34/10", + "index": 34010 + }, + "34011": { + "text": "34/11", + "index": 34011 + }, + "34012": { + "text": "34/12", + "index": 34012 + }, + "34013": { + "text": "34/13", + "index": 34013 + }, + "34014": { + "text": "34/14", + "index": 34014 + }, + "34015": { + "text": "34/15", + "index": 34015 + }, + "34016": { + "text": "34/16", + "index": 34016 + }, + "34017": { + "text": "34/17", + "index": 34017 + }, + "34018": { + "text": "34/18", + "index": 34018 + }, + "34019": { + "text": "34/19", + "index": 34019 + }, + "34020": { + "text": "34/20", + "index": 34020 + }, + "34021": { + "text": "34/21", + "index": 34021 + }, + "34022": { + "text": "34/22", + "index": 34022 + }, + "34023": { + "text": "34/23", + "index": 34023 + }, + "34024": { + "text": "34/24", + "index": 34024 + }, + "34025": { + "text": "34/25", + "index": 34025 + }, + "34026": { + "text": "34/26", + "index": 34026 + }, + "34027": { + "text": "34/27", + "index": 34027 + }, + "34028": { + "text": "34/28", + "index": 34028 + }, + "34029": { + "text": "34/29", + "index": 34029 + }, + "34030": { + "text": "34/30", + "index": 34030 + }, + "34031": { + "text": "34/31", + "index": 34031 + }, + "34032": { + "text": "34/32", + "index": 34032 + }, + "34033": { + "text": "34/33", + "index": 34033 + }, + "34034": { + "text": "34/34", + "index": 34034 + }, + "34035": { + "text": "34/35", + "index": 34035 + }, + "34036": { + "text": "34/36", + "index": 34036 + }, + "34037": { + "text": "34/37", + "index": 34037 + }, + "34038": { + "text": "34/38", + "index": 34038 + }, + "34039": { + "text": "34/39", + "index": 34039 + }, + "34040": { + "text": "34/40", + "index": 34040 + }, + "35000": { + "text": "35/0", + "index": 35000 + }, + "35001": { + "text": "35/1", + "index": 35001 + }, + "35002": { + "text": "35/2", + "index": 35002 + }, + "35003": { + "text": "35/3", + "index": 35003 + }, + "35004": { + "text": "35/4", + "index": 35004 + }, + "35005": { + "text": "35/5", + "index": 35005 + }, + "35006": { + "text": "35/6", + "index": 35006 + }, + "35007": { + "text": "35/7", + "index": 35007 + }, + "35008": { + "text": "35/8", + "index": 35008 + }, + "35009": { + "text": "35/9", + "index": 35009 + }, + "35010": { + "text": "35/10", + "index": 35010 + }, + "35011": { + "text": "35/11", + "index": 35011 + }, + "35012": { + "text": "35/12", + "index": 35012 + }, + "35013": { + "text": "35/13", + "index": 35013 + }, + "35014": { + "text": "35/14", + "index": 35014 + }, + "35015": { + "text": "35/15", + "index": 35015 + }, + "35016": { + "text": "35/16", + "index": 35016 + }, + "35017": { + "text": "35/17", + "index": 35017 + }, + "35018": { + "text": "35/18", + "index": 35018 + }, + "35019": { + "text": "35/19", + "index": 35019 + }, + "35020": { + "text": "35/20", + "index": 35020 + }, + "35021": { + "text": "35/21", + "index": 35021 + }, + "35022": { + "text": "35/22", + "index": 35022 + }, + "35023": { + "text": "35/23", + "index": 35023 + }, + "35024": { + "text": "35/24", + "index": 35024 + }, + "35025": { + "text": "35/25", + "index": 35025 + }, + "35026": { + "text": "35/26", + "index": 35026 + }, + "35027": { + "text": "35/27", + "index": 35027 + }, + "35028": { + "text": "35/28", + "index": 35028 + }, + "35029": { + "text": "35/29", + "index": 35029 + }, + "35030": { + "text": "35/30", + "index": 35030 + }, + "35031": { + "text": "35/31", + "index": 35031 + }, + "35032": { + "text": "35/32", + "index": 35032 + }, + "35033": { + "text": "35/33", + "index": 35033 + }, + "35034": { + "text": "35/34", + "index": 35034 + }, + "35035": { + "text": "35/35", + "index": 35035 + }, + "35036": { + "text": "35/36", + "index": 35036 + }, + "35037": { + "text": "35/37", + "index": 35037 + }, + "35038": { + "text": "35/38", + "index": 35038 + }, + "35039": { + "text": "35/39", + "index": 35039 + }, + "35040": { + "text": "35/40", + "index": 35040 + }, + "36000": { + "text": "36/0", + "index": 36000 + }, + "36001": { + "text": "36/1", + "index": 36001 + }, + "36002": { + "text": "36/2", + "index": 36002 + }, + "36003": { + "text": "36/3", + "index": 36003 + }, + "36004": { + "text": "36/4", + "index": 36004 + }, + "36005": { + "text": "36/5", + "index": 36005 + }, + "36006": { + "text": "36/6", + "index": 36006 + }, + "36007": { + "text": "36/7", + "index": 36007 + }, + "36008": { + "text": "36/8", + "index": 36008 + }, + "36009": { + "text": "36/9", + "index": 36009 + }, + "36010": { + "text": "36/10", + "index": 36010 + }, + "36011": { + "text": "36/11", + "index": 36011 + }, + "36012": { + "text": "36/12", + "index": 36012 + }, + "36013": { + "text": "36/13", + "index": 36013 + }, + "36014": { + "text": "36/14", + "index": 36014 + }, + "36015": { + "text": "36/15", + "index": 36015 + }, + "36016": { + "text": "36/16", + "index": 36016 + }, + "36017": { + "text": "36/17", + "index": 36017 + }, + "36018": { + "text": "36/18", + "index": 36018 + }, + "36019": { + "text": "36/19", + "index": 36019 + }, + "36020": { + "text": "36/20", + "index": 36020 + }, + "36021": { + "text": "36/21", + "index": 36021 + }, + "36022": { + "text": "36/22", + "index": 36022 + }, + "36023": { + "text": "36/23", + "index": 36023 + }, + "36024": { + "text": "36/24", + "index": 36024 + }, + "36025": { + "text": "36/25", + "index": 36025 + }, + "36026": { + "text": "36/26", + "index": 36026 + }, + "36027": { + "text": "36/27", + "index": 36027 + }, + "36028": { + "text": "36/28", + "index": 36028 + }, + "36029": { + "text": "36/29", + "index": 36029 + }, + "36030": { + "text": "36/30", + "index": 36030 + }, + "36031": { + "text": "36/31", + "index": 36031 + }, + "36032": { + "text": "36/32", + "index": 36032 + }, + "36033": { + "text": "36/33", + "index": 36033 + }, + "36034": { + "text": "36/34", + "index": 36034 + }, + "36035": { + "text": "36/35", + "index": 36035 + }, + "36036": { + "text": "36/36", + "index": 36036 + }, + "36037": { + "text": "36/37", + "index": 36037 + }, + "36038": { + "text": "36/38", + "index": 36038 + }, + "36039": { + "text": "36/39", + "index": 36039 + }, + "36040": { + "text": "36/40", + "index": 36040 + }, + "37000": { + "text": "37/0", + "index": 37000 + }, + "37001": { + "text": "37/1", + "index": 37001 + }, + "37002": { + "text": "37/2", + "index": 37002 + }, + "37003": { + "text": "37/3", + "index": 37003 + }, + "37004": { + "text": "37/4", + "index": 37004 + }, + "37005": { + "text": "37/5", + "index": 37005 + }, + "37006": { + "text": "37/6", + "index": 37006 + }, + "37007": { + "text": "37/7", + "index": 37007 + }, + "37008": { + "text": "37/8", + "index": 37008 + }, + "37009": { + "text": "37/9", + "index": 37009 + }, + "37010": { + "text": "37/10", + "index": 37010 + }, + "37011": { + "text": "37/11", + "index": 37011 + }, + "37012": { + "text": "37/12", + "index": 37012 + }, + "37013": { + "text": "37/13", + "index": 37013 + }, + "37014": { + "text": "37/14", + "index": 37014 + }, + "37015": { + "text": "37/15", + "index": 37015 + }, + "37016": { + "text": "37/16", + "index": 37016 + }, + "37017": { + "text": "37/17", + "index": 37017 + }, + "37018": { + "text": "37/18", + "index": 37018 + }, + "37019": { + "text": "37/19", + "index": 37019 + }, + "37020": { + "text": "37/20", + "index": 37020 + }, + "37021": { + "text": "37/21", + "index": 37021 + }, + "37022": { + "text": "37/22", + "index": 37022 + }, + "37023": { + "text": "37/23", + "index": 37023 + }, + "37024": { + "text": "37/24", + "index": 37024 + }, + "37025": { + "text": "37/25", + "index": 37025 + }, + "37026": { + "text": "37/26", + "index": 37026 + }, + "37027": { + "text": "37/27", + "index": 37027 + }, + "37028": { + "text": "37/28", + "index": 37028 + }, + "37029": { + "text": "37/29", + "index": 37029 + }, + "37030": { + "text": "37/30", + "index": 37030 + }, + "37031": { + "text": "37/31", + "index": 37031 + }, + "37032": { + "text": "37/32", + "index": 37032 + }, + "37033": { + "text": "37/33", + "index": 37033 + }, + "37034": { + "text": "37/34", + "index": 37034 + }, + "37035": { + "text": "37/35", + "index": 37035 + }, + "37036": { + "text": "37/36", + "index": 37036 + }, + "37037": { + "text": "37/37", + "index": 37037 + }, + "37038": { + "text": "37/38", + "index": 37038 + }, + "37039": { + "text": "37/39", + "index": 37039 + }, + "37040": { + "text": "37/40", + "index": 37040 + }, + "38000": { + "text": "38/0", + "index": 38000 + }, + "38001": { + "text": "38/1", + "index": 38001 + }, + "38002": { + "text": "38/2", + "index": 38002 + }, + "38003": { + "text": "38/3", + "index": 38003 + }, + "38004": { + "text": "38/4", + "index": 38004 + }, + "38005": { + "text": "38/5", + "index": 38005 + }, + "38006": { + "text": "38/6", + "index": 38006 + }, + "38007": { + "text": "38/7", + "index": 38007 + }, + "38008": { + "text": "38/8", + "index": 38008 + }, + "38009": { + "text": "38/9", + "index": 38009 + }, + "38010": { + "text": "38/10", + "index": 38010 + }, + "38011": { + "text": "38/11", + "index": 38011 + }, + "38012": { + "text": "38/12", + "index": 38012 + }, + "38013": { + "text": "38/13", + "index": 38013 + }, + "38014": { + "text": "38/14", + "index": 38014 + }, + "38015": { + "text": "38/15", + "index": 38015 + }, + "38016": { + "text": "38/16", + "index": 38016 + }, + "38017": { + "text": "38/17", + "index": 38017 + }, + "38018": { + "text": "38/18", + "index": 38018 + }, + "38019": { + "text": "38/19", + "index": 38019 + }, + "38020": { + "text": "38/20", + "index": 38020 + }, + "38021": { + "text": "38/21", + "index": 38021 + }, + "38022": { + "text": "38/22", + "index": 38022 + }, + "38023": { + "text": "38/23", + "index": 38023 + }, + "38024": { + "text": "38/24", + "index": 38024 + }, + "38025": { + "text": "38/25", + "index": 38025 + }, + "38026": { + "text": "38/26", + "index": 38026 + }, + "38027": { + "text": "38/27", + "index": 38027 + }, + "38028": { + "text": "38/28", + "index": 38028 + }, + "38029": { + "text": "38/29", + "index": 38029 + }, + "38030": { + "text": "38/30", + "index": 38030 + }, + "38031": { + "text": "38/31", + "index": 38031 + }, + "38032": { + "text": "38/32", + "index": 38032 + }, + "38033": { + "text": "38/33", + "index": 38033 + }, + "38034": { + "text": "38/34", + "index": 38034 + }, + "38035": { + "text": "38/35", + "index": 38035 + }, + "38036": { + "text": "38/36", + "index": 38036 + }, + "38037": { + "text": "38/37", + "index": 38037 + }, + "38038": { + "text": "38/38", + "index": 38038 + }, + "38039": { + "text": "38/39", + "index": 38039 + }, + "38040": { + "text": "38/40", + "index": 38040 + }, + "39000": { + "text": "39/0", + "index": 39000 + }, + "39001": { + "text": "39/1", + "index": 39001 + }, + "39002": { + "text": "39/2", + "index": 39002 + }, + "39003": { + "text": "39/3", + "index": 39003 + }, + "39004": { + "text": "39/4", + "index": 39004 + }, + "39005": { + "text": "39/5", + "index": 39005 + }, + "39006": { + "text": "39/6", + "index": 39006 + }, + "39007": { + "text": "39/7", + "index": 39007 + }, + "39008": { + "text": "39/8", + "index": 39008 + }, + "39009": { + "text": "39/9", + "index": 39009 + }, + "39010": { + "text": "39/10", + "index": 39010 + }, + "39011": { + "text": "39/11", + "index": 39011 + }, + "39012": { + "text": "39/12", + "index": 39012 + }, + "39013": { + "text": "39/13", + "index": 39013 + }, + "39014": { + "text": "39/14", + "index": 39014 + }, + "39015": { + "text": "39/15", + "index": 39015 + }, + "39016": { + "text": "39/16", + "index": 39016 + }, + "39017": { + "text": "39/17", + "index": 39017 + }, + "39018": { + "text": "39/18", + "index": 39018 + }, + "39019": { + "text": "39/19", + "index": 39019 + }, + "39020": { + "text": "39/20", + "index": 39020 + }, + "39021": { + "text": "39/21", + "index": 39021 + }, + "39022": { + "text": "39/22", + "index": 39022 + }, + "39023": { + "text": "39/23", + "index": 39023 + }, + "39024": { + "text": "39/24", + "index": 39024 + }, + "39025": { + "text": "39/25", + "index": 39025 + }, + "39026": { + "text": "39/26", + "index": 39026 + }, + "39027": { + "text": "39/27", + "index": 39027 + }, + "39028": { + "text": "39/28", + "index": 39028 + }, + "39029": { + "text": "39/29", + "index": 39029 + }, + "39030": { + "text": "39/30", + "index": 39030 + }, + "39031": { + "text": "39/31", + "index": 39031 + }, + "39032": { + "text": "39/32", + "index": 39032 + }, + "39033": { + "text": "39/33", + "index": 39033 + }, + "39034": { + "text": "39/34", + "index": 39034 + }, + "39035": { + "text": "39/35", + "index": 39035 + }, + "39036": { + "text": "39/36", + "index": 39036 + }, + "39037": { + "text": "39/37", + "index": 39037 + }, + "39038": { + "text": "39/38", + "index": 39038 + }, + "39039": { + "text": "39/39", + "index": 39039 + }, + "39040": { + "text": "39/40", + "index": 39040 + }, + "40000": { + "text": "40/0", + "index": 40000 + }, + "40001": { + "text": "40/1", + "index": 40001 + }, + "40002": { + "text": "40/2", + "index": 40002 + }, + "40003": { + "text": "40/3", + "index": 40003 + }, + "40004": { + "text": "40/4", + "index": 40004 + }, + "40005": { + "text": "40/5", + "index": 40005 + }, + "40006": { + "text": "40/6", + "index": 40006 + }, + "40007": { + "text": "40/7", + "index": 40007 + }, + "40008": { + "text": "40/8", + "index": 40008 + }, + "40009": { + "text": "40/9", + "index": 40009 + }, + "40010": { + "text": "40/10", + "index": 40010 + }, + "40011": { + "text": "40/11", + "index": 40011 + }, + "40012": { + "text": "40/12", + "index": 40012 + }, + "40013": { + "text": "40/13", + "index": 40013 + }, + "40014": { + "text": "40/14", + "index": 40014 + }, + "40015": { + "text": "40/15", + "index": 40015 + }, + "40016": { + "text": "40/16", + "index": 40016 + }, + "40017": { + "text": "40/17", + "index": 40017 + }, + "40018": { + "text": "40/18", + "index": 40018 + }, + "40019": { + "text": "40/19", + "index": 40019 + }, + "40020": { + "text": "40/20", + "index": 40020 + }, + "40021": { + "text": "40/21", + "index": 40021 + }, + "40022": { + "text": "40/22", + "index": 40022 + }, + "40023": { + "text": "40/23", + "index": 40023 + }, + "40024": { + "text": "40/24", + "index": 40024 + }, + "40025": { + "text": "40/25", + "index": 40025 + }, + "40026": { + "text": "40/26", + "index": 40026 + }, + "40027": { + "text": "40/27", + "index": 40027 + }, + "40028": { + "text": "40/28", + "index": 40028 + }, + "40029": { + "text": "40/29", + "index": 40029 + }, + "40030": { + "text": "40/30", + "index": 40030 + }, + "40031": { + "text": "40/31", + "index": 40031 + }, + "40032": { + "text": "40/32", + "index": 40032 + }, + "40033": { + "text": "40/33", + "index": 40033 + }, + "40034": { + "text": "40/34", + "index": 40034 + }, + "40035": { + "text": "40/35", + "index": 40035 + }, + "40036": { + "text": "40/36", + "index": 40036 + }, + "40037": { + "text": "40/37", + "index": 40037 + }, + "40038": { + "text": "40/38", + "index": 40038 + }, + "40039": { + "text": "40/39", + "index": 40039 + }, + "40040": { + "text": "40/40", + "index": 40040 + } + } + } + ] + }, + { + "id": "decimals", + "value": 0 + }, + { + "id": "unit", + "value": "none" + }, + { + "id": "color", + "value": { + "mode": "fixed", + "fixedColor": "text" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Health" + }, + "properties": [ + { + "id": "color", + "value": { + "mode": "thresholds" + } + }, + { + "id": "thresholds", + "value": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "green", + "value": 100 + } + ] + } + }, + { + "id": "unit", + "value": "percent" + } + ] + } + ] + }, + "gridPos": { + "h": 4, + "w": 4.8, + "x": 4.8, + "y": 1 + }, + "id": 1, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "center", + "orientation": "auto", + "percentChangeColorMode": "standard", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "value_and_name", + "wideLayout": true, + "text": { + "valueSize": 24 + } + }, + "pluginVersion": "11.6.4", + "targets": [ + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}) == 1)) * 1000 + (count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}))))", + "instant": true, + "legendFormat": "Alive/Expected", + "range": false, + "refId": "A" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}))), 1)) * 100", + "instant": true, + "legendFormat": "Health", + "range": false, + "refId": "B" + } + ], + "title": "\ud83d\udc18 PostgreSQL", + "type": "stat" + }, + { + "datasource": "Metrics", + "description": "ClickHouse instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", + "fieldConfig": { + "defaults": { + "color": { + "fixedColor": "text", + "mode": "fixed" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Alive/Expected" + }, + "properties": [ + { + "id": "mappings", + "value": [ + { + "type": "value", + "options": { + "0": { + "text": "0/0", + "index": 0 + }, + "1": { + "text": "0/1", + "index": 1 + }, + "2": { + "text": "0/2", + "index": 2 + }, + "3": { + "text": "0/3", + "index": 3 + }, + "4": { + "text": "0/4", + "index": 4 + }, + "5": { + "text": "0/5", + "index": 5 + }, + "6": { + "text": "0/6", + "index": 6 + }, + "7": { + "text": "0/7", + "index": 7 + }, + "8": { + "text": "0/8", + "index": 8 + }, + "9": { + "text": "0/9", + "index": 9 + }, + "10": { + "text": "0/10", + "index": 10 + }, + "11": { + "text": "0/11", + "index": 11 + }, + "12": { + "text": "0/12", + "index": 12 + }, + "13": { + "text": "0/13", + "index": 13 + }, + "14": { + "text": "0/14", + "index": 14 + }, + "15": { + "text": "0/15", + "index": 15 + }, + "16": { + "text": "0/16", + "index": 16 + }, + "17": { + "text": "0/17", + "index": 17 + }, + "18": { + "text": "0/18", + "index": 18 + }, + "19": { + "text": "0/19", + "index": 19 + }, + "20": { + "text": "0/20", + "index": 20 + }, + "21": { + "text": "0/21", + "index": 21 + }, + "22": { + "text": "0/22", + "index": 22 + }, + "23": { + "text": "0/23", + "index": 23 + }, + "24": { + "text": "0/24", + "index": 24 + }, + "25": { + "text": "0/25", + "index": 25 + }, + "26": { + "text": "0/26", + "index": 26 + }, + "27": { + "text": "0/27", + "index": 27 + }, + "28": { + "text": "0/28", + "index": 28 + }, + "29": { + "text": "0/29", + "index": 29 + }, + "30": { + "text": "0/30", + "index": 30 + }, + "31": { + "text": "0/31", + "index": 31 + }, + "32": { + "text": "0/32", + "index": 32 + }, + "33": { + "text": "0/33", + "index": 33 + }, + "34": { + "text": "0/34", + "index": 34 + }, + "35": { + "text": "0/35", + "index": 35 + }, + "36": { + "text": "0/36", + "index": 36 + }, + "37": { + "text": "0/37", + "index": 37 + }, + "38": { + "text": "0/38", + "index": 38 + }, + "39": { + "text": "0/39", + "index": 39 + }, + "40": { + "text": "0/40", + "index": 40 + }, + "1000": { + "text": "1/0", + "index": 1000 + }, + "1001": { + "text": "1/1", + "index": 1001 + }, + "1002": { + "text": "1/2", + "index": 1002 + }, + "1003": { + "text": "1/3", + "index": 1003 + }, + "1004": { + "text": "1/4", + "index": 1004 + }, + "1005": { + "text": "1/5", + "index": 1005 + }, + "1006": { + "text": "1/6", + "index": 1006 + }, + "1007": { + "text": "1/7", + "index": 1007 + }, + "1008": { + "text": "1/8", + "index": 1008 + }, + "1009": { + "text": "1/9", + "index": 1009 + }, + "1010": { + "text": "1/10", + "index": 1010 + }, + "1011": { + "text": "1/11", + "index": 1011 + }, + "1012": { + "text": "1/12", + "index": 1012 + }, + "1013": { + "text": "1/13", + "index": 1013 + }, + "1014": { + "text": "1/14", + "index": 1014 + }, + "1015": { + "text": "1/15", + "index": 1015 + }, + "1016": { + "text": "1/16", + "index": 1016 + }, + "1017": { + "text": "1/17", + "index": 1017 + }, + "1018": { + "text": "1/18", + "index": 1018 + }, + "1019": { + "text": "1/19", + "index": 1019 + }, + "1020": { + "text": "1/20", + "index": 1020 + }, + "1021": { + "text": "1/21", + "index": 1021 + }, + "1022": { + "text": "1/22", + "index": 1022 + }, + "1023": { + "text": "1/23", + "index": 1023 + }, + "1024": { + "text": "1/24", + "index": 1024 + }, + "1025": { + "text": "1/25", + "index": 1025 + }, + "1026": { + "text": "1/26", + "index": 1026 + }, + "1027": { + "text": "1/27", + "index": 1027 + }, + "1028": { + "text": "1/28", + "index": 1028 + }, + "1029": { + "text": "1/29", + "index": 1029 + }, + "1030": { + "text": "1/30", + "index": 1030 + }, + "1031": { + "text": "1/31", + "index": 1031 + }, + "1032": { + "text": "1/32", + "index": 1032 + }, + "1033": { + "text": "1/33", + "index": 1033 + }, + "1034": { + "text": "1/34", + "index": 1034 + }, + "1035": { + "text": "1/35", + "index": 1035 + }, + "1036": { + "text": "1/36", + "index": 1036 + }, + "1037": { + "text": "1/37", + "index": 1037 + }, + "1038": { + "text": "1/38", + "index": 1038 + }, + "1039": { + "text": "1/39", + "index": 1039 + }, + "1040": { + "text": "1/40", + "index": 1040 + }, + "2000": { + "text": "2/0", + "index": 2000 + }, + "2001": { + "text": "2/1", + "index": 2001 + }, + "2002": { + "text": "2/2", + "index": 2002 + }, + "2003": { + "text": "2/3", + "index": 2003 + }, + "2004": { + "text": "2/4", + "index": 2004 + }, + "2005": { + "text": "2/5", + "index": 2005 + }, + "2006": { + "text": "2/6", + "index": 2006 + }, + "2007": { + "text": "2/7", + "index": 2007 + }, + "2008": { + "text": "2/8", + "index": 2008 + }, + "2009": { + "text": "2/9", + "index": 2009 + }, + "2010": { + "text": "2/10", + "index": 2010 + }, + "2011": { + "text": "2/11", + "index": 2011 + }, + "2012": { + "text": "2/12", + "index": 2012 + }, + "2013": { + "text": "2/13", + "index": 2013 + }, + "2014": { + "text": "2/14", + "index": 2014 + }, + "2015": { + "text": "2/15", + "index": 2015 + }, + "2016": { + "text": "2/16", + "index": 2016 + }, + "2017": { + "text": "2/17", + "index": 2017 + }, + "2018": { + "text": "2/18", + "index": 2018 + }, + "2019": { + "text": "2/19", + "index": 2019 + }, + "2020": { + "text": "2/20", + "index": 2020 + }, + "2021": { + "text": "2/21", + "index": 2021 + }, + "2022": { + "text": "2/22", + "index": 2022 + }, + "2023": { + "text": "2/23", + "index": 2023 + }, + "2024": { + "text": "2/24", + "index": 2024 + }, + "2025": { + "text": "2/25", + "index": 2025 + }, + "2026": { + "text": "2/26", + "index": 2026 + }, + "2027": { + "text": "2/27", + "index": 2027 + }, + "2028": { + "text": "2/28", + "index": 2028 + }, + "2029": { + "text": "2/29", + "index": 2029 + }, + "2030": { + "text": "2/30", + "index": 2030 + }, + "2031": { + "text": "2/31", + "index": 2031 + }, + "2032": { + "text": "2/32", + "index": 2032 + }, + "2033": { + "text": "2/33", + "index": 2033 + }, + "2034": { + "text": "2/34", + "index": 2034 + }, + "2035": { + "text": "2/35", + "index": 2035 + }, + "2036": { + "text": "2/36", + "index": 2036 + }, + "2037": { + "text": "2/37", + "index": 2037 + }, + "2038": { + "text": "2/38", + "index": 2038 + }, + "2039": { + "text": "2/39", + "index": 2039 + }, + "2040": { + "text": "2/40", + "index": 2040 + }, + "3000": { + "text": "3/0", + "index": 3000 + }, + "3001": { + "text": "3/1", + "index": 3001 + }, + "3002": { + "text": "3/2", + "index": 3002 + }, + "3003": { + "text": "3/3", + "index": 3003 + }, + "3004": { + "text": "3/4", + "index": 3004 + }, + "3005": { + "text": "3/5", + "index": 3005 + }, + "3006": { + "text": "3/6", + "index": 3006 + }, + "3007": { + "text": "3/7", + "index": 3007 + }, + "3008": { + "text": "3/8", + "index": 3008 + }, + "3009": { + "text": "3/9", + "index": 3009 + }, + "3010": { + "text": "3/10", + "index": 3010 + }, + "3011": { + "text": "3/11", + "index": 3011 + }, + "3012": { + "text": "3/12", + "index": 3012 + }, + "3013": { + "text": "3/13", + "index": 3013 + }, + "3014": { + "text": "3/14", + "index": 3014 + }, + "3015": { + "text": "3/15", + "index": 3015 + }, + "3016": { + "text": "3/16", + "index": 3016 + }, + "3017": { + "text": "3/17", + "index": 3017 + }, + "3018": { + "text": "3/18", + "index": 3018 + }, + "3019": { + "text": "3/19", + "index": 3019 + }, + "3020": { + "text": "3/20", + "index": 3020 + }, + "3021": { + "text": "3/21", + "index": 3021 + }, + "3022": { + "text": "3/22", + "index": 3022 + }, + "3023": { + "text": "3/23", + "index": 3023 + }, + "3024": { + "text": "3/24", + "index": 3024 + }, + "3025": { + "text": "3/25", + "index": 3025 + }, + "3026": { + "text": "3/26", + "index": 3026 + }, + "3027": { + "text": "3/27", + "index": 3027 + }, + "3028": { + "text": "3/28", + "index": 3028 + }, + "3029": { + "text": "3/29", + "index": 3029 + }, + "3030": { + "text": "3/30", + "index": 3030 + }, + "3031": { + "text": "3/31", + "index": 3031 + }, + "3032": { + "text": "3/32", + "index": 3032 + }, + "3033": { + "text": "3/33", + "index": 3033 + }, + "3034": { + "text": "3/34", + "index": 3034 + }, + "3035": { + "text": "3/35", + "index": 3035 + }, + "3036": { + "text": "3/36", + "index": 3036 + }, + "3037": { + "text": "3/37", + "index": 3037 + }, + "3038": { + "text": "3/38", + "index": 3038 + }, + "3039": { + "text": "3/39", + "index": 3039 + }, + "3040": { + "text": "3/40", + "index": 3040 + }, + "4000": { + "text": "4/0", + "index": 4000 + }, + "4001": { + "text": "4/1", + "index": 4001 + }, + "4002": { + "text": "4/2", + "index": 4002 + }, + "4003": { + "text": "4/3", + "index": 4003 + }, + "4004": { + "text": "4/4", + "index": 4004 + }, + "4005": { + "text": "4/5", + "index": 4005 + }, + "4006": { + "text": "4/6", + "index": 4006 + }, + "4007": { + "text": "4/7", + "index": 4007 + }, + "4008": { + "text": "4/8", + "index": 4008 + }, + "4009": { + "text": "4/9", + "index": 4009 + }, + "4010": { + "text": "4/10", + "index": 4010 + }, + "4011": { + "text": "4/11", + "index": 4011 + }, + "4012": { + "text": "4/12", + "index": 4012 + }, + "4013": { + "text": "4/13", + "index": 4013 + }, + "4014": { + "text": "4/14", + "index": 4014 + }, + "4015": { + "text": "4/15", + "index": 4015 + }, + "4016": { + "text": "4/16", + "index": 4016 + }, + "4017": { + "text": "4/17", + "index": 4017 + }, + "4018": { + "text": "4/18", + "index": 4018 + }, + "4019": { + "text": "4/19", + "index": 4019 + }, + "4020": { + "text": "4/20", + "index": 4020 + }, + "4021": { + "text": "4/21", + "index": 4021 + }, + "4022": { + "text": "4/22", + "index": 4022 + }, + "4023": { + "text": "4/23", + "index": 4023 + }, + "4024": { + "text": "4/24", + "index": 4024 + }, + "4025": { + "text": "4/25", + "index": 4025 + }, + "4026": { + "text": "4/26", + "index": 4026 + }, + "4027": { + "text": "4/27", + "index": 4027 + }, + "4028": { + "text": "4/28", + "index": 4028 + }, + "4029": { + "text": "4/29", + "index": 4029 + }, + "4030": { + "text": "4/30", + "index": 4030 + }, + "4031": { + "text": "4/31", + "index": 4031 + }, + "4032": { + "text": "4/32", + "index": 4032 + }, + "4033": { + "text": "4/33", + "index": 4033 + }, + "4034": { + "text": "4/34", + "index": 4034 + }, + "4035": { + "text": "4/35", + "index": 4035 + }, + "4036": { + "text": "4/36", + "index": 4036 + }, + "4037": { + "text": "4/37", + "index": 4037 + }, + "4038": { + "text": "4/38", + "index": 4038 + }, + "4039": { + "text": "4/39", + "index": 4039 + }, + "4040": { + "text": "4/40", + "index": 4040 + }, + "5000": { + "text": "5/0", + "index": 5000 + }, + "5001": { + "text": "5/1", + "index": 5001 + }, + "5002": { + "text": "5/2", + "index": 5002 + }, + "5003": { + "text": "5/3", + "index": 5003 + }, + "5004": { + "text": "5/4", + "index": 5004 + }, + "5005": { + "text": "5/5", + "index": 5005 + }, + "5006": { + "text": "5/6", + "index": 5006 + }, + "5007": { + "text": "5/7", + "index": 5007 + }, + "5008": { + "text": "5/8", + "index": 5008 + }, + "5009": { + "text": "5/9", + "index": 5009 + }, + "5010": { + "text": "5/10", + "index": 5010 + }, + "5011": { + "text": "5/11", + "index": 5011 + }, + "5012": { + "text": "5/12", + "index": 5012 + }, + "5013": { + "text": "5/13", + "index": 5013 + }, + "5014": { + "text": "5/14", + "index": 5014 + }, + "5015": { + "text": "5/15", + "index": 5015 + }, + "5016": { + "text": "5/16", + "index": 5016 + }, + "5017": { + "text": "5/17", + "index": 5017 + }, + "5018": { + "text": "5/18", + "index": 5018 + }, + "5019": { + "text": "5/19", + "index": 5019 + }, + "5020": { + "text": "5/20", + "index": 5020 + }, + "5021": { + "text": "5/21", + "index": 5021 + }, + "5022": { + "text": "5/22", + "index": 5022 + }, + "5023": { + "text": "5/23", + "index": 5023 + }, + "5024": { + "text": "5/24", + "index": 5024 + }, + "5025": { + "text": "5/25", + "index": 5025 + }, + "5026": { + "text": "5/26", + "index": 5026 + }, + "5027": { + "text": "5/27", + "index": 5027 + }, + "5028": { + "text": "5/28", + "index": 5028 + }, + "5029": { + "text": "5/29", + "index": 5029 + }, + "5030": { + "text": "5/30", + "index": 5030 + }, + "5031": { + "text": "5/31", + "index": 5031 + }, + "5032": { + "text": "5/32", + "index": 5032 + }, + "5033": { + "text": "5/33", + "index": 5033 + }, + "5034": { + "text": "5/34", + "index": 5034 + }, + "5035": { + "text": "5/35", + "index": 5035 + }, + "5036": { + "text": "5/36", + "index": 5036 + }, + "5037": { + "text": "5/37", + "index": 5037 + }, + "5038": { + "text": "5/38", + "index": 5038 + }, + "5039": { + "text": "5/39", + "index": 5039 + }, + "5040": { + "text": "5/40", + "index": 5040 + }, + "6000": { + "text": "6/0", + "index": 6000 + }, + "6001": { + "text": "6/1", + "index": 6001 + }, + "6002": { + "text": "6/2", + "index": 6002 + }, + "6003": { + "text": "6/3", + "index": 6003 + }, + "6004": { + "text": "6/4", + "index": 6004 + }, + "6005": { + "text": "6/5", + "index": 6005 + }, + "6006": { + "text": "6/6", + "index": 6006 + }, + "6007": { + "text": "6/7", + "index": 6007 + }, + "6008": { + "text": "6/8", + "index": 6008 + }, + "6009": { + "text": "6/9", + "index": 6009 + }, + "6010": { + "text": "6/10", + "index": 6010 + }, + "6011": { + "text": "6/11", + "index": 6011 + }, + "6012": { + "text": "6/12", + "index": 6012 + }, + "6013": { + "text": "6/13", + "index": 6013 + }, + "6014": { + "text": "6/14", + "index": 6014 + }, + "6015": { + "text": "6/15", + "index": 6015 + }, + "6016": { + "text": "6/16", + "index": 6016 + }, + "6017": { + "text": "6/17", + "index": 6017 + }, + "6018": { + "text": "6/18", + "index": 6018 + }, + "6019": { + "text": "6/19", + "index": 6019 + }, + "6020": { + "text": "6/20", + "index": 6020 + }, + "6021": { + "text": "6/21", + "index": 6021 + }, + "6022": { + "text": "6/22", + "index": 6022 + }, + "6023": { + "text": "6/23", + "index": 6023 + }, + "6024": { + "text": "6/24", + "index": 6024 + }, + "6025": { + "text": "6/25", + "index": 6025 + }, + "6026": { + "text": "6/26", + "index": 6026 + }, + "6027": { + "text": "6/27", + "index": 6027 + }, + "6028": { + "text": "6/28", + "index": 6028 + }, + "6029": { + "text": "6/29", + "index": 6029 + }, + "6030": { + "text": "6/30", + "index": 6030 + }, + "6031": { + "text": "6/31", + "index": 6031 + }, + "6032": { + "text": "6/32", + "index": 6032 + }, + "6033": { + "text": "6/33", + "index": 6033 + }, + "6034": { + "text": "6/34", + "index": 6034 + }, + "6035": { + "text": "6/35", + "index": 6035 + }, + "6036": { + "text": "6/36", + "index": 6036 + }, + "6037": { + "text": "6/37", + "index": 6037 + }, + "6038": { + "text": "6/38", + "index": 6038 + }, + "6039": { + "text": "6/39", + "index": 6039 + }, + "6040": { + "text": "6/40", + "index": 6040 + }, + "7000": { + "text": "7/0", + "index": 7000 + }, + "7001": { + "text": "7/1", + "index": 7001 + }, + "7002": { + "text": "7/2", + "index": 7002 + }, + "7003": { + "text": "7/3", + "index": 7003 + }, + "7004": { + "text": "7/4", + "index": 7004 + }, + "7005": { + "text": "7/5", + "index": 7005 + }, + "7006": { + "text": "7/6", + "index": 7006 + }, + "7007": { + "text": "7/7", + "index": 7007 + }, + "7008": { + "text": "7/8", + "index": 7008 + }, + "7009": { + "text": "7/9", + "index": 7009 + }, + "7010": { + "text": "7/10", + "index": 7010 + }, + "7011": { + "text": "7/11", + "index": 7011 + }, + "7012": { + "text": "7/12", + "index": 7012 + }, + "7013": { + "text": "7/13", + "index": 7013 + }, + "7014": { + "text": "7/14", + "index": 7014 + }, + "7015": { + "text": "7/15", + "index": 7015 + }, + "7016": { + "text": "7/16", + "index": 7016 + }, + "7017": { + "text": "7/17", + "index": 7017 + }, + "7018": { + "text": "7/18", + "index": 7018 + }, + "7019": { + "text": "7/19", + "index": 7019 + }, + "7020": { + "text": "7/20", + "index": 7020 + }, + "7021": { + "text": "7/21", + "index": 7021 + }, + "7022": { + "text": "7/22", + "index": 7022 + }, + "7023": { + "text": "7/23", + "index": 7023 + }, + "7024": { + "text": "7/24", + "index": 7024 + }, + "7025": { + "text": "7/25", + "index": 7025 + }, + "7026": { + "text": "7/26", + "index": 7026 + }, + "7027": { + "text": "7/27", + "index": 7027 + }, + "7028": { + "text": "7/28", + "index": 7028 + }, + "7029": { + "text": "7/29", + "index": 7029 + }, + "7030": { + "text": "7/30", + "index": 7030 + }, + "7031": { + "text": "7/31", + "index": 7031 + }, + "7032": { + "text": "7/32", + "index": 7032 + }, + "7033": { + "text": "7/33", + "index": 7033 + }, + "7034": { + "text": "7/34", + "index": 7034 + }, + "7035": { + "text": "7/35", + "index": 7035 + }, + "7036": { + "text": "7/36", + "index": 7036 + }, + "7037": { + "text": "7/37", + "index": 7037 + }, + "7038": { + "text": "7/38", + "index": 7038 + }, + "7039": { + "text": "7/39", + "index": 7039 + }, + "7040": { + "text": "7/40", + "index": 7040 + }, + "8000": { + "text": "8/0", + "index": 8000 + }, + "8001": { + "text": "8/1", + "index": 8001 + }, + "8002": { + "text": "8/2", + "index": 8002 + }, + "8003": { + "text": "8/3", + "index": 8003 + }, + "8004": { + "text": "8/4", + "index": 8004 + }, + "8005": { + "text": "8/5", + "index": 8005 + }, + "8006": { + "text": "8/6", + "index": 8006 + }, + "8007": { + "text": "8/7", + "index": 8007 + }, + "8008": { + "text": "8/8", + "index": 8008 + }, + "8009": { + "text": "8/9", + "index": 8009 + }, + "8010": { + "text": "8/10", + "index": 8010 + }, + "8011": { + "text": "8/11", + "index": 8011 + }, + "8012": { + "text": "8/12", + "index": 8012 + }, + "8013": { + "text": "8/13", + "index": 8013 + }, + "8014": { + "text": "8/14", + "index": 8014 + }, + "8015": { + "text": "8/15", + "index": 8015 + }, + "8016": { + "text": "8/16", + "index": 8016 + }, + "8017": { + "text": "8/17", + "index": 8017 + }, + "8018": { + "text": "8/18", + "index": 8018 + }, + "8019": { + "text": "8/19", + "index": 8019 + }, + "8020": { + "text": "8/20", + "index": 8020 + }, + "8021": { + "text": "8/21", + "index": 8021 + }, + "8022": { + "text": "8/22", + "index": 8022 + }, + "8023": { + "text": "8/23", + "index": 8023 + }, + "8024": { + "text": "8/24", + "index": 8024 + }, + "8025": { + "text": "8/25", + "index": 8025 + }, + "8026": { + "text": "8/26", + "index": 8026 + }, + "8027": { + "text": "8/27", + "index": 8027 + }, + "8028": { + "text": "8/28", + "index": 8028 + }, + "8029": { + "text": "8/29", + "index": 8029 + }, + "8030": { + "text": "8/30", + "index": 8030 + }, + "8031": { + "text": "8/31", + "index": 8031 + }, + "8032": { + "text": "8/32", + "index": 8032 + }, + "8033": { + "text": "8/33", + "index": 8033 + }, + "8034": { + "text": "8/34", + "index": 8034 + }, + "8035": { + "text": "8/35", + "index": 8035 + }, + "8036": { + "text": "8/36", + "index": 8036 + }, + "8037": { + "text": "8/37", + "index": 8037 + }, + "8038": { + "text": "8/38", + "index": 8038 + }, + "8039": { + "text": "8/39", + "index": 8039 + }, + "8040": { + "text": "8/40", + "index": 8040 + }, + "9000": { + "text": "9/0", + "index": 9000 + }, + "9001": { + "text": "9/1", + "index": 9001 + }, + "9002": { + "text": "9/2", + "index": 9002 + }, + "9003": { + "text": "9/3", + "index": 9003 + }, + "9004": { + "text": "9/4", + "index": 9004 + }, + "9005": { + "text": "9/5", + "index": 9005 + }, + "9006": { + "text": "9/6", + "index": 9006 + }, + "9007": { + "text": "9/7", + "index": 9007 + }, + "9008": { + "text": "9/8", + "index": 9008 + }, + "9009": { + "text": "9/9", + "index": 9009 + }, + "9010": { + "text": "9/10", + "index": 9010 + }, + "9011": { + "text": "9/11", + "index": 9011 + }, + "9012": { + "text": "9/12", + "index": 9012 + }, + "9013": { + "text": "9/13", + "index": 9013 + }, + "9014": { + "text": "9/14", + "index": 9014 + }, + "9015": { + "text": "9/15", + "index": 9015 + }, + "9016": { + "text": "9/16", + "index": 9016 + }, + "9017": { + "text": "9/17", + "index": 9017 + }, + "9018": { + "text": "9/18", + "index": 9018 + }, + "9019": { + "text": "9/19", + "index": 9019 + }, + "9020": { + "text": "9/20", + "index": 9020 + }, + "9021": { + "text": "9/21", + "index": 9021 + }, + "9022": { + "text": "9/22", + "index": 9022 + }, + "9023": { + "text": "9/23", + "index": 9023 + }, + "9024": { + "text": "9/24", + "index": 9024 + }, + "9025": { + "text": "9/25", + "index": 9025 + }, + "9026": { + "text": "9/26", + "index": 9026 + }, + "9027": { + "text": "9/27", + "index": 9027 + }, + "9028": { + "text": "9/28", + "index": 9028 + }, + "9029": { + "text": "9/29", + "index": 9029 + }, + "9030": { + "text": "9/30", + "index": 9030 + }, + "9031": { + "text": "9/31", + "index": 9031 + }, + "9032": { + "text": "9/32", + "index": 9032 + }, + "9033": { + "text": "9/33", + "index": 9033 + }, + "9034": { + "text": "9/34", + "index": 9034 + }, + "9035": { + "text": "9/35", + "index": 9035 + }, + "9036": { + "text": "9/36", + "index": 9036 + }, + "9037": { + "text": "9/37", + "index": 9037 + }, + "9038": { + "text": "9/38", + "index": 9038 + }, + "9039": { + "text": "9/39", + "index": 9039 + }, + "9040": { + "text": "9/40", + "index": 9040 + }, + "10000": { + "text": "10/0", + "index": 10000 + }, + "10001": { + "text": "10/1", + "index": 10001 + }, + "10002": { + "text": "10/2", + "index": 10002 + }, + "10003": { + "text": "10/3", + "index": 10003 + }, + "10004": { + "text": "10/4", + "index": 10004 + }, + "10005": { + "text": "10/5", + "index": 10005 + }, + "10006": { + "text": "10/6", + "index": 10006 + }, + "10007": { + "text": "10/7", + "index": 10007 + }, + "10008": { + "text": "10/8", + "index": 10008 + }, + "10009": { + "text": "10/9", + "index": 10009 + }, + "10010": { + "text": "10/10", + "index": 10010 + }, + "10011": { + "text": "10/11", + "index": 10011 + }, + "10012": { + "text": "10/12", + "index": 10012 + }, + "10013": { + "text": "10/13", + "index": 10013 + }, + "10014": { + "text": "10/14", + "index": 10014 + }, + "10015": { + "text": "10/15", + "index": 10015 + }, + "10016": { + "text": "10/16", + "index": 10016 + }, + "10017": { + "text": "10/17", + "index": 10017 + }, + "10018": { + "text": "10/18", + "index": 10018 + }, + "10019": { + "text": "10/19", + "index": 10019 + }, + "10020": { + "text": "10/20", + "index": 10020 + }, + "10021": { + "text": "10/21", + "index": 10021 + }, + "10022": { + "text": "10/22", + "index": 10022 + }, + "10023": { + "text": "10/23", + "index": 10023 + }, + "10024": { + "text": "10/24", + "index": 10024 + }, + "10025": { + "text": "10/25", + "index": 10025 + }, + "10026": { + "text": "10/26", + "index": 10026 + }, + "10027": { + "text": "10/27", + "index": 10027 + }, + "10028": { + "text": "10/28", + "index": 10028 + }, + "10029": { + "text": "10/29", + "index": 10029 + }, + "10030": { + "text": "10/30", + "index": 10030 + }, + "10031": { + "text": "10/31", + "index": 10031 + }, + "10032": { + "text": "10/32", + "index": 10032 + }, + "10033": { + "text": "10/33", + "index": 10033 + }, + "10034": { + "text": "10/34", + "index": 10034 + }, + "10035": { + "text": "10/35", + "index": 10035 + }, + "10036": { + "text": "10/36", + "index": 10036 + }, + "10037": { + "text": "10/37", + "index": 10037 + }, + "10038": { + "text": "10/38", + "index": 10038 + }, + "10039": { + "text": "10/39", + "index": 10039 + }, + "10040": { + "text": "10/40", + "index": 10040 + }, + "11000": { + "text": "11/0", + "index": 11000 + }, + "11001": { + "text": "11/1", + "index": 11001 + }, + "11002": { + "text": "11/2", + "index": 11002 + }, + "11003": { + "text": "11/3", + "index": 11003 + }, + "11004": { + "text": "11/4", + "index": 11004 + }, + "11005": { + "text": "11/5", + "index": 11005 + }, + "11006": { + "text": "11/6", + "index": 11006 + }, + "11007": { + "text": "11/7", + "index": 11007 + }, + "11008": { + "text": "11/8", + "index": 11008 + }, + "11009": { + "text": "11/9", + "index": 11009 + }, + "11010": { + "text": "11/10", + "index": 11010 + }, + "11011": { + "text": "11/11", + "index": 11011 + }, + "11012": { + "text": "11/12", + "index": 11012 + }, + "11013": { + "text": "11/13", + "index": 11013 + }, + "11014": { + "text": "11/14", + "index": 11014 + }, + "11015": { + "text": "11/15", + "index": 11015 + }, + "11016": { + "text": "11/16", + "index": 11016 + }, + "11017": { + "text": "11/17", + "index": 11017 + }, + "11018": { + "text": "11/18", + "index": 11018 + }, + "11019": { + "text": "11/19", + "index": 11019 + }, + "11020": { + "text": "11/20", + "index": 11020 + }, + "11021": { + "text": "11/21", + "index": 11021 + }, + "11022": { + "text": "11/22", + "index": 11022 + }, + "11023": { + "text": "11/23", + "index": 11023 + }, + "11024": { + "text": "11/24", + "index": 11024 + }, + "11025": { + "text": "11/25", + "index": 11025 + }, + "11026": { + "text": "11/26", + "index": 11026 + }, + "11027": { + "text": "11/27", + "index": 11027 + }, + "11028": { + "text": "11/28", + "index": 11028 + }, + "11029": { + "text": "11/29", + "index": 11029 + }, + "11030": { + "text": "11/30", + "index": 11030 + }, + "11031": { + "text": "11/31", + "index": 11031 + }, + "11032": { + "text": "11/32", + "index": 11032 + }, + "11033": { + "text": "11/33", + "index": 11033 + }, + "11034": { + "text": "11/34", + "index": 11034 + }, + "11035": { + "text": "11/35", + "index": 11035 + }, + "11036": { + "text": "11/36", + "index": 11036 + }, + "11037": { + "text": "11/37", + "index": 11037 + }, + "11038": { + "text": "11/38", + "index": 11038 + }, + "11039": { + "text": "11/39", + "index": 11039 + }, + "11040": { + "text": "11/40", + "index": 11040 + }, + "12000": { + "text": "12/0", + "index": 12000 + }, + "12001": { + "text": "12/1", + "index": 12001 + }, + "12002": { + "text": "12/2", + "index": 12002 + }, + "12003": { + "text": "12/3", + "index": 12003 + }, + "12004": { + "text": "12/4", + "index": 12004 + }, + "12005": { + "text": "12/5", + "index": 12005 + }, + "12006": { + "text": "12/6", + "index": 12006 + }, + "12007": { + "text": "12/7", + "index": 12007 + }, + "12008": { + "text": "12/8", + "index": 12008 + }, + "12009": { + "text": "12/9", + "index": 12009 + }, + "12010": { + "text": "12/10", + "index": 12010 + }, + "12011": { + "text": "12/11", + "index": 12011 + }, + "12012": { + "text": "12/12", + "index": 12012 + }, + "12013": { + "text": "12/13", + "index": 12013 + }, + "12014": { + "text": "12/14", + "index": 12014 + }, + "12015": { + "text": "12/15", + "index": 12015 + }, + "12016": { + "text": "12/16", + "index": 12016 + }, + "12017": { + "text": "12/17", + "index": 12017 + }, + "12018": { + "text": "12/18", + "index": 12018 + }, + "12019": { + "text": "12/19", + "index": 12019 + }, + "12020": { + "text": "12/20", + "index": 12020 + }, + "12021": { + "text": "12/21", + "index": 12021 + }, + "12022": { + "text": "12/22", + "index": 12022 + }, + "12023": { + "text": "12/23", + "index": 12023 + }, + "12024": { + "text": "12/24", + "index": 12024 + }, + "12025": { + "text": "12/25", + "index": 12025 + }, + "12026": { + "text": "12/26", + "index": 12026 + }, + "12027": { + "text": "12/27", + "index": 12027 + }, + "12028": { + "text": "12/28", + "index": 12028 + }, + "12029": { + "text": "12/29", + "index": 12029 + }, + "12030": { + "text": "12/30", + "index": 12030 + }, + "12031": { + "text": "12/31", + "index": 12031 + }, + "12032": { + "text": "12/32", + "index": 12032 + }, + "12033": { + "text": "12/33", + "index": 12033 + }, + "12034": { + "text": "12/34", + "index": 12034 + }, + "12035": { + "text": "12/35", + "index": 12035 + }, + "12036": { + "text": "12/36", + "index": 12036 + }, + "12037": { + "text": "12/37", + "index": 12037 + }, + "12038": { + "text": "12/38", + "index": 12038 + }, + "12039": { + "text": "12/39", + "index": 12039 + }, + "12040": { + "text": "12/40", + "index": 12040 + }, + "13000": { + "text": "13/0", + "index": 13000 + }, + "13001": { + "text": "13/1", + "index": 13001 + }, + "13002": { + "text": "13/2", + "index": 13002 + }, + "13003": { + "text": "13/3", + "index": 13003 + }, + "13004": { + "text": "13/4", + "index": 13004 + }, + "13005": { + "text": "13/5", + "index": 13005 + }, + "13006": { + "text": "13/6", + "index": 13006 + }, + "13007": { + "text": "13/7", + "index": 13007 + }, + "13008": { + "text": "13/8", + "index": 13008 + }, + "13009": { + "text": "13/9", + "index": 13009 + }, + "13010": { + "text": "13/10", + "index": 13010 + }, + "13011": { + "text": "13/11", + "index": 13011 + }, + "13012": { + "text": "13/12", + "index": 13012 + }, + "13013": { + "text": "13/13", + "index": 13013 + }, + "13014": { + "text": "13/14", + "index": 13014 + }, + "13015": { + "text": "13/15", + "index": 13015 + }, + "13016": { + "text": "13/16", + "index": 13016 + }, + "13017": { + "text": "13/17", + "index": 13017 + }, + "13018": { + "text": "13/18", + "index": 13018 + }, + "13019": { + "text": "13/19", + "index": 13019 + }, + "13020": { + "text": "13/20", + "index": 13020 + }, + "13021": { + "text": "13/21", + "index": 13021 + }, + "13022": { + "text": "13/22", + "index": 13022 + }, + "13023": { + "text": "13/23", + "index": 13023 + }, + "13024": { + "text": "13/24", + "index": 13024 + }, + "13025": { + "text": "13/25", + "index": 13025 + }, + "13026": { + "text": "13/26", + "index": 13026 + }, + "13027": { + "text": "13/27", + "index": 13027 + }, + "13028": { + "text": "13/28", + "index": 13028 + }, + "13029": { + "text": "13/29", + "index": 13029 + }, + "13030": { + "text": "13/30", + "index": 13030 + }, + "13031": { + "text": "13/31", + "index": 13031 + }, + "13032": { + "text": "13/32", + "index": 13032 + }, + "13033": { + "text": "13/33", + "index": 13033 + }, + "13034": { + "text": "13/34", + "index": 13034 + }, + "13035": { + "text": "13/35", + "index": 13035 + }, + "13036": { + "text": "13/36", + "index": 13036 + }, + "13037": { + "text": "13/37", + "index": 13037 + }, + "13038": { + "text": "13/38", + "index": 13038 + }, + "13039": { + "text": "13/39", + "index": 13039 + }, + "13040": { + "text": "13/40", + "index": 13040 + }, + "14000": { + "text": "14/0", + "index": 14000 + }, + "14001": { + "text": "14/1", + "index": 14001 + }, + "14002": { + "text": "14/2", + "index": 14002 + }, + "14003": { + "text": "14/3", + "index": 14003 + }, + "14004": { + "text": "14/4", + "index": 14004 + }, + "14005": { + "text": "14/5", + "index": 14005 + }, + "14006": { + "text": "14/6", + "index": 14006 + }, + "14007": { + "text": "14/7", + "index": 14007 + }, + "14008": { + "text": "14/8", + "index": 14008 + }, + "14009": { + "text": "14/9", + "index": 14009 + }, + "14010": { + "text": "14/10", + "index": 14010 + }, + "14011": { + "text": "14/11", + "index": 14011 + }, + "14012": { + "text": "14/12", + "index": 14012 + }, + "14013": { + "text": "14/13", + "index": 14013 + }, + "14014": { + "text": "14/14", + "index": 14014 + }, + "14015": { + "text": "14/15", + "index": 14015 + }, + "14016": { + "text": "14/16", + "index": 14016 + }, + "14017": { + "text": "14/17", + "index": 14017 + }, + "14018": { + "text": "14/18", + "index": 14018 + }, + "14019": { + "text": "14/19", + "index": 14019 + }, + "14020": { + "text": "14/20", + "index": 14020 + }, + "14021": { + "text": "14/21", + "index": 14021 + }, + "14022": { + "text": "14/22", + "index": 14022 + }, + "14023": { + "text": "14/23", + "index": 14023 + }, + "14024": { + "text": "14/24", + "index": 14024 + }, + "14025": { + "text": "14/25", + "index": 14025 + }, + "14026": { + "text": "14/26", + "index": 14026 + }, + "14027": { + "text": "14/27", + "index": 14027 + }, + "14028": { + "text": "14/28", + "index": 14028 + }, + "14029": { + "text": "14/29", + "index": 14029 + }, + "14030": { + "text": "14/30", + "index": 14030 + }, + "14031": { + "text": "14/31", + "index": 14031 + }, + "14032": { + "text": "14/32", + "index": 14032 + }, + "14033": { + "text": "14/33", + "index": 14033 + }, + "14034": { + "text": "14/34", + "index": 14034 + }, + "14035": { + "text": "14/35", + "index": 14035 + }, + "14036": { + "text": "14/36", + "index": 14036 + }, + "14037": { + "text": "14/37", + "index": 14037 + }, + "14038": { + "text": "14/38", + "index": 14038 + }, + "14039": { + "text": "14/39", + "index": 14039 + }, + "14040": { + "text": "14/40", + "index": 14040 + }, + "15000": { + "text": "15/0", + "index": 15000 + }, + "15001": { + "text": "15/1", + "index": 15001 + }, + "15002": { + "text": "15/2", + "index": 15002 + }, + "15003": { + "text": "15/3", + "index": 15003 + }, + "15004": { + "text": "15/4", + "index": 15004 + }, + "15005": { + "text": "15/5", + "index": 15005 + }, + "15006": { + "text": "15/6", + "index": 15006 + }, + "15007": { + "text": "15/7", + "index": 15007 + }, + "15008": { + "text": "15/8", + "index": 15008 + }, + "15009": { + "text": "15/9", + "index": 15009 + }, + "15010": { + "text": "15/10", + "index": 15010 + }, + "15011": { + "text": "15/11", + "index": 15011 + }, + "15012": { + "text": "15/12", + "index": 15012 + }, + "15013": { + "text": "15/13", + "index": 15013 + }, + "15014": { + "text": "15/14", + "index": 15014 + }, + "15015": { + "text": "15/15", + "index": 15015 + }, + "15016": { + "text": "15/16", + "index": 15016 + }, + "15017": { + "text": "15/17", + "index": 15017 + }, + "15018": { + "text": "15/18", + "index": 15018 + }, + "15019": { + "text": "15/19", + "index": 15019 + }, + "15020": { + "text": "15/20", + "index": 15020 + }, + "15021": { + "text": "15/21", + "index": 15021 + }, + "15022": { + "text": "15/22", + "index": 15022 + }, + "15023": { + "text": "15/23", + "index": 15023 + }, + "15024": { + "text": "15/24", + "index": 15024 + }, + "15025": { + "text": "15/25", + "index": 15025 + }, + "15026": { + "text": "15/26", + "index": 15026 + }, + "15027": { + "text": "15/27", + "index": 15027 + }, + "15028": { + "text": "15/28", + "index": 15028 + }, + "15029": { + "text": "15/29", + "index": 15029 + }, + "15030": { + "text": "15/30", + "index": 15030 + }, + "15031": { + "text": "15/31", + "index": 15031 + }, + "15032": { + "text": "15/32", + "index": 15032 + }, + "15033": { + "text": "15/33", + "index": 15033 + }, + "15034": { + "text": "15/34", + "index": 15034 + }, + "15035": { + "text": "15/35", + "index": 15035 + }, + "15036": { + "text": "15/36", + "index": 15036 + }, + "15037": { + "text": "15/37", + "index": 15037 + }, + "15038": { + "text": "15/38", + "index": 15038 + }, + "15039": { + "text": "15/39", + "index": 15039 + }, + "15040": { + "text": "15/40", + "index": 15040 + }, + "16000": { + "text": "16/0", + "index": 16000 + }, + "16001": { + "text": "16/1", + "index": 16001 + }, + "16002": { + "text": "16/2", + "index": 16002 + }, + "16003": { + "text": "16/3", + "index": 16003 + }, + "16004": { + "text": "16/4", + "index": 16004 + }, + "16005": { + "text": "16/5", + "index": 16005 + }, + "16006": { + "text": "16/6", + "index": 16006 + }, + "16007": { + "text": "16/7", + "index": 16007 + }, + "16008": { + "text": "16/8", + "index": 16008 + }, + "16009": { + "text": "16/9", + "index": 16009 + }, + "16010": { + "text": "16/10", + "index": 16010 + }, + "16011": { + "text": "16/11", + "index": 16011 + }, + "16012": { + "text": "16/12", + "index": 16012 + }, + "16013": { + "text": "16/13", + "index": 16013 + }, + "16014": { + "text": "16/14", + "index": 16014 + }, + "16015": { + "text": "16/15", + "index": 16015 + }, + "16016": { + "text": "16/16", + "index": 16016 + }, + "16017": { + "text": "16/17", + "index": 16017 + }, + "16018": { + "text": "16/18", + "index": 16018 + }, + "16019": { + "text": "16/19", + "index": 16019 + }, + "16020": { + "text": "16/20", + "index": 16020 + }, + "16021": { + "text": "16/21", + "index": 16021 + }, + "16022": { + "text": "16/22", + "index": 16022 + }, + "16023": { + "text": "16/23", + "index": 16023 + }, + "16024": { + "text": "16/24", + "index": 16024 + }, + "16025": { + "text": "16/25", + "index": 16025 + }, + "16026": { + "text": "16/26", + "index": 16026 + }, + "16027": { + "text": "16/27", + "index": 16027 + }, + "16028": { + "text": "16/28", + "index": 16028 + }, + "16029": { + "text": "16/29", + "index": 16029 + }, + "16030": { + "text": "16/30", + "index": 16030 + }, + "16031": { + "text": "16/31", + "index": 16031 + }, + "16032": { + "text": "16/32", + "index": 16032 + }, + "16033": { + "text": "16/33", + "index": 16033 + }, + "16034": { + "text": "16/34", + "index": 16034 + }, + "16035": { + "text": "16/35", + "index": 16035 + }, + "16036": { + "text": "16/36", + "index": 16036 + }, + "16037": { + "text": "16/37", + "index": 16037 + }, + "16038": { + "text": "16/38", + "index": 16038 + }, + "16039": { + "text": "16/39", + "index": 16039 + }, + "16040": { + "text": "16/40", + "index": 16040 + }, + "17000": { + "text": "17/0", + "index": 17000 + }, + "17001": { + "text": "17/1", + "index": 17001 + }, + "17002": { + "text": "17/2", + "index": 17002 + }, + "17003": { + "text": "17/3", + "index": 17003 + }, + "17004": { + "text": "17/4", + "index": 17004 + }, + "17005": { + "text": "17/5", + "index": 17005 + }, + "17006": { + "text": "17/6", + "index": 17006 + }, + "17007": { + "text": "17/7", + "index": 17007 + }, + "17008": { + "text": "17/8", + "index": 17008 + }, + "17009": { + "text": "17/9", + "index": 17009 + }, + "17010": { + "text": "17/10", + "index": 17010 + }, + "17011": { + "text": "17/11", + "index": 17011 + }, + "17012": { + "text": "17/12", + "index": 17012 + }, + "17013": { + "text": "17/13", + "index": 17013 + }, + "17014": { + "text": "17/14", + "index": 17014 + }, + "17015": { + "text": "17/15", + "index": 17015 + }, + "17016": { + "text": "17/16", + "index": 17016 + }, + "17017": { + "text": "17/17", + "index": 17017 + }, + "17018": { + "text": "17/18", + "index": 17018 + }, + "17019": { + "text": "17/19", + "index": 17019 + }, + "17020": { + "text": "17/20", + "index": 17020 + }, + "17021": { + "text": "17/21", + "index": 17021 + }, + "17022": { + "text": "17/22", + "index": 17022 + }, + "17023": { + "text": "17/23", + "index": 17023 + }, + "17024": { + "text": "17/24", + "index": 17024 + }, + "17025": { + "text": "17/25", + "index": 17025 + }, + "17026": { + "text": "17/26", + "index": 17026 + }, + "17027": { + "text": "17/27", + "index": 17027 + }, + "17028": { + "text": "17/28", + "index": 17028 + }, + "17029": { + "text": "17/29", + "index": 17029 + }, + "17030": { + "text": "17/30", + "index": 17030 + }, + "17031": { + "text": "17/31", + "index": 17031 + }, + "17032": { + "text": "17/32", + "index": 17032 + }, + "17033": { + "text": "17/33", + "index": 17033 + }, + "17034": { + "text": "17/34", + "index": 17034 + }, + "17035": { + "text": "17/35", + "index": 17035 + }, + "17036": { + "text": "17/36", + "index": 17036 + }, + "17037": { + "text": "17/37", + "index": 17037 + }, + "17038": { + "text": "17/38", + "index": 17038 + }, + "17039": { + "text": "17/39", + "index": 17039 + }, + "17040": { + "text": "17/40", + "index": 17040 + }, + "18000": { + "text": "18/0", + "index": 18000 + }, + "18001": { + "text": "18/1", + "index": 18001 + }, + "18002": { + "text": "18/2", + "index": 18002 + }, + "18003": { + "text": "18/3", + "index": 18003 + }, + "18004": { + "text": "18/4", + "index": 18004 + }, + "18005": { + "text": "18/5", + "index": 18005 + }, + "18006": { + "text": "18/6", + "index": 18006 + }, + "18007": { + "text": "18/7", + "index": 18007 + }, + "18008": { + "text": "18/8", + "index": 18008 + }, + "18009": { + "text": "18/9", + "index": 18009 + }, + "18010": { + "text": "18/10", + "index": 18010 + }, + "18011": { + "text": "18/11", + "index": 18011 + }, + "18012": { + "text": "18/12", + "index": 18012 + }, + "18013": { + "text": "18/13", + "index": 18013 + }, + "18014": { + "text": "18/14", + "index": 18014 + }, + "18015": { + "text": "18/15", + "index": 18015 + }, + "18016": { + "text": "18/16", + "index": 18016 + }, + "18017": { + "text": "18/17", + "index": 18017 + }, + "18018": { + "text": "18/18", + "index": 18018 + }, + "18019": { + "text": "18/19", + "index": 18019 + }, + "18020": { + "text": "18/20", + "index": 18020 + }, + "18021": { + "text": "18/21", + "index": 18021 + }, + "18022": { + "text": "18/22", + "index": 18022 + }, + "18023": { + "text": "18/23", + "index": 18023 + }, + "18024": { + "text": "18/24", + "index": 18024 + }, + "18025": { + "text": "18/25", + "index": 18025 + }, + "18026": { + "text": "18/26", + "index": 18026 + }, + "18027": { + "text": "18/27", + "index": 18027 + }, + "18028": { + "text": "18/28", + "index": 18028 + }, + "18029": { + "text": "18/29", + "index": 18029 + }, + "18030": { + "text": "18/30", + "index": 18030 + }, + "18031": { + "text": "18/31", + "index": 18031 + }, + "18032": { + "text": "18/32", + "index": 18032 + }, + "18033": { + "text": "18/33", + "index": 18033 + }, + "18034": { + "text": "18/34", + "index": 18034 + }, + "18035": { + "text": "18/35", + "index": 18035 + }, + "18036": { + "text": "18/36", + "index": 18036 + }, + "18037": { + "text": "18/37", + "index": 18037 + }, + "18038": { + "text": "18/38", + "index": 18038 + }, + "18039": { + "text": "18/39", + "index": 18039 + }, + "18040": { + "text": "18/40", + "index": 18040 + }, + "19000": { + "text": "19/0", + "index": 19000 + }, + "19001": { + "text": "19/1", + "index": 19001 + }, + "19002": { + "text": "19/2", + "index": 19002 + }, + "19003": { + "text": "19/3", + "index": 19003 + }, + "19004": { + "text": "19/4", + "index": 19004 + }, + "19005": { + "text": "19/5", + "index": 19005 + }, + "19006": { + "text": "19/6", + "index": 19006 + }, + "19007": { + "text": "19/7", + "index": 19007 + }, + "19008": { + "text": "19/8", + "index": 19008 + }, + "19009": { + "text": "19/9", + "index": 19009 + }, + "19010": { + "text": "19/10", + "index": 19010 + }, + "19011": { + "text": "19/11", + "index": 19011 + }, + "19012": { + "text": "19/12", + "index": 19012 + }, + "19013": { + "text": "19/13", + "index": 19013 + }, + "19014": { + "text": "19/14", + "index": 19014 + }, + "19015": { + "text": "19/15", + "index": 19015 + }, + "19016": { + "text": "19/16", + "index": 19016 + }, + "19017": { + "text": "19/17", + "index": 19017 + }, + "19018": { + "text": "19/18", + "index": 19018 + }, + "19019": { + "text": "19/19", + "index": 19019 + }, + "19020": { + "text": "19/20", + "index": 19020 + }, + "19021": { + "text": "19/21", + "index": 19021 + }, + "19022": { + "text": "19/22", + "index": 19022 + }, + "19023": { + "text": "19/23", + "index": 19023 + }, + "19024": { + "text": "19/24", + "index": 19024 + }, + "19025": { + "text": "19/25", + "index": 19025 + }, + "19026": { + "text": "19/26", + "index": 19026 + }, + "19027": { + "text": "19/27", + "index": 19027 + }, + "19028": { + "text": "19/28", + "index": 19028 + }, + "19029": { + "text": "19/29", + "index": 19029 + }, + "19030": { + "text": "19/30", + "index": 19030 + }, + "19031": { + "text": "19/31", + "index": 19031 + }, + "19032": { + "text": "19/32", + "index": 19032 + }, + "19033": { + "text": "19/33", + "index": 19033 + }, + "19034": { + "text": "19/34", + "index": 19034 + }, + "19035": { + "text": "19/35", + "index": 19035 + }, + "19036": { + "text": "19/36", + "index": 19036 + }, + "19037": { + "text": "19/37", + "index": 19037 + }, + "19038": { + "text": "19/38", + "index": 19038 + }, + "19039": { + "text": "19/39", + "index": 19039 + }, + "19040": { + "text": "19/40", + "index": 19040 + }, + "20000": { + "text": "20/0", + "index": 20000 + }, + "20001": { + "text": "20/1", + "index": 20001 + }, + "20002": { + "text": "20/2", + "index": 20002 + }, + "20003": { + "text": "20/3", + "index": 20003 + }, + "20004": { + "text": "20/4", + "index": 20004 + }, + "20005": { + "text": "20/5", + "index": 20005 + }, + "20006": { + "text": "20/6", + "index": 20006 + }, + "20007": { + "text": "20/7", + "index": 20007 + }, + "20008": { + "text": "20/8", + "index": 20008 + }, + "20009": { + "text": "20/9", + "index": 20009 + }, + "20010": { + "text": "20/10", + "index": 20010 + }, + "20011": { + "text": "20/11", + "index": 20011 + }, + "20012": { + "text": "20/12", + "index": 20012 + }, + "20013": { + "text": "20/13", + "index": 20013 + }, + "20014": { + "text": "20/14", + "index": 20014 + }, + "20015": { + "text": "20/15", + "index": 20015 + }, + "20016": { + "text": "20/16", + "index": 20016 + }, + "20017": { + "text": "20/17", + "index": 20017 + }, + "20018": { + "text": "20/18", + "index": 20018 + }, + "20019": { + "text": "20/19", + "index": 20019 + }, + "20020": { + "text": "20/20", + "index": 20020 + }, + "20021": { + "text": "20/21", + "index": 20021 + }, + "20022": { + "text": "20/22", + "index": 20022 + }, + "20023": { + "text": "20/23", + "index": 20023 + }, + "20024": { + "text": "20/24", + "index": 20024 + }, + "20025": { + "text": "20/25", + "index": 20025 + }, + "20026": { + "text": "20/26", + "index": 20026 + }, + "20027": { + "text": "20/27", + "index": 20027 + }, + "20028": { + "text": "20/28", + "index": 20028 + }, + "20029": { + "text": "20/29", + "index": 20029 + }, + "20030": { + "text": "20/30", + "index": 20030 + }, + "20031": { + "text": "20/31", + "index": 20031 + }, + "20032": { + "text": "20/32", + "index": 20032 + }, + "20033": { + "text": "20/33", + "index": 20033 + }, + "20034": { + "text": "20/34", + "index": 20034 + }, + "20035": { + "text": "20/35", + "index": 20035 + }, + "20036": { + "text": "20/36", + "index": 20036 + }, + "20037": { + "text": "20/37", + "index": 20037 + }, + "20038": { + "text": "20/38", + "index": 20038 + }, + "20039": { + "text": "20/39", + "index": 20039 + }, + "20040": { + "text": "20/40", + "index": 20040 + }, + "21000": { + "text": "21/0", + "index": 21000 + }, + "21001": { + "text": "21/1", + "index": 21001 + }, + "21002": { + "text": "21/2", + "index": 21002 + }, + "21003": { + "text": "21/3", + "index": 21003 + }, + "21004": { + "text": "21/4", + "index": 21004 + }, + "21005": { + "text": "21/5", + "index": 21005 + }, + "21006": { + "text": "21/6", + "index": 21006 + }, + "21007": { + "text": "21/7", + "index": 21007 + }, + "21008": { + "text": "21/8", + "index": 21008 + }, + "21009": { + "text": "21/9", + "index": 21009 + }, + "21010": { + "text": "21/10", + "index": 21010 + }, + "21011": { + "text": "21/11", + "index": 21011 + }, + "21012": { + "text": "21/12", + "index": 21012 + }, + "21013": { + "text": "21/13", + "index": 21013 + }, + "21014": { + "text": "21/14", + "index": 21014 + }, + "21015": { + "text": "21/15", + "index": 21015 + }, + "21016": { + "text": "21/16", + "index": 21016 + }, + "21017": { + "text": "21/17", + "index": 21017 + }, + "21018": { + "text": "21/18", + "index": 21018 + }, + "21019": { + "text": "21/19", + "index": 21019 + }, + "21020": { + "text": "21/20", + "index": 21020 + }, + "21021": { + "text": "21/21", + "index": 21021 + }, + "21022": { + "text": "21/22", + "index": 21022 + }, + "21023": { + "text": "21/23", + "index": 21023 + }, + "21024": { + "text": "21/24", + "index": 21024 + }, + "21025": { + "text": "21/25", + "index": 21025 + }, + "21026": { + "text": "21/26", + "index": 21026 + }, + "21027": { + "text": "21/27", + "index": 21027 + }, + "21028": { + "text": "21/28", + "index": 21028 + }, + "21029": { + "text": "21/29", + "index": 21029 + }, + "21030": { + "text": "21/30", + "index": 21030 + }, + "21031": { + "text": "21/31", + "index": 21031 + }, + "21032": { + "text": "21/32", + "index": 21032 + }, + "21033": { + "text": "21/33", + "index": 21033 + }, + "21034": { + "text": "21/34", + "index": 21034 + }, + "21035": { + "text": "21/35", + "index": 21035 + }, + "21036": { + "text": "21/36", + "index": 21036 + }, + "21037": { + "text": "21/37", + "index": 21037 + }, + "21038": { + "text": "21/38", + "index": 21038 + }, + "21039": { + "text": "21/39", + "index": 21039 + }, + "21040": { + "text": "21/40", + "index": 21040 + }, + "22000": { + "text": "22/0", + "index": 22000 + }, + "22001": { + "text": "22/1", + "index": 22001 + }, + "22002": { + "text": "22/2", + "index": 22002 + }, + "22003": { + "text": "22/3", + "index": 22003 + }, + "22004": { + "text": "22/4", + "index": 22004 + }, + "22005": { + "text": "22/5", + "index": 22005 + }, + "22006": { + "text": "22/6", + "index": 22006 + }, + "22007": { + "text": "22/7", + "index": 22007 + }, + "22008": { + "text": "22/8", + "index": 22008 + }, + "22009": { + "text": "22/9", + "index": 22009 + }, + "22010": { + "text": "22/10", + "index": 22010 + }, + "22011": { + "text": "22/11", + "index": 22011 + }, + "22012": { + "text": "22/12", + "index": 22012 + }, + "22013": { + "text": "22/13", + "index": 22013 + }, + "22014": { + "text": "22/14", + "index": 22014 + }, + "22015": { + "text": "22/15", + "index": 22015 + }, + "22016": { + "text": "22/16", + "index": 22016 + }, + "22017": { + "text": "22/17", + "index": 22017 + }, + "22018": { + "text": "22/18", + "index": 22018 + }, + "22019": { + "text": "22/19", + "index": 22019 + }, + "22020": { + "text": "22/20", + "index": 22020 + }, + "22021": { + "text": "22/21", + "index": 22021 + }, + "22022": { + "text": "22/22", + "index": 22022 + }, + "22023": { + "text": "22/23", + "index": 22023 + }, + "22024": { + "text": "22/24", + "index": 22024 + }, + "22025": { + "text": "22/25", + "index": 22025 + }, + "22026": { + "text": "22/26", + "index": 22026 + }, + "22027": { + "text": "22/27", + "index": 22027 + }, + "22028": { + "text": "22/28", + "index": 22028 + }, + "22029": { + "text": "22/29", + "index": 22029 + }, + "22030": { + "text": "22/30", + "index": 22030 + }, + "22031": { + "text": "22/31", + "index": 22031 + }, + "22032": { + "text": "22/32", + "index": 22032 + }, + "22033": { + "text": "22/33", + "index": 22033 + }, + "22034": { + "text": "22/34", + "index": 22034 + }, + "22035": { + "text": "22/35", + "index": 22035 + }, + "22036": { + "text": "22/36", + "index": 22036 + }, + "22037": { + "text": "22/37", + "index": 22037 + }, + "22038": { + "text": "22/38", + "index": 22038 + }, + "22039": { + "text": "22/39", + "index": 22039 + }, + "22040": { + "text": "22/40", + "index": 22040 + }, + "23000": { + "text": "23/0", + "index": 23000 + }, + "23001": { + "text": "23/1", + "index": 23001 + }, + "23002": { + "text": "23/2", + "index": 23002 + }, + "23003": { + "text": "23/3", + "index": 23003 + }, + "23004": { + "text": "23/4", + "index": 23004 + }, + "23005": { + "text": "23/5", + "index": 23005 + }, + "23006": { + "text": "23/6", + "index": 23006 + }, + "23007": { + "text": "23/7", + "index": 23007 + }, + "23008": { + "text": "23/8", + "index": 23008 + }, + "23009": { + "text": "23/9", + "index": 23009 + }, + "23010": { + "text": "23/10", + "index": 23010 + }, + "23011": { + "text": "23/11", + "index": 23011 + }, + "23012": { + "text": "23/12", + "index": 23012 + }, + "23013": { + "text": "23/13", + "index": 23013 + }, + "23014": { + "text": "23/14", + "index": 23014 + }, + "23015": { + "text": "23/15", + "index": 23015 + }, + "23016": { + "text": "23/16", + "index": 23016 + }, + "23017": { + "text": "23/17", + "index": 23017 + }, + "23018": { + "text": "23/18", + "index": 23018 + }, + "23019": { + "text": "23/19", + "index": 23019 + }, + "23020": { + "text": "23/20", + "index": 23020 + }, + "23021": { + "text": "23/21", + "index": 23021 + }, + "23022": { + "text": "23/22", + "index": 23022 + }, + "23023": { + "text": "23/23", + "index": 23023 + }, + "23024": { + "text": "23/24", + "index": 23024 + }, + "23025": { + "text": "23/25", + "index": 23025 + }, + "23026": { + "text": "23/26", + "index": 23026 + }, + "23027": { + "text": "23/27", + "index": 23027 + }, + "23028": { + "text": "23/28", + "index": 23028 + }, + "23029": { + "text": "23/29", + "index": 23029 + }, + "23030": { + "text": "23/30", + "index": 23030 + }, + "23031": { + "text": "23/31", + "index": 23031 + }, + "23032": { + "text": "23/32", + "index": 23032 + }, + "23033": { + "text": "23/33", + "index": 23033 + }, + "23034": { + "text": "23/34", + "index": 23034 + }, + "23035": { + "text": "23/35", + "index": 23035 + }, + "23036": { + "text": "23/36", + "index": 23036 + }, + "23037": { + "text": "23/37", + "index": 23037 + }, + "23038": { + "text": "23/38", + "index": 23038 + }, + "23039": { + "text": "23/39", + "index": 23039 + }, + "23040": { + "text": "23/40", + "index": 23040 + }, + "24000": { + "text": "24/0", + "index": 24000 + }, + "24001": { + "text": "24/1", + "index": 24001 + }, + "24002": { + "text": "24/2", + "index": 24002 + }, + "24003": { + "text": "24/3", + "index": 24003 + }, + "24004": { + "text": "24/4", + "index": 24004 + }, + "24005": { + "text": "24/5", + "index": 24005 + }, + "24006": { + "text": "24/6", + "index": 24006 + }, + "24007": { + "text": "24/7", + "index": 24007 + }, + "24008": { + "text": "24/8", + "index": 24008 + }, + "24009": { + "text": "24/9", + "index": 24009 + }, + "24010": { + "text": "24/10", + "index": 24010 + }, + "24011": { + "text": "24/11", + "index": 24011 + }, + "24012": { + "text": "24/12", + "index": 24012 + }, + "24013": { + "text": "24/13", + "index": 24013 + }, + "24014": { + "text": "24/14", + "index": 24014 + }, + "24015": { + "text": "24/15", + "index": 24015 + }, + "24016": { + "text": "24/16", + "index": 24016 + }, + "24017": { + "text": "24/17", + "index": 24017 + }, + "24018": { + "text": "24/18", + "index": 24018 + }, + "24019": { + "text": "24/19", + "index": 24019 + }, + "24020": { + "text": "24/20", + "index": 24020 + }, + "24021": { + "text": "24/21", + "index": 24021 + }, + "24022": { + "text": "24/22", + "index": 24022 + }, + "24023": { + "text": "24/23", + "index": 24023 + }, + "24024": { + "text": "24/24", + "index": 24024 + }, + "24025": { + "text": "24/25", + "index": 24025 + }, + "24026": { + "text": "24/26", + "index": 24026 + }, + "24027": { + "text": "24/27", + "index": 24027 + }, + "24028": { + "text": "24/28", + "index": 24028 + }, + "24029": { + "text": "24/29", + "index": 24029 + }, + "24030": { + "text": "24/30", + "index": 24030 + }, + "24031": { + "text": "24/31", + "index": 24031 + }, + "24032": { + "text": "24/32", + "index": 24032 + }, + "24033": { + "text": "24/33", + "index": 24033 + }, + "24034": { + "text": "24/34", + "index": 24034 + }, + "24035": { + "text": "24/35", + "index": 24035 + }, + "24036": { + "text": "24/36", + "index": 24036 + }, + "24037": { + "text": "24/37", + "index": 24037 + }, + "24038": { + "text": "24/38", + "index": 24038 + }, + "24039": { + "text": "24/39", + "index": 24039 + }, + "24040": { + "text": "24/40", + "index": 24040 + }, + "25000": { + "text": "25/0", + "index": 25000 + }, + "25001": { + "text": "25/1", + "index": 25001 + }, + "25002": { + "text": "25/2", + "index": 25002 + }, + "25003": { + "text": "25/3", + "index": 25003 + }, + "25004": { + "text": "25/4", + "index": 25004 + }, + "25005": { + "text": "25/5", + "index": 25005 + }, + "25006": { + "text": "25/6", + "index": 25006 + }, + "25007": { + "text": "25/7", + "index": 25007 + }, + "25008": { + "text": "25/8", + "index": 25008 + }, + "25009": { + "text": "25/9", + "index": 25009 + }, + "25010": { + "text": "25/10", + "index": 25010 + }, + "25011": { + "text": "25/11", + "index": 25011 + }, + "25012": { + "text": "25/12", + "index": 25012 + }, + "25013": { + "text": "25/13", + "index": 25013 + }, + "25014": { + "text": "25/14", + "index": 25014 + }, + "25015": { + "text": "25/15", + "index": 25015 + }, + "25016": { + "text": "25/16", + "index": 25016 + }, + "25017": { + "text": "25/17", + "index": 25017 + }, + "25018": { + "text": "25/18", + "index": 25018 + }, + "25019": { + "text": "25/19", + "index": 25019 + }, + "25020": { + "text": "25/20", + "index": 25020 + }, + "25021": { + "text": "25/21", + "index": 25021 + }, + "25022": { + "text": "25/22", + "index": 25022 + }, + "25023": { + "text": "25/23", + "index": 25023 + }, + "25024": { + "text": "25/24", + "index": 25024 + }, + "25025": { + "text": "25/25", + "index": 25025 + }, + "25026": { + "text": "25/26", + "index": 25026 + }, + "25027": { + "text": "25/27", + "index": 25027 + }, + "25028": { + "text": "25/28", + "index": 25028 + }, + "25029": { + "text": "25/29", + "index": 25029 + }, + "25030": { + "text": "25/30", + "index": 25030 + }, + "25031": { + "text": "25/31", + "index": 25031 + }, + "25032": { + "text": "25/32", + "index": 25032 + }, + "25033": { + "text": "25/33", + "index": 25033 + }, + "25034": { + "text": "25/34", + "index": 25034 + }, + "25035": { + "text": "25/35", + "index": 25035 + }, + "25036": { + "text": "25/36", + "index": 25036 + }, + "25037": { + "text": "25/37", + "index": 25037 + }, + "25038": { + "text": "25/38", + "index": 25038 + }, + "25039": { + "text": "25/39", + "index": 25039 + }, + "25040": { + "text": "25/40", + "index": 25040 + }, + "26000": { + "text": "26/0", + "index": 26000 + }, + "26001": { + "text": "26/1", + "index": 26001 + }, + "26002": { + "text": "26/2", + "index": 26002 + }, + "26003": { + "text": "26/3", + "index": 26003 + }, + "26004": { + "text": "26/4", + "index": 26004 + }, + "26005": { + "text": "26/5", + "index": 26005 + }, + "26006": { + "text": "26/6", + "index": 26006 + }, + "26007": { + "text": "26/7", + "index": 26007 + }, + "26008": { + "text": "26/8", + "index": 26008 + }, + "26009": { + "text": "26/9", + "index": 26009 + }, + "26010": { + "text": "26/10", + "index": 26010 + }, + "26011": { + "text": "26/11", + "index": 26011 + }, + "26012": { + "text": "26/12", + "index": 26012 + }, + "26013": { + "text": "26/13", + "index": 26013 + }, + "26014": { + "text": "26/14", + "index": 26014 + }, + "26015": { + "text": "26/15", + "index": 26015 + }, + "26016": { + "text": "26/16", + "index": 26016 + }, + "26017": { + "text": "26/17", + "index": 26017 + }, + "26018": { + "text": "26/18", + "index": 26018 + }, + "26019": { + "text": "26/19", + "index": 26019 + }, + "26020": { + "text": "26/20", + "index": 26020 + }, + "26021": { + "text": "26/21", + "index": 26021 + }, + "26022": { + "text": "26/22", + "index": 26022 + }, + "26023": { + "text": "26/23", + "index": 26023 + }, + "26024": { + "text": "26/24", + "index": 26024 + }, + "26025": { + "text": "26/25", + "index": 26025 + }, + "26026": { + "text": "26/26", + "index": 26026 + }, + "26027": { + "text": "26/27", + "index": 26027 + }, + "26028": { + "text": "26/28", + "index": 26028 + }, + "26029": { + "text": "26/29", + "index": 26029 + }, + "26030": { + "text": "26/30", + "index": 26030 + }, + "26031": { + "text": "26/31", + "index": 26031 + }, + "26032": { + "text": "26/32", + "index": 26032 + }, + "26033": { + "text": "26/33", + "index": 26033 + }, + "26034": { + "text": "26/34", + "index": 26034 + }, + "26035": { + "text": "26/35", + "index": 26035 + }, + "26036": { + "text": "26/36", + "index": 26036 + }, + "26037": { + "text": "26/37", + "index": 26037 + }, + "26038": { + "text": "26/38", + "index": 26038 + }, + "26039": { + "text": "26/39", + "index": 26039 + }, + "26040": { + "text": "26/40", + "index": 26040 + }, + "27000": { + "text": "27/0", + "index": 27000 + }, + "27001": { + "text": "27/1", + "index": 27001 + }, + "27002": { + "text": "27/2", + "index": 27002 + }, + "27003": { + "text": "27/3", + "index": 27003 + }, + "27004": { + "text": "27/4", + "index": 27004 + }, + "27005": { + "text": "27/5", + "index": 27005 + }, + "27006": { + "text": "27/6", + "index": 27006 + }, + "27007": { + "text": "27/7", + "index": 27007 + }, + "27008": { + "text": "27/8", + "index": 27008 + }, + "27009": { + "text": "27/9", + "index": 27009 + }, + "27010": { + "text": "27/10", + "index": 27010 + }, + "27011": { + "text": "27/11", + "index": 27011 + }, + "27012": { + "text": "27/12", + "index": 27012 + }, + "27013": { + "text": "27/13", + "index": 27013 + }, + "27014": { + "text": "27/14", + "index": 27014 + }, + "27015": { + "text": "27/15", + "index": 27015 + }, + "27016": { + "text": "27/16", + "index": 27016 + }, + "27017": { + "text": "27/17", + "index": 27017 + }, + "27018": { + "text": "27/18", + "index": 27018 + }, + "27019": { + "text": "27/19", + "index": 27019 + }, + "27020": { + "text": "27/20", + "index": 27020 + }, + "27021": { + "text": "27/21", + "index": 27021 + }, + "27022": { + "text": "27/22", + "index": 27022 + }, + "27023": { + "text": "27/23", + "index": 27023 + }, + "27024": { + "text": "27/24", + "index": 27024 + }, + "27025": { + "text": "27/25", + "index": 27025 + }, + "27026": { + "text": "27/26", + "index": 27026 + }, + "27027": { + "text": "27/27", + "index": 27027 + }, + "27028": { + "text": "27/28", + "index": 27028 + }, + "27029": { + "text": "27/29", + "index": 27029 + }, + "27030": { + "text": "27/30", + "index": 27030 + }, + "27031": { + "text": "27/31", + "index": 27031 + }, + "27032": { + "text": "27/32", + "index": 27032 + }, + "27033": { + "text": "27/33", + "index": 27033 + }, + "27034": { + "text": "27/34", + "index": 27034 + }, + "27035": { + "text": "27/35", + "index": 27035 + }, + "27036": { + "text": "27/36", + "index": 27036 + }, + "27037": { + "text": "27/37", + "index": 27037 + }, + "27038": { + "text": "27/38", + "index": 27038 + }, + "27039": { + "text": "27/39", + "index": 27039 + }, + "27040": { + "text": "27/40", + "index": 27040 + }, + "28000": { + "text": "28/0", + "index": 28000 + }, + "28001": { + "text": "28/1", + "index": 28001 + }, + "28002": { + "text": "28/2", + "index": 28002 + }, + "28003": { + "text": "28/3", + "index": 28003 + }, + "28004": { + "text": "28/4", + "index": 28004 + }, + "28005": { + "text": "28/5", + "index": 28005 + }, + "28006": { + "text": "28/6", + "index": 28006 + }, + "28007": { + "text": "28/7", + "index": 28007 + }, + "28008": { + "text": "28/8", + "index": 28008 + }, + "28009": { + "text": "28/9", + "index": 28009 + }, + "28010": { + "text": "28/10", + "index": 28010 + }, + "28011": { + "text": "28/11", + "index": 28011 + }, + "28012": { + "text": "28/12", + "index": 28012 + }, + "28013": { + "text": "28/13", + "index": 28013 + }, + "28014": { + "text": "28/14", + "index": 28014 + }, + "28015": { + "text": "28/15", + "index": 28015 + }, + "28016": { + "text": "28/16", + "index": 28016 + }, + "28017": { + "text": "28/17", + "index": 28017 + }, + "28018": { + "text": "28/18", + "index": 28018 + }, + "28019": { + "text": "28/19", + "index": 28019 + }, + "28020": { + "text": "28/20", + "index": 28020 + }, + "28021": { + "text": "28/21", + "index": 28021 + }, + "28022": { + "text": "28/22", + "index": 28022 + }, + "28023": { + "text": "28/23", + "index": 28023 + }, + "28024": { + "text": "28/24", + "index": 28024 + }, + "28025": { + "text": "28/25", + "index": 28025 + }, + "28026": { + "text": "28/26", + "index": 28026 + }, + "28027": { + "text": "28/27", + "index": 28027 + }, + "28028": { + "text": "28/28", + "index": 28028 + }, + "28029": { + "text": "28/29", + "index": 28029 + }, + "28030": { + "text": "28/30", + "index": 28030 + }, + "28031": { + "text": "28/31", + "index": 28031 + }, + "28032": { + "text": "28/32", + "index": 28032 + }, + "28033": { + "text": "28/33", + "index": 28033 + }, + "28034": { + "text": "28/34", + "index": 28034 + }, + "28035": { + "text": "28/35", + "index": 28035 + }, + "28036": { + "text": "28/36", + "index": 28036 + }, + "28037": { + "text": "28/37", + "index": 28037 + }, + "28038": { + "text": "28/38", + "index": 28038 + }, + "28039": { + "text": "28/39", + "index": 28039 + }, + "28040": { + "text": "28/40", + "index": 28040 + }, + "29000": { + "text": "29/0", + "index": 29000 + }, + "29001": { + "text": "29/1", + "index": 29001 + }, + "29002": { + "text": "29/2", + "index": 29002 + }, + "29003": { + "text": "29/3", + "index": 29003 + }, + "29004": { + "text": "29/4", + "index": 29004 + }, + "29005": { + "text": "29/5", + "index": 29005 + }, + "29006": { + "text": "29/6", + "index": 29006 + }, + "29007": { + "text": "29/7", + "index": 29007 + }, + "29008": { + "text": "29/8", + "index": 29008 + }, + "29009": { + "text": "29/9", + "index": 29009 + }, + "29010": { + "text": "29/10", + "index": 29010 + }, + "29011": { + "text": "29/11", + "index": 29011 + }, + "29012": { + "text": "29/12", + "index": 29012 + }, + "29013": { + "text": "29/13", + "index": 29013 + }, + "29014": { + "text": "29/14", + "index": 29014 + }, + "29015": { + "text": "29/15", + "index": 29015 + }, + "29016": { + "text": "29/16", + "index": 29016 + }, + "29017": { + "text": "29/17", + "index": 29017 + }, + "29018": { + "text": "29/18", + "index": 29018 + }, + "29019": { + "text": "29/19", + "index": 29019 + }, + "29020": { + "text": "29/20", + "index": 29020 + }, + "29021": { + "text": "29/21", + "index": 29021 + }, + "29022": { + "text": "29/22", + "index": 29022 + }, + "29023": { + "text": "29/23", + "index": 29023 + }, + "29024": { + "text": "29/24", + "index": 29024 + }, + "29025": { + "text": "29/25", + "index": 29025 + }, + "29026": { + "text": "29/26", + "index": 29026 + }, + "29027": { + "text": "29/27", + "index": 29027 + }, + "29028": { + "text": "29/28", + "index": 29028 + }, + "29029": { + "text": "29/29", + "index": 29029 + }, + "29030": { + "text": "29/30", + "index": 29030 + }, + "29031": { + "text": "29/31", + "index": 29031 + }, + "29032": { + "text": "29/32", + "index": 29032 + }, + "29033": { + "text": "29/33", + "index": 29033 + }, + "29034": { + "text": "29/34", + "index": 29034 + }, + "29035": { + "text": "29/35", + "index": 29035 + }, + "29036": { + "text": "29/36", + "index": 29036 + }, + "29037": { + "text": "29/37", + "index": 29037 + }, + "29038": { + "text": "29/38", + "index": 29038 + }, + "29039": { + "text": "29/39", + "index": 29039 + }, + "29040": { + "text": "29/40", + "index": 29040 + }, + "30000": { + "text": "30/0", + "index": 30000 + }, + "30001": { + "text": "30/1", + "index": 30001 + }, + "30002": { + "text": "30/2", + "index": 30002 + }, + "30003": { + "text": "30/3", + "index": 30003 + }, + "30004": { + "text": "30/4", + "index": 30004 + }, + "30005": { + "text": "30/5", + "index": 30005 + }, + "30006": { + "text": "30/6", + "index": 30006 + }, + "30007": { + "text": "30/7", + "index": 30007 + }, + "30008": { + "text": "30/8", + "index": 30008 + }, + "30009": { + "text": "30/9", + "index": 30009 + }, + "30010": { + "text": "30/10", + "index": 30010 + }, + "30011": { + "text": "30/11", + "index": 30011 + }, + "30012": { + "text": "30/12", + "index": 30012 + }, + "30013": { + "text": "30/13", + "index": 30013 + }, + "30014": { + "text": "30/14", + "index": 30014 + }, + "30015": { + "text": "30/15", + "index": 30015 + }, + "30016": { + "text": "30/16", + "index": 30016 + }, + "30017": { + "text": "30/17", + "index": 30017 + }, + "30018": { + "text": "30/18", + "index": 30018 + }, + "30019": { + "text": "30/19", + "index": 30019 + }, + "30020": { + "text": "30/20", + "index": 30020 + }, + "30021": { + "text": "30/21", + "index": 30021 + }, + "30022": { + "text": "30/22", + "index": 30022 + }, + "30023": { + "text": "30/23", + "index": 30023 + }, + "30024": { + "text": "30/24", + "index": 30024 + }, + "30025": { + "text": "30/25", + "index": 30025 + }, + "30026": { + "text": "30/26", + "index": 30026 + }, + "30027": { + "text": "30/27", + "index": 30027 + }, + "30028": { + "text": "30/28", + "index": 30028 + }, + "30029": { + "text": "30/29", + "index": 30029 + }, + "30030": { + "text": "30/30", + "index": 30030 + }, + "30031": { + "text": "30/31", + "index": 30031 + }, + "30032": { + "text": "30/32", + "index": 30032 + }, + "30033": { + "text": "30/33", + "index": 30033 + }, + "30034": { + "text": "30/34", + "index": 30034 + }, + "30035": { + "text": "30/35", + "index": 30035 + }, + "30036": { + "text": "30/36", + "index": 30036 + }, + "30037": { + "text": "30/37", + "index": 30037 + }, + "30038": { + "text": "30/38", + "index": 30038 + }, + "30039": { + "text": "30/39", + "index": 30039 + }, + "30040": { + "text": "30/40", + "index": 30040 + }, + "31000": { + "text": "31/0", + "index": 31000 + }, + "31001": { + "text": "31/1", + "index": 31001 + }, + "31002": { + "text": "31/2", + "index": 31002 + }, + "31003": { + "text": "31/3", + "index": 31003 + }, + "31004": { + "text": "31/4", + "index": 31004 + }, + "31005": { + "text": "31/5", + "index": 31005 + }, + "31006": { + "text": "31/6", + "index": 31006 + }, + "31007": { + "text": "31/7", + "index": 31007 + }, + "31008": { + "text": "31/8", + "index": 31008 + }, + "31009": { + "text": "31/9", + "index": 31009 + }, + "31010": { + "text": "31/10", + "index": 31010 + }, + "31011": { + "text": "31/11", + "index": 31011 + }, + "31012": { + "text": "31/12", + "index": 31012 + }, + "31013": { + "text": "31/13", + "index": 31013 + }, + "31014": { + "text": "31/14", + "index": 31014 + }, + "31015": { + "text": "31/15", + "index": 31015 + }, + "31016": { + "text": "31/16", + "index": 31016 + }, + "31017": { + "text": "31/17", + "index": 31017 + }, + "31018": { + "text": "31/18", + "index": 31018 + }, + "31019": { + "text": "31/19", + "index": 31019 + }, + "31020": { + "text": "31/20", + "index": 31020 + }, + "31021": { + "text": "31/21", + "index": 31021 + }, + "31022": { + "text": "31/22", + "index": 31022 + }, + "31023": { + "text": "31/23", + "index": 31023 + }, + "31024": { + "text": "31/24", + "index": 31024 + }, + "31025": { + "text": "31/25", + "index": 31025 + }, + "31026": { + "text": "31/26", + "index": 31026 + }, + "31027": { + "text": "31/27", + "index": 31027 + }, + "31028": { + "text": "31/28", + "index": 31028 + }, + "31029": { + "text": "31/29", + "index": 31029 + }, + "31030": { + "text": "31/30", + "index": 31030 + }, + "31031": { + "text": "31/31", + "index": 31031 + }, + "31032": { + "text": "31/32", + "index": 31032 + }, + "31033": { + "text": "31/33", + "index": 31033 + }, + "31034": { + "text": "31/34", + "index": 31034 + }, + "31035": { + "text": "31/35", + "index": 31035 + }, + "31036": { + "text": "31/36", + "index": 31036 + }, + "31037": { + "text": "31/37", + "index": 31037 + }, + "31038": { + "text": "31/38", + "index": 31038 + }, + "31039": { + "text": "31/39", + "index": 31039 + }, + "31040": { + "text": "31/40", + "index": 31040 + }, + "32000": { + "text": "32/0", + "index": 32000 + }, + "32001": { + "text": "32/1", + "index": 32001 + }, + "32002": { + "text": "32/2", + "index": 32002 + }, + "32003": { + "text": "32/3", + "index": 32003 + }, + "32004": { + "text": "32/4", + "index": 32004 + }, + "32005": { + "text": "32/5", + "index": 32005 + }, + "32006": { + "text": "32/6", + "index": 32006 + }, + "32007": { + "text": "32/7", + "index": 32007 + }, + "32008": { + "text": "32/8", + "index": 32008 + }, + "32009": { + "text": "32/9", + "index": 32009 + }, + "32010": { + "text": "32/10", + "index": 32010 + }, + "32011": { + "text": "32/11", + "index": 32011 + }, + "32012": { + "text": "32/12", + "index": 32012 + }, + "32013": { + "text": "32/13", + "index": 32013 + }, + "32014": { + "text": "32/14", + "index": 32014 + }, + "32015": { + "text": "32/15", + "index": 32015 + }, + "32016": { + "text": "32/16", + "index": 32016 + }, + "32017": { + "text": "32/17", + "index": 32017 + }, + "32018": { + "text": "32/18", + "index": 32018 + }, + "32019": { + "text": "32/19", + "index": 32019 + }, + "32020": { + "text": "32/20", + "index": 32020 + }, + "32021": { + "text": "32/21", + "index": 32021 + }, + "32022": { + "text": "32/22", + "index": 32022 + }, + "32023": { + "text": "32/23", + "index": 32023 + }, + "32024": { + "text": "32/24", + "index": 32024 + }, + "32025": { + "text": "32/25", + "index": 32025 + }, + "32026": { + "text": "32/26", + "index": 32026 + }, + "32027": { + "text": "32/27", + "index": 32027 + }, + "32028": { + "text": "32/28", + "index": 32028 + }, + "32029": { + "text": "32/29", + "index": 32029 + }, + "32030": { + "text": "32/30", + "index": 32030 + }, + "32031": { + "text": "32/31", + "index": 32031 + }, + "32032": { + "text": "32/32", + "index": 32032 + }, + "32033": { + "text": "32/33", + "index": 32033 + }, + "32034": { + "text": "32/34", + "index": 32034 + }, + "32035": { + "text": "32/35", + "index": 32035 + }, + "32036": { + "text": "32/36", + "index": 32036 + }, + "32037": { + "text": "32/37", + "index": 32037 + }, + "32038": { + "text": "32/38", + "index": 32038 + }, + "32039": { + "text": "32/39", + "index": 32039 + }, + "32040": { + "text": "32/40", + "index": 32040 + }, + "33000": { + "text": "33/0", + "index": 33000 + }, + "33001": { + "text": "33/1", + "index": 33001 + }, + "33002": { + "text": "33/2", + "index": 33002 + }, + "33003": { + "text": "33/3", + "index": 33003 + }, + "33004": { + "text": "33/4", + "index": 33004 + }, + "33005": { + "text": "33/5", + "index": 33005 + }, + "33006": { + "text": "33/6", + "index": 33006 + }, + "33007": { + "text": "33/7", + "index": 33007 + }, + "33008": { + "text": "33/8", + "index": 33008 + }, + "33009": { + "text": "33/9", + "index": 33009 + }, + "33010": { + "text": "33/10", + "index": 33010 + }, + "33011": { + "text": "33/11", + "index": 33011 + }, + "33012": { + "text": "33/12", + "index": 33012 + }, + "33013": { + "text": "33/13", + "index": 33013 + }, + "33014": { + "text": "33/14", + "index": 33014 + }, + "33015": { + "text": "33/15", + "index": 33015 + }, + "33016": { + "text": "33/16", + "index": 33016 + }, + "33017": { + "text": "33/17", + "index": 33017 + }, + "33018": { + "text": "33/18", + "index": 33018 + }, + "33019": { + "text": "33/19", + "index": 33019 + }, + "33020": { + "text": "33/20", + "index": 33020 + }, + "33021": { + "text": "33/21", + "index": 33021 + }, + "33022": { + "text": "33/22", + "index": 33022 + }, + "33023": { + "text": "33/23", + "index": 33023 + }, + "33024": { + "text": "33/24", + "index": 33024 + }, + "33025": { + "text": "33/25", + "index": 33025 + }, + "33026": { + "text": "33/26", + "index": 33026 + }, + "33027": { + "text": "33/27", + "index": 33027 + }, + "33028": { + "text": "33/28", + "index": 33028 + }, + "33029": { + "text": "33/29", + "index": 33029 + }, + "33030": { + "text": "33/30", + "index": 33030 + }, + "33031": { + "text": "33/31", + "index": 33031 + }, + "33032": { + "text": "33/32", + "index": 33032 + }, + "33033": { + "text": "33/33", + "index": 33033 + }, + "33034": { + "text": "33/34", + "index": 33034 + }, + "33035": { + "text": "33/35", + "index": 33035 + }, + "33036": { + "text": "33/36", + "index": 33036 + }, + "33037": { + "text": "33/37", + "index": 33037 + }, + "33038": { + "text": "33/38", + "index": 33038 + }, + "33039": { + "text": "33/39", + "index": 33039 + }, + "33040": { + "text": "33/40", + "index": 33040 + }, + "34000": { + "text": "34/0", + "index": 34000 + }, + "34001": { + "text": "34/1", + "index": 34001 + }, + "34002": { + "text": "34/2", + "index": 34002 + }, + "34003": { + "text": "34/3", + "index": 34003 + }, + "34004": { + "text": "34/4", + "index": 34004 + }, + "34005": { + "text": "34/5", + "index": 34005 + }, + "34006": { + "text": "34/6", + "index": 34006 + }, + "34007": { + "text": "34/7", + "index": 34007 + }, + "34008": { + "text": "34/8", + "index": 34008 + }, + "34009": { + "text": "34/9", + "index": 34009 + }, + "34010": { + "text": "34/10", + "index": 34010 + }, + "34011": { + "text": "34/11", + "index": 34011 + }, + "34012": { + "text": "34/12", + "index": 34012 + }, + "34013": { + "text": "34/13", + "index": 34013 + }, + "34014": { + "text": "34/14", + "index": 34014 + }, + "34015": { + "text": "34/15", + "index": 34015 + }, + "34016": { + "text": "34/16", + "index": 34016 + }, + "34017": { + "text": "34/17", + "index": 34017 + }, + "34018": { + "text": "34/18", + "index": 34018 + }, + "34019": { + "text": "34/19", + "index": 34019 + }, + "34020": { + "text": "34/20", + "index": 34020 + }, + "34021": { + "text": "34/21", + "index": 34021 + }, + "34022": { + "text": "34/22", + "index": 34022 + }, + "34023": { + "text": "34/23", + "index": 34023 + }, + "34024": { + "text": "34/24", + "index": 34024 + }, + "34025": { + "text": "34/25", + "index": 34025 + }, + "34026": { + "text": "34/26", + "index": 34026 + }, + "34027": { + "text": "34/27", + "index": 34027 + }, + "34028": { + "text": "34/28", + "index": 34028 + }, + "34029": { + "text": "34/29", + "index": 34029 + }, + "34030": { + "text": "34/30", + "index": 34030 + }, + "34031": { + "text": "34/31", + "index": 34031 + }, + "34032": { + "text": "34/32", + "index": 34032 + }, + "34033": { + "text": "34/33", + "index": 34033 + }, + "34034": { + "text": "34/34", + "index": 34034 + }, + "34035": { + "text": "34/35", + "index": 34035 + }, + "34036": { + "text": "34/36", + "index": 34036 + }, + "34037": { + "text": "34/37", + "index": 34037 + }, + "34038": { + "text": "34/38", + "index": 34038 + }, + "34039": { + "text": "34/39", + "index": 34039 + }, + "34040": { + "text": "34/40", + "index": 34040 + }, + "35000": { + "text": "35/0", + "index": 35000 + }, + "35001": { + "text": "35/1", + "index": 35001 + }, + "35002": { + "text": "35/2", + "index": 35002 + }, + "35003": { + "text": "35/3", + "index": 35003 + }, + "35004": { + "text": "35/4", + "index": 35004 + }, + "35005": { + "text": "35/5", + "index": 35005 + }, + "35006": { + "text": "35/6", + "index": 35006 + }, + "35007": { + "text": "35/7", + "index": 35007 + }, + "35008": { + "text": "35/8", + "index": 35008 + }, + "35009": { + "text": "35/9", + "index": 35009 + }, + "35010": { + "text": "35/10", + "index": 35010 + }, + "35011": { + "text": "35/11", + "index": 35011 + }, + "35012": { + "text": "35/12", + "index": 35012 + }, + "35013": { + "text": "35/13", + "index": 35013 + }, + "35014": { + "text": "35/14", + "index": 35014 + }, + "35015": { + "text": "35/15", + "index": 35015 + }, + "35016": { + "text": "35/16", + "index": 35016 + }, + "35017": { + "text": "35/17", + "index": 35017 + }, + "35018": { + "text": "35/18", + "index": 35018 + }, + "35019": { + "text": "35/19", + "index": 35019 + }, + "35020": { + "text": "35/20", + "index": 35020 + }, + "35021": { + "text": "35/21", + "index": 35021 + }, + "35022": { + "text": "35/22", + "index": 35022 + }, + "35023": { + "text": "35/23", + "index": 35023 + }, + "35024": { + "text": "35/24", + "index": 35024 + }, + "35025": { + "text": "35/25", + "index": 35025 + }, + "35026": { + "text": "35/26", + "index": 35026 + }, + "35027": { + "text": "35/27", + "index": 35027 + }, + "35028": { + "text": "35/28", + "index": 35028 + }, + "35029": { + "text": "35/29", + "index": 35029 + }, + "35030": { + "text": "35/30", + "index": 35030 + }, + "35031": { + "text": "35/31", + "index": 35031 + }, + "35032": { + "text": "35/32", + "index": 35032 + }, + "35033": { + "text": "35/33", + "index": 35033 + }, + "35034": { + "text": "35/34", + "index": 35034 + }, + "35035": { + "text": "35/35", + "index": 35035 + }, + "35036": { + "text": "35/36", + "index": 35036 + }, + "35037": { + "text": "35/37", + "index": 35037 + }, + "35038": { + "text": "35/38", + "index": 35038 + }, + "35039": { + "text": "35/39", + "index": 35039 + }, + "35040": { + "text": "35/40", + "index": 35040 + }, + "36000": { + "text": "36/0", + "index": 36000 + }, + "36001": { + "text": "36/1", + "index": 36001 + }, + "36002": { + "text": "36/2", + "index": 36002 + }, + "36003": { + "text": "36/3", + "index": 36003 + }, + "36004": { + "text": "36/4", + "index": 36004 + }, + "36005": { + "text": "36/5", + "index": 36005 + }, + "36006": { + "text": "36/6", + "index": 36006 + }, + "36007": { + "text": "36/7", + "index": 36007 + }, + "36008": { + "text": "36/8", + "index": 36008 + }, + "36009": { + "text": "36/9", + "index": 36009 + }, + "36010": { + "text": "36/10", + "index": 36010 + }, + "36011": { + "text": "36/11", + "index": 36011 + }, + "36012": { + "text": "36/12", + "index": 36012 + }, + "36013": { + "text": "36/13", + "index": 36013 + }, + "36014": { + "text": "36/14", + "index": 36014 + }, + "36015": { + "text": "36/15", + "index": 36015 + }, + "36016": { + "text": "36/16", + "index": 36016 + }, + "36017": { + "text": "36/17", + "index": 36017 + }, + "36018": { + "text": "36/18", + "index": 36018 + }, + "36019": { + "text": "36/19", + "index": 36019 + }, + "36020": { + "text": "36/20", + "index": 36020 + }, + "36021": { + "text": "36/21", + "index": 36021 + }, + "36022": { + "text": "36/22", + "index": 36022 + }, + "36023": { + "text": "36/23", + "index": 36023 + }, + "36024": { + "text": "36/24", + "index": 36024 + }, + "36025": { + "text": "36/25", + "index": 36025 + }, + "36026": { + "text": "36/26", + "index": 36026 + }, + "36027": { + "text": "36/27", + "index": 36027 + }, + "36028": { + "text": "36/28", + "index": 36028 + }, + "36029": { + "text": "36/29", + "index": 36029 + }, + "36030": { + "text": "36/30", + "index": 36030 + }, + "36031": { + "text": "36/31", + "index": 36031 + }, + "36032": { + "text": "36/32", + "index": 36032 + }, + "36033": { + "text": "36/33", + "index": 36033 + }, + "36034": { + "text": "36/34", + "index": 36034 + }, + "36035": { + "text": "36/35", + "index": 36035 + }, + "36036": { + "text": "36/36", + "index": 36036 + }, + "36037": { + "text": "36/37", + "index": 36037 + }, + "36038": { + "text": "36/38", + "index": 36038 + }, + "36039": { + "text": "36/39", + "index": 36039 + }, + "36040": { + "text": "36/40", + "index": 36040 + }, + "37000": { + "text": "37/0", + "index": 37000 + }, + "37001": { + "text": "37/1", + "index": 37001 + }, + "37002": { + "text": "37/2", + "index": 37002 + }, + "37003": { + "text": "37/3", + "index": 37003 + }, + "37004": { + "text": "37/4", + "index": 37004 + }, + "37005": { + "text": "37/5", + "index": 37005 + }, + "37006": { + "text": "37/6", + "index": 37006 + }, + "37007": { + "text": "37/7", + "index": 37007 + }, + "37008": { + "text": "37/8", + "index": 37008 + }, + "37009": { + "text": "37/9", + "index": 37009 + }, + "37010": { + "text": "37/10", + "index": 37010 + }, + "37011": { + "text": "37/11", + "index": 37011 + }, + "37012": { + "text": "37/12", + "index": 37012 + }, + "37013": { + "text": "37/13", + "index": 37013 + }, + "37014": { + "text": "37/14", + "index": 37014 + }, + "37015": { + "text": "37/15", + "index": 37015 + }, + "37016": { + "text": "37/16", + "index": 37016 + }, + "37017": { + "text": "37/17", + "index": 37017 + }, + "37018": { + "text": "37/18", + "index": 37018 + }, + "37019": { + "text": "37/19", + "index": 37019 + }, + "37020": { + "text": "37/20", + "index": 37020 + }, + "37021": { + "text": "37/21", + "index": 37021 + }, + "37022": { + "text": "37/22", + "index": 37022 + }, + "37023": { + "text": "37/23", + "index": 37023 + }, + "37024": { + "text": "37/24", + "index": 37024 + }, + "37025": { + "text": "37/25", + "index": 37025 + }, + "37026": { + "text": "37/26", + "index": 37026 + }, + "37027": { + "text": "37/27", + "index": 37027 + }, + "37028": { + "text": "37/28", + "index": 37028 + }, + "37029": { + "text": "37/29", + "index": 37029 + }, + "37030": { + "text": "37/30", + "index": 37030 + }, + "37031": { + "text": "37/31", + "index": 37031 + }, + "37032": { + "text": "37/32", + "index": 37032 + }, + "37033": { + "text": "37/33", + "index": 37033 + }, + "37034": { + "text": "37/34", + "index": 37034 + }, + "37035": { + "text": "37/35", + "index": 37035 + }, + "37036": { + "text": "37/36", + "index": 37036 + }, + "37037": { + "text": "37/37", + "index": 37037 + }, + "37038": { + "text": "37/38", + "index": 37038 + }, + "37039": { + "text": "37/39", + "index": 37039 + }, + "37040": { + "text": "37/40", + "index": 37040 + }, + "38000": { + "text": "38/0", + "index": 38000 + }, + "38001": { + "text": "38/1", + "index": 38001 + }, + "38002": { + "text": "38/2", + "index": 38002 + }, + "38003": { + "text": "38/3", + "index": 38003 + }, + "38004": { + "text": "38/4", + "index": 38004 + }, + "38005": { + "text": "38/5", + "index": 38005 + }, + "38006": { + "text": "38/6", + "index": 38006 + }, + "38007": { + "text": "38/7", + "index": 38007 + }, + "38008": { + "text": "38/8", + "index": 38008 + }, + "38009": { + "text": "38/9", + "index": 38009 + }, + "38010": { + "text": "38/10", + "index": 38010 + }, + "38011": { + "text": "38/11", + "index": 38011 + }, + "38012": { + "text": "38/12", + "index": 38012 + }, + "38013": { + "text": "38/13", + "index": 38013 + }, + "38014": { + "text": "38/14", + "index": 38014 + }, + "38015": { + "text": "38/15", + "index": 38015 + }, + "38016": { + "text": "38/16", + "index": 38016 + }, + "38017": { + "text": "38/17", + "index": 38017 + }, + "38018": { + "text": "38/18", + "index": 38018 + }, + "38019": { + "text": "38/19", + "index": 38019 + }, + "38020": { + "text": "38/20", + "index": 38020 + }, + "38021": { + "text": "38/21", + "index": 38021 + }, + "38022": { + "text": "38/22", + "index": 38022 + }, + "38023": { + "text": "38/23", + "index": 38023 + }, + "38024": { + "text": "38/24", + "index": 38024 + }, + "38025": { + "text": "38/25", + "index": 38025 + }, + "38026": { + "text": "38/26", + "index": 38026 + }, + "38027": { + "text": "38/27", + "index": 38027 + }, + "38028": { + "text": "38/28", + "index": 38028 + }, + "38029": { + "text": "38/29", + "index": 38029 + }, + "38030": { + "text": "38/30", + "index": 38030 + }, + "38031": { + "text": "38/31", + "index": 38031 + }, + "38032": { + "text": "38/32", + "index": 38032 + }, + "38033": { + "text": "38/33", + "index": 38033 + }, + "38034": { + "text": "38/34", + "index": 38034 + }, + "38035": { + "text": "38/35", + "index": 38035 + }, + "38036": { + "text": "38/36", + "index": 38036 + }, + "38037": { + "text": "38/37", + "index": 38037 + }, + "38038": { + "text": "38/38", + "index": 38038 + }, + "38039": { + "text": "38/39", + "index": 38039 + }, + "38040": { + "text": "38/40", + "index": 38040 + }, + "39000": { + "text": "39/0", + "index": 39000 + }, + "39001": { + "text": "39/1", + "index": 39001 + }, + "39002": { + "text": "39/2", + "index": 39002 + }, + "39003": { + "text": "39/3", + "index": 39003 + }, + "39004": { + "text": "39/4", + "index": 39004 + }, + "39005": { + "text": "39/5", + "index": 39005 + }, + "39006": { + "text": "39/6", + "index": 39006 + }, + "39007": { + "text": "39/7", + "index": 39007 + }, + "39008": { + "text": "39/8", + "index": 39008 + }, + "39009": { + "text": "39/9", + "index": 39009 + }, + "39010": { + "text": "39/10", + "index": 39010 + }, + "39011": { + "text": "39/11", + "index": 39011 + }, + "39012": { + "text": "39/12", + "index": 39012 + }, + "39013": { + "text": "39/13", + "index": 39013 + }, + "39014": { + "text": "39/14", + "index": 39014 + }, + "39015": { + "text": "39/15", + "index": 39015 + }, + "39016": { + "text": "39/16", + "index": 39016 + }, + "39017": { + "text": "39/17", + "index": 39017 + }, + "39018": { + "text": "39/18", + "index": 39018 + }, + "39019": { + "text": "39/19", + "index": 39019 + }, + "39020": { + "text": "39/20", + "index": 39020 + }, + "39021": { + "text": "39/21", + "index": 39021 + }, + "39022": { + "text": "39/22", + "index": 39022 + }, + "39023": { + "text": "39/23", + "index": 39023 + }, + "39024": { + "text": "39/24", + "index": 39024 + }, + "39025": { + "text": "39/25", + "index": 39025 + }, + "39026": { + "text": "39/26", + "index": 39026 + }, + "39027": { + "text": "39/27", + "index": 39027 + }, + "39028": { + "text": "39/28", + "index": 39028 + }, + "39029": { + "text": "39/29", + "index": 39029 + }, + "39030": { + "text": "39/30", + "index": 39030 + }, + "39031": { + "text": "39/31", + "index": 39031 + }, + "39032": { + "text": "39/32", + "index": 39032 + }, + "39033": { + "text": "39/33", + "index": 39033 + }, + "39034": { + "text": "39/34", + "index": 39034 + }, + "39035": { + "text": "39/35", + "index": 39035 + }, + "39036": { + "text": "39/36", + "index": 39036 + }, + "39037": { + "text": "39/37", + "index": 39037 + }, + "39038": { + "text": "39/38", + "index": 39038 + }, + "39039": { + "text": "39/39", + "index": 39039 + }, + "39040": { + "text": "39/40", + "index": 39040 + }, + "40000": { + "text": "40/0", + "index": 40000 + }, + "40001": { + "text": "40/1", + "index": 40001 + }, + "40002": { + "text": "40/2", + "index": 40002 + }, + "40003": { + "text": "40/3", + "index": 40003 + }, + "40004": { + "text": "40/4", + "index": 40004 + }, + "40005": { + "text": "40/5", + "index": 40005 + }, + "40006": { + "text": "40/6", + "index": 40006 + }, + "40007": { + "text": "40/7", + "index": 40007 + }, + "40008": { + "text": "40/8", + "index": 40008 + }, + "40009": { + "text": "40/9", + "index": 40009 + }, + "40010": { + "text": "40/10", + "index": 40010 + }, + "40011": { + "text": "40/11", + "index": 40011 + }, + "40012": { + "text": "40/12", + "index": 40012 + }, + "40013": { + "text": "40/13", + "index": 40013 + }, + "40014": { + "text": "40/14", + "index": 40014 + }, + "40015": { + "text": "40/15", + "index": 40015 + }, + "40016": { + "text": "40/16", + "index": 40016 + }, + "40017": { + "text": "40/17", + "index": 40017 + }, + "40018": { + "text": "40/18", + "index": 40018 + }, + "40019": { + "text": "40/19", + "index": 40019 + }, + "40020": { + "text": "40/20", + "index": 40020 + }, + "40021": { + "text": "40/21", + "index": 40021 + }, + "40022": { + "text": "40/22", + "index": 40022 + }, + "40023": { + "text": "40/23", + "index": 40023 + }, + "40024": { + "text": "40/24", + "index": 40024 + }, + "40025": { + "text": "40/25", + "index": 40025 + }, + "40026": { + "text": "40/26", + "index": 40026 + }, + "40027": { + "text": "40/27", + "index": 40027 + }, + "40028": { + "text": "40/28", + "index": 40028 + }, + "40029": { + "text": "40/29", + "index": 40029 + }, + "40030": { + "text": "40/30", + "index": 40030 + }, + "40031": { + "text": "40/31", + "index": 40031 + }, + "40032": { + "text": "40/32", + "index": 40032 + }, + "40033": { + "text": "40/33", + "index": 40033 + }, + "40034": { + "text": "40/34", + "index": 40034 + }, + "40035": { + "text": "40/35", + "index": 40035 + }, + "40036": { + "text": "40/36", + "index": 40036 + }, + "40037": { + "text": "40/37", + "index": 40037 + }, + "40038": { + "text": "40/38", + "index": 40038 + }, + "40039": { + "text": "40/39", + "index": 40039 + }, + "40040": { + "text": "40/40", + "index": 40040 + } + } + } + ] + }, + { + "id": "decimals", + "value": 0 + }, + { + "id": "unit", + "value": "none" + }, + { + "id": "color", + "value": { + "mode": "fixed", + "fixedColor": "text" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Health" + }, + "properties": [ + { + "id": "color", + "value": { + "mode": "thresholds" + } + }, + { + "id": "thresholds", + "value": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "green", + "value": 100 + } + ] + } + }, + { + "id": "unit", + "value": "percent" + } + ] + } + ] + }, + "gridPos": { + "h": 4, + "w": 4.8, + "x": 9.6, + "y": 1 + }, + "id": 2, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "center", + "orientation": "auto", + "percentChangeColorMode": "standard", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "value_and_name", + "wideLayout": true, + "text": { + "valueSize": 24 + } + }, + "pluginVersion": "11.6.4", + "targets": [ + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}) == 1)) * 1000 + (count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}))))", + "instant": true, + "legendFormat": "Alive/Expected", + "range": false, + "refId": "A" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}))), 1)) * 100", + "instant": true, + "legendFormat": "Health", + "range": false, + "refId": "B" + } + ], + "title": "\ud83d\uddb1\ufe0f ClickHouse", + "type": "stat" + }, + { + "datasource": "Metrics", + "description": "VictoriaMetrics instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", + "fieldConfig": { + "defaults": { + "color": { + "fixedColor": "text", + "mode": "fixed" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Alive/Expected" + }, + "properties": [ + { + "id": "mappings", + "value": [ + { + "type": "value", + "options": { + "0": { + "text": "0/0", + "index": 0 + }, + "1": { + "text": "0/1", + "index": 1 + }, + "2": { + "text": "0/2", + "index": 2 + }, + "3": { + "text": "0/3", + "index": 3 + }, + "4": { + "text": "0/4", + "index": 4 + }, + "5": { + "text": "0/5", + "index": 5 + }, + "6": { + "text": "0/6", + "index": 6 + }, + "7": { + "text": "0/7", + "index": 7 + }, + "8": { + "text": "0/8", + "index": 8 + }, + "9": { + "text": "0/9", + "index": 9 + }, + "10": { + "text": "0/10", + "index": 10 + }, + "11": { + "text": "0/11", + "index": 11 + }, + "12": { + "text": "0/12", + "index": 12 + }, + "13": { + "text": "0/13", + "index": 13 + }, + "14": { + "text": "0/14", + "index": 14 + }, + "15": { + "text": "0/15", + "index": 15 + }, + "16": { + "text": "0/16", + "index": 16 + }, + "17": { + "text": "0/17", + "index": 17 + }, + "18": { + "text": "0/18", + "index": 18 + }, + "19": { + "text": "0/19", + "index": 19 + }, + "20": { + "text": "0/20", + "index": 20 + }, + "21": { + "text": "0/21", + "index": 21 + }, + "22": { + "text": "0/22", + "index": 22 + }, + "23": { + "text": "0/23", + "index": 23 + }, + "24": { + "text": "0/24", + "index": 24 + }, + "25": { + "text": "0/25", + "index": 25 + }, + "26": { + "text": "0/26", + "index": 26 + }, + "27": { + "text": "0/27", + "index": 27 + }, + "28": { + "text": "0/28", + "index": 28 + }, + "29": { + "text": "0/29", + "index": 29 + }, + "30": { + "text": "0/30", + "index": 30 + }, + "31": { + "text": "0/31", + "index": 31 + }, + "32": { + "text": "0/32", + "index": 32 + }, + "33": { + "text": "0/33", + "index": 33 + }, + "34": { + "text": "0/34", + "index": 34 + }, + "35": { + "text": "0/35", + "index": 35 + }, + "36": { + "text": "0/36", + "index": 36 + }, + "37": { + "text": "0/37", + "index": 37 + }, + "38": { + "text": "0/38", + "index": 38 + }, + "39": { + "text": "0/39", + "index": 39 + }, + "40": { + "text": "0/40", + "index": 40 + }, + "1000": { + "text": "1/0", + "index": 1000 + }, + "1001": { + "text": "1/1", + "index": 1001 + }, + "1002": { + "text": "1/2", + "index": 1002 + }, + "1003": { + "text": "1/3", + "index": 1003 + }, + "1004": { + "text": "1/4", + "index": 1004 + }, + "1005": { + "text": "1/5", + "index": 1005 + }, + "1006": { + "text": "1/6", + "index": 1006 + }, + "1007": { + "text": "1/7", + "index": 1007 + }, + "1008": { + "text": "1/8", + "index": 1008 + }, + "1009": { + "text": "1/9", + "index": 1009 + }, + "1010": { + "text": "1/10", + "index": 1010 + }, + "1011": { + "text": "1/11", + "index": 1011 + }, + "1012": { + "text": "1/12", + "index": 1012 + }, + "1013": { + "text": "1/13", + "index": 1013 + }, + "1014": { + "text": "1/14", + "index": 1014 + }, + "1015": { + "text": "1/15", + "index": 1015 + }, + "1016": { + "text": "1/16", + "index": 1016 + }, + "1017": { + "text": "1/17", + "index": 1017 + }, + "1018": { + "text": "1/18", + "index": 1018 + }, + "1019": { + "text": "1/19", + "index": 1019 + }, + "1020": { + "text": "1/20", + "index": 1020 + }, + "1021": { + "text": "1/21", + "index": 1021 + }, + "1022": { + "text": "1/22", + "index": 1022 + }, + "1023": { + "text": "1/23", + "index": 1023 + }, + "1024": { + "text": "1/24", + "index": 1024 + }, + "1025": { + "text": "1/25", + "index": 1025 + }, + "1026": { + "text": "1/26", + "index": 1026 + }, + "1027": { + "text": "1/27", + "index": 1027 + }, + "1028": { + "text": "1/28", + "index": 1028 + }, + "1029": { + "text": "1/29", + "index": 1029 + }, + "1030": { + "text": "1/30", + "index": 1030 + }, + "1031": { + "text": "1/31", + "index": 1031 + }, + "1032": { + "text": "1/32", + "index": 1032 + }, + "1033": { + "text": "1/33", + "index": 1033 + }, + "1034": { + "text": "1/34", + "index": 1034 + }, + "1035": { + "text": "1/35", + "index": 1035 + }, + "1036": { + "text": "1/36", + "index": 1036 + }, + "1037": { + "text": "1/37", + "index": 1037 + }, + "1038": { + "text": "1/38", + "index": 1038 + }, + "1039": { + "text": "1/39", + "index": 1039 + }, + "1040": { + "text": "1/40", + "index": 1040 + }, + "2000": { + "text": "2/0", + "index": 2000 + }, + "2001": { + "text": "2/1", + "index": 2001 + }, + "2002": { + "text": "2/2", + "index": 2002 + }, + "2003": { + "text": "2/3", + "index": 2003 + }, + "2004": { + "text": "2/4", + "index": 2004 + }, + "2005": { + "text": "2/5", + "index": 2005 + }, + "2006": { + "text": "2/6", + "index": 2006 + }, + "2007": { + "text": "2/7", + "index": 2007 + }, + "2008": { + "text": "2/8", + "index": 2008 + }, + "2009": { + "text": "2/9", + "index": 2009 + }, + "2010": { + "text": "2/10", + "index": 2010 + }, + "2011": { + "text": "2/11", + "index": 2011 + }, + "2012": { + "text": "2/12", + "index": 2012 + }, + "2013": { + "text": "2/13", + "index": 2013 + }, + "2014": { + "text": "2/14", + "index": 2014 + }, + "2015": { + "text": "2/15", + "index": 2015 + }, + "2016": { + "text": "2/16", + "index": 2016 + }, + "2017": { + "text": "2/17", + "index": 2017 + }, + "2018": { + "text": "2/18", + "index": 2018 + }, + "2019": { + "text": "2/19", + "index": 2019 + }, + "2020": { + "text": "2/20", + "index": 2020 + }, + "2021": { + "text": "2/21", + "index": 2021 + }, + "2022": { + "text": "2/22", + "index": 2022 + }, + "2023": { + "text": "2/23", + "index": 2023 + }, + "2024": { + "text": "2/24", + "index": 2024 + }, + "2025": { + "text": "2/25", + "index": 2025 + }, + "2026": { + "text": "2/26", + "index": 2026 + }, + "2027": { + "text": "2/27", + "index": 2027 + }, + "2028": { + "text": "2/28", + "index": 2028 + }, + "2029": { + "text": "2/29", + "index": 2029 + }, + "2030": { + "text": "2/30", + "index": 2030 + }, + "2031": { + "text": "2/31", + "index": 2031 + }, + "2032": { + "text": "2/32", + "index": 2032 + }, + "2033": { + "text": "2/33", + "index": 2033 + }, + "2034": { + "text": "2/34", + "index": 2034 + }, + "2035": { + "text": "2/35", + "index": 2035 + }, + "2036": { + "text": "2/36", + "index": 2036 + }, + "2037": { + "text": "2/37", + "index": 2037 + }, + "2038": { + "text": "2/38", + "index": 2038 + }, + "2039": { + "text": "2/39", + "index": 2039 + }, + "2040": { + "text": "2/40", + "index": 2040 + }, + "3000": { + "text": "3/0", + "index": 3000 + }, + "3001": { + "text": "3/1", + "index": 3001 + }, + "3002": { + "text": "3/2", + "index": 3002 + }, + "3003": { + "text": "3/3", + "index": 3003 + }, + "3004": { + "text": "3/4", + "index": 3004 + }, + "3005": { + "text": "3/5", + "index": 3005 + }, + "3006": { + "text": "3/6", + "index": 3006 + }, + "3007": { + "text": "3/7", + "index": 3007 + }, + "3008": { + "text": "3/8", + "index": 3008 + }, + "3009": { + "text": "3/9", + "index": 3009 + }, + "3010": { + "text": "3/10", + "index": 3010 + }, + "3011": { + "text": "3/11", + "index": 3011 + }, + "3012": { + "text": "3/12", + "index": 3012 + }, + "3013": { + "text": "3/13", + "index": 3013 + }, + "3014": { + "text": "3/14", + "index": 3014 + }, + "3015": { + "text": "3/15", + "index": 3015 + }, + "3016": { + "text": "3/16", + "index": 3016 + }, + "3017": { + "text": "3/17", + "index": 3017 + }, + "3018": { + "text": "3/18", + "index": 3018 + }, + "3019": { + "text": "3/19", + "index": 3019 + }, + "3020": { + "text": "3/20", + "index": 3020 + }, + "3021": { + "text": "3/21", + "index": 3021 + }, + "3022": { + "text": "3/22", + "index": 3022 + }, + "3023": { + "text": "3/23", + "index": 3023 + }, + "3024": { + "text": "3/24", + "index": 3024 + }, + "3025": { + "text": "3/25", + "index": 3025 + }, + "3026": { + "text": "3/26", + "index": 3026 + }, + "3027": { + "text": "3/27", + "index": 3027 + }, + "3028": { + "text": "3/28", + "index": 3028 + }, + "3029": { + "text": "3/29", + "index": 3029 + }, + "3030": { + "text": "3/30", + "index": 3030 + }, + "3031": { + "text": "3/31", + "index": 3031 + }, + "3032": { + "text": "3/32", + "index": 3032 + }, + "3033": { + "text": "3/33", + "index": 3033 + }, + "3034": { + "text": "3/34", + "index": 3034 + }, + "3035": { + "text": "3/35", + "index": 3035 + }, + "3036": { + "text": "3/36", + "index": 3036 + }, + "3037": { + "text": "3/37", + "index": 3037 + }, + "3038": { + "text": "3/38", + "index": 3038 + }, + "3039": { + "text": "3/39", + "index": 3039 + }, + "3040": { + "text": "3/40", + "index": 3040 + }, + "4000": { + "text": "4/0", + "index": 4000 + }, + "4001": { + "text": "4/1", + "index": 4001 + }, + "4002": { + "text": "4/2", + "index": 4002 + }, + "4003": { + "text": "4/3", + "index": 4003 + }, + "4004": { + "text": "4/4", + "index": 4004 + }, + "4005": { + "text": "4/5", + "index": 4005 + }, + "4006": { + "text": "4/6", + "index": 4006 + }, + "4007": { + "text": "4/7", + "index": 4007 + }, + "4008": { + "text": "4/8", + "index": 4008 + }, + "4009": { + "text": "4/9", + "index": 4009 + }, + "4010": { + "text": "4/10", + "index": 4010 + }, + "4011": { + "text": "4/11", + "index": 4011 + }, + "4012": { + "text": "4/12", + "index": 4012 + }, + "4013": { + "text": "4/13", + "index": 4013 + }, + "4014": { + "text": "4/14", + "index": 4014 + }, + "4015": { + "text": "4/15", + "index": 4015 + }, + "4016": { + "text": "4/16", + "index": 4016 + }, + "4017": { + "text": "4/17", + "index": 4017 + }, + "4018": { + "text": "4/18", + "index": 4018 + }, + "4019": { + "text": "4/19", + "index": 4019 + }, + "4020": { + "text": "4/20", + "index": 4020 + }, + "4021": { + "text": "4/21", + "index": 4021 + }, + "4022": { + "text": "4/22", + "index": 4022 + }, + "4023": { + "text": "4/23", + "index": 4023 + }, + "4024": { + "text": "4/24", + "index": 4024 + }, + "4025": { + "text": "4/25", + "index": 4025 + }, + "4026": { + "text": "4/26", + "index": 4026 + }, + "4027": { + "text": "4/27", + "index": 4027 + }, + "4028": { + "text": "4/28", + "index": 4028 + }, + "4029": { + "text": "4/29", + "index": 4029 + }, + "4030": { + "text": "4/30", + "index": 4030 + }, + "4031": { + "text": "4/31", + "index": 4031 + }, + "4032": { + "text": "4/32", + "index": 4032 + }, + "4033": { + "text": "4/33", + "index": 4033 + }, + "4034": { + "text": "4/34", + "index": 4034 + }, + "4035": { + "text": "4/35", + "index": 4035 + }, + "4036": { + "text": "4/36", + "index": 4036 + }, + "4037": { + "text": "4/37", + "index": 4037 + }, + "4038": { + "text": "4/38", + "index": 4038 + }, + "4039": { + "text": "4/39", + "index": 4039 + }, + "4040": { + "text": "4/40", + "index": 4040 + }, + "5000": { + "text": "5/0", + "index": 5000 + }, + "5001": { + "text": "5/1", + "index": 5001 + }, + "5002": { + "text": "5/2", + "index": 5002 + }, + "5003": { + "text": "5/3", + "index": 5003 + }, + "5004": { + "text": "5/4", + "index": 5004 + }, + "5005": { + "text": "5/5", + "index": 5005 + }, + "5006": { + "text": "5/6", + "index": 5006 + }, + "5007": { + "text": "5/7", + "index": 5007 + }, + "5008": { + "text": "5/8", + "index": 5008 + }, + "5009": { + "text": "5/9", + "index": 5009 + }, + "5010": { + "text": "5/10", + "index": 5010 + }, + "5011": { + "text": "5/11", + "index": 5011 + }, + "5012": { + "text": "5/12", + "index": 5012 + }, + "5013": { + "text": "5/13", + "index": 5013 + }, + "5014": { + "text": "5/14", + "index": 5014 + }, + "5015": { + "text": "5/15", + "index": 5015 + }, + "5016": { + "text": "5/16", + "index": 5016 + }, + "5017": { + "text": "5/17", + "index": 5017 + }, + "5018": { + "text": "5/18", + "index": 5018 + }, + "5019": { + "text": "5/19", + "index": 5019 + }, + "5020": { + "text": "5/20", + "index": 5020 + }, + "5021": { + "text": "5/21", + "index": 5021 + }, + "5022": { + "text": "5/22", + "index": 5022 + }, + "5023": { + "text": "5/23", + "index": 5023 + }, + "5024": { + "text": "5/24", + "index": 5024 + }, + "5025": { + "text": "5/25", + "index": 5025 + }, + "5026": { + "text": "5/26", + "index": 5026 + }, + "5027": { + "text": "5/27", + "index": 5027 + }, + "5028": { + "text": "5/28", + "index": 5028 + }, + "5029": { + "text": "5/29", + "index": 5029 + }, + "5030": { + "text": "5/30", + "index": 5030 + }, + "5031": { + "text": "5/31", + "index": 5031 + }, + "5032": { + "text": "5/32", + "index": 5032 + }, + "5033": { + "text": "5/33", + "index": 5033 + }, + "5034": { + "text": "5/34", + "index": 5034 + }, + "5035": { + "text": "5/35", + "index": 5035 + }, + "5036": { + "text": "5/36", + "index": 5036 + }, + "5037": { + "text": "5/37", + "index": 5037 + }, + "5038": { + "text": "5/38", + "index": 5038 + }, + "5039": { + "text": "5/39", + "index": 5039 + }, + "5040": { + "text": "5/40", + "index": 5040 + }, + "6000": { + "text": "6/0", + "index": 6000 + }, + "6001": { + "text": "6/1", + "index": 6001 + }, + "6002": { + "text": "6/2", + "index": 6002 + }, + "6003": { + "text": "6/3", + "index": 6003 + }, + "6004": { + "text": "6/4", + "index": 6004 + }, + "6005": { + "text": "6/5", + "index": 6005 + }, + "6006": { + "text": "6/6", + "index": 6006 + }, + "6007": { + "text": "6/7", + "index": 6007 + }, + "6008": { + "text": "6/8", + "index": 6008 + }, + "6009": { + "text": "6/9", + "index": 6009 + }, + "6010": { + "text": "6/10", + "index": 6010 + }, + "6011": { + "text": "6/11", + "index": 6011 + }, + "6012": { + "text": "6/12", + "index": 6012 + }, + "6013": { + "text": "6/13", + "index": 6013 + }, + "6014": { + "text": "6/14", + "index": 6014 + }, + "6015": { + "text": "6/15", + "index": 6015 + }, + "6016": { + "text": "6/16", + "index": 6016 + }, + "6017": { + "text": "6/17", + "index": 6017 + }, + "6018": { + "text": "6/18", + "index": 6018 + }, + "6019": { + "text": "6/19", + "index": 6019 + }, + "6020": { + "text": "6/20", + "index": 6020 + }, + "6021": { + "text": "6/21", + "index": 6021 + }, + "6022": { + "text": "6/22", + "index": 6022 + }, + "6023": { + "text": "6/23", + "index": 6023 + }, + "6024": { + "text": "6/24", + "index": 6024 + }, + "6025": { + "text": "6/25", + "index": 6025 + }, + "6026": { + "text": "6/26", + "index": 6026 + }, + "6027": { + "text": "6/27", + "index": 6027 + }, + "6028": { + "text": "6/28", + "index": 6028 + }, + "6029": { + "text": "6/29", + "index": 6029 + }, + "6030": { + "text": "6/30", + "index": 6030 + }, + "6031": { + "text": "6/31", + "index": 6031 + }, + "6032": { + "text": "6/32", + "index": 6032 + }, + "6033": { + "text": "6/33", + "index": 6033 + }, + "6034": { + "text": "6/34", + "index": 6034 + }, + "6035": { + "text": "6/35", + "index": 6035 + }, + "6036": { + "text": "6/36", + "index": 6036 + }, + "6037": { + "text": "6/37", + "index": 6037 + }, + "6038": { + "text": "6/38", + "index": 6038 + }, + "6039": { + "text": "6/39", + "index": 6039 + }, + "6040": { + "text": "6/40", + "index": 6040 + }, + "7000": { + "text": "7/0", + "index": 7000 + }, + "7001": { + "text": "7/1", + "index": 7001 + }, + "7002": { + "text": "7/2", + "index": 7002 + }, + "7003": { + "text": "7/3", + "index": 7003 + }, + "7004": { + "text": "7/4", + "index": 7004 + }, + "7005": { + "text": "7/5", + "index": 7005 + }, + "7006": { + "text": "7/6", + "index": 7006 + }, + "7007": { + "text": "7/7", + "index": 7007 + }, + "7008": { + "text": "7/8", + "index": 7008 + }, + "7009": { + "text": "7/9", + "index": 7009 + }, + "7010": { + "text": "7/10", + "index": 7010 + }, + "7011": { + "text": "7/11", + "index": 7011 + }, + "7012": { + "text": "7/12", + "index": 7012 + }, + "7013": { + "text": "7/13", + "index": 7013 + }, + "7014": { + "text": "7/14", + "index": 7014 + }, + "7015": { + "text": "7/15", + "index": 7015 + }, + "7016": { + "text": "7/16", + "index": 7016 + }, + "7017": { + "text": "7/17", + "index": 7017 + }, + "7018": { + "text": "7/18", + "index": 7018 + }, + "7019": { + "text": "7/19", + "index": 7019 + }, + "7020": { + "text": "7/20", + "index": 7020 + }, + "7021": { + "text": "7/21", + "index": 7021 + }, + "7022": { + "text": "7/22", + "index": 7022 + }, + "7023": { + "text": "7/23", + "index": 7023 + }, + "7024": { + "text": "7/24", + "index": 7024 + }, + "7025": { + "text": "7/25", + "index": 7025 + }, + "7026": { + "text": "7/26", + "index": 7026 + }, + "7027": { + "text": "7/27", + "index": 7027 + }, + "7028": { + "text": "7/28", + "index": 7028 + }, + "7029": { + "text": "7/29", + "index": 7029 + }, + "7030": { + "text": "7/30", + "index": 7030 + }, + "7031": { + "text": "7/31", + "index": 7031 + }, + "7032": { + "text": "7/32", + "index": 7032 + }, + "7033": { + "text": "7/33", + "index": 7033 + }, + "7034": { + "text": "7/34", + "index": 7034 + }, + "7035": { + "text": "7/35", + "index": 7035 + }, + "7036": { + "text": "7/36", + "index": 7036 + }, + "7037": { + "text": "7/37", + "index": 7037 + }, + "7038": { + "text": "7/38", + "index": 7038 + }, + "7039": { + "text": "7/39", + "index": 7039 + }, + "7040": { + "text": "7/40", + "index": 7040 + }, + "8000": { + "text": "8/0", + "index": 8000 + }, + "8001": { + "text": "8/1", + "index": 8001 + }, + "8002": { + "text": "8/2", + "index": 8002 + }, + "8003": { + "text": "8/3", + "index": 8003 + }, + "8004": { + "text": "8/4", + "index": 8004 + }, + "8005": { + "text": "8/5", + "index": 8005 + }, + "8006": { + "text": "8/6", + "index": 8006 + }, + "8007": { + "text": "8/7", + "index": 8007 + }, + "8008": { + "text": "8/8", + "index": 8008 + }, + "8009": { + "text": "8/9", + "index": 8009 + }, + "8010": { + "text": "8/10", + "index": 8010 + }, + "8011": { + "text": "8/11", + "index": 8011 + }, + "8012": { + "text": "8/12", + "index": 8012 + }, + "8013": { + "text": "8/13", + "index": 8013 + }, + "8014": { + "text": "8/14", + "index": 8014 + }, + "8015": { + "text": "8/15", + "index": 8015 + }, + "8016": { + "text": "8/16", + "index": 8016 + }, + "8017": { + "text": "8/17", + "index": 8017 + }, + "8018": { + "text": "8/18", + "index": 8018 + }, + "8019": { + "text": "8/19", + "index": 8019 + }, + "8020": { + "text": "8/20", + "index": 8020 + }, + "8021": { + "text": "8/21", + "index": 8021 + }, + "8022": { + "text": "8/22", + "index": 8022 + }, + "8023": { + "text": "8/23", + "index": 8023 + }, + "8024": { + "text": "8/24", + "index": 8024 + }, + "8025": { + "text": "8/25", + "index": 8025 + }, + "8026": { + "text": "8/26", + "index": 8026 + }, + "8027": { + "text": "8/27", + "index": 8027 + }, + "8028": { + "text": "8/28", + "index": 8028 + }, + "8029": { + "text": "8/29", + "index": 8029 + }, + "8030": { + "text": "8/30", + "index": 8030 + }, + "8031": { + "text": "8/31", + "index": 8031 + }, + "8032": { + "text": "8/32", + "index": 8032 + }, + "8033": { + "text": "8/33", + "index": 8033 + }, + "8034": { + "text": "8/34", + "index": 8034 + }, + "8035": { + "text": "8/35", + "index": 8035 + }, + "8036": { + "text": "8/36", + "index": 8036 + }, + "8037": { + "text": "8/37", + "index": 8037 + }, + "8038": { + "text": "8/38", + "index": 8038 + }, + "8039": { + "text": "8/39", + "index": 8039 + }, + "8040": { + "text": "8/40", + "index": 8040 + }, + "9000": { + "text": "9/0", + "index": 9000 + }, + "9001": { + "text": "9/1", + "index": 9001 + }, + "9002": { + "text": "9/2", + "index": 9002 + }, + "9003": { + "text": "9/3", + "index": 9003 + }, + "9004": { + "text": "9/4", + "index": 9004 + }, + "9005": { + "text": "9/5", + "index": 9005 + }, + "9006": { + "text": "9/6", + "index": 9006 + }, + "9007": { + "text": "9/7", + "index": 9007 + }, + "9008": { + "text": "9/8", + "index": 9008 + }, + "9009": { + "text": "9/9", + "index": 9009 + }, + "9010": { + "text": "9/10", + "index": 9010 + }, + "9011": { + "text": "9/11", + "index": 9011 + }, + "9012": { + "text": "9/12", + "index": 9012 + }, + "9013": { + "text": "9/13", + "index": 9013 + }, + "9014": { + "text": "9/14", + "index": 9014 + }, + "9015": { + "text": "9/15", + "index": 9015 + }, + "9016": { + "text": "9/16", + "index": 9016 + }, + "9017": { + "text": "9/17", + "index": 9017 + }, + "9018": { + "text": "9/18", + "index": 9018 + }, + "9019": { + "text": "9/19", + "index": 9019 + }, + "9020": { + "text": "9/20", + "index": 9020 + }, + "9021": { + "text": "9/21", + "index": 9021 + }, + "9022": { + "text": "9/22", + "index": 9022 + }, + "9023": { + "text": "9/23", + "index": 9023 + }, + "9024": { + "text": "9/24", + "index": 9024 + }, + "9025": { + "text": "9/25", + "index": 9025 + }, + "9026": { + "text": "9/26", + "index": 9026 + }, + "9027": { + "text": "9/27", + "index": 9027 + }, + "9028": { + "text": "9/28", + "index": 9028 + }, + "9029": { + "text": "9/29", + "index": 9029 + }, + "9030": { + "text": "9/30", + "index": 9030 + }, + "9031": { + "text": "9/31", + "index": 9031 + }, + "9032": { + "text": "9/32", + "index": 9032 + }, + "9033": { + "text": "9/33", + "index": 9033 + }, + "9034": { + "text": "9/34", + "index": 9034 + }, + "9035": { + "text": "9/35", + "index": 9035 + }, + "9036": { + "text": "9/36", + "index": 9036 + }, + "9037": { + "text": "9/37", + "index": 9037 + }, + "9038": { + "text": "9/38", + "index": 9038 + }, + "9039": { + "text": "9/39", + "index": 9039 + }, + "9040": { + "text": "9/40", + "index": 9040 + }, + "10000": { + "text": "10/0", + "index": 10000 + }, + "10001": { + "text": "10/1", + "index": 10001 + }, + "10002": { + "text": "10/2", + "index": 10002 + }, + "10003": { + "text": "10/3", + "index": 10003 + }, + "10004": { + "text": "10/4", + "index": 10004 + }, + "10005": { + "text": "10/5", + "index": 10005 + }, + "10006": { + "text": "10/6", + "index": 10006 + }, + "10007": { + "text": "10/7", + "index": 10007 + }, + "10008": { + "text": "10/8", + "index": 10008 + }, + "10009": { + "text": "10/9", + "index": 10009 + }, + "10010": { + "text": "10/10", + "index": 10010 + }, + "10011": { + "text": "10/11", + "index": 10011 + }, + "10012": { + "text": "10/12", + "index": 10012 + }, + "10013": { + "text": "10/13", + "index": 10013 + }, + "10014": { + "text": "10/14", + "index": 10014 + }, + "10015": { + "text": "10/15", + "index": 10015 + }, + "10016": { + "text": "10/16", + "index": 10016 + }, + "10017": { + "text": "10/17", + "index": 10017 + }, + "10018": { + "text": "10/18", + "index": 10018 + }, + "10019": { + "text": "10/19", + "index": 10019 + }, + "10020": { + "text": "10/20", + "index": 10020 + }, + "10021": { + "text": "10/21", + "index": 10021 + }, + "10022": { + "text": "10/22", + "index": 10022 + }, + "10023": { + "text": "10/23", + "index": 10023 + }, + "10024": { + "text": "10/24", + "index": 10024 + }, + "10025": { + "text": "10/25", + "index": 10025 + }, + "10026": { + "text": "10/26", + "index": 10026 + }, + "10027": { + "text": "10/27", + "index": 10027 + }, + "10028": { + "text": "10/28", + "index": 10028 + }, + "10029": { + "text": "10/29", + "index": 10029 + }, + "10030": { + "text": "10/30", + "index": 10030 + }, + "10031": { + "text": "10/31", + "index": 10031 + }, + "10032": { + "text": "10/32", + "index": 10032 + }, + "10033": { + "text": "10/33", + "index": 10033 + }, + "10034": { + "text": "10/34", + "index": 10034 + }, + "10035": { + "text": "10/35", + "index": 10035 + }, + "10036": { + "text": "10/36", + "index": 10036 + }, + "10037": { + "text": "10/37", + "index": 10037 + }, + "10038": { + "text": "10/38", + "index": 10038 + }, + "10039": { + "text": "10/39", + "index": 10039 + }, + "10040": { + "text": "10/40", + "index": 10040 + }, + "11000": { + "text": "11/0", + "index": 11000 + }, + "11001": { + "text": "11/1", + "index": 11001 + }, + "11002": { + "text": "11/2", + "index": 11002 + }, + "11003": { + "text": "11/3", + "index": 11003 + }, + "11004": { + "text": "11/4", + "index": 11004 + }, + "11005": { + "text": "11/5", + "index": 11005 + }, + "11006": { + "text": "11/6", + "index": 11006 + }, + "11007": { + "text": "11/7", + "index": 11007 + }, + "11008": { + "text": "11/8", + "index": 11008 + }, + "11009": { + "text": "11/9", + "index": 11009 + }, + "11010": { + "text": "11/10", + "index": 11010 + }, + "11011": { + "text": "11/11", + "index": 11011 + }, + "11012": { + "text": "11/12", + "index": 11012 + }, + "11013": { + "text": "11/13", + "index": 11013 + }, + "11014": { + "text": "11/14", + "index": 11014 + }, + "11015": { + "text": "11/15", + "index": 11015 + }, + "11016": { + "text": "11/16", + "index": 11016 + }, + "11017": { + "text": "11/17", + "index": 11017 + }, + "11018": { + "text": "11/18", + "index": 11018 + }, + "11019": { + "text": "11/19", + "index": 11019 + }, + "11020": { + "text": "11/20", + "index": 11020 + }, + "11021": { + "text": "11/21", + "index": 11021 + }, + "11022": { + "text": "11/22", + "index": 11022 + }, + "11023": { + "text": "11/23", + "index": 11023 + }, + "11024": { + "text": "11/24", + "index": 11024 + }, + "11025": { + "text": "11/25", + "index": 11025 + }, + "11026": { + "text": "11/26", + "index": 11026 + }, + "11027": { + "text": "11/27", + "index": 11027 + }, + "11028": { + "text": "11/28", + "index": 11028 + }, + "11029": { + "text": "11/29", + "index": 11029 + }, + "11030": { + "text": "11/30", + "index": 11030 + }, + "11031": { + "text": "11/31", + "index": 11031 + }, + "11032": { + "text": "11/32", + "index": 11032 + }, + "11033": { + "text": "11/33", + "index": 11033 + }, + "11034": { + "text": "11/34", + "index": 11034 + }, + "11035": { + "text": "11/35", + "index": 11035 + }, + "11036": { + "text": "11/36", + "index": 11036 + }, + "11037": { + "text": "11/37", + "index": 11037 + }, + "11038": { + "text": "11/38", + "index": 11038 + }, + "11039": { + "text": "11/39", + "index": 11039 + }, + "11040": { + "text": "11/40", + "index": 11040 + }, + "12000": { + "text": "12/0", + "index": 12000 + }, + "12001": { + "text": "12/1", + "index": 12001 + }, + "12002": { + "text": "12/2", + "index": 12002 + }, + "12003": { + "text": "12/3", + "index": 12003 + }, + "12004": { + "text": "12/4", + "index": 12004 + }, + "12005": { + "text": "12/5", + "index": 12005 + }, + "12006": { + "text": "12/6", + "index": 12006 + }, + "12007": { + "text": "12/7", + "index": 12007 + }, + "12008": { + "text": "12/8", + "index": 12008 + }, + "12009": { + "text": "12/9", + "index": 12009 + }, + "12010": { + "text": "12/10", + "index": 12010 + }, + "12011": { + "text": "12/11", + "index": 12011 + }, + "12012": { + "text": "12/12", + "index": 12012 + }, + "12013": { + "text": "12/13", + "index": 12013 + }, + "12014": { + "text": "12/14", + "index": 12014 + }, + "12015": { + "text": "12/15", + "index": 12015 + }, + "12016": { + "text": "12/16", + "index": 12016 + }, + "12017": { + "text": "12/17", + "index": 12017 + }, + "12018": { + "text": "12/18", + "index": 12018 + }, + "12019": { + "text": "12/19", + "index": 12019 + }, + "12020": { + "text": "12/20", + "index": 12020 + }, + "12021": { + "text": "12/21", + "index": 12021 + }, + "12022": { + "text": "12/22", + "index": 12022 + }, + "12023": { + "text": "12/23", + "index": 12023 + }, + "12024": { + "text": "12/24", + "index": 12024 + }, + "12025": { + "text": "12/25", + "index": 12025 + }, + "12026": { + "text": "12/26", + "index": 12026 + }, + "12027": { + "text": "12/27", + "index": 12027 + }, + "12028": { + "text": "12/28", + "index": 12028 + }, + "12029": { + "text": "12/29", + "index": 12029 + }, + "12030": { + "text": "12/30", + "index": 12030 + }, + "12031": { + "text": "12/31", + "index": 12031 + }, + "12032": { + "text": "12/32", + "index": 12032 + }, + "12033": { + "text": "12/33", + "index": 12033 + }, + "12034": { + "text": "12/34", + "index": 12034 + }, + "12035": { + "text": "12/35", + "index": 12035 + }, + "12036": { + "text": "12/36", + "index": 12036 + }, + "12037": { + "text": "12/37", + "index": 12037 + }, + "12038": { + "text": "12/38", + "index": 12038 + }, + "12039": { + "text": "12/39", + "index": 12039 + }, + "12040": { + "text": "12/40", + "index": 12040 + }, + "13000": { + "text": "13/0", + "index": 13000 + }, + "13001": { + "text": "13/1", + "index": 13001 + }, + "13002": { + "text": "13/2", + "index": 13002 + }, + "13003": { + "text": "13/3", + "index": 13003 + }, + "13004": { + "text": "13/4", + "index": 13004 + }, + "13005": { + "text": "13/5", + "index": 13005 + }, + "13006": { + "text": "13/6", + "index": 13006 + }, + "13007": { + "text": "13/7", + "index": 13007 + }, + "13008": { + "text": "13/8", + "index": 13008 + }, + "13009": { + "text": "13/9", + "index": 13009 + }, + "13010": { + "text": "13/10", + "index": 13010 + }, + "13011": { + "text": "13/11", + "index": 13011 + }, + "13012": { + "text": "13/12", + "index": 13012 + }, + "13013": { + "text": "13/13", + "index": 13013 + }, + "13014": { + "text": "13/14", + "index": 13014 + }, + "13015": { + "text": "13/15", + "index": 13015 + }, + "13016": { + "text": "13/16", + "index": 13016 + }, + "13017": { + "text": "13/17", + "index": 13017 + }, + "13018": { + "text": "13/18", + "index": 13018 + }, + "13019": { + "text": "13/19", + "index": 13019 + }, + "13020": { + "text": "13/20", + "index": 13020 + }, + "13021": { + "text": "13/21", + "index": 13021 + }, + "13022": { + "text": "13/22", + "index": 13022 + }, + "13023": { + "text": "13/23", + "index": 13023 + }, + "13024": { + "text": "13/24", + "index": 13024 + }, + "13025": { + "text": "13/25", + "index": 13025 + }, + "13026": { + "text": "13/26", + "index": 13026 + }, + "13027": { + "text": "13/27", + "index": 13027 + }, + "13028": { + "text": "13/28", + "index": 13028 + }, + "13029": { + "text": "13/29", + "index": 13029 + }, + "13030": { + "text": "13/30", + "index": 13030 + }, + "13031": { + "text": "13/31", + "index": 13031 + }, + "13032": { + "text": "13/32", + "index": 13032 + }, + "13033": { + "text": "13/33", + "index": 13033 + }, + "13034": { + "text": "13/34", + "index": 13034 + }, + "13035": { + "text": "13/35", + "index": 13035 + }, + "13036": { + "text": "13/36", + "index": 13036 + }, + "13037": { + "text": "13/37", + "index": 13037 + }, + "13038": { + "text": "13/38", + "index": 13038 + }, + "13039": { + "text": "13/39", + "index": 13039 + }, + "13040": { + "text": "13/40", + "index": 13040 + }, + "14000": { + "text": "14/0", + "index": 14000 + }, + "14001": { + "text": "14/1", + "index": 14001 + }, + "14002": { + "text": "14/2", + "index": 14002 + }, + "14003": { + "text": "14/3", + "index": 14003 + }, + "14004": { + "text": "14/4", + "index": 14004 + }, + "14005": { + "text": "14/5", + "index": 14005 + }, + "14006": { + "text": "14/6", + "index": 14006 + }, + "14007": { + "text": "14/7", + "index": 14007 + }, + "14008": { + "text": "14/8", + "index": 14008 + }, + "14009": { + "text": "14/9", + "index": 14009 + }, + "14010": { + "text": "14/10", + "index": 14010 + }, + "14011": { + "text": "14/11", + "index": 14011 + }, + "14012": { + "text": "14/12", + "index": 14012 + }, + "14013": { + "text": "14/13", + "index": 14013 + }, + "14014": { + "text": "14/14", + "index": 14014 + }, + "14015": { + "text": "14/15", + "index": 14015 + }, + "14016": { + "text": "14/16", + "index": 14016 + }, + "14017": { + "text": "14/17", + "index": 14017 + }, + "14018": { + "text": "14/18", + "index": 14018 + }, + "14019": { + "text": "14/19", + "index": 14019 + }, + "14020": { + "text": "14/20", + "index": 14020 + }, + "14021": { + "text": "14/21", + "index": 14021 + }, + "14022": { + "text": "14/22", + "index": 14022 + }, + "14023": { + "text": "14/23", + "index": 14023 + }, + "14024": { + "text": "14/24", + "index": 14024 + }, + "14025": { + "text": "14/25", + "index": 14025 + }, + "14026": { + "text": "14/26", + "index": 14026 + }, + "14027": { + "text": "14/27", + "index": 14027 + }, + "14028": { + "text": "14/28", + "index": 14028 + }, + "14029": { + "text": "14/29", + "index": 14029 + }, + "14030": { + "text": "14/30", + "index": 14030 + }, + "14031": { + "text": "14/31", + "index": 14031 + }, + "14032": { + "text": "14/32", + "index": 14032 + }, + "14033": { + "text": "14/33", + "index": 14033 + }, + "14034": { + "text": "14/34", + "index": 14034 + }, + "14035": { + "text": "14/35", + "index": 14035 + }, + "14036": { + "text": "14/36", + "index": 14036 + }, + "14037": { + "text": "14/37", + "index": 14037 + }, + "14038": { + "text": "14/38", + "index": 14038 + }, + "14039": { + "text": "14/39", + "index": 14039 + }, + "14040": { + "text": "14/40", + "index": 14040 + }, + "15000": { + "text": "15/0", + "index": 15000 + }, + "15001": { + "text": "15/1", + "index": 15001 + }, + "15002": { + "text": "15/2", + "index": 15002 + }, + "15003": { + "text": "15/3", + "index": 15003 + }, + "15004": { + "text": "15/4", + "index": 15004 + }, + "15005": { + "text": "15/5", + "index": 15005 + }, + "15006": { + "text": "15/6", + "index": 15006 + }, + "15007": { + "text": "15/7", + "index": 15007 + }, + "15008": { + "text": "15/8", + "index": 15008 + }, + "15009": { + "text": "15/9", + "index": 15009 + }, + "15010": { + "text": "15/10", + "index": 15010 + }, + "15011": { + "text": "15/11", + "index": 15011 + }, + "15012": { + "text": "15/12", + "index": 15012 + }, + "15013": { + "text": "15/13", + "index": 15013 + }, + "15014": { + "text": "15/14", + "index": 15014 + }, + "15015": { + "text": "15/15", + "index": 15015 + }, + "15016": { + "text": "15/16", + "index": 15016 + }, + "15017": { + "text": "15/17", + "index": 15017 + }, + "15018": { + "text": "15/18", + "index": 15018 + }, + "15019": { + "text": "15/19", + "index": 15019 + }, + "15020": { + "text": "15/20", + "index": 15020 + }, + "15021": { + "text": "15/21", + "index": 15021 + }, + "15022": { + "text": "15/22", + "index": 15022 + }, + "15023": { + "text": "15/23", + "index": 15023 + }, + "15024": { + "text": "15/24", + "index": 15024 + }, + "15025": { + "text": "15/25", + "index": 15025 + }, + "15026": { + "text": "15/26", + "index": 15026 + }, + "15027": { + "text": "15/27", + "index": 15027 + }, + "15028": { + "text": "15/28", + "index": 15028 + }, + "15029": { + "text": "15/29", + "index": 15029 + }, + "15030": { + "text": "15/30", + "index": 15030 + }, + "15031": { + "text": "15/31", + "index": 15031 + }, + "15032": { + "text": "15/32", + "index": 15032 + }, + "15033": { + "text": "15/33", + "index": 15033 + }, + "15034": { + "text": "15/34", + "index": 15034 + }, + "15035": { + "text": "15/35", + "index": 15035 + }, + "15036": { + "text": "15/36", + "index": 15036 + }, + "15037": { + "text": "15/37", + "index": 15037 + }, + "15038": { + "text": "15/38", + "index": 15038 + }, + "15039": { + "text": "15/39", + "index": 15039 + }, + "15040": { + "text": "15/40", + "index": 15040 + }, + "16000": { + "text": "16/0", + "index": 16000 + }, + "16001": { + "text": "16/1", + "index": 16001 + }, + "16002": { + "text": "16/2", + "index": 16002 + }, + "16003": { + "text": "16/3", + "index": 16003 + }, + "16004": { + "text": "16/4", + "index": 16004 + }, + "16005": { + "text": "16/5", + "index": 16005 + }, + "16006": { + "text": "16/6", + "index": 16006 + }, + "16007": { + "text": "16/7", + "index": 16007 + }, + "16008": { + "text": "16/8", + "index": 16008 + }, + "16009": { + "text": "16/9", + "index": 16009 + }, + "16010": { + "text": "16/10", + "index": 16010 + }, + "16011": { + "text": "16/11", + "index": 16011 + }, + "16012": { + "text": "16/12", + "index": 16012 + }, + "16013": { + "text": "16/13", + "index": 16013 + }, + "16014": { + "text": "16/14", + "index": 16014 + }, + "16015": { + "text": "16/15", + "index": 16015 + }, + "16016": { + "text": "16/16", + "index": 16016 + }, + "16017": { + "text": "16/17", + "index": 16017 + }, + "16018": { + "text": "16/18", + "index": 16018 + }, + "16019": { + "text": "16/19", + "index": 16019 + }, + "16020": { + "text": "16/20", + "index": 16020 + }, + "16021": { + "text": "16/21", + "index": 16021 + }, + "16022": { + "text": "16/22", + "index": 16022 + }, + "16023": { + "text": "16/23", + "index": 16023 + }, + "16024": { + "text": "16/24", + "index": 16024 + }, + "16025": { + "text": "16/25", + "index": 16025 + }, + "16026": { + "text": "16/26", + "index": 16026 + }, + "16027": { + "text": "16/27", + "index": 16027 + }, + "16028": { + "text": "16/28", + "index": 16028 + }, + "16029": { + "text": "16/29", + "index": 16029 + }, + "16030": { + "text": "16/30", + "index": 16030 + }, + "16031": { + "text": "16/31", + "index": 16031 + }, + "16032": { + "text": "16/32", + "index": 16032 + }, + "16033": { + "text": "16/33", + "index": 16033 + }, + "16034": { + "text": "16/34", + "index": 16034 + }, + "16035": { + "text": "16/35", + "index": 16035 + }, + "16036": { + "text": "16/36", + "index": 16036 + }, + "16037": { + "text": "16/37", + "index": 16037 + }, + "16038": { + "text": "16/38", + "index": 16038 + }, + "16039": { + "text": "16/39", + "index": 16039 + }, + "16040": { + "text": "16/40", + "index": 16040 + }, + "17000": { + "text": "17/0", + "index": 17000 + }, + "17001": { + "text": "17/1", + "index": 17001 + }, + "17002": { + "text": "17/2", + "index": 17002 + }, + "17003": { + "text": "17/3", + "index": 17003 + }, + "17004": { + "text": "17/4", + "index": 17004 + }, + "17005": { + "text": "17/5", + "index": 17005 + }, + "17006": { + "text": "17/6", + "index": 17006 + }, + "17007": { + "text": "17/7", + "index": 17007 + }, + "17008": { + "text": "17/8", + "index": 17008 + }, + "17009": { + "text": "17/9", + "index": 17009 + }, + "17010": { + "text": "17/10", + "index": 17010 + }, + "17011": { + "text": "17/11", + "index": 17011 + }, + "17012": { + "text": "17/12", + "index": 17012 + }, + "17013": { + "text": "17/13", + "index": 17013 + }, + "17014": { + "text": "17/14", + "index": 17014 + }, + "17015": { + "text": "17/15", + "index": 17015 + }, + "17016": { + "text": "17/16", + "index": 17016 + }, + "17017": { + "text": "17/17", + "index": 17017 + }, + "17018": { + "text": "17/18", + "index": 17018 + }, + "17019": { + "text": "17/19", + "index": 17019 + }, + "17020": { + "text": "17/20", + "index": 17020 + }, + "17021": { + "text": "17/21", + "index": 17021 + }, + "17022": { + "text": "17/22", + "index": 17022 + }, + "17023": { + "text": "17/23", + "index": 17023 + }, + "17024": { + "text": "17/24", + "index": 17024 + }, + "17025": { + "text": "17/25", + "index": 17025 + }, + "17026": { + "text": "17/26", + "index": 17026 + }, + "17027": { + "text": "17/27", + "index": 17027 + }, + "17028": { + "text": "17/28", + "index": 17028 + }, + "17029": { + "text": "17/29", + "index": 17029 + }, + "17030": { + "text": "17/30", + "index": 17030 + }, + "17031": { + "text": "17/31", + "index": 17031 + }, + "17032": { + "text": "17/32", + "index": 17032 + }, + "17033": { + "text": "17/33", + "index": 17033 + }, + "17034": { + "text": "17/34", + "index": 17034 + }, + "17035": { + "text": "17/35", + "index": 17035 + }, + "17036": { + "text": "17/36", + "index": 17036 + }, + "17037": { + "text": "17/37", + "index": 17037 + }, + "17038": { + "text": "17/38", + "index": 17038 + }, + "17039": { + "text": "17/39", + "index": 17039 + }, + "17040": { + "text": "17/40", + "index": 17040 + }, + "18000": { + "text": "18/0", + "index": 18000 + }, + "18001": { + "text": "18/1", + "index": 18001 + }, + "18002": { + "text": "18/2", + "index": 18002 + }, + "18003": { + "text": "18/3", + "index": 18003 + }, + "18004": { + "text": "18/4", + "index": 18004 + }, + "18005": { + "text": "18/5", + "index": 18005 + }, + "18006": { + "text": "18/6", + "index": 18006 + }, + "18007": { + "text": "18/7", + "index": 18007 + }, + "18008": { + "text": "18/8", + "index": 18008 + }, + "18009": { + "text": "18/9", + "index": 18009 + }, + "18010": { + "text": "18/10", + "index": 18010 + }, + "18011": { + "text": "18/11", + "index": 18011 + }, + "18012": { + "text": "18/12", + "index": 18012 + }, + "18013": { + "text": "18/13", + "index": 18013 + }, + "18014": { + "text": "18/14", + "index": 18014 + }, + "18015": { + "text": "18/15", + "index": 18015 + }, + "18016": { + "text": "18/16", + "index": 18016 + }, + "18017": { + "text": "18/17", + "index": 18017 + }, + "18018": { + "text": "18/18", + "index": 18018 + }, + "18019": { + "text": "18/19", + "index": 18019 + }, + "18020": { + "text": "18/20", + "index": 18020 + }, + "18021": { + "text": "18/21", + "index": 18021 + }, + "18022": { + "text": "18/22", + "index": 18022 + }, + "18023": { + "text": "18/23", + "index": 18023 + }, + "18024": { + "text": "18/24", + "index": 18024 + }, + "18025": { + "text": "18/25", + "index": 18025 + }, + "18026": { + "text": "18/26", + "index": 18026 + }, + "18027": { + "text": "18/27", + "index": 18027 + }, + "18028": { + "text": "18/28", + "index": 18028 + }, + "18029": { + "text": "18/29", + "index": 18029 + }, + "18030": { + "text": "18/30", + "index": 18030 + }, + "18031": { + "text": "18/31", + "index": 18031 + }, + "18032": { + "text": "18/32", + "index": 18032 + }, + "18033": { + "text": "18/33", + "index": 18033 + }, + "18034": { + "text": "18/34", + "index": 18034 + }, + "18035": { + "text": "18/35", + "index": 18035 + }, + "18036": { + "text": "18/36", + "index": 18036 + }, + "18037": { + "text": "18/37", + "index": 18037 + }, + "18038": { + "text": "18/38", + "index": 18038 + }, + "18039": { + "text": "18/39", + "index": 18039 + }, + "18040": { + "text": "18/40", + "index": 18040 + }, + "19000": { + "text": "19/0", + "index": 19000 + }, + "19001": { + "text": "19/1", + "index": 19001 + }, + "19002": { + "text": "19/2", + "index": 19002 + }, + "19003": { + "text": "19/3", + "index": 19003 + }, + "19004": { + "text": "19/4", + "index": 19004 + }, + "19005": { + "text": "19/5", + "index": 19005 + }, + "19006": { + "text": "19/6", + "index": 19006 + }, + "19007": { + "text": "19/7", + "index": 19007 + }, + "19008": { + "text": "19/8", + "index": 19008 + }, + "19009": { + "text": "19/9", + "index": 19009 + }, + "19010": { + "text": "19/10", + "index": 19010 + }, + "19011": { + "text": "19/11", + "index": 19011 + }, + "19012": { + "text": "19/12", + "index": 19012 + }, + "19013": { + "text": "19/13", + "index": 19013 + }, + "19014": { + "text": "19/14", + "index": 19014 + }, + "19015": { + "text": "19/15", + "index": 19015 + }, + "19016": { + "text": "19/16", + "index": 19016 + }, + "19017": { + "text": "19/17", + "index": 19017 + }, + "19018": { + "text": "19/18", + "index": 19018 + }, + "19019": { + "text": "19/19", + "index": 19019 + }, + "19020": { + "text": "19/20", + "index": 19020 + }, + "19021": { + "text": "19/21", + "index": 19021 + }, + "19022": { + "text": "19/22", + "index": 19022 + }, + "19023": { + "text": "19/23", + "index": 19023 + }, + "19024": { + "text": "19/24", + "index": 19024 + }, + "19025": { + "text": "19/25", + "index": 19025 + }, + "19026": { + "text": "19/26", + "index": 19026 + }, + "19027": { + "text": "19/27", + "index": 19027 + }, + "19028": { + "text": "19/28", + "index": 19028 + }, + "19029": { + "text": "19/29", + "index": 19029 + }, + "19030": { + "text": "19/30", + "index": 19030 + }, + "19031": { + "text": "19/31", + "index": 19031 + }, + "19032": { + "text": "19/32", + "index": 19032 + }, + "19033": { + "text": "19/33", + "index": 19033 + }, + "19034": { + "text": "19/34", + "index": 19034 + }, + "19035": { + "text": "19/35", + "index": 19035 + }, + "19036": { + "text": "19/36", + "index": 19036 + }, + "19037": { + "text": "19/37", + "index": 19037 + }, + "19038": { + "text": "19/38", + "index": 19038 + }, + "19039": { + "text": "19/39", + "index": 19039 + }, + "19040": { + "text": "19/40", + "index": 19040 + }, + "20000": { + "text": "20/0", + "index": 20000 + }, + "20001": { + "text": "20/1", + "index": 20001 + }, + "20002": { + "text": "20/2", + "index": 20002 + }, + "20003": { + "text": "20/3", + "index": 20003 + }, + "20004": { + "text": "20/4", + "index": 20004 + }, + "20005": { + "text": "20/5", + "index": 20005 + }, + "20006": { + "text": "20/6", + "index": 20006 + }, + "20007": { + "text": "20/7", + "index": 20007 + }, + "20008": { + "text": "20/8", + "index": 20008 + }, + "20009": { + "text": "20/9", + "index": 20009 + }, + "20010": { + "text": "20/10", + "index": 20010 + }, + "20011": { + "text": "20/11", + "index": 20011 + }, + "20012": { + "text": "20/12", + "index": 20012 + }, + "20013": { + "text": "20/13", + "index": 20013 + }, + "20014": { + "text": "20/14", + "index": 20014 + }, + "20015": { + "text": "20/15", + "index": 20015 + }, + "20016": { + "text": "20/16", + "index": 20016 + }, + "20017": { + "text": "20/17", + "index": 20017 + }, + "20018": { + "text": "20/18", + "index": 20018 + }, + "20019": { + "text": "20/19", + "index": 20019 + }, + "20020": { + "text": "20/20", + "index": 20020 + }, + "20021": { + "text": "20/21", + "index": 20021 + }, + "20022": { + "text": "20/22", + "index": 20022 + }, + "20023": { + "text": "20/23", + "index": 20023 + }, + "20024": { + "text": "20/24", + "index": 20024 + }, + "20025": { + "text": "20/25", + "index": 20025 + }, + "20026": { + "text": "20/26", + "index": 20026 + }, + "20027": { + "text": "20/27", + "index": 20027 + }, + "20028": { + "text": "20/28", + "index": 20028 + }, + "20029": { + "text": "20/29", + "index": 20029 + }, + "20030": { + "text": "20/30", + "index": 20030 + }, + "20031": { + "text": "20/31", + "index": 20031 + }, + "20032": { + "text": "20/32", + "index": 20032 + }, + "20033": { + "text": "20/33", + "index": 20033 + }, + "20034": { + "text": "20/34", + "index": 20034 + }, + "20035": { + "text": "20/35", + "index": 20035 + }, + "20036": { + "text": "20/36", + "index": 20036 + }, + "20037": { + "text": "20/37", + "index": 20037 + }, + "20038": { + "text": "20/38", + "index": 20038 + }, + "20039": { + "text": "20/39", + "index": 20039 + }, + "20040": { + "text": "20/40", + "index": 20040 + }, + "21000": { + "text": "21/0", + "index": 21000 + }, + "21001": { + "text": "21/1", + "index": 21001 + }, + "21002": { + "text": "21/2", + "index": 21002 + }, + "21003": { + "text": "21/3", + "index": 21003 + }, + "21004": { + "text": "21/4", + "index": 21004 + }, + "21005": { + "text": "21/5", + "index": 21005 + }, + "21006": { + "text": "21/6", + "index": 21006 + }, + "21007": { + "text": "21/7", + "index": 21007 + }, + "21008": { + "text": "21/8", + "index": 21008 + }, + "21009": { + "text": "21/9", + "index": 21009 + }, + "21010": { + "text": "21/10", + "index": 21010 + }, + "21011": { + "text": "21/11", + "index": 21011 + }, + "21012": { + "text": "21/12", + "index": 21012 + }, + "21013": { + "text": "21/13", + "index": 21013 + }, + "21014": { + "text": "21/14", + "index": 21014 + }, + "21015": { + "text": "21/15", + "index": 21015 + }, + "21016": { + "text": "21/16", + "index": 21016 + }, + "21017": { + "text": "21/17", + "index": 21017 + }, + "21018": { + "text": "21/18", + "index": 21018 + }, + "21019": { + "text": "21/19", + "index": 21019 + }, + "21020": { + "text": "21/20", + "index": 21020 + }, + "21021": { + "text": "21/21", + "index": 21021 + }, + "21022": { + "text": "21/22", + "index": 21022 + }, + "21023": { + "text": "21/23", + "index": 21023 + }, + "21024": { + "text": "21/24", + "index": 21024 + }, + "21025": { + "text": "21/25", + "index": 21025 + }, + "21026": { + "text": "21/26", + "index": 21026 + }, + "21027": { + "text": "21/27", + "index": 21027 + }, + "21028": { + "text": "21/28", + "index": 21028 + }, + "21029": { + "text": "21/29", + "index": 21029 + }, + "21030": { + "text": "21/30", + "index": 21030 + }, + "21031": { + "text": "21/31", + "index": 21031 + }, + "21032": { + "text": "21/32", + "index": 21032 + }, + "21033": { + "text": "21/33", + "index": 21033 + }, + "21034": { + "text": "21/34", + "index": 21034 + }, + "21035": { + "text": "21/35", + "index": 21035 + }, + "21036": { + "text": "21/36", + "index": 21036 + }, + "21037": { + "text": "21/37", + "index": 21037 + }, + "21038": { + "text": "21/38", + "index": 21038 + }, + "21039": { + "text": "21/39", + "index": 21039 + }, + "21040": { + "text": "21/40", + "index": 21040 + }, + "22000": { + "text": "22/0", + "index": 22000 + }, + "22001": { + "text": "22/1", + "index": 22001 + }, + "22002": { + "text": "22/2", + "index": 22002 + }, + "22003": { + "text": "22/3", + "index": 22003 + }, + "22004": { + "text": "22/4", + "index": 22004 + }, + "22005": { + "text": "22/5", + "index": 22005 + }, + "22006": { + "text": "22/6", + "index": 22006 + }, + "22007": { + "text": "22/7", + "index": 22007 + }, + "22008": { + "text": "22/8", + "index": 22008 + }, + "22009": { + "text": "22/9", + "index": 22009 + }, + "22010": { + "text": "22/10", + "index": 22010 + }, + "22011": { + "text": "22/11", + "index": 22011 + }, + "22012": { + "text": "22/12", + "index": 22012 + }, + "22013": { + "text": "22/13", + "index": 22013 + }, + "22014": { + "text": "22/14", + "index": 22014 + }, + "22015": { + "text": "22/15", + "index": 22015 + }, + "22016": { + "text": "22/16", + "index": 22016 + }, + "22017": { + "text": "22/17", + "index": 22017 + }, + "22018": { + "text": "22/18", + "index": 22018 + }, + "22019": { + "text": "22/19", + "index": 22019 + }, + "22020": { + "text": "22/20", + "index": 22020 + }, + "22021": { + "text": "22/21", + "index": 22021 + }, + "22022": { + "text": "22/22", + "index": 22022 + }, + "22023": { + "text": "22/23", + "index": 22023 + }, + "22024": { + "text": "22/24", + "index": 22024 + }, + "22025": { + "text": "22/25", + "index": 22025 + }, + "22026": { + "text": "22/26", + "index": 22026 + }, + "22027": { + "text": "22/27", + "index": 22027 + }, + "22028": { + "text": "22/28", + "index": 22028 + }, + "22029": { + "text": "22/29", + "index": 22029 + }, + "22030": { + "text": "22/30", + "index": 22030 + }, + "22031": { + "text": "22/31", + "index": 22031 + }, + "22032": { + "text": "22/32", + "index": 22032 + }, + "22033": { + "text": "22/33", + "index": 22033 + }, + "22034": { + "text": "22/34", + "index": 22034 + }, + "22035": { + "text": "22/35", + "index": 22035 + }, + "22036": { + "text": "22/36", + "index": 22036 + }, + "22037": { + "text": "22/37", + "index": 22037 + }, + "22038": { + "text": "22/38", + "index": 22038 + }, + "22039": { + "text": "22/39", + "index": 22039 + }, + "22040": { + "text": "22/40", + "index": 22040 + }, + "23000": { + "text": "23/0", + "index": 23000 + }, + "23001": { + "text": "23/1", + "index": 23001 + }, + "23002": { + "text": "23/2", + "index": 23002 + }, + "23003": { + "text": "23/3", + "index": 23003 + }, + "23004": { + "text": "23/4", + "index": 23004 + }, + "23005": { + "text": "23/5", + "index": 23005 + }, + "23006": { + "text": "23/6", + "index": 23006 + }, + "23007": { + "text": "23/7", + "index": 23007 + }, + "23008": { + "text": "23/8", + "index": 23008 + }, + "23009": { + "text": "23/9", + "index": 23009 + }, + "23010": { + "text": "23/10", + "index": 23010 + }, + "23011": { + "text": "23/11", + "index": 23011 + }, + "23012": { + "text": "23/12", + "index": 23012 + }, + "23013": { + "text": "23/13", + "index": 23013 + }, + "23014": { + "text": "23/14", + "index": 23014 + }, + "23015": { + "text": "23/15", + "index": 23015 + }, + "23016": { + "text": "23/16", + "index": 23016 + }, + "23017": { + "text": "23/17", + "index": 23017 + }, + "23018": { + "text": "23/18", + "index": 23018 + }, + "23019": { + "text": "23/19", + "index": 23019 + }, + "23020": { + "text": "23/20", + "index": 23020 + }, + "23021": { + "text": "23/21", + "index": 23021 + }, + "23022": { + "text": "23/22", + "index": 23022 + }, + "23023": { + "text": "23/23", + "index": 23023 + }, + "23024": { + "text": "23/24", + "index": 23024 + }, + "23025": { + "text": "23/25", + "index": 23025 + }, + "23026": { + "text": "23/26", + "index": 23026 + }, + "23027": { + "text": "23/27", + "index": 23027 + }, + "23028": { + "text": "23/28", + "index": 23028 + }, + "23029": { + "text": "23/29", + "index": 23029 + }, + "23030": { + "text": "23/30", + "index": 23030 + }, + "23031": { + "text": "23/31", + "index": 23031 + }, + "23032": { + "text": "23/32", + "index": 23032 + }, + "23033": { + "text": "23/33", + "index": 23033 + }, + "23034": { + "text": "23/34", + "index": 23034 + }, + "23035": { + "text": "23/35", + "index": 23035 + }, + "23036": { + "text": "23/36", + "index": 23036 + }, + "23037": { + "text": "23/37", + "index": 23037 + }, + "23038": { + "text": "23/38", + "index": 23038 + }, + "23039": { + "text": "23/39", + "index": 23039 + }, + "23040": { + "text": "23/40", + "index": 23040 + }, + "24000": { + "text": "24/0", + "index": 24000 + }, + "24001": { + "text": "24/1", + "index": 24001 + }, + "24002": { + "text": "24/2", + "index": 24002 + }, + "24003": { + "text": "24/3", + "index": 24003 + }, + "24004": { + "text": "24/4", + "index": 24004 + }, + "24005": { + "text": "24/5", + "index": 24005 + }, + "24006": { + "text": "24/6", + "index": 24006 + }, + "24007": { + "text": "24/7", + "index": 24007 + }, + "24008": { + "text": "24/8", + "index": 24008 + }, + "24009": { + "text": "24/9", + "index": 24009 + }, + "24010": { + "text": "24/10", + "index": 24010 + }, + "24011": { + "text": "24/11", + "index": 24011 + }, + "24012": { + "text": "24/12", + "index": 24012 + }, + "24013": { + "text": "24/13", + "index": 24013 + }, + "24014": { + "text": "24/14", + "index": 24014 + }, + "24015": { + "text": "24/15", + "index": 24015 + }, + "24016": { + "text": "24/16", + "index": 24016 + }, + "24017": { + "text": "24/17", + "index": 24017 + }, + "24018": { + "text": "24/18", + "index": 24018 + }, + "24019": { + "text": "24/19", + "index": 24019 + }, + "24020": { + "text": "24/20", + "index": 24020 + }, + "24021": { + "text": "24/21", + "index": 24021 + }, + "24022": { + "text": "24/22", + "index": 24022 + }, + "24023": { + "text": "24/23", + "index": 24023 + }, + "24024": { + "text": "24/24", + "index": 24024 + }, + "24025": { + "text": "24/25", + "index": 24025 + }, + "24026": { + "text": "24/26", + "index": 24026 + }, + "24027": { + "text": "24/27", + "index": 24027 + }, + "24028": { + "text": "24/28", + "index": 24028 + }, + "24029": { + "text": "24/29", + "index": 24029 + }, + "24030": { + "text": "24/30", + "index": 24030 + }, + "24031": { + "text": "24/31", + "index": 24031 + }, + "24032": { + "text": "24/32", + "index": 24032 + }, + "24033": { + "text": "24/33", + "index": 24033 + }, + "24034": { + "text": "24/34", + "index": 24034 + }, + "24035": { + "text": "24/35", + "index": 24035 + }, + "24036": { + "text": "24/36", + "index": 24036 + }, + "24037": { + "text": "24/37", + "index": 24037 + }, + "24038": { + "text": "24/38", + "index": 24038 + }, + "24039": { + "text": "24/39", + "index": 24039 + }, + "24040": { + "text": "24/40", + "index": 24040 + }, + "25000": { + "text": "25/0", + "index": 25000 + }, + "25001": { + "text": "25/1", + "index": 25001 + }, + "25002": { + "text": "25/2", + "index": 25002 + }, + "25003": { + "text": "25/3", + "index": 25003 + }, + "25004": { + "text": "25/4", + "index": 25004 + }, + "25005": { + "text": "25/5", + "index": 25005 + }, + "25006": { + "text": "25/6", + "index": 25006 + }, + "25007": { + "text": "25/7", + "index": 25007 + }, + "25008": { + "text": "25/8", + "index": 25008 + }, + "25009": { + "text": "25/9", + "index": 25009 + }, + "25010": { + "text": "25/10", + "index": 25010 + }, + "25011": { + "text": "25/11", + "index": 25011 + }, + "25012": { + "text": "25/12", + "index": 25012 + }, + "25013": { + "text": "25/13", + "index": 25013 + }, + "25014": { + "text": "25/14", + "index": 25014 + }, + "25015": { + "text": "25/15", + "index": 25015 + }, + "25016": { + "text": "25/16", + "index": 25016 + }, + "25017": { + "text": "25/17", + "index": 25017 + }, + "25018": { + "text": "25/18", + "index": 25018 + }, + "25019": { + "text": "25/19", + "index": 25019 + }, + "25020": { + "text": "25/20", + "index": 25020 + }, + "25021": { + "text": "25/21", + "index": 25021 + }, + "25022": { + "text": "25/22", + "index": 25022 + }, + "25023": { + "text": "25/23", + "index": 25023 + }, + "25024": { + "text": "25/24", + "index": 25024 + }, + "25025": { + "text": "25/25", + "index": 25025 + }, + "25026": { + "text": "25/26", + "index": 25026 + }, + "25027": { + "text": "25/27", + "index": 25027 + }, + "25028": { + "text": "25/28", + "index": 25028 + }, + "25029": { + "text": "25/29", + "index": 25029 + }, + "25030": { + "text": "25/30", + "index": 25030 + }, + "25031": { + "text": "25/31", + "index": 25031 + }, + "25032": { + "text": "25/32", + "index": 25032 + }, + "25033": { + "text": "25/33", + "index": 25033 + }, + "25034": { + "text": "25/34", + "index": 25034 + }, + "25035": { + "text": "25/35", + "index": 25035 + }, + "25036": { + "text": "25/36", + "index": 25036 + }, + "25037": { + "text": "25/37", + "index": 25037 + }, + "25038": { + "text": "25/38", + "index": 25038 + }, + "25039": { + "text": "25/39", + "index": 25039 + }, + "25040": { + "text": "25/40", + "index": 25040 + }, + "26000": { + "text": "26/0", + "index": 26000 + }, + "26001": { + "text": "26/1", + "index": 26001 + }, + "26002": { + "text": "26/2", + "index": 26002 + }, + "26003": { + "text": "26/3", + "index": 26003 + }, + "26004": { + "text": "26/4", + "index": 26004 + }, + "26005": { + "text": "26/5", + "index": 26005 + }, + "26006": { + "text": "26/6", + "index": 26006 + }, + "26007": { + "text": "26/7", + "index": 26007 + }, + "26008": { + "text": "26/8", + "index": 26008 + }, + "26009": { + "text": "26/9", + "index": 26009 + }, + "26010": { + "text": "26/10", + "index": 26010 + }, + "26011": { + "text": "26/11", + "index": 26011 + }, + "26012": { + "text": "26/12", + "index": 26012 + }, + "26013": { + "text": "26/13", + "index": 26013 + }, + "26014": { + "text": "26/14", + "index": 26014 + }, + "26015": { + "text": "26/15", + "index": 26015 + }, + "26016": { + "text": "26/16", + "index": 26016 + }, + "26017": { + "text": "26/17", + "index": 26017 + }, + "26018": { + "text": "26/18", + "index": 26018 + }, + "26019": { + "text": "26/19", + "index": 26019 + }, + "26020": { + "text": "26/20", + "index": 26020 + }, + "26021": { + "text": "26/21", + "index": 26021 + }, + "26022": { + "text": "26/22", + "index": 26022 + }, + "26023": { + "text": "26/23", + "index": 26023 + }, + "26024": { + "text": "26/24", + "index": 26024 + }, + "26025": { + "text": "26/25", + "index": 26025 + }, + "26026": { + "text": "26/26", + "index": 26026 + }, + "26027": { + "text": "26/27", + "index": 26027 + }, + "26028": { + "text": "26/28", + "index": 26028 + }, + "26029": { + "text": "26/29", + "index": 26029 + }, + "26030": { + "text": "26/30", + "index": 26030 + }, + "26031": { + "text": "26/31", + "index": 26031 + }, + "26032": { + "text": "26/32", + "index": 26032 + }, + "26033": { + "text": "26/33", + "index": 26033 + }, + "26034": { + "text": "26/34", + "index": 26034 + }, + "26035": { + "text": "26/35", + "index": 26035 + }, + "26036": { + "text": "26/36", + "index": 26036 + }, + "26037": { + "text": "26/37", + "index": 26037 + }, + "26038": { + "text": "26/38", + "index": 26038 + }, + "26039": { + "text": "26/39", + "index": 26039 + }, + "26040": { + "text": "26/40", + "index": 26040 + }, + "27000": { + "text": "27/0", + "index": 27000 + }, + "27001": { + "text": "27/1", + "index": 27001 + }, + "27002": { + "text": "27/2", + "index": 27002 + }, + "27003": { + "text": "27/3", + "index": 27003 + }, + "27004": { + "text": "27/4", + "index": 27004 + }, + "27005": { + "text": "27/5", + "index": 27005 + }, + "27006": { + "text": "27/6", + "index": 27006 + }, + "27007": { + "text": "27/7", + "index": 27007 + }, + "27008": { + "text": "27/8", + "index": 27008 + }, + "27009": { + "text": "27/9", + "index": 27009 + }, + "27010": { + "text": "27/10", + "index": 27010 + }, + "27011": { + "text": "27/11", + "index": 27011 + }, + "27012": { + "text": "27/12", + "index": 27012 + }, + "27013": { + "text": "27/13", + "index": 27013 + }, + "27014": { + "text": "27/14", + "index": 27014 + }, + "27015": { + "text": "27/15", + "index": 27015 + }, + "27016": { + "text": "27/16", + "index": 27016 + }, + "27017": { + "text": "27/17", + "index": 27017 + }, + "27018": { + "text": "27/18", + "index": 27018 + }, + "27019": { + "text": "27/19", + "index": 27019 + }, + "27020": { + "text": "27/20", + "index": 27020 + }, + "27021": { + "text": "27/21", + "index": 27021 + }, + "27022": { + "text": "27/22", + "index": 27022 + }, + "27023": { + "text": "27/23", + "index": 27023 + }, + "27024": { + "text": "27/24", + "index": 27024 + }, + "27025": { + "text": "27/25", + "index": 27025 + }, + "27026": { + "text": "27/26", + "index": 27026 + }, + "27027": { + "text": "27/27", + "index": 27027 + }, + "27028": { + "text": "27/28", + "index": 27028 + }, + "27029": { + "text": "27/29", + "index": 27029 + }, + "27030": { + "text": "27/30", + "index": 27030 + }, + "27031": { + "text": "27/31", + "index": 27031 + }, + "27032": { + "text": "27/32", + "index": 27032 + }, + "27033": { + "text": "27/33", + "index": 27033 + }, + "27034": { + "text": "27/34", + "index": 27034 + }, + "27035": { + "text": "27/35", + "index": 27035 + }, + "27036": { + "text": "27/36", + "index": 27036 + }, + "27037": { + "text": "27/37", + "index": 27037 + }, + "27038": { + "text": "27/38", + "index": 27038 + }, + "27039": { + "text": "27/39", + "index": 27039 + }, + "27040": { + "text": "27/40", + "index": 27040 + }, + "28000": { + "text": "28/0", + "index": 28000 + }, + "28001": { + "text": "28/1", + "index": 28001 + }, + "28002": { + "text": "28/2", + "index": 28002 + }, + "28003": { + "text": "28/3", + "index": 28003 + }, + "28004": { + "text": "28/4", + "index": 28004 + }, + "28005": { + "text": "28/5", + "index": 28005 + }, + "28006": { + "text": "28/6", + "index": 28006 + }, + "28007": { + "text": "28/7", + "index": 28007 + }, + "28008": { + "text": "28/8", + "index": 28008 + }, + "28009": { + "text": "28/9", + "index": 28009 + }, + "28010": { + "text": "28/10", + "index": 28010 + }, + "28011": { + "text": "28/11", + "index": 28011 + }, + "28012": { + "text": "28/12", + "index": 28012 + }, + "28013": { + "text": "28/13", + "index": 28013 + }, + "28014": { + "text": "28/14", + "index": 28014 + }, + "28015": { + "text": "28/15", + "index": 28015 + }, + "28016": { + "text": "28/16", + "index": 28016 + }, + "28017": { + "text": "28/17", + "index": 28017 + }, + "28018": { + "text": "28/18", + "index": 28018 + }, + "28019": { + "text": "28/19", + "index": 28019 + }, + "28020": { + "text": "28/20", + "index": 28020 + }, + "28021": { + "text": "28/21", + "index": 28021 + }, + "28022": { + "text": "28/22", + "index": 28022 + }, + "28023": { + "text": "28/23", + "index": 28023 + }, + "28024": { + "text": "28/24", + "index": 28024 + }, + "28025": { + "text": "28/25", + "index": 28025 + }, + "28026": { + "text": "28/26", + "index": 28026 + }, + "28027": { + "text": "28/27", + "index": 28027 + }, + "28028": { + "text": "28/28", + "index": 28028 + }, + "28029": { + "text": "28/29", + "index": 28029 + }, + "28030": { + "text": "28/30", + "index": 28030 + }, + "28031": { + "text": "28/31", + "index": 28031 + }, + "28032": { + "text": "28/32", + "index": 28032 + }, + "28033": { + "text": "28/33", + "index": 28033 + }, + "28034": { + "text": "28/34", + "index": 28034 + }, + "28035": { + "text": "28/35", + "index": 28035 + }, + "28036": { + "text": "28/36", + "index": 28036 + }, + "28037": { + "text": "28/37", + "index": 28037 + }, + "28038": { + "text": "28/38", + "index": 28038 + }, + "28039": { + "text": "28/39", + "index": 28039 + }, + "28040": { + "text": "28/40", + "index": 28040 + }, + "29000": { + "text": "29/0", + "index": 29000 + }, + "29001": { + "text": "29/1", + "index": 29001 + }, + "29002": { + "text": "29/2", + "index": 29002 + }, + "29003": { + "text": "29/3", + "index": 29003 + }, + "29004": { + "text": "29/4", + "index": 29004 + }, + "29005": { + "text": "29/5", + "index": 29005 + }, + "29006": { + "text": "29/6", + "index": 29006 + }, + "29007": { + "text": "29/7", + "index": 29007 + }, + "29008": { + "text": "29/8", + "index": 29008 + }, + "29009": { + "text": "29/9", + "index": 29009 + }, + "29010": { + "text": "29/10", + "index": 29010 + }, + "29011": { + "text": "29/11", + "index": 29011 + }, + "29012": { + "text": "29/12", + "index": 29012 + }, + "29013": { + "text": "29/13", + "index": 29013 + }, + "29014": { + "text": "29/14", + "index": 29014 + }, + "29015": { + "text": "29/15", + "index": 29015 + }, + "29016": { + "text": "29/16", + "index": 29016 + }, + "29017": { + "text": "29/17", + "index": 29017 + }, + "29018": { + "text": "29/18", + "index": 29018 + }, + "29019": { + "text": "29/19", + "index": 29019 + }, + "29020": { + "text": "29/20", + "index": 29020 + }, + "29021": { + "text": "29/21", + "index": 29021 + }, + "29022": { + "text": "29/22", + "index": 29022 + }, + "29023": { + "text": "29/23", + "index": 29023 + }, + "29024": { + "text": "29/24", + "index": 29024 + }, + "29025": { + "text": "29/25", + "index": 29025 + }, + "29026": { + "text": "29/26", + "index": 29026 + }, + "29027": { + "text": "29/27", + "index": 29027 + }, + "29028": { + "text": "29/28", + "index": 29028 + }, + "29029": { + "text": "29/29", + "index": 29029 + }, + "29030": { + "text": "29/30", + "index": 29030 + }, + "29031": { + "text": "29/31", + "index": 29031 + }, + "29032": { + "text": "29/32", + "index": 29032 + }, + "29033": { + "text": "29/33", + "index": 29033 + }, + "29034": { + "text": "29/34", + "index": 29034 + }, + "29035": { + "text": "29/35", + "index": 29035 + }, + "29036": { + "text": "29/36", + "index": 29036 + }, + "29037": { + "text": "29/37", + "index": 29037 + }, + "29038": { + "text": "29/38", + "index": 29038 + }, + "29039": { + "text": "29/39", + "index": 29039 + }, + "29040": { + "text": "29/40", + "index": 29040 + }, + "30000": { + "text": "30/0", + "index": 30000 + }, + "30001": { + "text": "30/1", + "index": 30001 + }, + "30002": { + "text": "30/2", + "index": 30002 + }, + "30003": { + "text": "30/3", + "index": 30003 + }, + "30004": { + "text": "30/4", + "index": 30004 + }, + "30005": { + "text": "30/5", + "index": 30005 + }, + "30006": { + "text": "30/6", + "index": 30006 + }, + "30007": { + "text": "30/7", + "index": 30007 + }, + "30008": { + "text": "30/8", + "index": 30008 + }, + "30009": { + "text": "30/9", + "index": 30009 + }, + "30010": { + "text": "30/10", + "index": 30010 + }, + "30011": { + "text": "30/11", + "index": 30011 + }, + "30012": { + "text": "30/12", + "index": 30012 + }, + "30013": { + "text": "30/13", + "index": 30013 + }, + "30014": { + "text": "30/14", + "index": 30014 + }, + "30015": { + "text": "30/15", + "index": 30015 + }, + "30016": { + "text": "30/16", + "index": 30016 + }, + "30017": { + "text": "30/17", + "index": 30017 + }, + "30018": { + "text": "30/18", + "index": 30018 + }, + "30019": { + "text": "30/19", + "index": 30019 + }, + "30020": { + "text": "30/20", + "index": 30020 + }, + "30021": { + "text": "30/21", + "index": 30021 + }, + "30022": { + "text": "30/22", + "index": 30022 + }, + "30023": { + "text": "30/23", + "index": 30023 + }, + "30024": { + "text": "30/24", + "index": 30024 + }, + "30025": { + "text": "30/25", + "index": 30025 + }, + "30026": { + "text": "30/26", + "index": 30026 + }, + "30027": { + "text": "30/27", + "index": 30027 + }, + "30028": { + "text": "30/28", + "index": 30028 + }, + "30029": { + "text": "30/29", + "index": 30029 + }, + "30030": { + "text": "30/30", + "index": 30030 + }, + "30031": { + "text": "30/31", + "index": 30031 + }, + "30032": { + "text": "30/32", + "index": 30032 + }, + "30033": { + "text": "30/33", + "index": 30033 + }, + "30034": { + "text": "30/34", + "index": 30034 + }, + "30035": { + "text": "30/35", + "index": 30035 + }, + "30036": { + "text": "30/36", + "index": 30036 + }, + "30037": { + "text": "30/37", + "index": 30037 + }, + "30038": { + "text": "30/38", + "index": 30038 + }, + "30039": { + "text": "30/39", + "index": 30039 + }, + "30040": { + "text": "30/40", + "index": 30040 + }, + "31000": { + "text": "31/0", + "index": 31000 + }, + "31001": { + "text": "31/1", + "index": 31001 + }, + "31002": { + "text": "31/2", + "index": 31002 + }, + "31003": { + "text": "31/3", + "index": 31003 + }, + "31004": { + "text": "31/4", + "index": 31004 + }, + "31005": { + "text": "31/5", + "index": 31005 + }, + "31006": { + "text": "31/6", + "index": 31006 + }, + "31007": { + "text": "31/7", + "index": 31007 + }, + "31008": { + "text": "31/8", + "index": 31008 + }, + "31009": { + "text": "31/9", + "index": 31009 + }, + "31010": { + "text": "31/10", + "index": 31010 + }, + "31011": { + "text": "31/11", + "index": 31011 + }, + "31012": { + "text": "31/12", + "index": 31012 + }, + "31013": { + "text": "31/13", + "index": 31013 + }, + "31014": { + "text": "31/14", + "index": 31014 + }, + "31015": { + "text": "31/15", + "index": 31015 + }, + "31016": { + "text": "31/16", + "index": 31016 + }, + "31017": { + "text": "31/17", + "index": 31017 + }, + "31018": { + "text": "31/18", + "index": 31018 + }, + "31019": { + "text": "31/19", + "index": 31019 + }, + "31020": { + "text": "31/20", + "index": 31020 + }, + "31021": { + "text": "31/21", + "index": 31021 + }, + "31022": { + "text": "31/22", + "index": 31022 + }, + "31023": { + "text": "31/23", + "index": 31023 + }, + "31024": { + "text": "31/24", + "index": 31024 + }, + "31025": { + "text": "31/25", + "index": 31025 + }, + "31026": { + "text": "31/26", + "index": 31026 + }, + "31027": { + "text": "31/27", + "index": 31027 + }, + "31028": { + "text": "31/28", + "index": 31028 + }, + "31029": { + "text": "31/29", + "index": 31029 + }, + "31030": { + "text": "31/30", + "index": 31030 + }, + "31031": { + "text": "31/31", + "index": 31031 + }, + "31032": { + "text": "31/32", + "index": 31032 + }, + "31033": { + "text": "31/33", + "index": 31033 + }, + "31034": { + "text": "31/34", + "index": 31034 + }, + "31035": { + "text": "31/35", + "index": 31035 + }, + "31036": { + "text": "31/36", + "index": 31036 + }, + "31037": { + "text": "31/37", + "index": 31037 + }, + "31038": { + "text": "31/38", + "index": 31038 + }, + "31039": { + "text": "31/39", + "index": 31039 + }, + "31040": { + "text": "31/40", + "index": 31040 + }, + "32000": { + "text": "32/0", + "index": 32000 + }, + "32001": { + "text": "32/1", + "index": 32001 + }, + "32002": { + "text": "32/2", + "index": 32002 + }, + "32003": { + "text": "32/3", + "index": 32003 + }, + "32004": { + "text": "32/4", + "index": 32004 + }, + "32005": { + "text": "32/5", + "index": 32005 + }, + "32006": { + "text": "32/6", + "index": 32006 + }, + "32007": { + "text": "32/7", + "index": 32007 + }, + "32008": { + "text": "32/8", + "index": 32008 + }, + "32009": { + "text": "32/9", + "index": 32009 + }, + "32010": { + "text": "32/10", + "index": 32010 + }, + "32011": { + "text": "32/11", + "index": 32011 + }, + "32012": { + "text": "32/12", + "index": 32012 + }, + "32013": { + "text": "32/13", + "index": 32013 + }, + "32014": { + "text": "32/14", + "index": 32014 + }, + "32015": { + "text": "32/15", + "index": 32015 + }, + "32016": { + "text": "32/16", + "index": 32016 + }, + "32017": { + "text": "32/17", + "index": 32017 + }, + "32018": { + "text": "32/18", + "index": 32018 + }, + "32019": { + "text": "32/19", + "index": 32019 + }, + "32020": { + "text": "32/20", + "index": 32020 + }, + "32021": { + "text": "32/21", + "index": 32021 + }, + "32022": { + "text": "32/22", + "index": 32022 + }, + "32023": { + "text": "32/23", + "index": 32023 + }, + "32024": { + "text": "32/24", + "index": 32024 + }, + "32025": { + "text": "32/25", + "index": 32025 + }, + "32026": { + "text": "32/26", + "index": 32026 + }, + "32027": { + "text": "32/27", + "index": 32027 + }, + "32028": { + "text": "32/28", + "index": 32028 + }, + "32029": { + "text": "32/29", + "index": 32029 + }, + "32030": { + "text": "32/30", + "index": 32030 + }, + "32031": { + "text": "32/31", + "index": 32031 + }, + "32032": { + "text": "32/32", + "index": 32032 + }, + "32033": { + "text": "32/33", + "index": 32033 + }, + "32034": { + "text": "32/34", + "index": 32034 + }, + "32035": { + "text": "32/35", + "index": 32035 + }, + "32036": { + "text": "32/36", + "index": 32036 + }, + "32037": { + "text": "32/37", + "index": 32037 + }, + "32038": { + "text": "32/38", + "index": 32038 + }, + "32039": { + "text": "32/39", + "index": 32039 + }, + "32040": { + "text": "32/40", + "index": 32040 + }, + "33000": { + "text": "33/0", + "index": 33000 + }, + "33001": { + "text": "33/1", + "index": 33001 + }, + "33002": { + "text": "33/2", + "index": 33002 + }, + "33003": { + "text": "33/3", + "index": 33003 + }, + "33004": { + "text": "33/4", + "index": 33004 + }, + "33005": { + "text": "33/5", + "index": 33005 + }, + "33006": { + "text": "33/6", + "index": 33006 + }, + "33007": { + "text": "33/7", + "index": 33007 + }, + "33008": { + "text": "33/8", + "index": 33008 + }, + "33009": { + "text": "33/9", + "index": 33009 + }, + "33010": { + "text": "33/10", + "index": 33010 + }, + "33011": { + "text": "33/11", + "index": 33011 + }, + "33012": { + "text": "33/12", + "index": 33012 + }, + "33013": { + "text": "33/13", + "index": 33013 + }, + "33014": { + "text": "33/14", + "index": 33014 + }, + "33015": { + "text": "33/15", + "index": 33015 + }, + "33016": { + "text": "33/16", + "index": 33016 + }, + "33017": { + "text": "33/17", + "index": 33017 + }, + "33018": { + "text": "33/18", + "index": 33018 + }, + "33019": { + "text": "33/19", + "index": 33019 + }, + "33020": { + "text": "33/20", + "index": 33020 + }, + "33021": { + "text": "33/21", + "index": 33021 + }, + "33022": { + "text": "33/22", + "index": 33022 + }, + "33023": { + "text": "33/23", + "index": 33023 + }, + "33024": { + "text": "33/24", + "index": 33024 + }, + "33025": { + "text": "33/25", + "index": 33025 + }, + "33026": { + "text": "33/26", + "index": 33026 + }, + "33027": { + "text": "33/27", + "index": 33027 + }, + "33028": { + "text": "33/28", + "index": 33028 + }, + "33029": { + "text": "33/29", + "index": 33029 + }, + "33030": { + "text": "33/30", + "index": 33030 + }, + "33031": { + "text": "33/31", + "index": 33031 + }, + "33032": { + "text": "33/32", + "index": 33032 + }, + "33033": { + "text": "33/33", + "index": 33033 + }, + "33034": { + "text": "33/34", + "index": 33034 + }, + "33035": { + "text": "33/35", + "index": 33035 + }, + "33036": { + "text": "33/36", + "index": 33036 + }, + "33037": { + "text": "33/37", + "index": 33037 + }, + "33038": { + "text": "33/38", + "index": 33038 + }, + "33039": { + "text": "33/39", + "index": 33039 + }, + "33040": { + "text": "33/40", + "index": 33040 + }, + "34000": { + "text": "34/0", + "index": 34000 + }, + "34001": { + "text": "34/1", + "index": 34001 + }, + "34002": { + "text": "34/2", + "index": 34002 + }, + "34003": { + "text": "34/3", + "index": 34003 + }, + "34004": { + "text": "34/4", + "index": 34004 + }, + "34005": { + "text": "34/5", + "index": 34005 + }, + "34006": { + "text": "34/6", + "index": 34006 + }, + "34007": { + "text": "34/7", + "index": 34007 + }, + "34008": { + "text": "34/8", + "index": 34008 + }, + "34009": { + "text": "34/9", + "index": 34009 + }, + "34010": { + "text": "34/10", + "index": 34010 + }, + "34011": { + "text": "34/11", + "index": 34011 + }, + "34012": { + "text": "34/12", + "index": 34012 + }, + "34013": { + "text": "34/13", + "index": 34013 + }, + "34014": { + "text": "34/14", + "index": 34014 + }, + "34015": { + "text": "34/15", + "index": 34015 + }, + "34016": { + "text": "34/16", + "index": 34016 + }, + "34017": { + "text": "34/17", + "index": 34017 + }, + "34018": { + "text": "34/18", + "index": 34018 + }, + "34019": { + "text": "34/19", + "index": 34019 + }, + "34020": { + "text": "34/20", + "index": 34020 + }, + "34021": { + "text": "34/21", + "index": 34021 + }, + "34022": { + "text": "34/22", + "index": 34022 + }, + "34023": { + "text": "34/23", + "index": 34023 + }, + "34024": { + "text": "34/24", + "index": 34024 + }, + "34025": { + "text": "34/25", + "index": 34025 + }, + "34026": { + "text": "34/26", + "index": 34026 + }, + "34027": { + "text": "34/27", + "index": 34027 + }, + "34028": { + "text": "34/28", + "index": 34028 + }, + "34029": { + "text": "34/29", + "index": 34029 + }, + "34030": { + "text": "34/30", + "index": 34030 + }, + "34031": { + "text": "34/31", + "index": 34031 + }, + "34032": { + "text": "34/32", + "index": 34032 + }, + "34033": { + "text": "34/33", + "index": 34033 + }, + "34034": { + "text": "34/34", + "index": 34034 + }, + "34035": { + "text": "34/35", + "index": 34035 + }, + "34036": { + "text": "34/36", + "index": 34036 + }, + "34037": { + "text": "34/37", + "index": 34037 + }, + "34038": { + "text": "34/38", + "index": 34038 + }, + "34039": { + "text": "34/39", + "index": 34039 + }, + "34040": { + "text": "34/40", + "index": 34040 + }, + "35000": { + "text": "35/0", + "index": 35000 + }, + "35001": { + "text": "35/1", + "index": 35001 + }, + "35002": { + "text": "35/2", + "index": 35002 + }, + "35003": { + "text": "35/3", + "index": 35003 + }, + "35004": { + "text": "35/4", + "index": 35004 + }, + "35005": { + "text": "35/5", + "index": 35005 + }, + "35006": { + "text": "35/6", + "index": 35006 + }, + "35007": { + "text": "35/7", + "index": 35007 + }, + "35008": { + "text": "35/8", + "index": 35008 + }, + "35009": { + "text": "35/9", + "index": 35009 + }, + "35010": { + "text": "35/10", + "index": 35010 + }, + "35011": { + "text": "35/11", + "index": 35011 + }, + "35012": { + "text": "35/12", + "index": 35012 + }, + "35013": { + "text": "35/13", + "index": 35013 + }, + "35014": { + "text": "35/14", + "index": 35014 + }, + "35015": { + "text": "35/15", + "index": 35015 + }, + "35016": { + "text": "35/16", + "index": 35016 + }, + "35017": { + "text": "35/17", + "index": 35017 + }, + "35018": { + "text": "35/18", + "index": 35018 + }, + "35019": { + "text": "35/19", + "index": 35019 + }, + "35020": { + "text": "35/20", + "index": 35020 + }, + "35021": { + "text": "35/21", + "index": 35021 + }, + "35022": { + "text": "35/22", + "index": 35022 + }, + "35023": { + "text": "35/23", + "index": 35023 + }, + "35024": { + "text": "35/24", + "index": 35024 + }, + "35025": { + "text": "35/25", + "index": 35025 + }, + "35026": { + "text": "35/26", + "index": 35026 + }, + "35027": { + "text": "35/27", + "index": 35027 + }, + "35028": { + "text": "35/28", + "index": 35028 + }, + "35029": { + "text": "35/29", + "index": 35029 + }, + "35030": { + "text": "35/30", + "index": 35030 + }, + "35031": { + "text": "35/31", + "index": 35031 + }, + "35032": { + "text": "35/32", + "index": 35032 + }, + "35033": { + "text": "35/33", + "index": 35033 + }, + "35034": { + "text": "35/34", + "index": 35034 + }, + "35035": { + "text": "35/35", + "index": 35035 + }, + "35036": { + "text": "35/36", + "index": 35036 + }, + "35037": { + "text": "35/37", + "index": 35037 + }, + "35038": { + "text": "35/38", + "index": 35038 + }, + "35039": { + "text": "35/39", + "index": 35039 + }, + "35040": { + "text": "35/40", + "index": 35040 + }, + "36000": { + "text": "36/0", + "index": 36000 + }, + "36001": { + "text": "36/1", + "index": 36001 + }, + "36002": { + "text": "36/2", + "index": 36002 + }, + "36003": { + "text": "36/3", + "index": 36003 + }, + "36004": { + "text": "36/4", + "index": 36004 + }, + "36005": { + "text": "36/5", + "index": 36005 + }, + "36006": { + "text": "36/6", + "index": 36006 + }, + "36007": { + "text": "36/7", + "index": 36007 + }, + "36008": { + "text": "36/8", + "index": 36008 + }, + "36009": { + "text": "36/9", + "index": 36009 + }, + "36010": { + "text": "36/10", + "index": 36010 + }, + "36011": { + "text": "36/11", + "index": 36011 + }, + "36012": { + "text": "36/12", + "index": 36012 + }, + "36013": { + "text": "36/13", + "index": 36013 + }, + "36014": { + "text": "36/14", + "index": 36014 + }, + "36015": { + "text": "36/15", + "index": 36015 + }, + "36016": { + "text": "36/16", + "index": 36016 + }, + "36017": { + "text": "36/17", + "index": 36017 + }, + "36018": { + "text": "36/18", + "index": 36018 + }, + "36019": { + "text": "36/19", + "index": 36019 + }, + "36020": { + "text": "36/20", + "index": 36020 + }, + "36021": { + "text": "36/21", + "index": 36021 + }, + "36022": { + "text": "36/22", + "index": 36022 + }, + "36023": { + "text": "36/23", + "index": 36023 + }, + "36024": { + "text": "36/24", + "index": 36024 + }, + "36025": { + "text": "36/25", + "index": 36025 + }, + "36026": { + "text": "36/26", + "index": 36026 + }, + "36027": { + "text": "36/27", + "index": 36027 + }, + "36028": { + "text": "36/28", + "index": 36028 + }, + "36029": { + "text": "36/29", + "index": 36029 + }, + "36030": { + "text": "36/30", + "index": 36030 + }, + "36031": { + "text": "36/31", + "index": 36031 + }, + "36032": { + "text": "36/32", + "index": 36032 + }, + "36033": { + "text": "36/33", + "index": 36033 + }, + "36034": { + "text": "36/34", + "index": 36034 + }, + "36035": { + "text": "36/35", + "index": 36035 + }, + "36036": { + "text": "36/36", + "index": 36036 + }, + "36037": { + "text": "36/37", + "index": 36037 + }, + "36038": { + "text": "36/38", + "index": 36038 + }, + "36039": { + "text": "36/39", + "index": 36039 + }, + "36040": { + "text": "36/40", + "index": 36040 + }, + "37000": { + "text": "37/0", + "index": 37000 + }, + "37001": { + "text": "37/1", + "index": 37001 + }, + "37002": { + "text": "37/2", + "index": 37002 + }, + "37003": { + "text": "37/3", + "index": 37003 + }, + "37004": { + "text": "37/4", + "index": 37004 + }, + "37005": { + "text": "37/5", + "index": 37005 + }, + "37006": { + "text": "37/6", + "index": 37006 + }, + "37007": { + "text": "37/7", + "index": 37007 + }, + "37008": { + "text": "37/8", + "index": 37008 + }, + "37009": { + "text": "37/9", + "index": 37009 + }, + "37010": { + "text": "37/10", + "index": 37010 + }, + "37011": { + "text": "37/11", + "index": 37011 + }, + "37012": { + "text": "37/12", + "index": 37012 + }, + "37013": { + "text": "37/13", + "index": 37013 + }, + "37014": { + "text": "37/14", + "index": 37014 + }, + "37015": { + "text": "37/15", + "index": 37015 + }, + "37016": { + "text": "37/16", + "index": 37016 + }, + "37017": { + "text": "37/17", + "index": 37017 + }, + "37018": { + "text": "37/18", + "index": 37018 + }, + "37019": { + "text": "37/19", + "index": 37019 + }, + "37020": { + "text": "37/20", + "index": 37020 + }, + "37021": { + "text": "37/21", + "index": 37021 + }, + "37022": { + "text": "37/22", + "index": 37022 + }, + "37023": { + "text": "37/23", + "index": 37023 + }, + "37024": { + "text": "37/24", + "index": 37024 + }, + "37025": { + "text": "37/25", + "index": 37025 + }, + "37026": { + "text": "37/26", + "index": 37026 + }, + "37027": { + "text": "37/27", + "index": 37027 + }, + "37028": { + "text": "37/28", + "index": 37028 + }, + "37029": { + "text": "37/29", + "index": 37029 + }, + "37030": { + "text": "37/30", + "index": 37030 + }, + "37031": { + "text": "37/31", + "index": 37031 + }, + "37032": { + "text": "37/32", + "index": 37032 + }, + "37033": { + "text": "37/33", + "index": 37033 + }, + "37034": { + "text": "37/34", + "index": 37034 + }, + "37035": { + "text": "37/35", + "index": 37035 + }, + "37036": { + "text": "37/36", + "index": 37036 + }, + "37037": { + "text": "37/37", + "index": 37037 + }, + "37038": { + "text": "37/38", + "index": 37038 + }, + "37039": { + "text": "37/39", + "index": 37039 + }, + "37040": { + "text": "37/40", + "index": 37040 + }, + "38000": { + "text": "38/0", + "index": 38000 + }, + "38001": { + "text": "38/1", + "index": 38001 + }, + "38002": { + "text": "38/2", + "index": 38002 + }, + "38003": { + "text": "38/3", + "index": 38003 + }, + "38004": { + "text": "38/4", + "index": 38004 + }, + "38005": { + "text": "38/5", + "index": 38005 + }, + "38006": { + "text": "38/6", + "index": 38006 + }, + "38007": { + "text": "38/7", + "index": 38007 + }, + "38008": { + "text": "38/8", + "index": 38008 + }, + "38009": { + "text": "38/9", + "index": 38009 + }, + "38010": { + "text": "38/10", + "index": 38010 + }, + "38011": { + "text": "38/11", + "index": 38011 + }, + "38012": { + "text": "38/12", + "index": 38012 + }, + "38013": { + "text": "38/13", + "index": 38013 + }, + "38014": { + "text": "38/14", + "index": 38014 + }, + "38015": { + "text": "38/15", + "index": 38015 + }, + "38016": { + "text": "38/16", + "index": 38016 + }, + "38017": { + "text": "38/17", + "index": 38017 + }, + "38018": { + "text": "38/18", + "index": 38018 + }, + "38019": { + "text": "38/19", + "index": 38019 + }, + "38020": { + "text": "38/20", + "index": 38020 + }, + "38021": { + "text": "38/21", + "index": 38021 + }, + "38022": { + "text": "38/22", + "index": 38022 + }, + "38023": { + "text": "38/23", + "index": 38023 + }, + "38024": { + "text": "38/24", + "index": 38024 + }, + "38025": { + "text": "38/25", + "index": 38025 + }, + "38026": { + "text": "38/26", + "index": 38026 + }, + "38027": { + "text": "38/27", + "index": 38027 + }, + "38028": { + "text": "38/28", + "index": 38028 + }, + "38029": { + "text": "38/29", + "index": 38029 + }, + "38030": { + "text": "38/30", + "index": 38030 + }, + "38031": { + "text": "38/31", + "index": 38031 + }, + "38032": { + "text": "38/32", + "index": 38032 + }, + "38033": { + "text": "38/33", + "index": 38033 + }, + "38034": { + "text": "38/34", + "index": 38034 + }, + "38035": { + "text": "38/35", + "index": 38035 + }, + "38036": { + "text": "38/36", + "index": 38036 + }, + "38037": { + "text": "38/37", + "index": 38037 + }, + "38038": { + "text": "38/38", + "index": 38038 + }, + "38039": { + "text": "38/39", + "index": 38039 + }, + "38040": { + "text": "38/40", + "index": 38040 + }, + "39000": { + "text": "39/0", + "index": 39000 + }, + "39001": { + "text": "39/1", + "index": 39001 + }, + "39002": { + "text": "39/2", + "index": 39002 + }, + "39003": { + "text": "39/3", + "index": 39003 + }, + "39004": { + "text": "39/4", + "index": 39004 + }, + "39005": { + "text": "39/5", + "index": 39005 + }, + "39006": { + "text": "39/6", + "index": 39006 + }, + "39007": { + "text": "39/7", + "index": 39007 + }, + "39008": { + "text": "39/8", + "index": 39008 + }, + "39009": { + "text": "39/9", + "index": 39009 + }, + "39010": { + "text": "39/10", + "index": 39010 + }, + "39011": { + "text": "39/11", + "index": 39011 + }, + "39012": { + "text": "39/12", + "index": 39012 + }, + "39013": { + "text": "39/13", + "index": 39013 + }, + "39014": { + "text": "39/14", + "index": 39014 + }, + "39015": { + "text": "39/15", + "index": 39015 + }, + "39016": { + "text": "39/16", + "index": 39016 + }, + "39017": { + "text": "39/17", + "index": 39017 + }, + "39018": { + "text": "39/18", + "index": 39018 + }, + "39019": { + "text": "39/19", + "index": 39019 + }, + "39020": { + "text": "39/20", + "index": 39020 + }, + "39021": { + "text": "39/21", + "index": 39021 + }, + "39022": { + "text": "39/22", + "index": 39022 + }, + "39023": { + "text": "39/23", + "index": 39023 + }, + "39024": { + "text": "39/24", + "index": 39024 + }, + "39025": { + "text": "39/25", + "index": 39025 + }, + "39026": { + "text": "39/26", + "index": 39026 + }, + "39027": { + "text": "39/27", + "index": 39027 + }, + "39028": { + "text": "39/28", + "index": 39028 + }, + "39029": { + "text": "39/29", + "index": 39029 + }, + "39030": { + "text": "39/30", + "index": 39030 + }, + "39031": { + "text": "39/31", + "index": 39031 + }, + "39032": { + "text": "39/32", + "index": 39032 + }, + "39033": { + "text": "39/33", + "index": 39033 + }, + "39034": { + "text": "39/34", + "index": 39034 + }, + "39035": { + "text": "39/35", + "index": 39035 + }, + "39036": { + "text": "39/36", + "index": 39036 + }, + "39037": { + "text": "39/37", + "index": 39037 + }, + "39038": { + "text": "39/38", + "index": 39038 + }, + "39039": { + "text": "39/39", + "index": 39039 + }, + "39040": { + "text": "39/40", + "index": 39040 + }, + "40000": { + "text": "40/0", + "index": 40000 + }, + "40001": { + "text": "40/1", + "index": 40001 + }, + "40002": { + "text": "40/2", + "index": 40002 + }, + "40003": { + "text": "40/3", + "index": 40003 + }, + "40004": { + "text": "40/4", + "index": 40004 + }, + "40005": { + "text": "40/5", + "index": 40005 + }, + "40006": { + "text": "40/6", + "index": 40006 + }, + "40007": { + "text": "40/7", + "index": 40007 + }, + "40008": { + "text": "40/8", + "index": 40008 + }, + "40009": { + "text": "40/9", + "index": 40009 + }, + "40010": { + "text": "40/10", + "index": 40010 + }, + "40011": { + "text": "40/11", + "index": 40011 + }, + "40012": { + "text": "40/12", + "index": 40012 + }, + "40013": { + "text": "40/13", + "index": 40013 + }, + "40014": { + "text": "40/14", + "index": 40014 + }, + "40015": { + "text": "40/15", + "index": 40015 + }, + "40016": { + "text": "40/16", + "index": 40016 + }, + "40017": { + "text": "40/17", + "index": 40017 + }, + "40018": { + "text": "40/18", + "index": 40018 + }, + "40019": { + "text": "40/19", + "index": 40019 + }, + "40020": { + "text": "40/20", + "index": 40020 + }, + "40021": { + "text": "40/21", + "index": 40021 + }, + "40022": { + "text": "40/22", + "index": 40022 + }, + "40023": { + "text": "40/23", + "index": 40023 + }, + "40024": { + "text": "40/24", + "index": 40024 + }, + "40025": { + "text": "40/25", + "index": 40025 + }, + "40026": { + "text": "40/26", + "index": 40026 + }, + "40027": { + "text": "40/27", + "index": 40027 + }, + "40028": { + "text": "40/28", + "index": 40028 + }, + "40029": { + "text": "40/29", + "index": 40029 + }, + "40030": { + "text": "40/30", + "index": 40030 + }, + "40031": { + "text": "40/31", + "index": 40031 + }, + "40032": { + "text": "40/32", + "index": 40032 + }, + "40033": { + "text": "40/33", + "index": 40033 + }, + "40034": { + "text": "40/34", + "index": 40034 + }, + "40035": { + "text": "40/35", + "index": 40035 + }, + "40036": { + "text": "40/36", + "index": 40036 + }, + "40037": { + "text": "40/37", + "index": 40037 + }, + "40038": { + "text": "40/38", + "index": 40038 + }, + "40039": { + "text": "40/39", + "index": 40039 + }, + "40040": { + "text": "40/40", + "index": 40040 + } + } + } + ] + }, + { + "id": "decimals", + "value": 0 + }, + { + "id": "unit", + "value": "none" + }, + { + "id": "color", + "value": { + "mode": "fixed", + "fixedColor": "text" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Health" + }, + "properties": [ + { + "id": "color", + "value": { + "mode": "thresholds" + } + }, + { + "id": "thresholds", + "value": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 1 + }, + { + "color": "green", + "value": 100 + } + ] + } + }, + { + "id": "unit", + "value": "percent" + } + ] + } ] }, "gridPos": { "h": 4, "w": 4.8, - "x": 9.6, + "x": 14.4, "y": 1 }, - "id": 2, + "id": 3, "options": { "colorMode": "background", "graphMode": "none", @@ -354,44 +27482,38 @@ }, "showPercentChange": false, "textMode": "value_and_name", - "wideLayout": true + "wideLayout": true, + "text": { + "valueSize": 24 + } }, "pluginVersion": "11.6.4", "targets": [ { "datasource": "Metrics", "editorMode": "code", - "expr": "count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}) == 1)", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}) == 1)) * 1000 + (count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}))))", "instant": true, - "legendFormat": "Alive", + "legendFormat": "Alive/Expected", "range": false, "refId": "A" }, { "datasource": "Metrics", "editorMode": "code", - "expr": "count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}))", - "instant": true, - "legendFormat": "Expected", - "range": false, - "refId": "B" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}))), 1)) * 100", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}))), 1)) * 100", "instant": true, "legendFormat": "Health", "range": false, - "refId": "C" + "refId": "B" } ], - "title": "🖱️ ClickHouse", + "title": "\ud83d\udcca VictoriaMetrics", "type": "stat" }, { "datasource": "Metrics", - "description": "VictoriaMetrics instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", + "description": "HAProxy instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", "fieldConfig": { "defaults": { "color": { @@ -413,121 +27535,6760 @@ { "matcher": { "id": "byName", - "options": "Health" + "options": "Alive/Expected" }, "properties": [ { - "id": "color", - "value": { - "mode": "thresholds" - } + "id": "mappings", + "value": [ + { + "type": "value", + "options": { + "0": { + "text": "0/0", + "index": 0 + }, + "1": { + "text": "0/1", + "index": 1 + }, + "2": { + "text": "0/2", + "index": 2 + }, + "3": { + "text": "0/3", + "index": 3 + }, + "4": { + "text": "0/4", + "index": 4 + }, + "5": { + "text": "0/5", + "index": 5 + }, + "6": { + "text": "0/6", + "index": 6 + }, + "7": { + "text": "0/7", + "index": 7 + }, + "8": { + "text": "0/8", + "index": 8 + }, + "9": { + "text": "0/9", + "index": 9 + }, + "10": { + "text": "0/10", + "index": 10 + }, + "11": { + "text": "0/11", + "index": 11 + }, + "12": { + "text": "0/12", + "index": 12 + }, + "13": { + "text": "0/13", + "index": 13 + }, + "14": { + "text": "0/14", + "index": 14 + }, + "15": { + "text": "0/15", + "index": 15 + }, + "16": { + "text": "0/16", + "index": 16 + }, + "17": { + "text": "0/17", + "index": 17 + }, + "18": { + "text": "0/18", + "index": 18 + }, + "19": { + "text": "0/19", + "index": 19 + }, + "20": { + "text": "0/20", + "index": 20 + }, + "21": { + "text": "0/21", + "index": 21 + }, + "22": { + "text": "0/22", + "index": 22 + }, + "23": { + "text": "0/23", + "index": 23 + }, + "24": { + "text": "0/24", + "index": 24 + }, + "25": { + "text": "0/25", + "index": 25 + }, + "26": { + "text": "0/26", + "index": 26 + }, + "27": { + "text": "0/27", + "index": 27 + }, + "28": { + "text": "0/28", + "index": 28 + }, + "29": { + "text": "0/29", + "index": 29 + }, + "30": { + "text": "0/30", + "index": 30 + }, + "31": { + "text": "0/31", + "index": 31 + }, + "32": { + "text": "0/32", + "index": 32 + }, + "33": { + "text": "0/33", + "index": 33 + }, + "34": { + "text": "0/34", + "index": 34 + }, + "35": { + "text": "0/35", + "index": 35 + }, + "36": { + "text": "0/36", + "index": 36 + }, + "37": { + "text": "0/37", + "index": 37 + }, + "38": { + "text": "0/38", + "index": 38 + }, + "39": { + "text": "0/39", + "index": 39 + }, + "40": { + "text": "0/40", + "index": 40 + }, + "1000": { + "text": "1/0", + "index": 1000 + }, + "1001": { + "text": "1/1", + "index": 1001 + }, + "1002": { + "text": "1/2", + "index": 1002 + }, + "1003": { + "text": "1/3", + "index": 1003 + }, + "1004": { + "text": "1/4", + "index": 1004 + }, + "1005": { + "text": "1/5", + "index": 1005 + }, + "1006": { + "text": "1/6", + "index": 1006 + }, + "1007": { + "text": "1/7", + "index": 1007 + }, + "1008": { + "text": "1/8", + "index": 1008 + }, + "1009": { + "text": "1/9", + "index": 1009 + }, + "1010": { + "text": "1/10", + "index": 1010 + }, + "1011": { + "text": "1/11", + "index": 1011 + }, + "1012": { + "text": "1/12", + "index": 1012 + }, + "1013": { + "text": "1/13", + "index": 1013 + }, + "1014": { + "text": "1/14", + "index": 1014 + }, + "1015": { + "text": "1/15", + "index": 1015 + }, + "1016": { + "text": "1/16", + "index": 1016 + }, + "1017": { + "text": "1/17", + "index": 1017 + }, + "1018": { + "text": "1/18", + "index": 1018 + }, + "1019": { + "text": "1/19", + "index": 1019 + }, + "1020": { + "text": "1/20", + "index": 1020 + }, + "1021": { + "text": "1/21", + "index": 1021 + }, + "1022": { + "text": "1/22", + "index": 1022 + }, + "1023": { + "text": "1/23", + "index": 1023 + }, + "1024": { + "text": "1/24", + "index": 1024 + }, + "1025": { + "text": "1/25", + "index": 1025 + }, + "1026": { + "text": "1/26", + "index": 1026 + }, + "1027": { + "text": "1/27", + "index": 1027 + }, + "1028": { + "text": "1/28", + "index": 1028 + }, + "1029": { + "text": "1/29", + "index": 1029 + }, + "1030": { + "text": "1/30", + "index": 1030 + }, + "1031": { + "text": "1/31", + "index": 1031 + }, + "1032": { + "text": "1/32", + "index": 1032 + }, + "1033": { + "text": "1/33", + "index": 1033 + }, + "1034": { + "text": "1/34", + "index": 1034 + }, + "1035": { + "text": "1/35", + "index": 1035 + }, + "1036": { + "text": "1/36", + "index": 1036 + }, + "1037": { + "text": "1/37", + "index": 1037 + }, + "1038": { + "text": "1/38", + "index": 1038 + }, + "1039": { + "text": "1/39", + "index": 1039 + }, + "1040": { + "text": "1/40", + "index": 1040 + }, + "2000": { + "text": "2/0", + "index": 2000 + }, + "2001": { + "text": "2/1", + "index": 2001 + }, + "2002": { + "text": "2/2", + "index": 2002 + }, + "2003": { + "text": "2/3", + "index": 2003 + }, + "2004": { + "text": "2/4", + "index": 2004 + }, + "2005": { + "text": "2/5", + "index": 2005 + }, + "2006": { + "text": "2/6", + "index": 2006 + }, + "2007": { + "text": "2/7", + "index": 2007 + }, + "2008": { + "text": "2/8", + "index": 2008 + }, + "2009": { + "text": "2/9", + "index": 2009 + }, + "2010": { + "text": "2/10", + "index": 2010 + }, + "2011": { + "text": "2/11", + "index": 2011 + }, + "2012": { + "text": "2/12", + "index": 2012 + }, + "2013": { + "text": "2/13", + "index": 2013 + }, + "2014": { + "text": "2/14", + "index": 2014 + }, + "2015": { + "text": "2/15", + "index": 2015 + }, + "2016": { + "text": "2/16", + "index": 2016 + }, + "2017": { + "text": "2/17", + "index": 2017 + }, + "2018": { + "text": "2/18", + "index": 2018 + }, + "2019": { + "text": "2/19", + "index": 2019 + }, + "2020": { + "text": "2/20", + "index": 2020 + }, + "2021": { + "text": "2/21", + "index": 2021 + }, + "2022": { + "text": "2/22", + "index": 2022 + }, + "2023": { + "text": "2/23", + "index": 2023 + }, + "2024": { + "text": "2/24", + "index": 2024 + }, + "2025": { + "text": "2/25", + "index": 2025 + }, + "2026": { + "text": "2/26", + "index": 2026 + }, + "2027": { + "text": "2/27", + "index": 2027 + }, + "2028": { + "text": "2/28", + "index": 2028 + }, + "2029": { + "text": "2/29", + "index": 2029 + }, + "2030": { + "text": "2/30", + "index": 2030 + }, + "2031": { + "text": "2/31", + "index": 2031 + }, + "2032": { + "text": "2/32", + "index": 2032 + }, + "2033": { + "text": "2/33", + "index": 2033 + }, + "2034": { + "text": "2/34", + "index": 2034 + }, + "2035": { + "text": "2/35", + "index": 2035 + }, + "2036": { + "text": "2/36", + "index": 2036 + }, + "2037": { + "text": "2/37", + "index": 2037 + }, + "2038": { + "text": "2/38", + "index": 2038 + }, + "2039": { + "text": "2/39", + "index": 2039 + }, + "2040": { + "text": "2/40", + "index": 2040 + }, + "3000": { + "text": "3/0", + "index": 3000 + }, + "3001": { + "text": "3/1", + "index": 3001 + }, + "3002": { + "text": "3/2", + "index": 3002 + }, + "3003": { + "text": "3/3", + "index": 3003 + }, + "3004": { + "text": "3/4", + "index": 3004 + }, + "3005": { + "text": "3/5", + "index": 3005 + }, + "3006": { + "text": "3/6", + "index": 3006 + }, + "3007": { + "text": "3/7", + "index": 3007 + }, + "3008": { + "text": "3/8", + "index": 3008 + }, + "3009": { + "text": "3/9", + "index": 3009 + }, + "3010": { + "text": "3/10", + "index": 3010 + }, + "3011": { + "text": "3/11", + "index": 3011 + }, + "3012": { + "text": "3/12", + "index": 3012 + }, + "3013": { + "text": "3/13", + "index": 3013 + }, + "3014": { + "text": "3/14", + "index": 3014 + }, + "3015": { + "text": "3/15", + "index": 3015 + }, + "3016": { + "text": "3/16", + "index": 3016 + }, + "3017": { + "text": "3/17", + "index": 3017 + }, + "3018": { + "text": "3/18", + "index": 3018 + }, + "3019": { + "text": "3/19", + "index": 3019 + }, + "3020": { + "text": "3/20", + "index": 3020 + }, + "3021": { + "text": "3/21", + "index": 3021 + }, + "3022": { + "text": "3/22", + "index": 3022 + }, + "3023": { + "text": "3/23", + "index": 3023 + }, + "3024": { + "text": "3/24", + "index": 3024 + }, + "3025": { + "text": "3/25", + "index": 3025 + }, + "3026": { + "text": "3/26", + "index": 3026 + }, + "3027": { + "text": "3/27", + "index": 3027 + }, + "3028": { + "text": "3/28", + "index": 3028 + }, + "3029": { + "text": "3/29", + "index": 3029 + }, + "3030": { + "text": "3/30", + "index": 3030 + }, + "3031": { + "text": "3/31", + "index": 3031 + }, + "3032": { + "text": "3/32", + "index": 3032 + }, + "3033": { + "text": "3/33", + "index": 3033 + }, + "3034": { + "text": "3/34", + "index": 3034 + }, + "3035": { + "text": "3/35", + "index": 3035 + }, + "3036": { + "text": "3/36", + "index": 3036 + }, + "3037": { + "text": "3/37", + "index": 3037 + }, + "3038": { + "text": "3/38", + "index": 3038 + }, + "3039": { + "text": "3/39", + "index": 3039 + }, + "3040": { + "text": "3/40", + "index": 3040 + }, + "4000": { + "text": "4/0", + "index": 4000 + }, + "4001": { + "text": "4/1", + "index": 4001 + }, + "4002": { + "text": "4/2", + "index": 4002 + }, + "4003": { + "text": "4/3", + "index": 4003 + }, + "4004": { + "text": "4/4", + "index": 4004 + }, + "4005": { + "text": "4/5", + "index": 4005 + }, + "4006": { + "text": "4/6", + "index": 4006 + }, + "4007": { + "text": "4/7", + "index": 4007 + }, + "4008": { + "text": "4/8", + "index": 4008 + }, + "4009": { + "text": "4/9", + "index": 4009 + }, + "4010": { + "text": "4/10", + "index": 4010 + }, + "4011": { + "text": "4/11", + "index": 4011 + }, + "4012": { + "text": "4/12", + "index": 4012 + }, + "4013": { + "text": "4/13", + "index": 4013 + }, + "4014": { + "text": "4/14", + "index": 4014 + }, + "4015": { + "text": "4/15", + "index": 4015 + }, + "4016": { + "text": "4/16", + "index": 4016 + }, + "4017": { + "text": "4/17", + "index": 4017 + }, + "4018": { + "text": "4/18", + "index": 4018 + }, + "4019": { + "text": "4/19", + "index": 4019 + }, + "4020": { + "text": "4/20", + "index": 4020 + }, + "4021": { + "text": "4/21", + "index": 4021 + }, + "4022": { + "text": "4/22", + "index": 4022 + }, + "4023": { + "text": "4/23", + "index": 4023 + }, + "4024": { + "text": "4/24", + "index": 4024 + }, + "4025": { + "text": "4/25", + "index": 4025 + }, + "4026": { + "text": "4/26", + "index": 4026 + }, + "4027": { + "text": "4/27", + "index": 4027 + }, + "4028": { + "text": "4/28", + "index": 4028 + }, + "4029": { + "text": "4/29", + "index": 4029 + }, + "4030": { + "text": "4/30", + "index": 4030 + }, + "4031": { + "text": "4/31", + "index": 4031 + }, + "4032": { + "text": "4/32", + "index": 4032 + }, + "4033": { + "text": "4/33", + "index": 4033 + }, + "4034": { + "text": "4/34", + "index": 4034 + }, + "4035": { + "text": "4/35", + "index": 4035 + }, + "4036": { + "text": "4/36", + "index": 4036 + }, + "4037": { + "text": "4/37", + "index": 4037 + }, + "4038": { + "text": "4/38", + "index": 4038 + }, + "4039": { + "text": "4/39", + "index": 4039 + }, + "4040": { + "text": "4/40", + "index": 4040 + }, + "5000": { + "text": "5/0", + "index": 5000 + }, + "5001": { + "text": "5/1", + "index": 5001 + }, + "5002": { + "text": "5/2", + "index": 5002 + }, + "5003": { + "text": "5/3", + "index": 5003 + }, + "5004": { + "text": "5/4", + "index": 5004 + }, + "5005": { + "text": "5/5", + "index": 5005 + }, + "5006": { + "text": "5/6", + "index": 5006 + }, + "5007": { + "text": "5/7", + "index": 5007 + }, + "5008": { + "text": "5/8", + "index": 5008 + }, + "5009": { + "text": "5/9", + "index": 5009 + }, + "5010": { + "text": "5/10", + "index": 5010 + }, + "5011": { + "text": "5/11", + "index": 5011 + }, + "5012": { + "text": "5/12", + "index": 5012 + }, + "5013": { + "text": "5/13", + "index": 5013 + }, + "5014": { + "text": "5/14", + "index": 5014 + }, + "5015": { + "text": "5/15", + "index": 5015 + }, + "5016": { + "text": "5/16", + "index": 5016 + }, + "5017": { + "text": "5/17", + "index": 5017 + }, + "5018": { + "text": "5/18", + "index": 5018 + }, + "5019": { + "text": "5/19", + "index": 5019 + }, + "5020": { + "text": "5/20", + "index": 5020 + }, + "5021": { + "text": "5/21", + "index": 5021 + }, + "5022": { + "text": "5/22", + "index": 5022 + }, + "5023": { + "text": "5/23", + "index": 5023 + }, + "5024": { + "text": "5/24", + "index": 5024 + }, + "5025": { + "text": "5/25", + "index": 5025 + }, + "5026": { + "text": "5/26", + "index": 5026 + }, + "5027": { + "text": "5/27", + "index": 5027 + }, + "5028": { + "text": "5/28", + "index": 5028 + }, + "5029": { + "text": "5/29", + "index": 5029 + }, + "5030": { + "text": "5/30", + "index": 5030 + }, + "5031": { + "text": "5/31", + "index": 5031 + }, + "5032": { + "text": "5/32", + "index": 5032 + }, + "5033": { + "text": "5/33", + "index": 5033 + }, + "5034": { + "text": "5/34", + "index": 5034 + }, + "5035": { + "text": "5/35", + "index": 5035 + }, + "5036": { + "text": "5/36", + "index": 5036 + }, + "5037": { + "text": "5/37", + "index": 5037 + }, + "5038": { + "text": "5/38", + "index": 5038 + }, + "5039": { + "text": "5/39", + "index": 5039 + }, + "5040": { + "text": "5/40", + "index": 5040 + }, + "6000": { + "text": "6/0", + "index": 6000 + }, + "6001": { + "text": "6/1", + "index": 6001 + }, + "6002": { + "text": "6/2", + "index": 6002 + }, + "6003": { + "text": "6/3", + "index": 6003 + }, + "6004": { + "text": "6/4", + "index": 6004 + }, + "6005": { + "text": "6/5", + "index": 6005 + }, + "6006": { + "text": "6/6", + "index": 6006 + }, + "6007": { + "text": "6/7", + "index": 6007 + }, + "6008": { + "text": "6/8", + "index": 6008 + }, + "6009": { + "text": "6/9", + "index": 6009 + }, + "6010": { + "text": "6/10", + "index": 6010 + }, + "6011": { + "text": "6/11", + "index": 6011 + }, + "6012": { + "text": "6/12", + "index": 6012 + }, + "6013": { + "text": "6/13", + "index": 6013 + }, + "6014": { + "text": "6/14", + "index": 6014 + }, + "6015": { + "text": "6/15", + "index": 6015 + }, + "6016": { + "text": "6/16", + "index": 6016 + }, + "6017": { + "text": "6/17", + "index": 6017 + }, + "6018": { + "text": "6/18", + "index": 6018 + }, + "6019": { + "text": "6/19", + "index": 6019 + }, + "6020": { + "text": "6/20", + "index": 6020 + }, + "6021": { + "text": "6/21", + "index": 6021 + }, + "6022": { + "text": "6/22", + "index": 6022 + }, + "6023": { + "text": "6/23", + "index": 6023 + }, + "6024": { + "text": "6/24", + "index": 6024 + }, + "6025": { + "text": "6/25", + "index": 6025 + }, + "6026": { + "text": "6/26", + "index": 6026 + }, + "6027": { + "text": "6/27", + "index": 6027 + }, + "6028": { + "text": "6/28", + "index": 6028 + }, + "6029": { + "text": "6/29", + "index": 6029 + }, + "6030": { + "text": "6/30", + "index": 6030 + }, + "6031": { + "text": "6/31", + "index": 6031 + }, + "6032": { + "text": "6/32", + "index": 6032 + }, + "6033": { + "text": "6/33", + "index": 6033 + }, + "6034": { + "text": "6/34", + "index": 6034 + }, + "6035": { + "text": "6/35", + "index": 6035 + }, + "6036": { + "text": "6/36", + "index": 6036 + }, + "6037": { + "text": "6/37", + "index": 6037 + }, + "6038": { + "text": "6/38", + "index": 6038 + }, + "6039": { + "text": "6/39", + "index": 6039 + }, + "6040": { + "text": "6/40", + "index": 6040 + }, + "7000": { + "text": "7/0", + "index": 7000 + }, + "7001": { + "text": "7/1", + "index": 7001 + }, + "7002": { + "text": "7/2", + "index": 7002 + }, + "7003": { + "text": "7/3", + "index": 7003 + }, + "7004": { + "text": "7/4", + "index": 7004 + }, + "7005": { + "text": "7/5", + "index": 7005 + }, + "7006": { + "text": "7/6", + "index": 7006 + }, + "7007": { + "text": "7/7", + "index": 7007 + }, + "7008": { + "text": "7/8", + "index": 7008 + }, + "7009": { + "text": "7/9", + "index": 7009 + }, + "7010": { + "text": "7/10", + "index": 7010 + }, + "7011": { + "text": "7/11", + "index": 7011 + }, + "7012": { + "text": "7/12", + "index": 7012 + }, + "7013": { + "text": "7/13", + "index": 7013 + }, + "7014": { + "text": "7/14", + "index": 7014 + }, + "7015": { + "text": "7/15", + "index": 7015 + }, + "7016": { + "text": "7/16", + "index": 7016 + }, + "7017": { + "text": "7/17", + "index": 7017 + }, + "7018": { + "text": "7/18", + "index": 7018 + }, + "7019": { + "text": "7/19", + "index": 7019 + }, + "7020": { + "text": "7/20", + "index": 7020 + }, + "7021": { + "text": "7/21", + "index": 7021 + }, + "7022": { + "text": "7/22", + "index": 7022 + }, + "7023": { + "text": "7/23", + "index": 7023 + }, + "7024": { + "text": "7/24", + "index": 7024 + }, + "7025": { + "text": "7/25", + "index": 7025 + }, + "7026": { + "text": "7/26", + "index": 7026 + }, + "7027": { + "text": "7/27", + "index": 7027 + }, + "7028": { + "text": "7/28", + "index": 7028 + }, + "7029": { + "text": "7/29", + "index": 7029 + }, + "7030": { + "text": "7/30", + "index": 7030 + }, + "7031": { + "text": "7/31", + "index": 7031 + }, + "7032": { + "text": "7/32", + "index": 7032 + }, + "7033": { + "text": "7/33", + "index": 7033 + }, + "7034": { + "text": "7/34", + "index": 7034 + }, + "7035": { + "text": "7/35", + "index": 7035 + }, + "7036": { + "text": "7/36", + "index": 7036 + }, + "7037": { + "text": "7/37", + "index": 7037 + }, + "7038": { + "text": "7/38", + "index": 7038 + }, + "7039": { + "text": "7/39", + "index": 7039 + }, + "7040": { + "text": "7/40", + "index": 7040 + }, + "8000": { + "text": "8/0", + "index": 8000 + }, + "8001": { + "text": "8/1", + "index": 8001 + }, + "8002": { + "text": "8/2", + "index": 8002 + }, + "8003": { + "text": "8/3", + "index": 8003 + }, + "8004": { + "text": "8/4", + "index": 8004 + }, + "8005": { + "text": "8/5", + "index": 8005 + }, + "8006": { + "text": "8/6", + "index": 8006 + }, + "8007": { + "text": "8/7", + "index": 8007 + }, + "8008": { + "text": "8/8", + "index": 8008 + }, + "8009": { + "text": "8/9", + "index": 8009 + }, + "8010": { + "text": "8/10", + "index": 8010 + }, + "8011": { + "text": "8/11", + "index": 8011 + }, + "8012": { + "text": "8/12", + "index": 8012 + }, + "8013": { + "text": "8/13", + "index": 8013 + }, + "8014": { + "text": "8/14", + "index": 8014 + }, + "8015": { + "text": "8/15", + "index": 8015 + }, + "8016": { + "text": "8/16", + "index": 8016 + }, + "8017": { + "text": "8/17", + "index": 8017 + }, + "8018": { + "text": "8/18", + "index": 8018 + }, + "8019": { + "text": "8/19", + "index": 8019 + }, + "8020": { + "text": "8/20", + "index": 8020 + }, + "8021": { + "text": "8/21", + "index": 8021 + }, + "8022": { + "text": "8/22", + "index": 8022 + }, + "8023": { + "text": "8/23", + "index": 8023 + }, + "8024": { + "text": "8/24", + "index": 8024 + }, + "8025": { + "text": "8/25", + "index": 8025 + }, + "8026": { + "text": "8/26", + "index": 8026 + }, + "8027": { + "text": "8/27", + "index": 8027 + }, + "8028": { + "text": "8/28", + "index": 8028 + }, + "8029": { + "text": "8/29", + "index": 8029 + }, + "8030": { + "text": "8/30", + "index": 8030 + }, + "8031": { + "text": "8/31", + "index": 8031 + }, + "8032": { + "text": "8/32", + "index": 8032 + }, + "8033": { + "text": "8/33", + "index": 8033 + }, + "8034": { + "text": "8/34", + "index": 8034 + }, + "8035": { + "text": "8/35", + "index": 8035 + }, + "8036": { + "text": "8/36", + "index": 8036 + }, + "8037": { + "text": "8/37", + "index": 8037 + }, + "8038": { + "text": "8/38", + "index": 8038 + }, + "8039": { + "text": "8/39", + "index": 8039 + }, + "8040": { + "text": "8/40", + "index": 8040 + }, + "9000": { + "text": "9/0", + "index": 9000 + }, + "9001": { + "text": "9/1", + "index": 9001 + }, + "9002": { + "text": "9/2", + "index": 9002 + }, + "9003": { + "text": "9/3", + "index": 9003 + }, + "9004": { + "text": "9/4", + "index": 9004 + }, + "9005": { + "text": "9/5", + "index": 9005 + }, + "9006": { + "text": "9/6", + "index": 9006 + }, + "9007": { + "text": "9/7", + "index": 9007 + }, + "9008": { + "text": "9/8", + "index": 9008 + }, + "9009": { + "text": "9/9", + "index": 9009 + }, + "9010": { + "text": "9/10", + "index": 9010 + }, + "9011": { + "text": "9/11", + "index": 9011 + }, + "9012": { + "text": "9/12", + "index": 9012 + }, + "9013": { + "text": "9/13", + "index": 9013 + }, + "9014": { + "text": "9/14", + "index": 9014 + }, + "9015": { + "text": "9/15", + "index": 9015 + }, + "9016": { + "text": "9/16", + "index": 9016 + }, + "9017": { + "text": "9/17", + "index": 9017 + }, + "9018": { + "text": "9/18", + "index": 9018 + }, + "9019": { + "text": "9/19", + "index": 9019 + }, + "9020": { + "text": "9/20", + "index": 9020 + }, + "9021": { + "text": "9/21", + "index": 9021 + }, + "9022": { + "text": "9/22", + "index": 9022 + }, + "9023": { + "text": "9/23", + "index": 9023 + }, + "9024": { + "text": "9/24", + "index": 9024 + }, + "9025": { + "text": "9/25", + "index": 9025 + }, + "9026": { + "text": "9/26", + "index": 9026 + }, + "9027": { + "text": "9/27", + "index": 9027 + }, + "9028": { + "text": "9/28", + "index": 9028 + }, + "9029": { + "text": "9/29", + "index": 9029 + }, + "9030": { + "text": "9/30", + "index": 9030 + }, + "9031": { + "text": "9/31", + "index": 9031 + }, + "9032": { + "text": "9/32", + "index": 9032 + }, + "9033": { + "text": "9/33", + "index": 9033 + }, + "9034": { + "text": "9/34", + "index": 9034 + }, + "9035": { + "text": "9/35", + "index": 9035 + }, + "9036": { + "text": "9/36", + "index": 9036 + }, + "9037": { + "text": "9/37", + "index": 9037 + }, + "9038": { + "text": "9/38", + "index": 9038 + }, + "9039": { + "text": "9/39", + "index": 9039 + }, + "9040": { + "text": "9/40", + "index": 9040 + }, + "10000": { + "text": "10/0", + "index": 10000 + }, + "10001": { + "text": "10/1", + "index": 10001 + }, + "10002": { + "text": "10/2", + "index": 10002 + }, + "10003": { + "text": "10/3", + "index": 10003 + }, + "10004": { + "text": "10/4", + "index": 10004 + }, + "10005": { + "text": "10/5", + "index": 10005 + }, + "10006": { + "text": "10/6", + "index": 10006 + }, + "10007": { + "text": "10/7", + "index": 10007 + }, + "10008": { + "text": "10/8", + "index": 10008 + }, + "10009": { + "text": "10/9", + "index": 10009 + }, + "10010": { + "text": "10/10", + "index": 10010 + }, + "10011": { + "text": "10/11", + "index": 10011 + }, + "10012": { + "text": "10/12", + "index": 10012 + }, + "10013": { + "text": "10/13", + "index": 10013 + }, + "10014": { + "text": "10/14", + "index": 10014 + }, + "10015": { + "text": "10/15", + "index": 10015 + }, + "10016": { + "text": "10/16", + "index": 10016 + }, + "10017": { + "text": "10/17", + "index": 10017 + }, + "10018": { + "text": "10/18", + "index": 10018 + }, + "10019": { + "text": "10/19", + "index": 10019 + }, + "10020": { + "text": "10/20", + "index": 10020 + }, + "10021": { + "text": "10/21", + "index": 10021 + }, + "10022": { + "text": "10/22", + "index": 10022 + }, + "10023": { + "text": "10/23", + "index": 10023 + }, + "10024": { + "text": "10/24", + "index": 10024 + }, + "10025": { + "text": "10/25", + "index": 10025 + }, + "10026": { + "text": "10/26", + "index": 10026 + }, + "10027": { + "text": "10/27", + "index": 10027 + }, + "10028": { + "text": "10/28", + "index": 10028 + }, + "10029": { + "text": "10/29", + "index": 10029 + }, + "10030": { + "text": "10/30", + "index": 10030 + }, + "10031": { + "text": "10/31", + "index": 10031 + }, + "10032": { + "text": "10/32", + "index": 10032 + }, + "10033": { + "text": "10/33", + "index": 10033 + }, + "10034": { + "text": "10/34", + "index": 10034 + }, + "10035": { + "text": "10/35", + "index": 10035 + }, + "10036": { + "text": "10/36", + "index": 10036 + }, + "10037": { + "text": "10/37", + "index": 10037 + }, + "10038": { + "text": "10/38", + "index": 10038 + }, + "10039": { + "text": "10/39", + "index": 10039 + }, + "10040": { + "text": "10/40", + "index": 10040 + }, + "11000": { + "text": "11/0", + "index": 11000 + }, + "11001": { + "text": "11/1", + "index": 11001 + }, + "11002": { + "text": "11/2", + "index": 11002 + }, + "11003": { + "text": "11/3", + "index": 11003 + }, + "11004": { + "text": "11/4", + "index": 11004 + }, + "11005": { + "text": "11/5", + "index": 11005 + }, + "11006": { + "text": "11/6", + "index": 11006 + }, + "11007": { + "text": "11/7", + "index": 11007 + }, + "11008": { + "text": "11/8", + "index": 11008 + }, + "11009": { + "text": "11/9", + "index": 11009 + }, + "11010": { + "text": "11/10", + "index": 11010 + }, + "11011": { + "text": "11/11", + "index": 11011 + }, + "11012": { + "text": "11/12", + "index": 11012 + }, + "11013": { + "text": "11/13", + "index": 11013 + }, + "11014": { + "text": "11/14", + "index": 11014 + }, + "11015": { + "text": "11/15", + "index": 11015 + }, + "11016": { + "text": "11/16", + "index": 11016 + }, + "11017": { + "text": "11/17", + "index": 11017 + }, + "11018": { + "text": "11/18", + "index": 11018 + }, + "11019": { + "text": "11/19", + "index": 11019 + }, + "11020": { + "text": "11/20", + "index": 11020 + }, + "11021": { + "text": "11/21", + "index": 11021 + }, + "11022": { + "text": "11/22", + "index": 11022 + }, + "11023": { + "text": "11/23", + "index": 11023 + }, + "11024": { + "text": "11/24", + "index": 11024 + }, + "11025": { + "text": "11/25", + "index": 11025 + }, + "11026": { + "text": "11/26", + "index": 11026 + }, + "11027": { + "text": "11/27", + "index": 11027 + }, + "11028": { + "text": "11/28", + "index": 11028 + }, + "11029": { + "text": "11/29", + "index": 11029 + }, + "11030": { + "text": "11/30", + "index": 11030 + }, + "11031": { + "text": "11/31", + "index": 11031 + }, + "11032": { + "text": "11/32", + "index": 11032 + }, + "11033": { + "text": "11/33", + "index": 11033 + }, + "11034": { + "text": "11/34", + "index": 11034 + }, + "11035": { + "text": "11/35", + "index": 11035 + }, + "11036": { + "text": "11/36", + "index": 11036 + }, + "11037": { + "text": "11/37", + "index": 11037 + }, + "11038": { + "text": "11/38", + "index": 11038 + }, + "11039": { + "text": "11/39", + "index": 11039 + }, + "11040": { + "text": "11/40", + "index": 11040 + }, + "12000": { + "text": "12/0", + "index": 12000 + }, + "12001": { + "text": "12/1", + "index": 12001 + }, + "12002": { + "text": "12/2", + "index": 12002 + }, + "12003": { + "text": "12/3", + "index": 12003 + }, + "12004": { + "text": "12/4", + "index": 12004 + }, + "12005": { + "text": "12/5", + "index": 12005 + }, + "12006": { + "text": "12/6", + "index": 12006 + }, + "12007": { + "text": "12/7", + "index": 12007 + }, + "12008": { + "text": "12/8", + "index": 12008 + }, + "12009": { + "text": "12/9", + "index": 12009 + }, + "12010": { + "text": "12/10", + "index": 12010 + }, + "12011": { + "text": "12/11", + "index": 12011 + }, + "12012": { + "text": "12/12", + "index": 12012 + }, + "12013": { + "text": "12/13", + "index": 12013 + }, + "12014": { + "text": "12/14", + "index": 12014 + }, + "12015": { + "text": "12/15", + "index": 12015 + }, + "12016": { + "text": "12/16", + "index": 12016 + }, + "12017": { + "text": "12/17", + "index": 12017 + }, + "12018": { + "text": "12/18", + "index": 12018 + }, + "12019": { + "text": "12/19", + "index": 12019 + }, + "12020": { + "text": "12/20", + "index": 12020 + }, + "12021": { + "text": "12/21", + "index": 12021 + }, + "12022": { + "text": "12/22", + "index": 12022 + }, + "12023": { + "text": "12/23", + "index": 12023 + }, + "12024": { + "text": "12/24", + "index": 12024 + }, + "12025": { + "text": "12/25", + "index": 12025 + }, + "12026": { + "text": "12/26", + "index": 12026 + }, + "12027": { + "text": "12/27", + "index": 12027 + }, + "12028": { + "text": "12/28", + "index": 12028 + }, + "12029": { + "text": "12/29", + "index": 12029 + }, + "12030": { + "text": "12/30", + "index": 12030 + }, + "12031": { + "text": "12/31", + "index": 12031 + }, + "12032": { + "text": "12/32", + "index": 12032 + }, + "12033": { + "text": "12/33", + "index": 12033 + }, + "12034": { + "text": "12/34", + "index": 12034 + }, + "12035": { + "text": "12/35", + "index": 12035 + }, + "12036": { + "text": "12/36", + "index": 12036 + }, + "12037": { + "text": "12/37", + "index": 12037 + }, + "12038": { + "text": "12/38", + "index": 12038 + }, + "12039": { + "text": "12/39", + "index": 12039 + }, + "12040": { + "text": "12/40", + "index": 12040 + }, + "13000": { + "text": "13/0", + "index": 13000 + }, + "13001": { + "text": "13/1", + "index": 13001 + }, + "13002": { + "text": "13/2", + "index": 13002 + }, + "13003": { + "text": "13/3", + "index": 13003 + }, + "13004": { + "text": "13/4", + "index": 13004 + }, + "13005": { + "text": "13/5", + "index": 13005 + }, + "13006": { + "text": "13/6", + "index": 13006 + }, + "13007": { + "text": "13/7", + "index": 13007 + }, + "13008": { + "text": "13/8", + "index": 13008 + }, + "13009": { + "text": "13/9", + "index": 13009 + }, + "13010": { + "text": "13/10", + "index": 13010 + }, + "13011": { + "text": "13/11", + "index": 13011 + }, + "13012": { + "text": "13/12", + "index": 13012 + }, + "13013": { + "text": "13/13", + "index": 13013 + }, + "13014": { + "text": "13/14", + "index": 13014 + }, + "13015": { + "text": "13/15", + "index": 13015 + }, + "13016": { + "text": "13/16", + "index": 13016 + }, + "13017": { + "text": "13/17", + "index": 13017 + }, + "13018": { + "text": "13/18", + "index": 13018 + }, + "13019": { + "text": "13/19", + "index": 13019 + }, + "13020": { + "text": "13/20", + "index": 13020 + }, + "13021": { + "text": "13/21", + "index": 13021 + }, + "13022": { + "text": "13/22", + "index": 13022 + }, + "13023": { + "text": "13/23", + "index": 13023 + }, + "13024": { + "text": "13/24", + "index": 13024 + }, + "13025": { + "text": "13/25", + "index": 13025 + }, + "13026": { + "text": "13/26", + "index": 13026 + }, + "13027": { + "text": "13/27", + "index": 13027 + }, + "13028": { + "text": "13/28", + "index": 13028 + }, + "13029": { + "text": "13/29", + "index": 13029 + }, + "13030": { + "text": "13/30", + "index": 13030 + }, + "13031": { + "text": "13/31", + "index": 13031 + }, + "13032": { + "text": "13/32", + "index": 13032 + }, + "13033": { + "text": "13/33", + "index": 13033 + }, + "13034": { + "text": "13/34", + "index": 13034 + }, + "13035": { + "text": "13/35", + "index": 13035 + }, + "13036": { + "text": "13/36", + "index": 13036 + }, + "13037": { + "text": "13/37", + "index": 13037 + }, + "13038": { + "text": "13/38", + "index": 13038 + }, + "13039": { + "text": "13/39", + "index": 13039 + }, + "13040": { + "text": "13/40", + "index": 13040 + }, + "14000": { + "text": "14/0", + "index": 14000 + }, + "14001": { + "text": "14/1", + "index": 14001 + }, + "14002": { + "text": "14/2", + "index": 14002 + }, + "14003": { + "text": "14/3", + "index": 14003 + }, + "14004": { + "text": "14/4", + "index": 14004 + }, + "14005": { + "text": "14/5", + "index": 14005 + }, + "14006": { + "text": "14/6", + "index": 14006 + }, + "14007": { + "text": "14/7", + "index": 14007 + }, + "14008": { + "text": "14/8", + "index": 14008 + }, + "14009": { + "text": "14/9", + "index": 14009 + }, + "14010": { + "text": "14/10", + "index": 14010 + }, + "14011": { + "text": "14/11", + "index": 14011 + }, + "14012": { + "text": "14/12", + "index": 14012 + }, + "14013": { + "text": "14/13", + "index": 14013 + }, + "14014": { + "text": "14/14", + "index": 14014 + }, + "14015": { + "text": "14/15", + "index": 14015 + }, + "14016": { + "text": "14/16", + "index": 14016 + }, + "14017": { + "text": "14/17", + "index": 14017 + }, + "14018": { + "text": "14/18", + "index": 14018 + }, + "14019": { + "text": "14/19", + "index": 14019 + }, + "14020": { + "text": "14/20", + "index": 14020 + }, + "14021": { + "text": "14/21", + "index": 14021 + }, + "14022": { + "text": "14/22", + "index": 14022 + }, + "14023": { + "text": "14/23", + "index": 14023 + }, + "14024": { + "text": "14/24", + "index": 14024 + }, + "14025": { + "text": "14/25", + "index": 14025 + }, + "14026": { + "text": "14/26", + "index": 14026 + }, + "14027": { + "text": "14/27", + "index": 14027 + }, + "14028": { + "text": "14/28", + "index": 14028 + }, + "14029": { + "text": "14/29", + "index": 14029 + }, + "14030": { + "text": "14/30", + "index": 14030 + }, + "14031": { + "text": "14/31", + "index": 14031 + }, + "14032": { + "text": "14/32", + "index": 14032 + }, + "14033": { + "text": "14/33", + "index": 14033 + }, + "14034": { + "text": "14/34", + "index": 14034 + }, + "14035": { + "text": "14/35", + "index": 14035 + }, + "14036": { + "text": "14/36", + "index": 14036 + }, + "14037": { + "text": "14/37", + "index": 14037 + }, + "14038": { + "text": "14/38", + "index": 14038 + }, + "14039": { + "text": "14/39", + "index": 14039 + }, + "14040": { + "text": "14/40", + "index": 14040 + }, + "15000": { + "text": "15/0", + "index": 15000 + }, + "15001": { + "text": "15/1", + "index": 15001 + }, + "15002": { + "text": "15/2", + "index": 15002 + }, + "15003": { + "text": "15/3", + "index": 15003 + }, + "15004": { + "text": "15/4", + "index": 15004 + }, + "15005": { + "text": "15/5", + "index": 15005 + }, + "15006": { + "text": "15/6", + "index": 15006 + }, + "15007": { + "text": "15/7", + "index": 15007 + }, + "15008": { + "text": "15/8", + "index": 15008 + }, + "15009": { + "text": "15/9", + "index": 15009 + }, + "15010": { + "text": "15/10", + "index": 15010 + }, + "15011": { + "text": "15/11", + "index": 15011 + }, + "15012": { + "text": "15/12", + "index": 15012 + }, + "15013": { + "text": "15/13", + "index": 15013 + }, + "15014": { + "text": "15/14", + "index": 15014 + }, + "15015": { + "text": "15/15", + "index": 15015 + }, + "15016": { + "text": "15/16", + "index": 15016 + }, + "15017": { + "text": "15/17", + "index": 15017 + }, + "15018": { + "text": "15/18", + "index": 15018 + }, + "15019": { + "text": "15/19", + "index": 15019 + }, + "15020": { + "text": "15/20", + "index": 15020 + }, + "15021": { + "text": "15/21", + "index": 15021 + }, + "15022": { + "text": "15/22", + "index": 15022 + }, + "15023": { + "text": "15/23", + "index": 15023 + }, + "15024": { + "text": "15/24", + "index": 15024 + }, + "15025": { + "text": "15/25", + "index": 15025 + }, + "15026": { + "text": "15/26", + "index": 15026 + }, + "15027": { + "text": "15/27", + "index": 15027 + }, + "15028": { + "text": "15/28", + "index": 15028 + }, + "15029": { + "text": "15/29", + "index": 15029 + }, + "15030": { + "text": "15/30", + "index": 15030 + }, + "15031": { + "text": "15/31", + "index": 15031 + }, + "15032": { + "text": "15/32", + "index": 15032 + }, + "15033": { + "text": "15/33", + "index": 15033 + }, + "15034": { + "text": "15/34", + "index": 15034 + }, + "15035": { + "text": "15/35", + "index": 15035 + }, + "15036": { + "text": "15/36", + "index": 15036 + }, + "15037": { + "text": "15/37", + "index": 15037 + }, + "15038": { + "text": "15/38", + "index": 15038 + }, + "15039": { + "text": "15/39", + "index": 15039 + }, + "15040": { + "text": "15/40", + "index": 15040 + }, + "16000": { + "text": "16/0", + "index": 16000 + }, + "16001": { + "text": "16/1", + "index": 16001 + }, + "16002": { + "text": "16/2", + "index": 16002 + }, + "16003": { + "text": "16/3", + "index": 16003 + }, + "16004": { + "text": "16/4", + "index": 16004 + }, + "16005": { + "text": "16/5", + "index": 16005 + }, + "16006": { + "text": "16/6", + "index": 16006 + }, + "16007": { + "text": "16/7", + "index": 16007 + }, + "16008": { + "text": "16/8", + "index": 16008 + }, + "16009": { + "text": "16/9", + "index": 16009 + }, + "16010": { + "text": "16/10", + "index": 16010 + }, + "16011": { + "text": "16/11", + "index": 16011 + }, + "16012": { + "text": "16/12", + "index": 16012 + }, + "16013": { + "text": "16/13", + "index": 16013 + }, + "16014": { + "text": "16/14", + "index": 16014 + }, + "16015": { + "text": "16/15", + "index": 16015 + }, + "16016": { + "text": "16/16", + "index": 16016 + }, + "16017": { + "text": "16/17", + "index": 16017 + }, + "16018": { + "text": "16/18", + "index": 16018 + }, + "16019": { + "text": "16/19", + "index": 16019 + }, + "16020": { + "text": "16/20", + "index": 16020 + }, + "16021": { + "text": "16/21", + "index": 16021 + }, + "16022": { + "text": "16/22", + "index": 16022 + }, + "16023": { + "text": "16/23", + "index": 16023 + }, + "16024": { + "text": "16/24", + "index": 16024 + }, + "16025": { + "text": "16/25", + "index": 16025 + }, + "16026": { + "text": "16/26", + "index": 16026 + }, + "16027": { + "text": "16/27", + "index": 16027 + }, + "16028": { + "text": "16/28", + "index": 16028 + }, + "16029": { + "text": "16/29", + "index": 16029 + }, + "16030": { + "text": "16/30", + "index": 16030 + }, + "16031": { + "text": "16/31", + "index": 16031 + }, + "16032": { + "text": "16/32", + "index": 16032 + }, + "16033": { + "text": "16/33", + "index": 16033 + }, + "16034": { + "text": "16/34", + "index": 16034 + }, + "16035": { + "text": "16/35", + "index": 16035 + }, + "16036": { + "text": "16/36", + "index": 16036 + }, + "16037": { + "text": "16/37", + "index": 16037 + }, + "16038": { + "text": "16/38", + "index": 16038 + }, + "16039": { + "text": "16/39", + "index": 16039 + }, + "16040": { + "text": "16/40", + "index": 16040 + }, + "17000": { + "text": "17/0", + "index": 17000 + }, + "17001": { + "text": "17/1", + "index": 17001 + }, + "17002": { + "text": "17/2", + "index": 17002 + }, + "17003": { + "text": "17/3", + "index": 17003 + }, + "17004": { + "text": "17/4", + "index": 17004 + }, + "17005": { + "text": "17/5", + "index": 17005 + }, + "17006": { + "text": "17/6", + "index": 17006 + }, + "17007": { + "text": "17/7", + "index": 17007 + }, + "17008": { + "text": "17/8", + "index": 17008 + }, + "17009": { + "text": "17/9", + "index": 17009 + }, + "17010": { + "text": "17/10", + "index": 17010 + }, + "17011": { + "text": "17/11", + "index": 17011 + }, + "17012": { + "text": "17/12", + "index": 17012 + }, + "17013": { + "text": "17/13", + "index": 17013 + }, + "17014": { + "text": "17/14", + "index": 17014 + }, + "17015": { + "text": "17/15", + "index": 17015 + }, + "17016": { + "text": "17/16", + "index": 17016 + }, + "17017": { + "text": "17/17", + "index": 17017 + }, + "17018": { + "text": "17/18", + "index": 17018 + }, + "17019": { + "text": "17/19", + "index": 17019 + }, + "17020": { + "text": "17/20", + "index": 17020 + }, + "17021": { + "text": "17/21", + "index": 17021 + }, + "17022": { + "text": "17/22", + "index": 17022 + }, + "17023": { + "text": "17/23", + "index": 17023 + }, + "17024": { + "text": "17/24", + "index": 17024 + }, + "17025": { + "text": "17/25", + "index": 17025 + }, + "17026": { + "text": "17/26", + "index": 17026 + }, + "17027": { + "text": "17/27", + "index": 17027 + }, + "17028": { + "text": "17/28", + "index": 17028 + }, + "17029": { + "text": "17/29", + "index": 17029 + }, + "17030": { + "text": "17/30", + "index": 17030 + }, + "17031": { + "text": "17/31", + "index": 17031 + }, + "17032": { + "text": "17/32", + "index": 17032 + }, + "17033": { + "text": "17/33", + "index": 17033 + }, + "17034": { + "text": "17/34", + "index": 17034 + }, + "17035": { + "text": "17/35", + "index": 17035 + }, + "17036": { + "text": "17/36", + "index": 17036 + }, + "17037": { + "text": "17/37", + "index": 17037 + }, + "17038": { + "text": "17/38", + "index": 17038 + }, + "17039": { + "text": "17/39", + "index": 17039 + }, + "17040": { + "text": "17/40", + "index": 17040 + }, + "18000": { + "text": "18/0", + "index": 18000 + }, + "18001": { + "text": "18/1", + "index": 18001 + }, + "18002": { + "text": "18/2", + "index": 18002 + }, + "18003": { + "text": "18/3", + "index": 18003 + }, + "18004": { + "text": "18/4", + "index": 18004 + }, + "18005": { + "text": "18/5", + "index": 18005 + }, + "18006": { + "text": "18/6", + "index": 18006 + }, + "18007": { + "text": "18/7", + "index": 18007 + }, + "18008": { + "text": "18/8", + "index": 18008 + }, + "18009": { + "text": "18/9", + "index": 18009 + }, + "18010": { + "text": "18/10", + "index": 18010 + }, + "18011": { + "text": "18/11", + "index": 18011 + }, + "18012": { + "text": "18/12", + "index": 18012 + }, + "18013": { + "text": "18/13", + "index": 18013 + }, + "18014": { + "text": "18/14", + "index": 18014 + }, + "18015": { + "text": "18/15", + "index": 18015 + }, + "18016": { + "text": "18/16", + "index": 18016 + }, + "18017": { + "text": "18/17", + "index": 18017 + }, + "18018": { + "text": "18/18", + "index": 18018 + }, + "18019": { + "text": "18/19", + "index": 18019 + }, + "18020": { + "text": "18/20", + "index": 18020 + }, + "18021": { + "text": "18/21", + "index": 18021 + }, + "18022": { + "text": "18/22", + "index": 18022 + }, + "18023": { + "text": "18/23", + "index": 18023 + }, + "18024": { + "text": "18/24", + "index": 18024 + }, + "18025": { + "text": "18/25", + "index": 18025 + }, + "18026": { + "text": "18/26", + "index": 18026 + }, + "18027": { + "text": "18/27", + "index": 18027 + }, + "18028": { + "text": "18/28", + "index": 18028 + }, + "18029": { + "text": "18/29", + "index": 18029 + }, + "18030": { + "text": "18/30", + "index": 18030 + }, + "18031": { + "text": "18/31", + "index": 18031 + }, + "18032": { + "text": "18/32", + "index": 18032 + }, + "18033": { + "text": "18/33", + "index": 18033 + }, + "18034": { + "text": "18/34", + "index": 18034 + }, + "18035": { + "text": "18/35", + "index": 18035 + }, + "18036": { + "text": "18/36", + "index": 18036 + }, + "18037": { + "text": "18/37", + "index": 18037 + }, + "18038": { + "text": "18/38", + "index": 18038 + }, + "18039": { + "text": "18/39", + "index": 18039 + }, + "18040": { + "text": "18/40", + "index": 18040 + }, + "19000": { + "text": "19/0", + "index": 19000 + }, + "19001": { + "text": "19/1", + "index": 19001 + }, + "19002": { + "text": "19/2", + "index": 19002 + }, + "19003": { + "text": "19/3", + "index": 19003 + }, + "19004": { + "text": "19/4", + "index": 19004 + }, + "19005": { + "text": "19/5", + "index": 19005 + }, + "19006": { + "text": "19/6", + "index": 19006 + }, + "19007": { + "text": "19/7", + "index": 19007 + }, + "19008": { + "text": "19/8", + "index": 19008 + }, + "19009": { + "text": "19/9", + "index": 19009 + }, + "19010": { + "text": "19/10", + "index": 19010 + }, + "19011": { + "text": "19/11", + "index": 19011 + }, + "19012": { + "text": "19/12", + "index": 19012 + }, + "19013": { + "text": "19/13", + "index": 19013 + }, + "19014": { + "text": "19/14", + "index": 19014 + }, + "19015": { + "text": "19/15", + "index": 19015 + }, + "19016": { + "text": "19/16", + "index": 19016 + }, + "19017": { + "text": "19/17", + "index": 19017 + }, + "19018": { + "text": "19/18", + "index": 19018 + }, + "19019": { + "text": "19/19", + "index": 19019 + }, + "19020": { + "text": "19/20", + "index": 19020 + }, + "19021": { + "text": "19/21", + "index": 19021 + }, + "19022": { + "text": "19/22", + "index": 19022 + }, + "19023": { + "text": "19/23", + "index": 19023 + }, + "19024": { + "text": "19/24", + "index": 19024 + }, + "19025": { + "text": "19/25", + "index": 19025 + }, + "19026": { + "text": "19/26", + "index": 19026 + }, + "19027": { + "text": "19/27", + "index": 19027 + }, + "19028": { + "text": "19/28", + "index": 19028 + }, + "19029": { + "text": "19/29", + "index": 19029 + }, + "19030": { + "text": "19/30", + "index": 19030 + }, + "19031": { + "text": "19/31", + "index": 19031 + }, + "19032": { + "text": "19/32", + "index": 19032 + }, + "19033": { + "text": "19/33", + "index": 19033 + }, + "19034": { + "text": "19/34", + "index": 19034 + }, + "19035": { + "text": "19/35", + "index": 19035 + }, + "19036": { + "text": "19/36", + "index": 19036 + }, + "19037": { + "text": "19/37", + "index": 19037 + }, + "19038": { + "text": "19/38", + "index": 19038 + }, + "19039": { + "text": "19/39", + "index": 19039 + }, + "19040": { + "text": "19/40", + "index": 19040 + }, + "20000": { + "text": "20/0", + "index": 20000 + }, + "20001": { + "text": "20/1", + "index": 20001 + }, + "20002": { + "text": "20/2", + "index": 20002 + }, + "20003": { + "text": "20/3", + "index": 20003 + }, + "20004": { + "text": "20/4", + "index": 20004 + }, + "20005": { + "text": "20/5", + "index": 20005 + }, + "20006": { + "text": "20/6", + "index": 20006 + }, + "20007": { + "text": "20/7", + "index": 20007 + }, + "20008": { + "text": "20/8", + "index": 20008 + }, + "20009": { + "text": "20/9", + "index": 20009 + }, + "20010": { + "text": "20/10", + "index": 20010 + }, + "20011": { + "text": "20/11", + "index": 20011 + }, + "20012": { + "text": "20/12", + "index": 20012 + }, + "20013": { + "text": "20/13", + "index": 20013 + }, + "20014": { + "text": "20/14", + "index": 20014 + }, + "20015": { + "text": "20/15", + "index": 20015 + }, + "20016": { + "text": "20/16", + "index": 20016 + }, + "20017": { + "text": "20/17", + "index": 20017 + }, + "20018": { + "text": "20/18", + "index": 20018 + }, + "20019": { + "text": "20/19", + "index": 20019 + }, + "20020": { + "text": "20/20", + "index": 20020 + }, + "20021": { + "text": "20/21", + "index": 20021 + }, + "20022": { + "text": "20/22", + "index": 20022 + }, + "20023": { + "text": "20/23", + "index": 20023 + }, + "20024": { + "text": "20/24", + "index": 20024 + }, + "20025": { + "text": "20/25", + "index": 20025 + }, + "20026": { + "text": "20/26", + "index": 20026 + }, + "20027": { + "text": "20/27", + "index": 20027 + }, + "20028": { + "text": "20/28", + "index": 20028 + }, + "20029": { + "text": "20/29", + "index": 20029 + }, + "20030": { + "text": "20/30", + "index": 20030 + }, + "20031": { + "text": "20/31", + "index": 20031 + }, + "20032": { + "text": "20/32", + "index": 20032 + }, + "20033": { + "text": "20/33", + "index": 20033 + }, + "20034": { + "text": "20/34", + "index": 20034 + }, + "20035": { + "text": "20/35", + "index": 20035 + }, + "20036": { + "text": "20/36", + "index": 20036 + }, + "20037": { + "text": "20/37", + "index": 20037 + }, + "20038": { + "text": "20/38", + "index": 20038 + }, + "20039": { + "text": "20/39", + "index": 20039 + }, + "20040": { + "text": "20/40", + "index": 20040 + }, + "21000": { + "text": "21/0", + "index": 21000 + }, + "21001": { + "text": "21/1", + "index": 21001 + }, + "21002": { + "text": "21/2", + "index": 21002 + }, + "21003": { + "text": "21/3", + "index": 21003 + }, + "21004": { + "text": "21/4", + "index": 21004 + }, + "21005": { + "text": "21/5", + "index": 21005 + }, + "21006": { + "text": "21/6", + "index": 21006 + }, + "21007": { + "text": "21/7", + "index": 21007 + }, + "21008": { + "text": "21/8", + "index": 21008 + }, + "21009": { + "text": "21/9", + "index": 21009 + }, + "21010": { + "text": "21/10", + "index": 21010 + }, + "21011": { + "text": "21/11", + "index": 21011 + }, + "21012": { + "text": "21/12", + "index": 21012 + }, + "21013": { + "text": "21/13", + "index": 21013 + }, + "21014": { + "text": "21/14", + "index": 21014 + }, + "21015": { + "text": "21/15", + "index": 21015 + }, + "21016": { + "text": "21/16", + "index": 21016 + }, + "21017": { + "text": "21/17", + "index": 21017 + }, + "21018": { + "text": "21/18", + "index": 21018 + }, + "21019": { + "text": "21/19", + "index": 21019 + }, + "21020": { + "text": "21/20", + "index": 21020 + }, + "21021": { + "text": "21/21", + "index": 21021 + }, + "21022": { + "text": "21/22", + "index": 21022 + }, + "21023": { + "text": "21/23", + "index": 21023 + }, + "21024": { + "text": "21/24", + "index": 21024 + }, + "21025": { + "text": "21/25", + "index": 21025 + }, + "21026": { + "text": "21/26", + "index": 21026 + }, + "21027": { + "text": "21/27", + "index": 21027 + }, + "21028": { + "text": "21/28", + "index": 21028 + }, + "21029": { + "text": "21/29", + "index": 21029 + }, + "21030": { + "text": "21/30", + "index": 21030 + }, + "21031": { + "text": "21/31", + "index": 21031 + }, + "21032": { + "text": "21/32", + "index": 21032 + }, + "21033": { + "text": "21/33", + "index": 21033 + }, + "21034": { + "text": "21/34", + "index": 21034 + }, + "21035": { + "text": "21/35", + "index": 21035 + }, + "21036": { + "text": "21/36", + "index": 21036 + }, + "21037": { + "text": "21/37", + "index": 21037 + }, + "21038": { + "text": "21/38", + "index": 21038 + }, + "21039": { + "text": "21/39", + "index": 21039 + }, + "21040": { + "text": "21/40", + "index": 21040 + }, + "22000": { + "text": "22/0", + "index": 22000 + }, + "22001": { + "text": "22/1", + "index": 22001 + }, + "22002": { + "text": "22/2", + "index": 22002 + }, + "22003": { + "text": "22/3", + "index": 22003 + }, + "22004": { + "text": "22/4", + "index": 22004 + }, + "22005": { + "text": "22/5", + "index": 22005 + }, + "22006": { + "text": "22/6", + "index": 22006 + }, + "22007": { + "text": "22/7", + "index": 22007 + }, + "22008": { + "text": "22/8", + "index": 22008 + }, + "22009": { + "text": "22/9", + "index": 22009 + }, + "22010": { + "text": "22/10", + "index": 22010 + }, + "22011": { + "text": "22/11", + "index": 22011 + }, + "22012": { + "text": "22/12", + "index": 22012 + }, + "22013": { + "text": "22/13", + "index": 22013 + }, + "22014": { + "text": "22/14", + "index": 22014 + }, + "22015": { + "text": "22/15", + "index": 22015 + }, + "22016": { + "text": "22/16", + "index": 22016 + }, + "22017": { + "text": "22/17", + "index": 22017 + }, + "22018": { + "text": "22/18", + "index": 22018 + }, + "22019": { + "text": "22/19", + "index": 22019 + }, + "22020": { + "text": "22/20", + "index": 22020 + }, + "22021": { + "text": "22/21", + "index": 22021 + }, + "22022": { + "text": "22/22", + "index": 22022 + }, + "22023": { + "text": "22/23", + "index": 22023 + }, + "22024": { + "text": "22/24", + "index": 22024 + }, + "22025": { + "text": "22/25", + "index": 22025 + }, + "22026": { + "text": "22/26", + "index": 22026 + }, + "22027": { + "text": "22/27", + "index": 22027 + }, + "22028": { + "text": "22/28", + "index": 22028 + }, + "22029": { + "text": "22/29", + "index": 22029 + }, + "22030": { + "text": "22/30", + "index": 22030 + }, + "22031": { + "text": "22/31", + "index": 22031 + }, + "22032": { + "text": "22/32", + "index": 22032 + }, + "22033": { + "text": "22/33", + "index": 22033 + }, + "22034": { + "text": "22/34", + "index": 22034 + }, + "22035": { + "text": "22/35", + "index": 22035 + }, + "22036": { + "text": "22/36", + "index": 22036 + }, + "22037": { + "text": "22/37", + "index": 22037 + }, + "22038": { + "text": "22/38", + "index": 22038 + }, + "22039": { + "text": "22/39", + "index": 22039 + }, + "22040": { + "text": "22/40", + "index": 22040 + }, + "23000": { + "text": "23/0", + "index": 23000 + }, + "23001": { + "text": "23/1", + "index": 23001 + }, + "23002": { + "text": "23/2", + "index": 23002 + }, + "23003": { + "text": "23/3", + "index": 23003 + }, + "23004": { + "text": "23/4", + "index": 23004 + }, + "23005": { + "text": "23/5", + "index": 23005 + }, + "23006": { + "text": "23/6", + "index": 23006 + }, + "23007": { + "text": "23/7", + "index": 23007 + }, + "23008": { + "text": "23/8", + "index": 23008 + }, + "23009": { + "text": "23/9", + "index": 23009 + }, + "23010": { + "text": "23/10", + "index": 23010 + }, + "23011": { + "text": "23/11", + "index": 23011 + }, + "23012": { + "text": "23/12", + "index": 23012 + }, + "23013": { + "text": "23/13", + "index": 23013 + }, + "23014": { + "text": "23/14", + "index": 23014 + }, + "23015": { + "text": "23/15", + "index": 23015 + }, + "23016": { + "text": "23/16", + "index": 23016 + }, + "23017": { + "text": "23/17", + "index": 23017 + }, + "23018": { + "text": "23/18", + "index": 23018 + }, + "23019": { + "text": "23/19", + "index": 23019 + }, + "23020": { + "text": "23/20", + "index": 23020 + }, + "23021": { + "text": "23/21", + "index": 23021 + }, + "23022": { + "text": "23/22", + "index": 23022 + }, + "23023": { + "text": "23/23", + "index": 23023 + }, + "23024": { + "text": "23/24", + "index": 23024 + }, + "23025": { + "text": "23/25", + "index": 23025 + }, + "23026": { + "text": "23/26", + "index": 23026 + }, + "23027": { + "text": "23/27", + "index": 23027 + }, + "23028": { + "text": "23/28", + "index": 23028 + }, + "23029": { + "text": "23/29", + "index": 23029 + }, + "23030": { + "text": "23/30", + "index": 23030 + }, + "23031": { + "text": "23/31", + "index": 23031 + }, + "23032": { + "text": "23/32", + "index": 23032 + }, + "23033": { + "text": "23/33", + "index": 23033 + }, + "23034": { + "text": "23/34", + "index": 23034 + }, + "23035": { + "text": "23/35", + "index": 23035 + }, + "23036": { + "text": "23/36", + "index": 23036 + }, + "23037": { + "text": "23/37", + "index": 23037 + }, + "23038": { + "text": "23/38", + "index": 23038 + }, + "23039": { + "text": "23/39", + "index": 23039 + }, + "23040": { + "text": "23/40", + "index": 23040 + }, + "24000": { + "text": "24/0", + "index": 24000 + }, + "24001": { + "text": "24/1", + "index": 24001 + }, + "24002": { + "text": "24/2", + "index": 24002 + }, + "24003": { + "text": "24/3", + "index": 24003 + }, + "24004": { + "text": "24/4", + "index": 24004 + }, + "24005": { + "text": "24/5", + "index": 24005 + }, + "24006": { + "text": "24/6", + "index": 24006 + }, + "24007": { + "text": "24/7", + "index": 24007 + }, + "24008": { + "text": "24/8", + "index": 24008 + }, + "24009": { + "text": "24/9", + "index": 24009 + }, + "24010": { + "text": "24/10", + "index": 24010 + }, + "24011": { + "text": "24/11", + "index": 24011 + }, + "24012": { + "text": "24/12", + "index": 24012 + }, + "24013": { + "text": "24/13", + "index": 24013 + }, + "24014": { + "text": "24/14", + "index": 24014 + }, + "24015": { + "text": "24/15", + "index": 24015 + }, + "24016": { + "text": "24/16", + "index": 24016 + }, + "24017": { + "text": "24/17", + "index": 24017 + }, + "24018": { + "text": "24/18", + "index": 24018 + }, + "24019": { + "text": "24/19", + "index": 24019 + }, + "24020": { + "text": "24/20", + "index": 24020 + }, + "24021": { + "text": "24/21", + "index": 24021 + }, + "24022": { + "text": "24/22", + "index": 24022 + }, + "24023": { + "text": "24/23", + "index": 24023 + }, + "24024": { + "text": "24/24", + "index": 24024 + }, + "24025": { + "text": "24/25", + "index": 24025 + }, + "24026": { + "text": "24/26", + "index": 24026 + }, + "24027": { + "text": "24/27", + "index": 24027 + }, + "24028": { + "text": "24/28", + "index": 24028 + }, + "24029": { + "text": "24/29", + "index": 24029 + }, + "24030": { + "text": "24/30", + "index": 24030 + }, + "24031": { + "text": "24/31", + "index": 24031 + }, + "24032": { + "text": "24/32", + "index": 24032 + }, + "24033": { + "text": "24/33", + "index": 24033 + }, + "24034": { + "text": "24/34", + "index": 24034 + }, + "24035": { + "text": "24/35", + "index": 24035 + }, + "24036": { + "text": "24/36", + "index": 24036 + }, + "24037": { + "text": "24/37", + "index": 24037 + }, + "24038": { + "text": "24/38", + "index": 24038 + }, + "24039": { + "text": "24/39", + "index": 24039 + }, + "24040": { + "text": "24/40", + "index": 24040 + }, + "25000": { + "text": "25/0", + "index": 25000 + }, + "25001": { + "text": "25/1", + "index": 25001 + }, + "25002": { + "text": "25/2", + "index": 25002 + }, + "25003": { + "text": "25/3", + "index": 25003 + }, + "25004": { + "text": "25/4", + "index": 25004 + }, + "25005": { + "text": "25/5", + "index": 25005 + }, + "25006": { + "text": "25/6", + "index": 25006 + }, + "25007": { + "text": "25/7", + "index": 25007 + }, + "25008": { + "text": "25/8", + "index": 25008 + }, + "25009": { + "text": "25/9", + "index": 25009 + }, + "25010": { + "text": "25/10", + "index": 25010 + }, + "25011": { + "text": "25/11", + "index": 25011 + }, + "25012": { + "text": "25/12", + "index": 25012 + }, + "25013": { + "text": "25/13", + "index": 25013 + }, + "25014": { + "text": "25/14", + "index": 25014 + }, + "25015": { + "text": "25/15", + "index": 25015 + }, + "25016": { + "text": "25/16", + "index": 25016 + }, + "25017": { + "text": "25/17", + "index": 25017 + }, + "25018": { + "text": "25/18", + "index": 25018 + }, + "25019": { + "text": "25/19", + "index": 25019 + }, + "25020": { + "text": "25/20", + "index": 25020 + }, + "25021": { + "text": "25/21", + "index": 25021 + }, + "25022": { + "text": "25/22", + "index": 25022 + }, + "25023": { + "text": "25/23", + "index": 25023 + }, + "25024": { + "text": "25/24", + "index": 25024 + }, + "25025": { + "text": "25/25", + "index": 25025 + }, + "25026": { + "text": "25/26", + "index": 25026 + }, + "25027": { + "text": "25/27", + "index": 25027 + }, + "25028": { + "text": "25/28", + "index": 25028 + }, + "25029": { + "text": "25/29", + "index": 25029 + }, + "25030": { + "text": "25/30", + "index": 25030 + }, + "25031": { + "text": "25/31", + "index": 25031 + }, + "25032": { + "text": "25/32", + "index": 25032 + }, + "25033": { + "text": "25/33", + "index": 25033 + }, + "25034": { + "text": "25/34", + "index": 25034 + }, + "25035": { + "text": "25/35", + "index": 25035 + }, + "25036": { + "text": "25/36", + "index": 25036 + }, + "25037": { + "text": "25/37", + "index": 25037 + }, + "25038": { + "text": "25/38", + "index": 25038 + }, + "25039": { + "text": "25/39", + "index": 25039 + }, + "25040": { + "text": "25/40", + "index": 25040 + }, + "26000": { + "text": "26/0", + "index": 26000 + }, + "26001": { + "text": "26/1", + "index": 26001 + }, + "26002": { + "text": "26/2", + "index": 26002 + }, + "26003": { + "text": "26/3", + "index": 26003 + }, + "26004": { + "text": "26/4", + "index": 26004 + }, + "26005": { + "text": "26/5", + "index": 26005 + }, + "26006": { + "text": "26/6", + "index": 26006 + }, + "26007": { + "text": "26/7", + "index": 26007 + }, + "26008": { + "text": "26/8", + "index": 26008 + }, + "26009": { + "text": "26/9", + "index": 26009 + }, + "26010": { + "text": "26/10", + "index": 26010 + }, + "26011": { + "text": "26/11", + "index": 26011 + }, + "26012": { + "text": "26/12", + "index": 26012 + }, + "26013": { + "text": "26/13", + "index": 26013 + }, + "26014": { + "text": "26/14", + "index": 26014 + }, + "26015": { + "text": "26/15", + "index": 26015 + }, + "26016": { + "text": "26/16", + "index": 26016 + }, + "26017": { + "text": "26/17", + "index": 26017 + }, + "26018": { + "text": "26/18", + "index": 26018 + }, + "26019": { + "text": "26/19", + "index": 26019 + }, + "26020": { + "text": "26/20", + "index": 26020 + }, + "26021": { + "text": "26/21", + "index": 26021 + }, + "26022": { + "text": "26/22", + "index": 26022 + }, + "26023": { + "text": "26/23", + "index": 26023 + }, + "26024": { + "text": "26/24", + "index": 26024 + }, + "26025": { + "text": "26/25", + "index": 26025 + }, + "26026": { + "text": "26/26", + "index": 26026 + }, + "26027": { + "text": "26/27", + "index": 26027 + }, + "26028": { + "text": "26/28", + "index": 26028 + }, + "26029": { + "text": "26/29", + "index": 26029 + }, + "26030": { + "text": "26/30", + "index": 26030 + }, + "26031": { + "text": "26/31", + "index": 26031 + }, + "26032": { + "text": "26/32", + "index": 26032 + }, + "26033": { + "text": "26/33", + "index": 26033 + }, + "26034": { + "text": "26/34", + "index": 26034 + }, + "26035": { + "text": "26/35", + "index": 26035 + }, + "26036": { + "text": "26/36", + "index": 26036 + }, + "26037": { + "text": "26/37", + "index": 26037 + }, + "26038": { + "text": "26/38", + "index": 26038 + }, + "26039": { + "text": "26/39", + "index": 26039 + }, + "26040": { + "text": "26/40", + "index": 26040 + }, + "27000": { + "text": "27/0", + "index": 27000 + }, + "27001": { + "text": "27/1", + "index": 27001 + }, + "27002": { + "text": "27/2", + "index": 27002 + }, + "27003": { + "text": "27/3", + "index": 27003 + }, + "27004": { + "text": "27/4", + "index": 27004 + }, + "27005": { + "text": "27/5", + "index": 27005 + }, + "27006": { + "text": "27/6", + "index": 27006 + }, + "27007": { + "text": "27/7", + "index": 27007 + }, + "27008": { + "text": "27/8", + "index": 27008 + }, + "27009": { + "text": "27/9", + "index": 27009 + }, + "27010": { + "text": "27/10", + "index": 27010 + }, + "27011": { + "text": "27/11", + "index": 27011 + }, + "27012": { + "text": "27/12", + "index": 27012 + }, + "27013": { + "text": "27/13", + "index": 27013 + }, + "27014": { + "text": "27/14", + "index": 27014 + }, + "27015": { + "text": "27/15", + "index": 27015 + }, + "27016": { + "text": "27/16", + "index": 27016 + }, + "27017": { + "text": "27/17", + "index": 27017 + }, + "27018": { + "text": "27/18", + "index": 27018 + }, + "27019": { + "text": "27/19", + "index": 27019 + }, + "27020": { + "text": "27/20", + "index": 27020 + }, + "27021": { + "text": "27/21", + "index": 27021 + }, + "27022": { + "text": "27/22", + "index": 27022 + }, + "27023": { + "text": "27/23", + "index": 27023 + }, + "27024": { + "text": "27/24", + "index": 27024 + }, + "27025": { + "text": "27/25", + "index": 27025 + }, + "27026": { + "text": "27/26", + "index": 27026 + }, + "27027": { + "text": "27/27", + "index": 27027 + }, + "27028": { + "text": "27/28", + "index": 27028 + }, + "27029": { + "text": "27/29", + "index": 27029 + }, + "27030": { + "text": "27/30", + "index": 27030 + }, + "27031": { + "text": "27/31", + "index": 27031 + }, + "27032": { + "text": "27/32", + "index": 27032 + }, + "27033": { + "text": "27/33", + "index": 27033 + }, + "27034": { + "text": "27/34", + "index": 27034 + }, + "27035": { + "text": "27/35", + "index": 27035 + }, + "27036": { + "text": "27/36", + "index": 27036 + }, + "27037": { + "text": "27/37", + "index": 27037 + }, + "27038": { + "text": "27/38", + "index": 27038 + }, + "27039": { + "text": "27/39", + "index": 27039 + }, + "27040": { + "text": "27/40", + "index": 27040 + }, + "28000": { + "text": "28/0", + "index": 28000 + }, + "28001": { + "text": "28/1", + "index": 28001 + }, + "28002": { + "text": "28/2", + "index": 28002 + }, + "28003": { + "text": "28/3", + "index": 28003 + }, + "28004": { + "text": "28/4", + "index": 28004 + }, + "28005": { + "text": "28/5", + "index": 28005 + }, + "28006": { + "text": "28/6", + "index": 28006 + }, + "28007": { + "text": "28/7", + "index": 28007 + }, + "28008": { + "text": "28/8", + "index": 28008 + }, + "28009": { + "text": "28/9", + "index": 28009 + }, + "28010": { + "text": "28/10", + "index": 28010 + }, + "28011": { + "text": "28/11", + "index": 28011 + }, + "28012": { + "text": "28/12", + "index": 28012 + }, + "28013": { + "text": "28/13", + "index": 28013 + }, + "28014": { + "text": "28/14", + "index": 28014 + }, + "28015": { + "text": "28/15", + "index": 28015 + }, + "28016": { + "text": "28/16", + "index": 28016 + }, + "28017": { + "text": "28/17", + "index": 28017 + }, + "28018": { + "text": "28/18", + "index": 28018 + }, + "28019": { + "text": "28/19", + "index": 28019 + }, + "28020": { + "text": "28/20", + "index": 28020 + }, + "28021": { + "text": "28/21", + "index": 28021 + }, + "28022": { + "text": "28/22", + "index": 28022 + }, + "28023": { + "text": "28/23", + "index": 28023 + }, + "28024": { + "text": "28/24", + "index": 28024 + }, + "28025": { + "text": "28/25", + "index": 28025 + }, + "28026": { + "text": "28/26", + "index": 28026 + }, + "28027": { + "text": "28/27", + "index": 28027 + }, + "28028": { + "text": "28/28", + "index": 28028 + }, + "28029": { + "text": "28/29", + "index": 28029 + }, + "28030": { + "text": "28/30", + "index": 28030 + }, + "28031": { + "text": "28/31", + "index": 28031 + }, + "28032": { + "text": "28/32", + "index": 28032 + }, + "28033": { + "text": "28/33", + "index": 28033 + }, + "28034": { + "text": "28/34", + "index": 28034 + }, + "28035": { + "text": "28/35", + "index": 28035 + }, + "28036": { + "text": "28/36", + "index": 28036 + }, + "28037": { + "text": "28/37", + "index": 28037 + }, + "28038": { + "text": "28/38", + "index": 28038 + }, + "28039": { + "text": "28/39", + "index": 28039 + }, + "28040": { + "text": "28/40", + "index": 28040 + }, + "29000": { + "text": "29/0", + "index": 29000 + }, + "29001": { + "text": "29/1", + "index": 29001 + }, + "29002": { + "text": "29/2", + "index": 29002 + }, + "29003": { + "text": "29/3", + "index": 29003 + }, + "29004": { + "text": "29/4", + "index": 29004 + }, + "29005": { + "text": "29/5", + "index": 29005 + }, + "29006": { + "text": "29/6", + "index": 29006 + }, + "29007": { + "text": "29/7", + "index": 29007 + }, + "29008": { + "text": "29/8", + "index": 29008 + }, + "29009": { + "text": "29/9", + "index": 29009 + }, + "29010": { + "text": "29/10", + "index": 29010 + }, + "29011": { + "text": "29/11", + "index": 29011 + }, + "29012": { + "text": "29/12", + "index": 29012 + }, + "29013": { + "text": "29/13", + "index": 29013 + }, + "29014": { + "text": "29/14", + "index": 29014 + }, + "29015": { + "text": "29/15", + "index": 29015 + }, + "29016": { + "text": "29/16", + "index": 29016 + }, + "29017": { + "text": "29/17", + "index": 29017 + }, + "29018": { + "text": "29/18", + "index": 29018 + }, + "29019": { + "text": "29/19", + "index": 29019 + }, + "29020": { + "text": "29/20", + "index": 29020 + }, + "29021": { + "text": "29/21", + "index": 29021 + }, + "29022": { + "text": "29/22", + "index": 29022 + }, + "29023": { + "text": "29/23", + "index": 29023 + }, + "29024": { + "text": "29/24", + "index": 29024 + }, + "29025": { + "text": "29/25", + "index": 29025 + }, + "29026": { + "text": "29/26", + "index": 29026 + }, + "29027": { + "text": "29/27", + "index": 29027 + }, + "29028": { + "text": "29/28", + "index": 29028 + }, + "29029": { + "text": "29/29", + "index": 29029 + }, + "29030": { + "text": "29/30", + "index": 29030 + }, + "29031": { + "text": "29/31", + "index": 29031 + }, + "29032": { + "text": "29/32", + "index": 29032 + }, + "29033": { + "text": "29/33", + "index": 29033 + }, + "29034": { + "text": "29/34", + "index": 29034 + }, + "29035": { + "text": "29/35", + "index": 29035 + }, + "29036": { + "text": "29/36", + "index": 29036 + }, + "29037": { + "text": "29/37", + "index": 29037 + }, + "29038": { + "text": "29/38", + "index": 29038 + }, + "29039": { + "text": "29/39", + "index": 29039 + }, + "29040": { + "text": "29/40", + "index": 29040 + }, + "30000": { + "text": "30/0", + "index": 30000 + }, + "30001": { + "text": "30/1", + "index": 30001 + }, + "30002": { + "text": "30/2", + "index": 30002 + }, + "30003": { + "text": "30/3", + "index": 30003 + }, + "30004": { + "text": "30/4", + "index": 30004 + }, + "30005": { + "text": "30/5", + "index": 30005 + }, + "30006": { + "text": "30/6", + "index": 30006 + }, + "30007": { + "text": "30/7", + "index": 30007 + }, + "30008": { + "text": "30/8", + "index": 30008 + }, + "30009": { + "text": "30/9", + "index": 30009 + }, + "30010": { + "text": "30/10", + "index": 30010 + }, + "30011": { + "text": "30/11", + "index": 30011 + }, + "30012": { + "text": "30/12", + "index": 30012 + }, + "30013": { + "text": "30/13", + "index": 30013 + }, + "30014": { + "text": "30/14", + "index": 30014 + }, + "30015": { + "text": "30/15", + "index": 30015 + }, + "30016": { + "text": "30/16", + "index": 30016 + }, + "30017": { + "text": "30/17", + "index": 30017 + }, + "30018": { + "text": "30/18", + "index": 30018 + }, + "30019": { + "text": "30/19", + "index": 30019 + }, + "30020": { + "text": "30/20", + "index": 30020 + }, + "30021": { + "text": "30/21", + "index": 30021 + }, + "30022": { + "text": "30/22", + "index": 30022 + }, + "30023": { + "text": "30/23", + "index": 30023 + }, + "30024": { + "text": "30/24", + "index": 30024 + }, + "30025": { + "text": "30/25", + "index": 30025 + }, + "30026": { + "text": "30/26", + "index": 30026 + }, + "30027": { + "text": "30/27", + "index": 30027 + }, + "30028": { + "text": "30/28", + "index": 30028 + }, + "30029": { + "text": "30/29", + "index": 30029 + }, + "30030": { + "text": "30/30", + "index": 30030 + }, + "30031": { + "text": "30/31", + "index": 30031 + }, + "30032": { + "text": "30/32", + "index": 30032 + }, + "30033": { + "text": "30/33", + "index": 30033 + }, + "30034": { + "text": "30/34", + "index": 30034 + }, + "30035": { + "text": "30/35", + "index": 30035 + }, + "30036": { + "text": "30/36", + "index": 30036 + }, + "30037": { + "text": "30/37", + "index": 30037 + }, + "30038": { + "text": "30/38", + "index": 30038 + }, + "30039": { + "text": "30/39", + "index": 30039 + }, + "30040": { + "text": "30/40", + "index": 30040 + }, + "31000": { + "text": "31/0", + "index": 31000 + }, + "31001": { + "text": "31/1", + "index": 31001 + }, + "31002": { + "text": "31/2", + "index": 31002 + }, + "31003": { + "text": "31/3", + "index": 31003 + }, + "31004": { + "text": "31/4", + "index": 31004 + }, + "31005": { + "text": "31/5", + "index": 31005 + }, + "31006": { + "text": "31/6", + "index": 31006 + }, + "31007": { + "text": "31/7", + "index": 31007 + }, + "31008": { + "text": "31/8", + "index": 31008 + }, + "31009": { + "text": "31/9", + "index": 31009 + }, + "31010": { + "text": "31/10", + "index": 31010 + }, + "31011": { + "text": "31/11", + "index": 31011 + }, + "31012": { + "text": "31/12", + "index": 31012 + }, + "31013": { + "text": "31/13", + "index": 31013 + }, + "31014": { + "text": "31/14", + "index": 31014 + }, + "31015": { + "text": "31/15", + "index": 31015 + }, + "31016": { + "text": "31/16", + "index": 31016 + }, + "31017": { + "text": "31/17", + "index": 31017 + }, + "31018": { + "text": "31/18", + "index": 31018 + }, + "31019": { + "text": "31/19", + "index": 31019 + }, + "31020": { + "text": "31/20", + "index": 31020 + }, + "31021": { + "text": "31/21", + "index": 31021 + }, + "31022": { + "text": "31/22", + "index": 31022 + }, + "31023": { + "text": "31/23", + "index": 31023 + }, + "31024": { + "text": "31/24", + "index": 31024 + }, + "31025": { + "text": "31/25", + "index": 31025 + }, + "31026": { + "text": "31/26", + "index": 31026 + }, + "31027": { + "text": "31/27", + "index": 31027 + }, + "31028": { + "text": "31/28", + "index": 31028 + }, + "31029": { + "text": "31/29", + "index": 31029 + }, + "31030": { + "text": "31/30", + "index": 31030 + }, + "31031": { + "text": "31/31", + "index": 31031 + }, + "31032": { + "text": "31/32", + "index": 31032 + }, + "31033": { + "text": "31/33", + "index": 31033 + }, + "31034": { + "text": "31/34", + "index": 31034 + }, + "31035": { + "text": "31/35", + "index": 31035 + }, + "31036": { + "text": "31/36", + "index": 31036 + }, + "31037": { + "text": "31/37", + "index": 31037 + }, + "31038": { + "text": "31/38", + "index": 31038 + }, + "31039": { + "text": "31/39", + "index": 31039 + }, + "31040": { + "text": "31/40", + "index": 31040 + }, + "32000": { + "text": "32/0", + "index": 32000 + }, + "32001": { + "text": "32/1", + "index": 32001 + }, + "32002": { + "text": "32/2", + "index": 32002 + }, + "32003": { + "text": "32/3", + "index": 32003 + }, + "32004": { + "text": "32/4", + "index": 32004 + }, + "32005": { + "text": "32/5", + "index": 32005 + }, + "32006": { + "text": "32/6", + "index": 32006 + }, + "32007": { + "text": "32/7", + "index": 32007 + }, + "32008": { + "text": "32/8", + "index": 32008 + }, + "32009": { + "text": "32/9", + "index": 32009 + }, + "32010": { + "text": "32/10", + "index": 32010 + }, + "32011": { + "text": "32/11", + "index": 32011 + }, + "32012": { + "text": "32/12", + "index": 32012 + }, + "32013": { + "text": "32/13", + "index": 32013 + }, + "32014": { + "text": "32/14", + "index": 32014 + }, + "32015": { + "text": "32/15", + "index": 32015 + }, + "32016": { + "text": "32/16", + "index": 32016 + }, + "32017": { + "text": "32/17", + "index": 32017 + }, + "32018": { + "text": "32/18", + "index": 32018 + }, + "32019": { + "text": "32/19", + "index": 32019 + }, + "32020": { + "text": "32/20", + "index": 32020 + }, + "32021": { + "text": "32/21", + "index": 32021 + }, + "32022": { + "text": "32/22", + "index": 32022 + }, + "32023": { + "text": "32/23", + "index": 32023 + }, + "32024": { + "text": "32/24", + "index": 32024 + }, + "32025": { + "text": "32/25", + "index": 32025 + }, + "32026": { + "text": "32/26", + "index": 32026 + }, + "32027": { + "text": "32/27", + "index": 32027 + }, + "32028": { + "text": "32/28", + "index": 32028 + }, + "32029": { + "text": "32/29", + "index": 32029 + }, + "32030": { + "text": "32/30", + "index": 32030 + }, + "32031": { + "text": "32/31", + "index": 32031 + }, + "32032": { + "text": "32/32", + "index": 32032 + }, + "32033": { + "text": "32/33", + "index": 32033 + }, + "32034": { + "text": "32/34", + "index": 32034 + }, + "32035": { + "text": "32/35", + "index": 32035 + }, + "32036": { + "text": "32/36", + "index": 32036 + }, + "32037": { + "text": "32/37", + "index": 32037 + }, + "32038": { + "text": "32/38", + "index": 32038 + }, + "32039": { + "text": "32/39", + "index": 32039 + }, + "32040": { + "text": "32/40", + "index": 32040 + }, + "33000": { + "text": "33/0", + "index": 33000 + }, + "33001": { + "text": "33/1", + "index": 33001 + }, + "33002": { + "text": "33/2", + "index": 33002 + }, + "33003": { + "text": "33/3", + "index": 33003 + }, + "33004": { + "text": "33/4", + "index": 33004 + }, + "33005": { + "text": "33/5", + "index": 33005 + }, + "33006": { + "text": "33/6", + "index": 33006 + }, + "33007": { + "text": "33/7", + "index": 33007 + }, + "33008": { + "text": "33/8", + "index": 33008 + }, + "33009": { + "text": "33/9", + "index": 33009 + }, + "33010": { + "text": "33/10", + "index": 33010 + }, + "33011": { + "text": "33/11", + "index": 33011 + }, + "33012": { + "text": "33/12", + "index": 33012 + }, + "33013": { + "text": "33/13", + "index": 33013 + }, + "33014": { + "text": "33/14", + "index": 33014 + }, + "33015": { + "text": "33/15", + "index": 33015 + }, + "33016": { + "text": "33/16", + "index": 33016 + }, + "33017": { + "text": "33/17", + "index": 33017 + }, + "33018": { + "text": "33/18", + "index": 33018 + }, + "33019": { + "text": "33/19", + "index": 33019 + }, + "33020": { + "text": "33/20", + "index": 33020 + }, + "33021": { + "text": "33/21", + "index": 33021 + }, + "33022": { + "text": "33/22", + "index": 33022 + }, + "33023": { + "text": "33/23", + "index": 33023 + }, + "33024": { + "text": "33/24", + "index": 33024 + }, + "33025": { + "text": "33/25", + "index": 33025 + }, + "33026": { + "text": "33/26", + "index": 33026 + }, + "33027": { + "text": "33/27", + "index": 33027 + }, + "33028": { + "text": "33/28", + "index": 33028 + }, + "33029": { + "text": "33/29", + "index": 33029 + }, + "33030": { + "text": "33/30", + "index": 33030 + }, + "33031": { + "text": "33/31", + "index": 33031 + }, + "33032": { + "text": "33/32", + "index": 33032 + }, + "33033": { + "text": "33/33", + "index": 33033 + }, + "33034": { + "text": "33/34", + "index": 33034 + }, + "33035": { + "text": "33/35", + "index": 33035 + }, + "33036": { + "text": "33/36", + "index": 33036 + }, + "33037": { + "text": "33/37", + "index": 33037 + }, + "33038": { + "text": "33/38", + "index": 33038 + }, + "33039": { + "text": "33/39", + "index": 33039 + }, + "33040": { + "text": "33/40", + "index": 33040 + }, + "34000": { + "text": "34/0", + "index": 34000 + }, + "34001": { + "text": "34/1", + "index": 34001 + }, + "34002": { + "text": "34/2", + "index": 34002 + }, + "34003": { + "text": "34/3", + "index": 34003 + }, + "34004": { + "text": "34/4", + "index": 34004 + }, + "34005": { + "text": "34/5", + "index": 34005 + }, + "34006": { + "text": "34/6", + "index": 34006 + }, + "34007": { + "text": "34/7", + "index": 34007 + }, + "34008": { + "text": "34/8", + "index": 34008 + }, + "34009": { + "text": "34/9", + "index": 34009 + }, + "34010": { + "text": "34/10", + "index": 34010 + }, + "34011": { + "text": "34/11", + "index": 34011 + }, + "34012": { + "text": "34/12", + "index": 34012 + }, + "34013": { + "text": "34/13", + "index": 34013 + }, + "34014": { + "text": "34/14", + "index": 34014 + }, + "34015": { + "text": "34/15", + "index": 34015 + }, + "34016": { + "text": "34/16", + "index": 34016 + }, + "34017": { + "text": "34/17", + "index": 34017 + }, + "34018": { + "text": "34/18", + "index": 34018 + }, + "34019": { + "text": "34/19", + "index": 34019 + }, + "34020": { + "text": "34/20", + "index": 34020 + }, + "34021": { + "text": "34/21", + "index": 34021 + }, + "34022": { + "text": "34/22", + "index": 34022 + }, + "34023": { + "text": "34/23", + "index": 34023 + }, + "34024": { + "text": "34/24", + "index": 34024 + }, + "34025": { + "text": "34/25", + "index": 34025 + }, + "34026": { + "text": "34/26", + "index": 34026 + }, + "34027": { + "text": "34/27", + "index": 34027 + }, + "34028": { + "text": "34/28", + "index": 34028 + }, + "34029": { + "text": "34/29", + "index": 34029 + }, + "34030": { + "text": "34/30", + "index": 34030 + }, + "34031": { + "text": "34/31", + "index": 34031 + }, + "34032": { + "text": "34/32", + "index": 34032 + }, + "34033": { + "text": "34/33", + "index": 34033 + }, + "34034": { + "text": "34/34", + "index": 34034 + }, + "34035": { + "text": "34/35", + "index": 34035 + }, + "34036": { + "text": "34/36", + "index": 34036 + }, + "34037": { + "text": "34/37", + "index": 34037 + }, + "34038": { + "text": "34/38", + "index": 34038 + }, + "34039": { + "text": "34/39", + "index": 34039 + }, + "34040": { + "text": "34/40", + "index": 34040 + }, + "35000": { + "text": "35/0", + "index": 35000 + }, + "35001": { + "text": "35/1", + "index": 35001 + }, + "35002": { + "text": "35/2", + "index": 35002 + }, + "35003": { + "text": "35/3", + "index": 35003 + }, + "35004": { + "text": "35/4", + "index": 35004 + }, + "35005": { + "text": "35/5", + "index": 35005 + }, + "35006": { + "text": "35/6", + "index": 35006 + }, + "35007": { + "text": "35/7", + "index": 35007 + }, + "35008": { + "text": "35/8", + "index": 35008 + }, + "35009": { + "text": "35/9", + "index": 35009 + }, + "35010": { + "text": "35/10", + "index": 35010 + }, + "35011": { + "text": "35/11", + "index": 35011 + }, + "35012": { + "text": "35/12", + "index": 35012 + }, + "35013": { + "text": "35/13", + "index": 35013 + }, + "35014": { + "text": "35/14", + "index": 35014 + }, + "35015": { + "text": "35/15", + "index": 35015 + }, + "35016": { + "text": "35/16", + "index": 35016 + }, + "35017": { + "text": "35/17", + "index": 35017 + }, + "35018": { + "text": "35/18", + "index": 35018 + }, + "35019": { + "text": "35/19", + "index": 35019 + }, + "35020": { + "text": "35/20", + "index": 35020 + }, + "35021": { + "text": "35/21", + "index": 35021 + }, + "35022": { + "text": "35/22", + "index": 35022 + }, + "35023": { + "text": "35/23", + "index": 35023 + }, + "35024": { + "text": "35/24", + "index": 35024 + }, + "35025": { + "text": "35/25", + "index": 35025 + }, + "35026": { + "text": "35/26", + "index": 35026 + }, + "35027": { + "text": "35/27", + "index": 35027 + }, + "35028": { + "text": "35/28", + "index": 35028 + }, + "35029": { + "text": "35/29", + "index": 35029 + }, + "35030": { + "text": "35/30", + "index": 35030 + }, + "35031": { + "text": "35/31", + "index": 35031 + }, + "35032": { + "text": "35/32", + "index": 35032 + }, + "35033": { + "text": "35/33", + "index": 35033 + }, + "35034": { + "text": "35/34", + "index": 35034 + }, + "35035": { + "text": "35/35", + "index": 35035 + }, + "35036": { + "text": "35/36", + "index": 35036 + }, + "35037": { + "text": "35/37", + "index": 35037 + }, + "35038": { + "text": "35/38", + "index": 35038 + }, + "35039": { + "text": "35/39", + "index": 35039 + }, + "35040": { + "text": "35/40", + "index": 35040 + }, + "36000": { + "text": "36/0", + "index": 36000 + }, + "36001": { + "text": "36/1", + "index": 36001 + }, + "36002": { + "text": "36/2", + "index": 36002 + }, + "36003": { + "text": "36/3", + "index": 36003 + }, + "36004": { + "text": "36/4", + "index": 36004 + }, + "36005": { + "text": "36/5", + "index": 36005 + }, + "36006": { + "text": "36/6", + "index": 36006 + }, + "36007": { + "text": "36/7", + "index": 36007 + }, + "36008": { + "text": "36/8", + "index": 36008 + }, + "36009": { + "text": "36/9", + "index": 36009 + }, + "36010": { + "text": "36/10", + "index": 36010 + }, + "36011": { + "text": "36/11", + "index": 36011 + }, + "36012": { + "text": "36/12", + "index": 36012 + }, + "36013": { + "text": "36/13", + "index": 36013 + }, + "36014": { + "text": "36/14", + "index": 36014 + }, + "36015": { + "text": "36/15", + "index": 36015 + }, + "36016": { + "text": "36/16", + "index": 36016 + }, + "36017": { + "text": "36/17", + "index": 36017 + }, + "36018": { + "text": "36/18", + "index": 36018 + }, + "36019": { + "text": "36/19", + "index": 36019 + }, + "36020": { + "text": "36/20", + "index": 36020 + }, + "36021": { + "text": "36/21", + "index": 36021 + }, + "36022": { + "text": "36/22", + "index": 36022 + }, + "36023": { + "text": "36/23", + "index": 36023 + }, + "36024": { + "text": "36/24", + "index": 36024 + }, + "36025": { + "text": "36/25", + "index": 36025 + }, + "36026": { + "text": "36/26", + "index": 36026 + }, + "36027": { + "text": "36/27", + "index": 36027 + }, + "36028": { + "text": "36/28", + "index": 36028 + }, + "36029": { + "text": "36/29", + "index": 36029 + }, + "36030": { + "text": "36/30", + "index": 36030 + }, + "36031": { + "text": "36/31", + "index": 36031 + }, + "36032": { + "text": "36/32", + "index": 36032 + }, + "36033": { + "text": "36/33", + "index": 36033 + }, + "36034": { + "text": "36/34", + "index": 36034 + }, + "36035": { + "text": "36/35", + "index": 36035 + }, + "36036": { + "text": "36/36", + "index": 36036 + }, + "36037": { + "text": "36/37", + "index": 36037 + }, + "36038": { + "text": "36/38", + "index": 36038 + }, + "36039": { + "text": "36/39", + "index": 36039 + }, + "36040": { + "text": "36/40", + "index": 36040 + }, + "37000": { + "text": "37/0", + "index": 37000 + }, + "37001": { + "text": "37/1", + "index": 37001 + }, + "37002": { + "text": "37/2", + "index": 37002 + }, + "37003": { + "text": "37/3", + "index": 37003 + }, + "37004": { + "text": "37/4", + "index": 37004 + }, + "37005": { + "text": "37/5", + "index": 37005 + }, + "37006": { + "text": "37/6", + "index": 37006 + }, + "37007": { + "text": "37/7", + "index": 37007 + }, + "37008": { + "text": "37/8", + "index": 37008 + }, + "37009": { + "text": "37/9", + "index": 37009 + }, + "37010": { + "text": "37/10", + "index": 37010 + }, + "37011": { + "text": "37/11", + "index": 37011 + }, + "37012": { + "text": "37/12", + "index": 37012 + }, + "37013": { + "text": "37/13", + "index": 37013 + }, + "37014": { + "text": "37/14", + "index": 37014 + }, + "37015": { + "text": "37/15", + "index": 37015 + }, + "37016": { + "text": "37/16", + "index": 37016 + }, + "37017": { + "text": "37/17", + "index": 37017 + }, + "37018": { + "text": "37/18", + "index": 37018 + }, + "37019": { + "text": "37/19", + "index": 37019 + }, + "37020": { + "text": "37/20", + "index": 37020 + }, + "37021": { + "text": "37/21", + "index": 37021 + }, + "37022": { + "text": "37/22", + "index": 37022 + }, + "37023": { + "text": "37/23", + "index": 37023 + }, + "37024": { + "text": "37/24", + "index": 37024 + }, + "37025": { + "text": "37/25", + "index": 37025 + }, + "37026": { + "text": "37/26", + "index": 37026 + }, + "37027": { + "text": "37/27", + "index": 37027 + }, + "37028": { + "text": "37/28", + "index": 37028 + }, + "37029": { + "text": "37/29", + "index": 37029 + }, + "37030": { + "text": "37/30", + "index": 37030 + }, + "37031": { + "text": "37/31", + "index": 37031 + }, + "37032": { + "text": "37/32", + "index": 37032 + }, + "37033": { + "text": "37/33", + "index": 37033 + }, + "37034": { + "text": "37/34", + "index": 37034 + }, + "37035": { + "text": "37/35", + "index": 37035 + }, + "37036": { + "text": "37/36", + "index": 37036 + }, + "37037": { + "text": "37/37", + "index": 37037 + }, + "37038": { + "text": "37/38", + "index": 37038 + }, + "37039": { + "text": "37/39", + "index": 37039 + }, + "37040": { + "text": "37/40", + "index": 37040 + }, + "38000": { + "text": "38/0", + "index": 38000 + }, + "38001": { + "text": "38/1", + "index": 38001 + }, + "38002": { + "text": "38/2", + "index": 38002 + }, + "38003": { + "text": "38/3", + "index": 38003 + }, + "38004": { + "text": "38/4", + "index": 38004 + }, + "38005": { + "text": "38/5", + "index": 38005 + }, + "38006": { + "text": "38/6", + "index": 38006 + }, + "38007": { + "text": "38/7", + "index": 38007 + }, + "38008": { + "text": "38/8", + "index": 38008 + }, + "38009": { + "text": "38/9", + "index": 38009 + }, + "38010": { + "text": "38/10", + "index": 38010 + }, + "38011": { + "text": "38/11", + "index": 38011 + }, + "38012": { + "text": "38/12", + "index": 38012 + }, + "38013": { + "text": "38/13", + "index": 38013 + }, + "38014": { + "text": "38/14", + "index": 38014 + }, + "38015": { + "text": "38/15", + "index": 38015 + }, + "38016": { + "text": "38/16", + "index": 38016 + }, + "38017": { + "text": "38/17", + "index": 38017 + }, + "38018": { + "text": "38/18", + "index": 38018 + }, + "38019": { + "text": "38/19", + "index": 38019 + }, + "38020": { + "text": "38/20", + "index": 38020 + }, + "38021": { + "text": "38/21", + "index": 38021 + }, + "38022": { + "text": "38/22", + "index": 38022 + }, + "38023": { + "text": "38/23", + "index": 38023 + }, + "38024": { + "text": "38/24", + "index": 38024 + }, + "38025": { + "text": "38/25", + "index": 38025 + }, + "38026": { + "text": "38/26", + "index": 38026 + }, + "38027": { + "text": "38/27", + "index": 38027 + }, + "38028": { + "text": "38/28", + "index": 38028 + }, + "38029": { + "text": "38/29", + "index": 38029 + }, + "38030": { + "text": "38/30", + "index": 38030 + }, + "38031": { + "text": "38/31", + "index": 38031 + }, + "38032": { + "text": "38/32", + "index": 38032 + }, + "38033": { + "text": "38/33", + "index": 38033 + }, + "38034": { + "text": "38/34", + "index": 38034 + }, + "38035": { + "text": "38/35", + "index": 38035 + }, + "38036": { + "text": "38/36", + "index": 38036 + }, + "38037": { + "text": "38/37", + "index": 38037 + }, + "38038": { + "text": "38/38", + "index": 38038 + }, + "38039": { + "text": "38/39", + "index": 38039 + }, + "38040": { + "text": "38/40", + "index": 38040 + }, + "39000": { + "text": "39/0", + "index": 39000 + }, + "39001": { + "text": "39/1", + "index": 39001 + }, + "39002": { + "text": "39/2", + "index": 39002 + }, + "39003": { + "text": "39/3", + "index": 39003 + }, + "39004": { + "text": "39/4", + "index": 39004 + }, + "39005": { + "text": "39/5", + "index": 39005 + }, + "39006": { + "text": "39/6", + "index": 39006 + }, + "39007": { + "text": "39/7", + "index": 39007 + }, + "39008": { + "text": "39/8", + "index": 39008 + }, + "39009": { + "text": "39/9", + "index": 39009 + }, + "39010": { + "text": "39/10", + "index": 39010 + }, + "39011": { + "text": "39/11", + "index": 39011 + }, + "39012": { + "text": "39/12", + "index": 39012 + }, + "39013": { + "text": "39/13", + "index": 39013 + }, + "39014": { + "text": "39/14", + "index": 39014 + }, + "39015": { + "text": "39/15", + "index": 39015 + }, + "39016": { + "text": "39/16", + "index": 39016 + }, + "39017": { + "text": "39/17", + "index": 39017 + }, + "39018": { + "text": "39/18", + "index": 39018 + }, + "39019": { + "text": "39/19", + "index": 39019 + }, + "39020": { + "text": "39/20", + "index": 39020 + }, + "39021": { + "text": "39/21", + "index": 39021 + }, + "39022": { + "text": "39/22", + "index": 39022 + }, + "39023": { + "text": "39/23", + "index": 39023 + }, + "39024": { + "text": "39/24", + "index": 39024 + }, + "39025": { + "text": "39/25", + "index": 39025 + }, + "39026": { + "text": "39/26", + "index": 39026 + }, + "39027": { + "text": "39/27", + "index": 39027 + }, + "39028": { + "text": "39/28", + "index": 39028 + }, + "39029": { + "text": "39/29", + "index": 39029 + }, + "39030": { + "text": "39/30", + "index": 39030 + }, + "39031": { + "text": "39/31", + "index": 39031 + }, + "39032": { + "text": "39/32", + "index": 39032 + }, + "39033": { + "text": "39/33", + "index": 39033 + }, + "39034": { + "text": "39/34", + "index": 39034 + }, + "39035": { + "text": "39/35", + "index": 39035 + }, + "39036": { + "text": "39/36", + "index": 39036 + }, + "39037": { + "text": "39/37", + "index": 39037 + }, + "39038": { + "text": "39/38", + "index": 39038 + }, + "39039": { + "text": "39/39", + "index": 39039 + }, + "39040": { + "text": "39/40", + "index": 39040 + }, + "40000": { + "text": "40/0", + "index": 40000 + }, + "40001": { + "text": "40/1", + "index": 40001 + }, + "40002": { + "text": "40/2", + "index": 40002 + }, + "40003": { + "text": "40/3", + "index": 40003 + }, + "40004": { + "text": "40/4", + "index": 40004 + }, + "40005": { + "text": "40/5", + "index": 40005 + }, + "40006": { + "text": "40/6", + "index": 40006 + }, + "40007": { + "text": "40/7", + "index": 40007 + }, + "40008": { + "text": "40/8", + "index": 40008 + }, + "40009": { + "text": "40/9", + "index": 40009 + }, + "40010": { + "text": "40/10", + "index": 40010 + }, + "40011": { + "text": "40/11", + "index": 40011 + }, + "40012": { + "text": "40/12", + "index": 40012 + }, + "40013": { + "text": "40/13", + "index": 40013 + }, + "40014": { + "text": "40/14", + "index": 40014 + }, + "40015": { + "text": "40/15", + "index": 40015 + }, + "40016": { + "text": "40/16", + "index": 40016 + }, + "40017": { + "text": "40/17", + "index": 40017 + }, + "40018": { + "text": "40/18", + "index": 40018 + }, + "40019": { + "text": "40/19", + "index": 40019 + }, + "40020": { + "text": "40/20", + "index": 40020 + }, + "40021": { + "text": "40/21", + "index": 40021 + }, + "40022": { + "text": "40/22", + "index": 40022 + }, + "40023": { + "text": "40/23", + "index": 40023 + }, + "40024": { + "text": "40/24", + "index": 40024 + }, + "40025": { + "text": "40/25", + "index": 40025 + }, + "40026": { + "text": "40/26", + "index": 40026 + }, + "40027": { + "text": "40/27", + "index": 40027 + }, + "40028": { + "text": "40/28", + "index": 40028 + }, + "40029": { + "text": "40/29", + "index": 40029 + }, + "40030": { + "text": "40/30", + "index": 40030 + }, + "40031": { + "text": "40/31", + "index": 40031 + }, + "40032": { + "text": "40/32", + "index": 40032 + }, + "40033": { + "text": "40/33", + "index": 40033 + }, + "40034": { + "text": "40/34", + "index": 40034 + }, + "40035": { + "text": "40/35", + "index": 40035 + }, + "40036": { + "text": "40/36", + "index": 40036 + }, + "40037": { + "text": "40/37", + "index": 40037 + }, + "40038": { + "text": "40/38", + "index": 40038 + }, + "40039": { + "text": "40/39", + "index": 40039 + }, + "40040": { + "text": "40/40", + "index": 40040 + } + } + } + ] }, { - "id": "thresholds", - "value": { - "mode": "absolute", - "steps": [ - { - "color": "red", - "value": null - }, - { - "color": "yellow", - "value": 1 - }, - { - "color": "green", - "value": 100 - } - ] - } + "id": "decimals", + "value": 0 }, { "id": "unit", - "value": "percent" - } - ] - } - ] - }, - "gridPos": { - "h": 4, - "w": 4.8, - "x": 14.4, - "y": 1 - }, - "id": 3, - "options": { - "colorMode": "background", - "graphMode": "none", - "justifyMode": "center", - "orientation": "auto", - "percentChangeColorMode": "standard", - "reduceOptions": { - "calcs": [ - "lastNotNull" - ], - "fields": "", - "values": false - }, - "showPercentChange": false, - "textMode": "value_and_name", - "wideLayout": true - }, - "pluginVersion": "11.6.4", - "targets": [ - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}) == 1)", - "instant": true, - "legendFormat": "Alive", - "range": false, - "refId": "A" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}))", - "instant": true, - "legendFormat": "Expected", - "range": false, - "refId": "B" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}) == 1)) / clamp_min((count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}))), 1)) * 100", - "instant": true, - "legendFormat": "Health", - "range": false, - "refId": "C" - } - ], - "title": "📊 VictoriaMetrics", - "type": "stat" - }, - { - "datasource": "Metrics", - "description": "HAProxy instances alive versus expected. Green means all expected instances are alive, yellow means degraded, and red means no instance is alive or none is discovered.", - "fieldConfig": { - "defaults": { - "color": { - "fixedColor": "text", - "mode": "fixed" - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ + "value": "none" + }, { - "color": "green" + "id": "color", + "value": { + "mode": "fixed", + "fixedColor": "text" + } } ] }, - "unit": "none" - }, - "overrides": [ { "matcher": { "id": "byName", @@ -590,28 +34351,22 @@ }, "showPercentChange": false, "textMode": "value_and_name", - "wideLayout": true + "wideLayout": true, + "text": { + "valueSize": 24 + } }, "pluginVersion": "11.6.4", "targets": [ { "datasource": "Metrics", "editorMode": "code", - "expr": "count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"}) == 1)", + "expr": "((count(max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"}) == 1)) * 1000 + (count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"}))))", "instant": true, - "legendFormat": "Alive", + "legendFormat": "Alive/Expected", "range": false, "refId": "A" }, - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "count(max by(exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\"}))", - "instant": true, - "legendFormat": "Expected", - "range": false, - "refId": "B" - }, { "datasource": "Metrics", "editorMode": "code", @@ -619,10 +34374,10 @@ "instant": true, "legendFormat": "Health", "range": false, - "refId": "C" + "refId": "B" } ], - "title": "⚖️ HAProxy", + "title": "\u2696\ufe0f HAProxy", "type": "stat" }, { @@ -657,10 +34412,10 @@ "overrides": [] }, "gridPos": { - "h": 6, - "w": 6, + "h": 8, + "w": 12, "x": 0, - "y": 5 + "y": 13 }, "id": 201, "options": { @@ -689,7 +34444,7 @@ "refId": "A" } ], - "title": "🎯 Overall System Health", + "title": "\ud83c\udfaf Overall System Health", "type": "gauge" }, { @@ -714,17 +34469,17 @@ "overrides": [] }, "gridPos": { - "h": 6, - "w": 6, - "x": 6, - "y": 5 + "h": 8, + "w": 12, + "x": 12, + "y": 13 }, "id": 202, "options": { "colorMode": "value", "graphMode": "area", "justifyMode": "auto", - "orientation": "auto", + "orientation": "vertical", "percentChangeColorMode": "standard", "reduceOptions": { "calcs": [ @@ -734,8 +34489,12 @@ "values": false }, "showPercentChange": false, - "textMode": "value_and_name", - "wideLayout": true + "textMode": "auto", + "wideLayout": true, + "text": { + "titleSize": 11, + "valueSize": 30 + } }, "pluginVersion": "11.6.4", "targets": [ @@ -756,7 +34515,7 @@ "refId": "B" } ], - "title": "🔢 Pod Count", + "title": "\ud83d\udd22 Pod Count", "type": "stat" }, { @@ -789,17 +34548,17 @@ "overrides": [] }, "gridPos": { - "h": 6, - "w": 6, - "x": 12, + "h": 8, + "w": 12, + "x": 0, "y": 5 }, "id": 203, "options": { "colorMode": "background", - "graphMode": "area", - "justifyMode": "auto", - "orientation": "auto", + "graphMode": "none", + "justifyMode": "center", + "orientation": "vertical", "percentChangeColorMode": "standard", "reduceOptions": { "calcs": [ @@ -810,20 +34569,23 @@ }, "showPercentChange": false, "textMode": "value_and_name", - "wideLayout": true + "wideLayout": false, + "text": { + "valueSize": 24 + } }, "pluginVersion": "11.6.4", "targets": [ { "datasource": "Metrics", "editorMode": "code", - "expr": "sum(increase(kube_pod_container_status_restarts_total{namespace=\"$namespace\", pod!~\".*($health_exclude_regex).*\"}[24h]))", - "legendFormat": "Restarts (24h)", + "expr": "sum(increase(kube_pod_container_status_restarts_total{exported_namespace=\"$namespace\", exported_pod!~\".*($health_exclude_regex).*\"}[24h]))", + "legendFormat": "Restarts", "range": true, "refId": "A" } ], - "title": "🔄 Pod Restarts", + "title": "\ud83d\udd04 Pod Restarts", "type": "stat" }, { @@ -881,9 +34643,9 @@ ] }, "gridPos": { - "h": 6, - "w": 6, - "x": 18, + "h": 8, + "w": 12, + "x": 12, "y": 5 }, "id": 204, @@ -905,7 +34667,7 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "sum by(pod) (increase(kube_pod_container_status_restarts_total{namespace=\"$namespace\", pod!~\".*($health_exclude_regex).*\"}[24h])) > 0", + "expr": "sum by(exported_pod) (increase(kube_pod_container_status_restarts_total{exported_namespace=\"$namespace\", exported_pod!~\".*($health_exclude_regex).*\"}[24h])) > 0", "format": "table", "instant": true, "legendFormat": "__auto", @@ -913,7 +34675,7 @@ "refId": "A" } ], - "title": "⚠️ Pods with Restarts", + "title": "\u26a0\ufe0f Pods with Restarts", "transformations": [ { "id": "organize", @@ -923,11 +34685,7 @@ }, "indexByName": { "Value": 1, - "pod": 0 - }, - "renameByName": { - "Value": "Restarts (24h)", - "pod": "Pod" + "exported_pod": 0 } } } @@ -964,7 +34722,7 @@ "h": 5, "w": 6, "x": 0, - "y": 11 + "y": 21 }, "id": 213, "options": { @@ -982,14 +34740,17 @@ }, "showPercentChange": false, "textMode": "name", - "wideLayout": true + "wideLayout": true, + "text": { + "valueSize": 24 + } }, "pluginVersion": "11.6.4", "targets": [ { "datasource": "Metrics", "editorMode": "code", - "expr": "(max by(node_id) (pmm_ha_leader_status) == 1) or label_replace(vector(0), \"node_id\", \"No active instance\", \"\", \"\")", + "expr": "(max by(node_id) (pmm_ha_leader_status) == 1) or (label_replace(vector(0), \"node_id\", \"No active instance\", \"\", \"\") unless on() (max(pmm_ha_leader_status) == 1))", "instant": true, "legendFormat": "{{node_id}}", "range": false, @@ -1031,7 +34792,7 @@ "h": 5, "w": 6, "x": 6, - "y": 11 + "y": 21 }, "id": 214, "options": { @@ -1049,7 +34810,10 @@ }, "showPercentChange": false, "textMode": "name", - "wideLayout": true + "wideLayout": true, + "text": { + "valueSize": 24 + } }, "pluginVersion": "11.6.4", "targets": [ @@ -1100,7 +34864,7 @@ "h": 5, "w": 12, "x": 12, - "y": 11 + "y": 21 }, "id": 215, "options": { @@ -1118,7 +34882,10 @@ }, "showPercentChange": false, "textMode": "value_and_name", - "wideLayout": true + "wideLayout": true, + "text": { + "valueSize": 24 + } }, "pluginVersion": "11.6.4", "targets": [ @@ -1177,11 +34944,11 @@ "h": 1, "w": 24, "x": 0, - "y": 16 + "y": 26 }, "id": 205, "panels": [], - "title": "💻 Resource Usage", + "title": "\ud83d\udcbb Resource Usage", "type": "row" }, { @@ -1246,7 +35013,7 @@ "h": 8, "w": 12, "x": 0, - "y": 17 + "y": 27 }, "id": 6, "options": { @@ -1277,7 +35044,7 @@ "refId": "A" } ], - "title": "🧮 CPU Usage", + "title": "\ud83e\uddee CPU Usage", "type": "timeseries" }, { @@ -1342,7 +35109,7 @@ "h": 8, "w": 12, "x": 12, - "y": 17 + "y": 27 }, "id": 206, "options": { @@ -1373,7 +35140,7 @@ "refId": "A" } ], - "title": "💾 Memory Usage", + "title": "\ud83d\udcbe Memory Usage", "type": "timeseries" }, { @@ -1382,16 +35149,83 @@ "h": 1, "w": 24, "x": 0, - "y": 25 + "y": 35 }, "id": 207, "panels": [], - "title": "💿 Storage Usage", + "title": "\ud83d\udcbf Storage Usage", "type": "row" }, { "datasource": "Metrics", - "description": "PostgreSQL persistent volume usage percentage", + "description": "PostgreSQL persistent volume usage percentage", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "max": 100, + "min": 0, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "yellow", + "value": 70 + }, + { + "color": "red", + "value": 85 + } + ] + }, + "unit": "percent" + }, + "overrides": [] + }, + "gridPos": { + "h": 6, + "w": 8, + "x": 0, + "y": 36 + }, + "id": 208, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "sizing": "auto" + }, + "pluginVersion": "11.6.4", + "targets": [ + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "max(\n (\n (kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"${release}-pg-db-.*\"} - kubelet_volume_stats_available_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"${release}-pg-db-.*\"})\n /\n kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"${release}-pg-db-.*\"}\n ) * 100\n)", + "legendFormat": "PostgreSQL", + "range": true, + "refId": "A" + } + ], + "title": "\ud83d\udc18 PostgreSQL Storage", + "type": "gauge" + }, + { + "datasource": "Metrics", + "description": "ClickHouse persistent volume usage percentage", "fieldConfig": { "defaults": { "color": { @@ -1423,10 +35257,10 @@ "gridPos": { "h": 6, "w": 8, - "x": 0, - "y": 26 + "x": 8, + "y": 36 }, - "id": 208, + "id": 209, "options": { "minVizHeight": 75, "minVizWidth": 75, @@ -1447,18 +35281,18 @@ { "datasource": "Metrics", "editorMode": "code", - "expr": "max(\n (\n (kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"${release}-pg-db-.*\"} - kubelet_volume_stats_available_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"${release}-pg-db-.*\"})\n /\n kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\"${release}-pg-db-.*\"}\n ) * 100\n)", - "legendFormat": "PostgreSQL", + "expr": "max(\n (\n (kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*${clickhouse_suffix_regex}\"} - kubelet_volume_stats_available_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*${clickhouse_suffix_regex}\"})\n /\n kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*${clickhouse_suffix_regex}\"}\n ) * 100\n)", + "legendFormat": "ClickHouse", "range": true, "refId": "A" } ], - "title": "🐘 PostgreSQL Storage", + "title": "\ud83d\uddb1\ufe0f ClickHouse Storage", "type": "gauge" }, { "datasource": "Metrics", - "description": "ClickHouse persistent volume usage percentage", + "description": "VictoriaMetrics persistent volume usage percentage", "fieldConfig": { "defaults": { "color": { @@ -1490,10 +35324,10 @@ "gridPos": { "h": 6, "w": 8, - "x": 8, - "y": 26 + "x": 16, + "y": 36 }, - "id": 209, + "id": 210, "options": { "minVizHeight": 75, "minVizWidth": 75, @@ -1514,23 +35348,48 @@ { "datasource": "Metrics", "editorMode": "code", - "expr": "max(\n (\n (kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*${clickhouse_suffix_regex}\"} - kubelet_volume_stats_available_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*${clickhouse_suffix_regex}\"})\n /\n kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*${clickhouse_suffix_regex}\"}\n ) * 100\n)", - "legendFormat": "ClickHouse", + "expr": "max(\n (\n (kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*vmstorage.*\"} - kubelet_volume_stats_available_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*vmstorage.*\"})\n /\n kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*vmstorage.*\"}\n ) * 100\n)", + "legendFormat": "VictoriaMetrics", "range": true, "refId": "A" } ], - "title": "🖱️ ClickHouse Storage", + "title": "\ud83d\udcca VictoriaMetrics Storage", "type": "gauge" }, + { + "collapsed": false, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 42 + }, + "id": 211, + "panels": [], + "title": "\ud83d\udcc8 Service Availability", + "type": "row" + }, { "datasource": "Metrics", - "description": "VictoriaMetrics persistent volume usage percentage", + "description": "Health percentage timeline for each service component. Shows % of pods running over time. 100% = all pods healthy (green), <100% = some pods down (red/yellow).", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, + "custom": { + "axisPlacement": "auto", + "fillOpacity": 70, + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineWidth": 0, + "spanNulls": false + }, "mappings": [], "max": 100, "min": 0, @@ -1538,15 +35397,20 @@ "mode": "absolute", "steps": [ { - "color": "green" + "color": "red", + "value": 0 + }, + { + "color": "orange", + "value": 50 }, { "color": "yellow", - "value": 70 + "value": 75 }, { - "color": "red", - "value": 85 + "color": "green", + "value": 100 } ] }, @@ -1555,40 +35419,276 @@ "overrides": [] }, "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 26 + "h": 8, + "w": 24, + "x": 0, + "y": 43 }, - "id": 210, + "id": 212, "options": { - "minVizHeight": 75, - "minVizWidth": 75, - "orientation": "auto", - "reduceOptions": { - "calcs": [ - "lastNotNull" + "alignValue": "left", + "legend": { + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "mergeValues": true, + "rowHeight": 0.9, + "showValue": "auto", + "tooltip": { + "hideZeros": false, + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "11.6.4", + "targets": [ + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", + "legendFormat": "\ud83e\udded PMM", + "range": true, + "refId": "PMM" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}|$health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}|$health_exclude_regex).*\"})\n) * 100", + "legendFormat": "\ud83d\udc18 PostgreSQL", + "range": true, + "refId": "PostgreSQL" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", + "legendFormat": "\ud83d\uddb1\ufe0f ClickHouse", + "range": true, + "refId": "ClickHouse" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", + "legendFormat": "\ud83d\udcca VictoriaMetrics", + "range": true, + "refId": "VictoriaMetrics" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", + "legendFormat": "\u2696\ufe0f HAProxy", + "range": true, + "refId": "HAProxy" + } + ], + "title": "\u23f1\ufe0f Service Availability by Component", + "type": "state-timeline" + }, + { + "collapsed": false, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 51 + }, + "id": 105, + "panels": [], + "title": "\ud83e\udded PMM Pod's Status", + "type": "row" + }, + { + "datasource": "Metrics", + "description": "Status and Raft role of every PMM server instance.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "center", + "cellOptions": { + "type": "color-background" + }, + "inspect": false + }, + "mappings": [ + { + "options": { + "0": { + "color": "red", + "index": 1, + "text": "DOWN" + } + }, + "type": "value" + }, + { + "options": { + "1": { + "color": "green", + "index": 0, + "text": "UP" + } + }, + "type": "value" + } ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "red" + }, + { + "color": "green", + "value": 1 + } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Status" + }, + "properties": [ + { + "id": "custom.width", + "value": 90 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Pod" + }, + "properties": [ + { + "id": "custom.width", + "value": 400 + }, + { + "id": "custom.cellOptions", + "value": { + "type": "auto" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Role" + }, + "properties": [ + { + "id": "custom.width", + "value": 150 + }, + { + "id": "mappings", + "value": [ + { + "options": { + "0": { + "color": "yellow", + "index": 1, + "text": "Follower" + }, + "1": { + "color": "green", + "index": 0, + "text": "Active" + } + }, + "type": "value" + } + ] + } + ] + } + ] + }, + "gridPos": { + "h": 10, + "w": 24, + "x": 0, + "y": 52 + }, + "id": 50, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, "fields": "", - "values": false + "reducer": [ + "sum" + ], + "show": false }, - "showThresholdLabels": false, - "showThresholdMarkers": true, - "sizing": "auto" + "showHeader": true }, "pluginVersion": "11.6.4", "targets": [ { "datasource": "Metrics", "editorMode": "code", - "expr": "max(\n (\n (kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*vmstorage.*\"} - kubelet_volume_stats_available_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*vmstorage.*\"})\n /\n kubelet_volume_stats_capacity_bytes{namespace=\"$namespace\", persistentvolumeclaim=~\".*vmstorage.*\"}\n ) * 100\n)", - "legendFormat": "VictoriaMetrics", - "range": true, - "refId": "A" + "exemplar": false, + "expr": "max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_namespace=\"$namespace\"})", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Status" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "exemplar": false, + "expr": "label_replace(max by(node_id) (pmm_ha_leader_status), \"exported_pod\", \"$1\", \"node_id\", \"(.*)\")", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Leader" } ], - "title": "📊 VictoriaMetrics Storage", - "type": "gauge" + "title": "PMM Pods", + "transformations": [ + { + "id": "seriesToColumns", + "options": { + "byField": "exported_pod" + } + }, + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "node_id": true, + "service_name": true + }, + "indexByName": { + "Value #Leader": 2, + "Value #Status": 1, + "exported_pod": 0 + }, + "renameByName": { + "Value #Leader": "Role", + "Value #Status": "Status", + "exported_pod": "Instance" + } + } + } + ], + "type": "table" }, { "collapsed": false, @@ -1596,317 +35696,484 @@ "h": 1, "w": 24, "x": 0, - "y": 32 + "y": 62 }, - "id": 211, + "id": 101, "panels": [], - "title": "📈 Service Availability", + "title": "\ud83d\udc18 PostgreSQL Pod's Status", "type": "row" }, { "datasource": "Metrics", - "description": "Health percentage timeline for each service component. Shows % of pods running over time. 100% = all pods healthy (green), <100% = some pods down (red/yellow).", + "description": "Status, primary/replica role, and replication streaming health for every PostgreSQL instance.", "fieldConfig": { "defaults": { "color": { "mode": "thresholds" }, "custom": { - "axisPlacement": "auto", - "fillOpacity": 70, - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false + "align": "center", + "cellOptions": { + "type": "color-background" }, - "insertNulls": false, - "lineWidth": 0, - "spanNulls": false + "inspect": false }, - "mappings": [], - "max": 100, - "min": 0, + "mappings": [ + { + "options": { + "0": { + "color": "red", + "index": 1, + "text": "DOWN" + } + }, + "type": "value" + }, + { + "options": { + "1": { + "color": "green", + "index": 0, + "text": "UP" + } + }, + "type": "value" + } + ], "thresholds": { "mode": "absolute", "steps": [ { - "color": "red", - "value": 0 + "color": "red" }, { - "color": "orange", - "value": 50 + "color": "green", + "value": 1 + } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Status" + }, + "properties": [ + { + "id": "custom.width", + "value": 90 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Pod" + }, + "properties": [ + { + "id": "custom.width", + "value": 400 }, { - "color": "yellow", - "value": 75 + "id": "custom.cellOptions", + "value": { + "type": "auto" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Role" + }, + "properties": [ + { + "id": "custom.width", + "value": 150 }, { - "color": "green", - "value": 100 + "id": "custom.cellOptions", + "value": { + "type": "auto" + } + }, + { + "id": "mappings", + "value": [ + { + "options": { + "0": { + "index": 1, + "text": "Replica" + } + }, + "type": "value" + }, + { + "options": { + "1": { + "index": 0, + "text": "Primary" + } + }, + "type": "value" + } + ] } ] }, - "unit": "percent" - }, - "overrides": [] + { + "matcher": { + "id": "byName", + "options": "Replication" + }, + "properties": [ + { + "id": "mappings", + "value": [ + { + "options": { + "0": { + "color": "yellow", + "index": 1, + "text": "Not streaming" + }, + "1": { + "color": "green", + "index": 0, + "text": "Healthy" + } + }, + "type": "value" + } + ] + } + ] + } + ] }, "gridPos": { - "h": 8, + "h": 10, "w": 24, "x": 0, - "y": 33 + "y": 63 }, - "id": 212, + "id": 10, "options": { - "alignValue": "left", - "legend": { - "displayMode": "list", - "placement": "bottom", - "showLegend": true + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false }, - "mergeValues": true, - "rowHeight": 0.9, - "showValue": "auto", - "tooltip": { - "hideZeros": false, - "mode": "single", - "sort": "none" - } + "showHeader": true }, "pluginVersion": "11.6.4", "targets": [ { "datasource": "Metrics", "editorMode": "code", - "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "🧭 PMM", - "range": true, - "refId": "PMM" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}|$health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}|$health_exclude_regex).*\"})\n) * 100", - "legendFormat": "🐘 PostgreSQL", - "range": true, - "refId": "PostgreSQL" + "exemplar": false, + "expr": "max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\", exported_namespace=\"$namespace\"})", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Status" }, { "datasource": "Metrics", "editorMode": "code", - "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "🖱️ ClickHouse", - "range": true, - "refId": "ClickHouse" + "exemplar": false, + "expr": "max by(exported_pod) (\n label_replace(max by(name) (patroni_primary), \"exported_pod\", \"$1\", \"name\", \"(.*)\")\n or\n label_replace(\n max by(node_name) (1 - clamp_max(pg_replication_is_replica, 1)),\n \"exported_pod\", \"$1\", \"node_name\", \".*(${release}-pg-db-[a-zA-Z0-9-]+)\"\n )\n)", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Primary" }, { "datasource": "Metrics", "editorMode": "code", - "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "📊 VictoriaMetrics", - "range": true, - "refId": "VictoriaMetrics" + "exemplar": false, + "expr": "max by(exported_pod) (\n label_replace(\n max by(name) (patroni_postgres_streaming) + on(name) max by(name) (patroni_primary),\n \"exported_pod\", \"$1\", \"name\", \"(.*)\"\n )\n or\n label_replace(\n max by(node_name) (\n (1 - clamp_max(pg_replication_is_replica, 1))\n +\n (clamp_max(pg_replication_is_replica, 1) * (pg_replication_lag_seconds < bool 60))\n ),\n \"exported_pod\", \"$1\", \"node_name\", \".*(${release}-pg-db-[a-zA-Z0-9-]+)\"\n )\n)", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Replication" + } + ], + "title": "PostgreSQL Pods", + "transformations": [ + { + "id": "seriesToColumns", + "options": { + "byField": "exported_pod" + } }, { - "datasource": "Metrics", - "editorMode": "code", - "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "⚖️ HAProxy", - "range": true, - "refId": "HAProxy" + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "name": true, + "service_name": true + }, + "includeByName": {}, + "indexByName": { + "Value #Primary": 2, + "Value #Replication": 3, + "Value #Status": 1, + "exported_pod": 0 + }, + "renameByName": { + "Value #Primary": "Role", + "Value #Replication": "Replication", + "Value #Status": "Status", + "exported_pod": "Pod" + } + } } ], - "title": "⏱️ Service Availability by Component", - "type": "state-timeline" + "type": "table" }, { - "collapsed": true, + "collapsed": false, "gridPos": { "h": 1, "w": 24, "x": 0, - "y": 48 + "y": 73 }, - "id": 105, - "panels": [ - { - "datasource": "Metrics", - "description": "Status and Raft role of every PMM server instance.", - "fieldConfig": { - "defaults": { - "color": { - "mode": "thresholds" - }, - "custom": { - "align": "center", - "cellOptions": { - "type": "color-background" - }, - "inspect": false - }, - "mappings": [ - { - "options": { - "0": { - "color": "red", - "index": 1, - "text": "DOWN" - } - }, - "type": "value" - }, - { - "options": { - "1": { - "color": "green", - "index": 0, - "text": "UP" - } - }, - "type": "value" + "id": 102, + "panels": [], + "title": "\ud83d\uddb1\ufe0f ClickHouse Pod's Status", + "type": "row" + }, + { + "datasource": "Metrics", + "description": "Health of all ClickHouse database and Keeper nodes. Keeper nodes additionally show leader/follower role.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "center", + "cellOptions": { + "type": "color-background" + }, + "inspect": false + }, + "mappings": [ + { + "options": { + "0": { + "color": "red", + "index": 1, + "text": "DOWN" + } + }, + "type": "value" + }, + { + "options": { + "1": { + "color": "green", + "index": 0, + "text": "UP" + } + }, + "type": "value" + } + ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "red" + }, + { + "color": "green", + "value": 1 + } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Status" + }, + "properties": [ + { + "id": "custom.width", + "value": 90 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Pod" + }, + "properties": [ + { + "id": "custom.cellOptions", + "value": { + "type": "auto" } - ], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "red" - }, - { - "color": "green", - "value": 1 - } - ] } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Role" }, - "overrides": [ + "properties": [ + { + "id": "custom.width", + "value": 150 + }, + { + "id": "custom.cellOptions", + "value": { + "type": "auto" + } + }, { - "matcher": { - "id": "byName", - "options": "Pod" - }, - "properties": [ + "id": "mappings", + "value": [ { - "id": "custom.width", - "value": 400 + "options": { + "0": { + "index": 1, + "text": "Follower" + } + }, + "type": "value" }, { - "id": "custom.cellOptions", - "value": { - "type": "auto" - } - } - ] - }, - { - "matcher": { - "id": "byName", - "options": "Role" - }, - "properties": [ + "options": { + "1": { + "index": 0, + "text": "Leader" + } + }, + "type": "value" + }, { - "id": "mappings", - "value": [ - { - "options": { - "0": { - "color": "yellow", - "index": 1, - "text": "Follower" - }, - "1": { - "color": "green", - "index": 0, - "text": "Active" - } - }, - "type": "value" + "options": { + "2": { + "index": 2, + "text": "Replica" } - ] + }, + "type": "value" } ] } ] }, - "gridPos": { - "h": 5, - "w": 24, - "x": 0, - "y": 37 - }, - "id": 50, - "options": { - "cellHeight": "sm", - "footer": { - "countRows": false, - "fields": "", - "reducer": [ - "sum" - ], - "show": false - }, - "showHeader": true - }, - "pluginVersion": "11.6.4", - "targets": [ - { - "datasource": "Metrics", - "editorMode": "code", - "exemplar": false, - "expr": "max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_namespace=\"$namespace\"})", - "format": "table", - "instant": true, - "legendFormat": "__auto", - "range": false, - "refId": "Status" + { + "matcher": { + "id": "byName", + "options": "Component" }, - { - "datasource": "Metrics", - "editorMode": "code", - "exemplar": false, - "expr": "label_replace(max by(node_id) (pmm_ha_leader_status), \"exported_pod\", \"$1\", \"node_id\", \"(.*)\")", - "format": "table", - "instant": true, - "legendFormat": "__auto", - "range": false, - "refId": "Leader" - } - ], - "title": "PMM Pods", - "transformations": [ - { - "id": "seriesToColumns", - "options": { - "byField": "exported_pod" + "properties": [ + { + "id": "custom.width", + "value": 160 } + ] + } + ] + }, + "gridPos": { + "h": 20, + "w": 24, + "x": 0, + "y": 74 + }, + "id": 20, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": true + }, + "pluginVersion": "11.0.0", + "targets": [ + { + "datasource": "Metrics", + "editorMode": "code", + "exemplar": false, + "expr": "max by(exported_pod, component) (label_replace(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}, \"component\", \"$1\", \"exported_pod\", \".*(pmmdb|keeper).*\"))", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Status" + }, + { + "datasource": "Metrics", + "editorMode": "code", + "exemplar": false, + "expr": "max by(exported_pod) (\n (\n label_replace(max by(instance) (ClickHouseAsyncMetrics_KeeperIsLeader), \"pod_ip\", \"$1\", \"instance\", \"([0-9.]+):.*\")\n * on(pod_ip) group_left(exported_pod)\n max by(pod_ip, exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"})\n )\n or\n (\n max by(exported_pod) (\n (kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pmmdb.*\"} == 1) * 2\n )\n )\n)", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Leader" + } + ], + "title": "ClickHouse Pods", + "transformations": [ + { + "id": "seriesToColumns", + "options": { + "byField": "exported_pod" + } + }, + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "instance": true, + "pod_ip": true }, - { - "id": "organize", - "options": { - "excludeByName": { - "Time": true, - "node_id": true, - "service_name": true - }, - "indexByName": { - "Value #Leader": 2, - "Value #Status": 1, - "exported_pod": 0 - }, - "renameByName": { - "Value #Leader": "Role", - "Value #Status": "Status", - "exported_pod": "Instance" - } - } + "indexByName": { + "Value #Leader": 3, + "Value #Status": 2, + "component": 1, + "exported_pod": 0 + }, + "renameByName": { + "Value #Leader": "Role", + "Value #Status": "Status", + "component": "Component", + "exported_pod": "Pod" } - ], - "type": "table" + } } ], - "title": "🧭 PMM Pod's Status", - "type": "row" + "type": "table" }, { "collapsed": false, @@ -1914,16 +36181,16 @@ "h": 1, "w": 24, "x": 0, - "y": 42 + "y": 94 }, - "id": 101, + "id": 103, "panels": [], - "title": "🐘 PostgreSQL Pod's Status", + "title": "\ud83d\udcca VictoriaMetrics Pod's Status", "type": "row" }, { "datasource": "Metrics", - "description": "Status, primary/replica role, and replication streaming health for every PostgreSQL instance.", + "description": "Status of each VictoriaMetrics pod (Kubernetes phase Running).", "fieldConfig": { "defaults": { "color": { @@ -1978,10 +36245,6 @@ "options": "Pod" }, "properties": [ - { - "id": "custom.width", - "value": 400 - }, { "id": "custom.cellOptions", "value": { @@ -1993,12 +36256,12 @@ { "matcher": { "id": "byName", - "options": "Role" + "options": "Component" }, "properties": [ { "id": "custom.width", - "value": 120 + "value": 500 }, { "id": "custom.cellOptions", @@ -2008,66 +36271,31 @@ }, { "id": "mappings", - "value": [ - { - "options": { - "0": { - "index": 1, - "text": "Replica" - } - }, - "type": "value" - }, - { - "options": { - "1": { - "index": 0, - "text": "Primary" - } - }, - "type": "value" - } - ] + "value": [] } ] }, { "matcher": { "id": "byName", - "options": "Replication" + "options": "Status" }, "properties": [ { - "id": "mappings", - "value": [ - { - "options": { - "0": { - "color": "yellow", - "index": 1, - "text": "Not streaming" - }, - "1": { - "color": "green", - "index": 0, - "text": "Healthy" - } - }, - "type": "value" - } - ] + "id": "custom.width", + "value": 90 } ] } ] }, "gridPos": { - "h": 6, + "h": 22, "w": 24, "x": 0, - "y": 43 + "y": 95 }, - "id": 10, + "id": 30, "options": { "cellHeight": "sm", "footer": { @@ -2086,732 +36314,360 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\", exported_namespace=\"$namespace\"})", - "format": "table", - "instant": false, - "legendFormat": "__auto", - "range": true, - "refId": "Status" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "exemplar": false, - "expr": "label_replace(max by(name) (patroni_primary), \"exported_pod\", \"$1\", \"name\", \"(.*)\")", - "format": "table", - "instant": false, - "legendFormat": "__auto", - "range": true, - "refId": "Primary" - }, - { - "datasource": "Metrics", - "editorMode": "code", - "exemplar": false, - "expr": "label_replace(max by(name) (patroni_postgres_streaming) + on(name) max by(name) (patroni_primary), \"exported_pod\", \"$1\", \"name\", \"(.*)\")", + "expr": "max by(exported_pod, component) (label_replace(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}, \"component\", \"$1\", \"exported_pod\", \".*(${vm_suffix_regex}).*\") )", "format": "table", "instant": true, "legendFormat": "__auto", "range": false, - "refId": "Replication" + "refId": "Status" } ], - "title": "PostgreSQL Pods", + "title": "VictoriaMetrics Pods", "transformations": [ - { - "id": "seriesToColumns", - "options": { - "byField": "exported_pod" - } - }, { "id": "organize", "options": { "excludeByName": { - "Time": true, - "name": true, - "service_name": true + "Time": true }, - "includeByName": {}, "indexByName": { - "Value #Primary": 2, - "Value #Replication": 3, - "Value #Status": 1, + "Value": 2, + "component": 1, "exported_pod": 0 }, "renameByName": { - "Value #Primary": "Role", - "Value #Replication": "Replication", - "Value #Status": "Status", + "Value": "Status", + "component": "Component", "exported_pod": "Pod" } } + }, + { + "id": "sortBy", + "options": { + "fields": {}, + "sort": [ + { + "field": "Component" + } + ] + } } ], "type": "table" }, { - "collapsed": true, + "collapsed": false, "gridPos": { "h": 1, "w": 24, "x": 0, - "y": 49 + "y": 117 }, - "id": 102, - "panels": [ - { - "datasource": "Metrics", - "description": "Health of all ClickHouse database and Keeper nodes. Keeper nodes additionally show leader/follower role.", - "fieldConfig": { - "defaults": { - "color": { - "mode": "thresholds" - }, - "custom": { - "align": "center", - "cellOptions": { - "type": "color-background" - }, - "inspect": false - }, - "mappings": [ - { - "options": { - "0": { - "color": "red", - "index": 1, - "text": "DOWN" - } - }, - "type": "value" - }, - { - "options": { - "1": { - "color": "green", - "index": 0, - "text": "UP" - } - }, - "type": "value" + "id": 104, + "panels": [], + "title": "\u2696\ufe0f HAProxy Pod's Status", + "type": "row" + }, + { + "datasource": "Metrics", + "description": "Status of each HAProxy pod (Running = UP).", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "center", + "cellOptions": { + "type": "color-background" + }, + "inspect": false + }, + "mappings": [ + { + "options": { + "0": { + "color": "red", + "index": 1, + "text": "DOWN" } - ], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "red" - }, - { - "color": "green", - "value": 1 - } - ] - } + }, + "type": "value" }, - "overrides": [ + { + "options": { + "1": { + "color": "green", + "index": 0, + "text": "UP" + } + }, + "type": "value" + } + ], + "thresholds": { + "mode": "absolute", + "steps": [ { - "matcher": { - "id": "byName", - "options": "Pod" - }, - "properties": [ - { - "id": "custom.width", - "value": 400 - }, - { - "id": "custom.cellOptions", - "value": { - "type": "auto" - } - } - ] + "color": "red" }, { - "matcher": { - "id": "byName", - "options": "Role" - }, - "properties": [ - { - "id": "custom.width", - "value": 120 - }, - { - "id": "custom.cellOptions", - "value": { - "type": "auto" - } - }, - { - "id": "mappings", - "value": [ - { - "options": { - "0": { - "index": 1, - "text": "Follower" - } - }, - "type": "value" - }, - { - "options": { - "1": { - "index": 0, - "text": "Leader" - } - }, - "type": "value" - } - ] - } - ] + "color": "green", + "value": 1 + } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Pod" + }, + "properties": [ + { + "id": "custom.cellOptions", + "value": { + "type": "auto" + } } ] }, - "gridPos": { - "h": 6, - "w": 24, - "x": 0, - "y": 84 + { + "matcher": { + "id": "byName", + "options": "Status" + }, + "properties": [ + { + "id": "custom.width", + "value": 90 + } + ] + } + ] + }, + "gridPos": { + "h": 10, + "w": 24, + "x": 0, + "y": 118 + }, + "id": 40, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": true + }, + "pluginVersion": "11.6.4", + "targets": [ + { + "datasource": "Metrics", + "editorMode": "code", + "exemplar": false, + "expr": "max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_pod=~\"$haproxy_pod_regex\", exported_namespace=\"$namespace\"})", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Status" + } + ], + "title": "HAProxy Instances", + "transformations": [ + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true + }, + "indexByName": { + "Value": 1, + "exported_pod": 0 + }, + "renameByName": { + "Value": "Status", + "exported_pod": "Pod" + } + } + } + ], + "type": "table" + }, + { + "datasource": "Metrics", + "description": "UP/DOWN status of every HAProxy backend server.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" }, - "id": 20, - "options": { - "cellHeight": "sm", - "footer": { - "countRows": false, - "fields": "", - "reducer": [ - "sum" - ], - "show": false - }, - "showHeader": true - }, - "pluginVersion": "11.0.0", - "targets": [ - { - "datasource": "Metrics", - "editorMode": "code", - "exemplar": false, - "expr": "max by(exported_pod, component) (label_replace(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"}, \"component\", \"$1\", \"exported_pod\", \".*(pmmdb|keeper).*\"))", - "format": "table", - "instant": true, - "legendFormat": "__auto", - "range": false, - "refId": "Status" + "custom": { + "align": "center", + "cellOptions": { + "type": "color-background" }, + "inspect": false + }, + "mappings": [ { - "datasource": "Metrics", - "editorMode": "code", - "exemplar": false, - "expr": "label_replace(max by(instance) (ClickHouseAsyncMetrics_KeeperIsLeader), \"pod_ip\", \"$1\", \"instance\", \"([0-9.]+):.*\") * on(pod_ip) group_left(exported_pod) max by(pod_ip, exported_pod) (kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\"})", - "format": "table", - "instant": true, - "legendFormat": "__auto", - "range": false, - "refId": "Leader" - } - ], - "title": "ClickHouse Pods", - "transformations": [ - { - "id": "seriesToColumns", "options": { - "byField": "exported_pod" - } + "0": { + "color": "red", + "index": 1, + "text": "DOWN" + } + }, + "type": "value" }, { - "id": "organize", "options": { - "excludeByName": { - "Time": true, - "instance": true, - "pod_ip": true - }, - "indexByName": { - "Value #Leader": 3, - "Value #Status": 2, - "component": 1, - "exported_pod": 0 - }, - "renameByName": { - "Value #Leader": "Role", - "Value #Status": "Status", - "component": "Component", - "exported_pod": "Pod" + "1": { + "color": "green", + "index": 0, + "text": "UP" } - } + }, + "type": "value" } ], - "type": "table" - } - ], - "title": "🖱️ ClickHouse Pod's Status", - "type": "row" - }, - { - "collapsed": true, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 50 - }, - "id": 103, - "panels": [ - { - "datasource": "Metrics", - "description": "Status of each VictoriaMetrics pod (Kubernetes phase Running).", - "fieldConfig": { - "defaults": { - "color": { - "mode": "thresholds" - }, - "custom": { - "align": "center", - "cellOptions": { - "type": "color-background" - }, - "inspect": false - }, - "mappings": [ - { - "options": { - "0": { - "color": "red", - "index": 1, - "text": "DOWN" - } - }, - "type": "value" - }, - { - "options": { - "1": { - "color": "green", - "index": 0, - "text": "UP" - } - }, - "type": "value" - } - ], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "red" - }, - { - "color": "green", - "value": 1 - } - ] + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "red" + }, + { + "color": "green", + "value": 1 } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Service" }, - "overrides": [ + "properties": [ { - "matcher": { - "id": "byName", - "options": "Pod" - }, - "properties": [ - { - "id": "custom.width", - "value": 400 - }, - { - "id": "custom.cellOptions", - "value": { - "type": "auto" - } - } - ] + "id": "custom.width", + "value": 180 }, { - "matcher": { - "id": "byName", - "options": "Component" - }, - "properties": [ - { - "id": "custom.width", - "value": 100 - }, - { - "id": "custom.cellOptions", - "value": { - "type": "auto" - } - }, - { - "id": "mappings", - "value": [] - } - ] + "id": "custom.cellOptions", + "value": { + "type": "auto" + } } ] }, - "gridPos": { - "h": 8, - "w": 24, - "x": 0, - "y": 50 - }, - "id": 30, - "options": { - "cellHeight": "sm", - "footer": { - "countRows": false, - "fields": "", - "reducer": [ - "sum" - ], - "show": false - }, - "showHeader": true - }, - "pluginVersion": "11.6.4", - "targets": [ - { - "datasource": "Metrics", - "editorMode": "code", - "exemplar": false, - "expr": "max by(exported_pod, component) (label_replace(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\"}, \"component\", \"$1\", \"exported_pod\", \".*(${vm_suffix_regex}).*\") )", - "format": "table", - "instant": true, - "legendFormat": "__auto", - "range": false, - "refId": "Status" - } - ], - "title": "VictoriaMetrics Pods", - "transformations": [ - { - "id": "organize", - "options": { - "excludeByName": { - "Time": true - }, - "indexByName": { - "Value": 2, - "component": 1, - "exported_pod": 0 - }, - "renameByName": { - "Value": "Status", - "component": "Component", - "exported_pod": "Pod" - } - } + { + "matcher": { + "id": "byName", + "options": "Backend" }, - { - "id": "sortBy", - "options": { - "fields": {}, - "sort": [ - { - "field": "Component" - } - ] - } - } - ], - "type": "table" - } - ], - "title": "📊 VictoriaMetrics Pod's Status", - "type": "row" - }, - { - "collapsed": true, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 51 - }, - "id": 104, - "panels": [ - { - "datasource": "Metrics", - "description": "Status of each HAProxy pod (Running = UP).", - "fieldConfig": { - "defaults": { - "color": { - "mode": "thresholds" - }, - "custom": { - "align": "center", - "cellOptions": { - "type": "color-background" - }, - "inspect": false - }, - "mappings": [ - { - "options": { - "0": { - "color": "red", - "index": 1, - "text": "DOWN" - } - }, - "type": "value" - }, - { - "options": { - "1": { - "color": "green", - "index": 0, - "text": "UP" - } - }, - "type": "value" + "properties": [ + { + "id": "custom.cellOptions", + "value": { + "type": "auto" } - ], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "red" - }, - { - "color": "green", - "value": 1 - } - ] } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Server" }, - "overrides": [ + "properties": [ { - "matcher": { - "id": "byName", - "options": "Pod" - }, - "properties": [ - { - "id": "custom.width", - "value": 400 - }, - { - "id": "custom.cellOptions", - "value": { - "type": "auto" - } - } - ] + "id": "custom.width", + "value": 200 } ] }, - "gridPos": { - "h": 5, - "w": 24, - "x": 0, - "y": 28 - }, - "id": 40, - "options": { - "cellHeight": "sm", - "footer": { - "countRows": false, - "fields": "", - "reducer": [ - "sum" - ], - "show": false - }, - "showHeader": true - }, - "pluginVersion": "11.6.4", - "targets": [ - { - "datasource": "Metrics", - "editorMode": "code", - "exemplar": false, - "expr": "max by(exported_pod) (kube_pod_status_phase{phase=\"Running\", exported_pod=~\"$haproxy_pod_regex\", exported_namespace=\"$namespace\"})", - "format": "table", - "instant": true, - "legendFormat": "__auto", - "range": false, - "refId": "Status" - } - ], - "title": "HAProxy Instances", - "transformations": [ - { - "id": "organize", - "options": { - "excludeByName": { - "Time": true - }, - "indexByName": { - "Value": 1, - "exported_pod": 0 - }, - "renameByName": { - "Value": "Status", - "exported_pod": "Pod" - } + { + "matcher": { + "id": "byName", + "options": "Status" + }, + "properties": [ + { + "id": "custom.width", + "value": 90 } - } + ] + } + ] + }, + "gridPos": { + "h": 10, + "w": 24, + "x": 0, + "y": 128 + }, + "id": 41, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" ], - "type": "table" + "show": false }, + "showHeader": true + }, + "pluginVersion": "11.6.4", + "targets": [ { "datasource": "Metrics", - "description": "UP/DOWN status of every HAProxy backend server.", - "fieldConfig": { - "defaults": { - "color": { - "mode": "thresholds" - }, - "custom": { - "align": "center", - "cellOptions": { - "type": "color-background" - }, - "inspect": false - }, - "mappings": [ - { - "options": { - "0": { - "color": "red", - "index": 1, - "text": "DOWN" - } - }, - "type": "value" - }, - { - "options": { - "1": { - "color": "green", - "index": 0, - "text": "UP" - } - }, - "type": "value" - } - ], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "red" - }, - { - "color": "green", - "value": 1 - } - ] - } - }, - "overrides": [ - { - "matcher": { - "id": "byName", - "options": "Service" - }, - "properties": [ - { - "id": "custom.width", - "value": 300 - }, - { - "id": "custom.cellOptions", - "value": { - "type": "auto" - } - } - ] - }, - { - "matcher": { - "id": "byName", - "options": "Backend" - }, - "properties": [ - { - "id": "custom.width", - "value": 150 - }, - { - "id": "custom.cellOptions", - "value": { - "type": "auto" - } - } - ] - } - ] - }, - "gridPos": { - "h": 5, - "w": 24, - "x": 0, - "y": 33 - }, - "id": 41, + "editorMode": "code", + "exemplar": false, + "expr": "max by(service_name, proxy, server) (haproxy_server_status)", + "format": "table", + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "Backend" + } + ], + "title": "HAProxy Backend Servers", + "transformations": [ + { + "id": "organize", "options": { - "cellHeight": "sm", - "footer": { - "countRows": false, - "fields": "", - "reducer": [ - "sum" - ], - "show": false - }, - "showHeader": true - }, - "pluginVersion": "11.6.4", - "targets": [ - { - "datasource": "Metrics", - "editorMode": "code", - "exemplar": false, - "expr": "max by(service_name, proxy, server) (haproxy_server_status)", - "format": "table", - "instant": true, - "legendFormat": "__auto", - "range": false, - "refId": "Backend" - } - ], - "title": "HAProxy Backend Servers", - "transformations": [ - { - "id": "organize", - "options": { - "excludeByName": { - "Time": true - }, - "indexByName": { - "Value": 3, - "proxy": 1, - "server": 2, - "service_name": 0 - }, - "renameByName": { - "Value": "Status", - "proxy": "Backend", - "server": "Server", - "service_name": "Service" - } - } + "excludeByName": { + "Time": true + }, + "indexByName": { + "Value": 3, + "proxy": 1, + "server": 2, + "service_name": 0 + }, + "renameByName": { + "Value": "Status", + "proxy": "Backend", + "server": "Server", + "service_name": "Service" } - ], - "type": "table" + } } ], - "title": "⚖️ HAProxy Pod's Status", - "type": "row" + "type": "table" } ], "preload": false, From be3e335d55556025064d1826a2b912937840c097 Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Thu, 23 Jul 2026 15:22:14 +0100 Subject: [PATCH 03/11] chore: improve layout --- .../PMM Health/PMM_HA_Health_Overview.json | 166 ++++++++++-------- 1 file changed, 93 insertions(+), 73 deletions(-) diff --git a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json index 2c789568b45..cf87ecbd03f 100644 --- a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json +++ b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json @@ -32,7 +32,7 @@ }, "id": 200, "panels": [], - "title": "\ud83d\udcca Overview", + "title": "📊 Overview", "type": "row" }, { @@ -6855,7 +6855,7 @@ }, "gridPos": { "h": 4, - "w": 4.8, + "w": 8, "x": 0, "y": 1 }, @@ -6901,7 +6901,7 @@ "refId": "B" } ], - "title": "\ud83e\udded PMM", + "title": "🧭 PMM", "type": "stat" }, { @@ -13724,8 +13724,8 @@ }, "gridPos": { "h": 4, - "w": 4.8, - "x": 4.8, + "w": 8, + "x": 8, "y": 1 }, "id": 1, @@ -13770,7 +13770,7 @@ "refId": "B" } ], - "title": "\ud83d\udc18 PostgreSQL", + "title": "🐘 PostgreSQL", "type": "stat" }, { @@ -20593,8 +20593,8 @@ }, "gridPos": { "h": 4, - "w": 4.8, - "x": 9.6, + "w": 8, + "x": 16, "y": 1 }, "id": 2, @@ -20639,7 +20639,7 @@ "refId": "B" } ], - "title": "\ud83d\uddb1\ufe0f ClickHouse", + "title": "🖱️ ClickHouse", "type": "stat" }, { @@ -27462,9 +27462,9 @@ }, "gridPos": { "h": 4, - "w": 4.8, - "x": 14.4, - "y": 1 + "w": 8, + "x": 0, + "y": 5 }, "id": 3, "options": { @@ -27508,7 +27508,7 @@ "refId": "B" } ], - "title": "\ud83d\udcca VictoriaMetrics", + "title": "📊 VictoriaMetrics", "type": "stat" }, { @@ -34331,9 +34331,9 @@ }, "gridPos": { "h": 4, - "w": 4.8, - "x": 19.2, - "y": 1 + "w": 8, + "x": 8, + "y": 5 }, "id": 4, "options": { @@ -34377,7 +34377,7 @@ "refId": "B" } ], - "title": "\u2696\ufe0f HAProxy", + "title": "⚖️ HAProxy", "type": "stat" }, { @@ -34415,7 +34415,7 @@ "h": 8, "w": 12, "x": 0, - "y": 13 + "y": 17 }, "id": 201, "options": { @@ -34444,7 +34444,7 @@ "refId": "A" } ], - "title": "\ud83c\udfaf Overall System Health", + "title": "🎯 Overall System Health", "type": "gauge" }, { @@ -34472,7 +34472,7 @@ "h": 8, "w": 12, "x": 12, - "y": 13 + "y": 17 }, "id": 202, "options": { @@ -34515,7 +34515,7 @@ "refId": "B" } ], - "title": "\ud83d\udd22 Pod Count", + "title": "🔢 Pod Count", "type": "stat" }, { @@ -34548,9 +34548,9 @@ "overrides": [] }, "gridPos": { - "h": 8, - "w": 12, - "x": 0, + "h": 4, + "w": 8, + "x": 16, "y": 5 }, "id": 203, @@ -34585,7 +34585,7 @@ "refId": "A" } ], - "title": "\ud83d\udd04 Pod Restarts", + "title": "🔄 Pod Restarts", "type": "stat" }, { @@ -34644,9 +34644,9 @@ }, "gridPos": { "h": 8, - "w": 12, - "x": 12, - "y": 5 + "w": 24, + "x": 0, + "y": 9 }, "id": 204, "options": { @@ -34675,7 +34675,7 @@ "refId": "A" } ], - "title": "\u26a0\ufe0f Pods with Restarts", + "title": "⚠️ Pods with Restarts", "transformations": [ { "id": "organize", @@ -34722,7 +34722,7 @@ "h": 5, "w": 6, "x": 0, - "y": 21 + "y": 25 }, "id": 213, "options": { @@ -34792,7 +34792,7 @@ "h": 5, "w": 6, "x": 6, - "y": 21 + "y": 25 }, "id": 214, "options": { @@ -34864,7 +34864,7 @@ "h": 5, "w": 12, "x": 12, - "y": 21 + "y": 25 }, "id": 215, "options": { @@ -34944,11 +34944,11 @@ "h": 1, "w": 24, "x": 0, - "y": 26 + "y": 30 }, "id": 205, "panels": [], - "title": "\ud83d\udcbb Resource Usage", + "title": "💻 Resource Usage", "type": "row" }, { @@ -35013,7 +35013,7 @@ "h": 8, "w": 12, "x": 0, - "y": 27 + "y": 31 }, "id": 6, "options": { @@ -35044,7 +35044,7 @@ "refId": "A" } ], - "title": "\ud83e\uddee CPU Usage", + "title": "🧮 CPU Usage", "type": "timeseries" }, { @@ -35109,7 +35109,7 @@ "h": 8, "w": 12, "x": 12, - "y": 27 + "y": 31 }, "id": 206, "options": { @@ -35140,7 +35140,7 @@ "refId": "A" } ], - "title": "\ud83d\udcbe Memory Usage", + "title": "💾 Memory Usage", "type": "timeseries" }, { @@ -35149,11 +35149,11 @@ "h": 1, "w": 24, "x": 0, - "y": 35 + "y": 39 }, "id": 207, "panels": [], - "title": "\ud83d\udcbf Storage Usage", + "title": "💿 Storage Usage", "type": "row" }, { @@ -35191,7 +35191,7 @@ "h": 6, "w": 8, "x": 0, - "y": 36 + "y": 40 }, "id": 208, "options": { @@ -35220,7 +35220,7 @@ "refId": "A" } ], - "title": "\ud83d\udc18 PostgreSQL Storage", + "title": "🐘 PostgreSQL Storage", "type": "gauge" }, { @@ -35258,7 +35258,7 @@ "h": 6, "w": 8, "x": 8, - "y": 36 + "y": 40 }, "id": 209, "options": { @@ -35287,7 +35287,7 @@ "refId": "A" } ], - "title": "\ud83d\uddb1\ufe0f ClickHouse Storage", + "title": "🖱️ ClickHouse Storage", "type": "gauge" }, { @@ -35325,7 +35325,7 @@ "h": 6, "w": 8, "x": 16, - "y": 36 + "y": 40 }, "id": 210, "options": { @@ -35354,7 +35354,7 @@ "refId": "A" } ], - "title": "\ud83d\udcca VictoriaMetrics Storage", + "title": "📊 VictoriaMetrics Storage", "type": "gauge" }, { @@ -35363,11 +35363,11 @@ "h": 1, "w": 24, "x": 0, - "y": 42 + "y": 46 }, "id": 211, "panels": [], - "title": "\ud83d\udcc8 Service Availability", + "title": "📈 Service Availability", "type": "row" }, { @@ -35422,7 +35422,7 @@ "h": 8, "w": 24, "x": 0, - "y": 43 + "y": 47 }, "id": 212, "options": { @@ -35447,7 +35447,7 @@ "datasource": "Metrics", "editorMode": "code", "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "\ud83e\udded PMM", + "legendFormat": "🧭 PMM", "range": true, "refId": "PMM" }, @@ -35455,7 +35455,7 @@ "datasource": "Metrics", "editorMode": "code", "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}|$health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}|$health_exclude_regex).*\"})\n) * 100", - "legendFormat": "\ud83d\udc18 PostgreSQL", + "legendFormat": "🐘 PostgreSQL", "range": true, "refId": "PostgreSQL" }, @@ -35463,7 +35463,7 @@ "datasource": "Metrics", "editorMode": "code", "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "\ud83d\uddb1\ufe0f ClickHouse", + "legendFormat": "🖱️ ClickHouse", "range": true, "refId": "ClickHouse" }, @@ -35471,7 +35471,7 @@ "datasource": "Metrics", "editorMode": "code", "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "\ud83d\udcca VictoriaMetrics", + "legendFormat": "📊 VictoriaMetrics", "range": true, "refId": "VictoriaMetrics" }, @@ -35479,12 +35479,12 @@ "datasource": "Metrics", "editorMode": "code", "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "\u2696\ufe0f HAProxy", + "legendFormat": "⚖️ HAProxy", "range": true, "refId": "HAProxy" } ], - "title": "\u23f1\ufe0f Service Availability by Component", + "title": "⏱️ Service Availability by Component", "type": "state-timeline" }, { @@ -35493,11 +35493,11 @@ "h": 1, "w": 24, "x": 0, - "y": 51 + "y": 55 }, "id": 105, "panels": [], - "title": "\ud83e\udded PMM Pod's Status", + "title": "🧭 PMM Pod's Status", "type": "row" }, { @@ -35619,7 +35619,7 @@ "h": 10, "w": 24, "x": 0, - "y": 52 + "y": 56 }, "id": 50, "options": { @@ -35696,11 +35696,11 @@ "h": 1, "w": 24, "x": 0, - "y": 62 + "y": 66 }, "id": 101, "panels": [], - "title": "\ud83d\udc18 PostgreSQL Pod's Status", + "title": "🐘 PostgreSQL Pod's Status", "type": "row" }, { @@ -35820,6 +35820,16 @@ } }, "type": "value" + }, + { + "type": "value", + "options": { + "-1": { + "text": "No data", + "color": "text", + "index": 99 + } + } } ] } @@ -35848,6 +35858,16 @@ } }, "type": "value" + }, + { + "type": "value", + "options": { + "-1": { + "text": "No data", + "color": "text", + "index": 99 + } + } } ] } @@ -35859,7 +35879,7 @@ "h": 10, "w": 24, "x": 0, - "y": 63 + "y": 67 }, "id": 10, "options": { @@ -35891,7 +35911,7 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "max by(exported_pod) (\n label_replace(max by(name) (patroni_primary), \"exported_pod\", \"$1\", \"name\", \"(.*)\")\n or\n label_replace(\n max by(node_name) (1 - clamp_max(pg_replication_is_replica, 1)),\n \"exported_pod\", \"$1\", \"node_name\", \".*(${release}-pg-db-[a-zA-Z0-9-]+)\"\n )\n)", + "expr": "max by(exported_pod) (\n label_replace(max by(name) (patroni_primary), \"exported_pod\", \"$1\", \"name\", \"(.*)\")\n or\n label_replace(\n max by(node_name) (1 - clamp_max(pg_replication_is_replica, 1)),\n \"exported_pod\", \"$1\", \"node_name\", \".*(${release}-pg-db-[a-zA-Z0-9-]+)\"\n )\n or\n (max by(exported_pod) (\n kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}\n ) * 0 - 1)\n)", "format": "table", "instant": true, "legendFormat": "__auto", @@ -35902,7 +35922,7 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "max by(exported_pod) (\n label_replace(\n max by(name) (patroni_postgres_streaming) + on(name) max by(name) (patroni_primary),\n \"exported_pod\", \"$1\", \"name\", \"(.*)\"\n )\n or\n label_replace(\n max by(node_name) (\n (1 - clamp_max(pg_replication_is_replica, 1))\n +\n (clamp_max(pg_replication_is_replica, 1) * (pg_replication_lag_seconds < bool 60))\n ),\n \"exported_pod\", \"$1\", \"node_name\", \".*(${release}-pg-db-[a-zA-Z0-9-]+)\"\n )\n)", + "expr": "max by(exported_pod) (\n label_replace(\n max by(name) (patroni_postgres_streaming) + on(name) max by(name) (patroni_primary),\n \"exported_pod\", \"$1\", \"name\", \"(.*)\"\n )\n or\n label_replace(\n max by(node_name) (\n (1 - clamp_max(pg_replication_is_replica, 1))\n +\n (clamp_max(pg_replication_is_replica, 1) * (pg_replication_lag_seconds < bool 60))\n ),\n \"exported_pod\", \"$1\", \"node_name\", \".*(${release}-pg-db-[a-zA-Z0-9-]+)\"\n )\n or\n (max by(exported_pod) (\n kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}\n ) * 0 - 1)\n)", "format": "table", "instant": true, "legendFormat": "__auto", @@ -35950,11 +35970,11 @@ "h": 1, "w": 24, "x": 0, - "y": 73 + "y": 77 }, "id": 102, "panels": [], - "title": "\ud83d\uddb1\ufe0f ClickHouse Pod's Status", + "title": "🖱️ ClickHouse Pod's Status", "type": "row" }, { @@ -36102,7 +36122,7 @@ "h": 20, "w": 24, "x": 0, - "y": 74 + "y": 78 }, "id": 20, "options": { @@ -36181,11 +36201,11 @@ "h": 1, "w": 24, "x": 0, - "y": 94 + "y": 98 }, "id": 103, "panels": [], - "title": "\ud83d\udcca VictoriaMetrics Pod's Status", + "title": "📊 VictoriaMetrics Pod's Status", "type": "row" }, { @@ -36293,7 +36313,7 @@ "h": 22, "w": 24, "x": 0, - "y": 95 + "y": 99 }, "id": 30, "options": { @@ -36362,11 +36382,11 @@ "h": 1, "w": 24, "x": 0, - "y": 117 + "y": 121 }, "id": 104, "panels": [], - "title": "\u2696\ufe0f HAProxy Pod's Status", + "title": "⚖️ HAProxy Pod's Status", "type": "row" }, { @@ -36452,7 +36472,7 @@ "h": 10, "w": 24, "x": 0, - "y": 118 + "y": 122 }, "id": 40, "options": { @@ -36615,7 +36635,7 @@ "h": 10, "w": 24, "x": 0, - "y": 128 + "y": 132 }, "id": 41, "options": { From 31c36456ce2030d1a95dc1e04c19e0cff4dd3a61 Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Fri, 24 Jul 2026 18:13:17 +0100 Subject: [PATCH 04/11] chore: improve layout --- .../PMM Health/PMM_HA_Health_Overview.json | 90 +++++++++---------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json index cf87ecbd03f..650255dbfd2 100644 --- a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json +++ b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json @@ -32,7 +32,7 @@ }, "id": 200, "panels": [], - "title": "📊 Overview", + "title": "\ud83d\udcca Overview", "type": "row" }, { @@ -6864,7 +6864,7 @@ "colorMode": "background", "graphMode": "none", "justifyMode": "center", - "orientation": "auto", + "orientation": "vertical", "percentChangeColorMode": "standard", "reduceOptions": { "calcs": [ @@ -6875,7 +6875,7 @@ }, "showPercentChange": false, "textMode": "value_and_name", - "wideLayout": true, + "wideLayout": false, "text": { "valueSize": 24 } @@ -6901,7 +6901,7 @@ "refId": "B" } ], - "title": "🧭 PMM", + "title": "\ud83e\udded PMM", "type": "stat" }, { @@ -13733,7 +13733,7 @@ "colorMode": "background", "graphMode": "none", "justifyMode": "center", - "orientation": "auto", + "orientation": "vertical", "percentChangeColorMode": "standard", "reduceOptions": { "calcs": [ @@ -13744,7 +13744,7 @@ }, "showPercentChange": false, "textMode": "value_and_name", - "wideLayout": true, + "wideLayout": false, "text": { "valueSize": 24 } @@ -13770,7 +13770,7 @@ "refId": "B" } ], - "title": "🐘 PostgreSQL", + "title": "\ud83d\udc18 PostgreSQL", "type": "stat" }, { @@ -20602,7 +20602,7 @@ "colorMode": "background", "graphMode": "none", "justifyMode": "center", - "orientation": "auto", + "orientation": "vertical", "percentChangeColorMode": "standard", "reduceOptions": { "calcs": [ @@ -20613,7 +20613,7 @@ }, "showPercentChange": false, "textMode": "value_and_name", - "wideLayout": true, + "wideLayout": false, "text": { "valueSize": 24 } @@ -20639,7 +20639,7 @@ "refId": "B" } ], - "title": "🖱️ ClickHouse", + "title": "\ud83d\uddb1\ufe0f ClickHouse", "type": "stat" }, { @@ -27471,7 +27471,7 @@ "colorMode": "background", "graphMode": "none", "justifyMode": "center", - "orientation": "auto", + "orientation": "vertical", "percentChangeColorMode": "standard", "reduceOptions": { "calcs": [ @@ -27482,7 +27482,7 @@ }, "showPercentChange": false, "textMode": "value_and_name", - "wideLayout": true, + "wideLayout": false, "text": { "valueSize": 24 } @@ -27508,7 +27508,7 @@ "refId": "B" } ], - "title": "📊 VictoriaMetrics", + "title": "\ud83d\udcca VictoriaMetrics", "type": "stat" }, { @@ -34340,7 +34340,7 @@ "colorMode": "background", "graphMode": "none", "justifyMode": "center", - "orientation": "auto", + "orientation": "vertical", "percentChangeColorMode": "standard", "reduceOptions": { "calcs": [ @@ -34351,7 +34351,7 @@ }, "showPercentChange": false, "textMode": "value_and_name", - "wideLayout": true, + "wideLayout": false, "text": { "valueSize": 24 } @@ -34377,7 +34377,7 @@ "refId": "B" } ], - "title": "⚖️ HAProxy", + "title": "\u2696\ufe0f HAProxy", "type": "stat" }, { @@ -34415,7 +34415,7 @@ "h": 8, "w": 12, "x": 0, - "y": 17 + "y": 14 }, "id": 201, "options": { @@ -34444,7 +34444,7 @@ "refId": "A" } ], - "title": "🎯 Overall System Health", + "title": "\ud83c\udfaf Overall System Health", "type": "gauge" }, { @@ -34472,7 +34472,7 @@ "h": 8, "w": 12, "x": 12, - "y": 17 + "y": 14 }, "id": 202, "options": { @@ -34515,7 +34515,7 @@ "refId": "B" } ], - "title": "🔢 Pod Count", + "title": "\ud83d\udd22 Pod Count", "type": "stat" }, { @@ -34585,7 +34585,7 @@ "refId": "A" } ], - "title": "🔄 Pod Restarts", + "title": "\ud83d\udd04 Pod Restarts", "type": "stat" }, { @@ -34646,7 +34646,7 @@ "h": 8, "w": 24, "x": 0, - "y": 9 + "y": 22 }, "id": 204, "options": { @@ -34675,7 +34675,7 @@ "refId": "A" } ], - "title": "⚠️ Pods with Restarts", + "title": "\u26a0\ufe0f Pods with Restarts", "transformations": [ { "id": "organize", @@ -34722,7 +34722,7 @@ "h": 5, "w": 6, "x": 0, - "y": 25 + "y": 9 }, "id": 213, "options": { @@ -34792,7 +34792,7 @@ "h": 5, "w": 6, "x": 6, - "y": 25 + "y": 9 }, "id": 214, "options": { @@ -34864,7 +34864,7 @@ "h": 5, "w": 12, "x": 12, - "y": 25 + "y": 9 }, "id": 215, "options": { @@ -34948,7 +34948,7 @@ }, "id": 205, "panels": [], - "title": "💻 Resource Usage", + "title": "\ud83d\udcbb Resource Usage", "type": "row" }, { @@ -35044,7 +35044,7 @@ "refId": "A" } ], - "title": "🧮 CPU Usage", + "title": "\ud83e\uddee CPU Usage", "type": "timeseries" }, { @@ -35140,7 +35140,7 @@ "refId": "A" } ], - "title": "💾 Memory Usage", + "title": "\ud83d\udcbe Memory Usage", "type": "timeseries" }, { @@ -35153,7 +35153,7 @@ }, "id": 207, "panels": [], - "title": "💿 Storage Usage", + "title": "\ud83d\udcbf Storage Usage", "type": "row" }, { @@ -35220,7 +35220,7 @@ "refId": "A" } ], - "title": "🐘 PostgreSQL Storage", + "title": "\ud83d\udc18 PostgreSQL Storage", "type": "gauge" }, { @@ -35287,7 +35287,7 @@ "refId": "A" } ], - "title": "🖱️ ClickHouse Storage", + "title": "\ud83d\uddb1\ufe0f ClickHouse Storage", "type": "gauge" }, { @@ -35354,7 +35354,7 @@ "refId": "A" } ], - "title": "📊 VictoriaMetrics Storage", + "title": "\ud83d\udcca VictoriaMetrics Storage", "type": "gauge" }, { @@ -35367,7 +35367,7 @@ }, "id": 211, "panels": [], - "title": "📈 Service Availability", + "title": "\ud83d\udcc8 Service Availability", "type": "row" }, { @@ -35447,7 +35447,7 @@ "datasource": "Metrics", "editorMode": "code", "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "🧭 PMM", + "legendFormat": "\ud83e\udded PMM", "range": true, "refId": "PMM" }, @@ -35455,7 +35455,7 @@ "datasource": "Metrics", "editorMode": "code", "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}|$health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}|$health_exclude_regex).*\"})\n) * 100", - "legendFormat": "🐘 PostgreSQL", + "legendFormat": "\ud83d\udc18 PostgreSQL", "range": true, "refId": "PostgreSQL" }, @@ -35463,7 +35463,7 @@ "datasource": "Metrics", "editorMode": "code", "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "🖱️ ClickHouse", + "legendFormat": "\ud83d\uddb1\ufe0f ClickHouse", "range": true, "refId": "ClickHouse" }, @@ -35471,7 +35471,7 @@ "datasource": "Metrics", "editorMode": "code", "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "📊 VictoriaMetrics", + "legendFormat": "\ud83d\udcca VictoriaMetrics", "range": true, "refId": "VictoriaMetrics" }, @@ -35479,12 +35479,12 @@ "datasource": "Metrics", "editorMode": "code", "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", - "legendFormat": "⚖️ HAProxy", + "legendFormat": "\u2696\ufe0f HAProxy", "range": true, "refId": "HAProxy" } ], - "title": "⏱️ Service Availability by Component", + "title": "\u23f1\ufe0f Service Availability by Component", "type": "state-timeline" }, { @@ -35497,7 +35497,7 @@ }, "id": 105, "panels": [], - "title": "🧭 PMM Pod's Status", + "title": "\ud83e\udded PMM Pod's Status", "type": "row" }, { @@ -35700,7 +35700,7 @@ }, "id": 101, "panels": [], - "title": "🐘 PostgreSQL Pod's Status", + "title": "\ud83d\udc18 PostgreSQL Pod's Status", "type": "row" }, { @@ -35974,7 +35974,7 @@ }, "id": 102, "panels": [], - "title": "🖱️ ClickHouse Pod's Status", + "title": "\ud83d\uddb1\ufe0f ClickHouse Pod's Status", "type": "row" }, { @@ -36205,7 +36205,7 @@ }, "id": 103, "panels": [], - "title": "📊 VictoriaMetrics Pod's Status", + "title": "\ud83d\udcca VictoriaMetrics Pod's Status", "type": "row" }, { @@ -36386,7 +36386,7 @@ }, "id": 104, "panels": [], - "title": "⚖️ HAProxy Pod's Status", + "title": "\u2696\ufe0f HAProxy Pod's Status", "type": "row" }, { From db0e3591188612d415d7e4d17b19b975d596f9cc Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Mon, 27 Jul 2026 10:38:26 +0100 Subject: [PATCH 05/11] chore: remove unstyled leader from sidebar --- .../pmm/src/contexts/navigation/navigation.constants.ts | 6 ------ ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx | 7 +------ 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/ui/apps/pmm/src/contexts/navigation/navigation.constants.ts b/ui/apps/pmm/src/contexts/navigation/navigation.constants.ts index 816657ede23..3b2a4f4d186 100644 --- a/ui/apps/pmm/src/contexts/navigation/navigation.constants.ts +++ b/ui/apps/pmm/src/contexts/navigation/navigation.constants.ts @@ -795,12 +795,6 @@ export const NAV_HIGH_AVAILABILITY_OVERVIEW: NavItem = { url: `${PMM_NEW_NAV_GRAFANA_PATH}/d/pmm-ha-health-overview/pmm-ha-overview`, }; -export const NAV_HIGH_AVAILABILITY_LEADER: NavItem = { - id: 'high-availability-leader', - text: 'Leader:', - type: 'menu-text', -}; - export const NAV_HIGH_AVAILABILITY_NODES: NavItem = { id: 'high-availability-nodes', icon: 'arrow-link', diff --git a/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx b/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx index f64d82c6882..87e95faa43e 100644 --- a/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx +++ b/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx @@ -43,7 +43,6 @@ import { NAV_HIGH_AVAILABILITY, NAV_USERS_AND_ACCESS, NAV_ACCESS_CONTROL, - NAV_HIGH_AVAILABILITY_LEADER, NAV_HIGH_AVAILABILITY_NODES, NAV_HIGH_AVAILABILITY_OVERVIEW, NAV_HOME_PAGE, @@ -250,7 +249,7 @@ export const addConfiguration = ( return NAV_CONFIGURATION; }; -export const addHighAvailability = ({ health, leader }: HAInfo): NavItem => { +export const addHighAvailability = ({ health }: HAInfo): NavItem => { const item = { ...NAV_HIGH_AVAILABILITY }; item.badge = ; @@ -258,10 +257,6 @@ export const addHighAvailability = ({ health, leader }: HAInfo): NavItem => { item.badgeAlwaysVisible = true; item.children = [ - { - ...NAV_HIGH_AVAILABILITY_LEADER, - secondaryText: leader?.nodeName || 'Unknown', - }, NAV_HIGH_AVAILABILITY_OVERVIEW, NAV_HIGH_AVAILABILITY_NODES, ]; From e70a050eeaedd60fd411c9dcb9563d593f12a8bc Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Mon, 27 Jul 2026 10:44:02 +0100 Subject: [PATCH 06/11] chore: format --- ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx b/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx index 87e95faa43e..4ab078ea675 100644 --- a/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx +++ b/ui/apps/pmm/src/contexts/navigation/navigation.utils.tsx @@ -256,10 +256,7 @@ export const addHighAvailability = ({ health }: HAInfo): NavItem => { item.icon = ; item.badgeAlwaysVisible = true; - item.children = [ - NAV_HIGH_AVAILABILITY_OVERVIEW, - NAV_HIGH_AVAILABILITY_NODES, - ]; + item.children = [NAV_HIGH_AVAILABILITY_OVERVIEW, NAV_HIGH_AVAILABILITY_NODES]; return item; }; From 368c6f572686edb7847b670721a73953ea777c54 Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Tue, 28 Jul 2026 12:19:58 +0100 Subject: [PATCH 07/11] chore: improve namespace filtering --- .../PMM Health/PMM_HA_Health_Overview.json | 79 +++++++++++++------ 1 file changed, 53 insertions(+), 26 deletions(-) diff --git a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json index 650255dbfd2..18771a17f82 100644 --- a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json +++ b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json @@ -34750,7 +34750,7 @@ { "datasource": "Metrics", "editorMode": "code", - "expr": "(max by(node_id) (pmm_ha_leader_status) == 1) or (label_replace(vector(0), \"node_id\", \"No active instance\", \"\", \"\") unless on() (max(pmm_ha_leader_status) == 1))", + "expr": "(\n max by(node_id) (\n (pmm_ha_leader_status == 1)\n and on(node_id)\n label_replace(\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-${pmm_suffix_regex}\"\n },\n \"node_id\", \"$1\", \"exported_pod\", \"(.*)\"\n )\n )\n)\nor (\n label_replace(vector(0), \"node_id\", \"No active instance\", \"\", \"\")\n unless on() (\n max(\n (pmm_ha_leader_status == 1)\n and on(node_id)\n label_replace(\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-${pmm_suffix_regex}\"\n },\n \"node_id\", \"$1\", \"exported_pod\", \"(.*)\"\n )\n ) == 1\n )\n)", "instant": true, "legendFormat": "{{node_id}}", "range": false, @@ -34770,7 +34770,7 @@ "mode": "fixed" }, "mappings": [], - "noValue": "No primary", + "noValue": "No active instance", "thresholds": { "mode": "absolute", "steps": [ @@ -34820,7 +34820,7 @@ { "datasource": "Metrics", "editorMode": "code", - "expr": "max by(name) (patroni_primary) == 1", + "expr": "(\n max by(name) (\n (patroni_primary == 1)\n and on(name)\n label_replace(\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-pg-db-.*\",\n exported_pod!~\".*(${pg_exclude_regex}).*\"\n },\n \"name\", \"$1\", \"exported_pod\", \"(.*)\"\n )\n )\n)\nor (\n label_replace(vector(0), \"name\", \"No active instance\", \"\", \"\")\n unless on() (\n max(\n (patroni_primary == 1)\n and on(name)\n label_replace(\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-pg-db-.*\",\n exported_pod!~\".*(${pg_exclude_regex}).*\"\n },\n \"name\", \"$1\", \"exported_pod\", \"(.*)\"\n )\n ) == 1\n )\n)", "instant": true, "legendFormat": "{{name}}", "range": false, @@ -35376,19 +35376,40 @@ "fieldConfig": { "defaults": { "color": { - "mode": "thresholds" + "mode": "palette-classic" }, "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", "axisPlacement": "auto", - "fillOpacity": 70, + "barAlignment": 0, + "barWidthFactor": 0.6, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "none", "hideFrom": { "legend": false, "tooltip": false, "viz": false }, "insertNulls": false, - "lineWidth": 0, - "spanNulls": false + "lineInterpolation": "linear", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } }, "mappings": [], "max": 100, @@ -35414,7 +35435,8 @@ } ] }, - "unit": "percent" + "unit": "percent", + "noValue": "No data" }, "overrides": [] }, @@ -35426,18 +35448,18 @@ }, "id": 212, "options": { - "alignValue": "left", "legend": { - "displayMode": "list", + "calcs": [ + "mean", + "lastNotNull" + ], + "displayMode": "table", "placement": "bottom", "showLegend": true }, - "mergeValues": true, - "rowHeight": 0.9, - "showValue": "auto", "tooltip": { "hideZeros": false, - "mode": "single", + "mode": "multi", "sort": "none" } }, @@ -35449,7 +35471,8 @@ "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${pmm_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", "legendFormat": "\ud83e\udded PMM", "range": true, - "refId": "PMM" + "refId": "PMM", + "instant": false }, { "datasource": "Metrics", @@ -35457,7 +35480,8 @@ "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}|$health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}|$health_exclude_regex).*\"})\n) * 100", "legendFormat": "\ud83d\udc18 PostgreSQL", "range": true, - "refId": "PostgreSQL" + "refId": "PostgreSQL", + "instant": false }, { "datasource": "Metrics", @@ -35465,7 +35489,8 @@ "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-${clickhouse_suffix_regex}\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", "legendFormat": "\ud83d\uddb1\ufe0f ClickHouse", "range": true, - "refId": "ClickHouse" + "refId": "ClickHouse", + "instant": false }, { "datasource": "Metrics", @@ -35473,7 +35498,8 @@ "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${vm_suffix_regex}.*${release}.*\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", "legendFormat": "\ud83d\udcca VictoriaMetrics", "range": true, - "refId": "VictoriaMetrics" + "refId": "VictoriaMetrics", + "instant": false }, { "datasource": "Metrics", @@ -35481,11 +35507,12 @@ "expr": "(\n count(kube_pod_status_phase{phase=\"Running\", exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\", exported_pod!~\".*($health_exclude_regex).*\"} == 1)\n /\n count(kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"$haproxy_pod_regex\", exported_pod!~\".*($health_exclude_regex).*\"})\n) * 100", "legendFormat": "\u2696\ufe0f HAProxy", "range": true, - "refId": "HAProxy" + "refId": "HAProxy", + "instant": false } ], "title": "\u23f1\ufe0f Service Availability by Component", - "type": "state-timeline" + "type": "timeseries" }, { "collapsed": false, @@ -35651,7 +35678,7 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "label_replace(max by(node_id) (pmm_ha_leader_status), \"exported_pod\", \"$1\", \"node_id\", \"(.*)\")", + "expr": "label_replace(\n max by(node_id) (\n (pmm_ha_leader_status == 1)\n and on(node_id)\n label_replace(\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-${pmm_suffix_regex}\"\n },\n \"node_id\", \"$1\", \"exported_pod\", \"(.*)\"\n )\n ),\n \"exported_pod\", \"$1\", \"node_id\", \"(.*)\"\n)", "format": "table", "instant": true, "legendFormat": "__auto", @@ -35911,7 +35938,7 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "max by(exported_pod) (\n label_replace(max by(name) (patroni_primary), \"exported_pod\", \"$1\", \"name\", \"(.*)\")\n or\n label_replace(\n max by(node_name) (1 - clamp_max(pg_replication_is_replica, 1)),\n \"exported_pod\", \"$1\", \"node_name\", \".*(${release}-pg-db-[a-zA-Z0-9-]+)\"\n )\n or\n (max by(exported_pod) (\n kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}\n ) * 0 - 1)\n)", + "expr": "max by(exported_pod) (\n (\n (\n label_replace(max by(name) (patroni_primary), \"exported_pod\", \"$1\", \"name\", \"(.*)\")\n or\n label_replace(\n max by(node_name) (1 - clamp_max(pg_replication_is_replica, 1)),\n \"exported_pod\", \"$1\", \"node_name\", \".*(${release}-pg-db-[a-zA-Z0-9-]+)\"\n )\n )\n and on(exported_pod)\n max by(exported_pod) (\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-pg-db-.*\",\n exported_pod!~\".*(${pg_exclude_regex}).*\"\n }\n )\n )\n or\n (max by(exported_pod) (\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-pg-db-.*\",\n exported_pod!~\".*(${pg_exclude_regex}).*\"\n }\n ) * 0 - 1)\n)", "format": "table", "instant": true, "legendFormat": "__auto", @@ -35922,7 +35949,7 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "max by(exported_pod) (\n label_replace(\n max by(name) (patroni_postgres_streaming) + on(name) max by(name) (patroni_primary),\n \"exported_pod\", \"$1\", \"name\", \"(.*)\"\n )\n or\n label_replace(\n max by(node_name) (\n (1 - clamp_max(pg_replication_is_replica, 1))\n +\n (clamp_max(pg_replication_is_replica, 1) * (pg_replication_lag_seconds < bool 60))\n ),\n \"exported_pod\", \"$1\", \"node_name\", \".*(${release}-pg-db-[a-zA-Z0-9-]+)\"\n )\n or\n (max by(exported_pod) (\n kube_pod_info{exported_namespace=\"$namespace\", exported_pod=~\"${release}-pg-db-.*\", exported_pod!~\".*(${pg_exclude_regex}).*\"}\n ) * 0 - 1)\n)", + "expr": "max by(exported_pod) (\n (\n (\n label_replace(\n max by(name) (patroni_postgres_streaming) + on(name) max by(name) (patroni_primary),\n \"exported_pod\", \"$1\", \"name\", \"(.*)\"\n )\n or\n label_replace(\n max by(node_name) (\n (1 - clamp_max(pg_replication_is_replica, 1))\n +\n (clamp_max(pg_replication_is_replica, 1) * (pg_replication_lag_seconds < bool 60))\n ),\n \"exported_pod\", \"$1\", \"node_name\", \".*(${release}-pg-db-[a-zA-Z0-9-]+)\"\n )\n )\n and on(exported_pod)\n max by(exported_pod) (\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-pg-db-.*\",\n exported_pod!~\".*(${pg_exclude_regex}).*\"\n }\n )\n )\n or\n (max by(exported_pod) (\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-pg-db-.*\",\n exported_pod!~\".*(${pg_exclude_regex}).*\"\n }\n ) * 0 - 1)\n)", "format": "table", "instant": true, "legendFormat": "__auto", @@ -36656,7 +36683,7 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "max by(service_name, proxy, server) (haproxy_server_status)", + "expr": "max by(service, proxy, server) (\n haproxy_server_status{\n namespace=\"$namespace\",\n service=~\"${release}-.*\"\n }\n)", "format": "table", "instant": true, "legendFormat": "__auto", @@ -36676,13 +36703,13 @@ "Value": 3, "proxy": 1, "server": 2, - "service_name": 0 + "service": 0 }, "renameByName": { "Value": "Status", "proxy": "Backend", "server": "Server", - "service_name": "Service" + "service": "Service" } } } From d5a27b99448a7bf36ce27ed34668940b4b729aec Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Tue, 28 Jul 2026 12:29:31 +0100 Subject: [PATCH 08/11] chore: change layout --- .../PMM Health/PMM_HA_Health_Overview.json | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json index 18771a17f82..8cd776341eb 100644 --- a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json +++ b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json @@ -6856,7 +6856,7 @@ "gridPos": { "h": 4, "w": 8, - "x": 0, + "x": 8, "y": 1 }, "id": 5, @@ -13725,7 +13725,7 @@ "gridPos": { "h": 4, "w": 8, - "x": 8, + "x": 16, "y": 1 }, "id": 1, @@ -20594,8 +20594,8 @@ "gridPos": { "h": 4, "w": 8, - "x": 16, - "y": 1 + "x": 0, + "y": 5 }, "id": 2, "options": { @@ -27463,7 +27463,7 @@ "gridPos": { "h": 4, "w": 8, - "x": 0, + "x": 8, "y": 5 }, "id": 3, @@ -34332,7 +34332,7 @@ "gridPos": { "h": 4, "w": 8, - "x": 8, + "x": 16, "y": 5 }, "id": 4, @@ -34415,7 +34415,7 @@ "h": 8, "w": 12, "x": 0, - "y": 14 + "y": 22 }, "id": 201, "options": { @@ -34472,7 +34472,7 @@ "h": 8, "w": 12, "x": 12, - "y": 14 + "y": 22 }, "id": 202, "options": { @@ -34548,10 +34548,10 @@ "overrides": [] }, "gridPos": { - "h": 4, - "w": 8, - "x": 16, - "y": 5 + "h": 5, + "w": 6, + "x": 0, + "y": 9 }, "id": 203, "options": { @@ -34646,7 +34646,7 @@ "h": 8, "w": 24, "x": 0, - "y": 22 + "y": 14 }, "id": 204, "options": { @@ -34719,10 +34719,10 @@ "overrides": [] }, "gridPos": { - "h": 5, - "w": 6, + "h": 4, + "w": 8, "x": 0, - "y": 9 + "y": 1 }, "id": 213, "options": { From 09b2019d9fdac61adb5e76fdcf06520baf7bba28 Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Tue, 28 Jul 2026 12:48:11 +0100 Subject: [PATCH 09/11] chore: improve colors --- .../PMM Health/PMM_HA_Health_Overview.json | 40 ++++++++++++++++++- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json index 8cd776341eb..881137b2887 100644 --- a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json +++ b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json @@ -35593,7 +35593,7 @@ { "matcher": { "id": "byName", - "options": "Pod" + "options": "Instance" }, "properties": [ { @@ -35603,7 +35603,15 @@ { "id": "custom.cellOptions", "value": { - "type": "auto" + "type": "color-background", + "mode": "basic" + } + }, + { + "id": "color", + "value": { + "mode": "fixed", + "fixedColor": "#5794F2" } } ] @@ -36140,6 +36148,20 @@ { "id": "custom.width", "value": 160 + }, + { + "id": "color", + "value": { + "mode": "fixed", + "fixedColor": "#5794F2" + } + }, + { + "id": "custom.cellOptions", + "value": { + "type": "color-background", + "mode": "basic" + } } ] } @@ -36641,6 +36663,20 @@ { "id": "custom.width", "value": 200 + }, + { + "id": "color", + "value": { + "mode": "fixed", + "fixedColor": "#5794F2" + } + }, + { + "id": "custom.cellOptions", + "value": { + "type": "color-background", + "mode": "basic" + } } ] }, From 4d63de93b8774eb9ae738e75f125361d3abaab63 Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Tue, 28 Jul 2026 14:34:59 +0100 Subject: [PATCH 10/11] chore: improve colors --- .../PMM Health/PMM_HA_Health_Overview.json | 126 +++++++----------- 1 file changed, 45 insertions(+), 81 deletions(-) diff --git a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json index 881137b2887..591f1de6692 100644 --- a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json +++ b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json @@ -34415,7 +34415,7 @@ "h": 8, "w": 12, "x": 0, - "y": 22 + "y": 24 }, "id": 201, "options": { @@ -34472,7 +34472,7 @@ "h": 8, "w": 12, "x": 12, - "y": 22 + "y": 24 }, "id": 202, "options": { @@ -34643,7 +34643,7 @@ ] }, "gridPos": { - "h": 8, + "h": 10, "w": 24, "x": 0, "y": 14 @@ -34944,7 +34944,7 @@ "h": 1, "w": 24, "x": 0, - "y": 30 + "y": 32 }, "id": 205, "panels": [], @@ -35013,7 +35013,7 @@ "h": 8, "w": 12, "x": 0, - "y": 31 + "y": 33 }, "id": 6, "options": { @@ -35109,7 +35109,7 @@ "h": 8, "w": 12, "x": 12, - "y": 31 + "y": 33 }, "id": 206, "options": { @@ -35149,7 +35149,7 @@ "h": 1, "w": 24, "x": 0, - "y": 39 + "y": 41 }, "id": 207, "panels": [], @@ -35191,7 +35191,7 @@ "h": 6, "w": 8, "x": 0, - "y": 40 + "y": 42 }, "id": 208, "options": { @@ -35258,7 +35258,7 @@ "h": 6, "w": 8, "x": 8, - "y": 40 + "y": 42 }, "id": 209, "options": { @@ -35325,7 +35325,7 @@ "h": 6, "w": 8, "x": 16, - "y": 40 + "y": 42 }, "id": 210, "options": { @@ -35363,7 +35363,7 @@ "h": 1, "w": 24, "x": 0, - "y": 46 + "y": 48 }, "id": 211, "panels": [], @@ -35444,7 +35444,7 @@ "h": 8, "w": 24, "x": 0, - "y": 47 + "y": 49 }, "id": 212, "options": { @@ -35520,7 +35520,7 @@ "h": 1, "w": 24, "x": 0, - "y": 55 + "y": 57 }, "id": 105, "panels": [], @@ -35596,22 +35596,10 @@ "options": "Instance" }, "properties": [ - { - "id": "custom.width", - "value": 400 - }, { "id": "custom.cellOptions", "value": { - "type": "color-background", - "mode": "basic" - } - }, - { - "id": "color", - "value": { - "mode": "fixed", - "fixedColor": "#5794F2" + "type": "auto" } } ] @@ -35654,7 +35642,7 @@ "h": 10, "w": 24, "x": 0, - "y": 56 + "y": 58 }, "id": 50, "options": { @@ -35686,7 +35674,7 @@ "datasource": "Metrics", "editorMode": "code", "exemplar": false, - "expr": "label_replace(\n max by(node_id) (\n (pmm_ha_leader_status == 1)\n and on(node_id)\n label_replace(\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-${pmm_suffix_regex}\"\n },\n \"node_id\", \"$1\", \"exported_pod\", \"(.*)\"\n )\n ),\n \"exported_pod\", \"$1\", \"node_id\", \"(.*)\"\n)", + "expr": "label_replace(\n max by(node_id) (\n pmm_ha_leader_status\n and on(node_id)\n label_replace(\n kube_pod_info{\n exported_namespace=\"$namespace\",\n exported_pod=~\"${release}-${pmm_suffix_regex}\"\n },\n \"node_id\", \"$1\", \"exported_pod\", \"(.*)\"\n )\n ),\n \"exported_pod\", \"$1\", \"node_id\", \"(.*)\"\n)", "format": "table", "instant": true, "legendFormat": "__auto", @@ -35731,7 +35719,7 @@ "h": 1, "w": 24, "x": 0, - "y": 66 + "y": 68 }, "id": 101, "panels": [], @@ -35832,29 +35820,27 @@ { "id": "custom.cellOptions", "value": { - "type": "auto" + "type": "color-background", + "mode": "basic" } }, { "id": "mappings", "value": [ { + "type": "value", "options": { "0": { + "color": "yellow", "index": 1, "text": "Replica" - } - }, - "type": "value" - }, - { - "options": { + }, "1": { + "color": "green", "index": 0, "text": "Primary" } - }, - "type": "value" + } }, { "type": "value", @@ -35914,7 +35900,7 @@ "h": 10, "w": 24, "x": 0, - "y": 67 + "y": 69 }, "id": 10, "options": { @@ -36005,7 +35991,7 @@ "h": 1, "w": 24, "x": 0, - "y": 77 + "y": 79 }, "id": 102, "panels": [], @@ -36102,38 +36088,32 @@ { "id": "custom.cellOptions", "value": { - "type": "auto" + "type": "color-background", + "mode": "basic" } }, { "id": "mappings", "value": [ { + "type": "value", "options": { "0": { + "color": "yellow", "index": 1, "text": "Follower" - } - }, - "type": "value" - }, - { - "options": { + }, "1": { + "color": "green", "index": 0, "text": "Leader" - } - }, - "type": "value" - }, - { - "options": { + }, "2": { + "color": "yellow", "index": 2, "text": "Replica" } - }, - "type": "value" + } } ] } @@ -36149,18 +36129,10 @@ "id": "custom.width", "value": 160 }, - { - "id": "color", - "value": { - "mode": "fixed", - "fixedColor": "#5794F2" - } - }, { "id": "custom.cellOptions", "value": { - "type": "color-background", - "mode": "basic" + "type": "auto" } } ] @@ -36168,10 +36140,10 @@ ] }, "gridPos": { - "h": 20, + "h": 10, "w": 24, "x": 0, - "y": 78 + "y": 80 }, "id": 20, "options": { @@ -36250,7 +36222,7 @@ "h": 1, "w": 24, "x": 0, - "y": 98 + "y": 90 }, "id": 103, "panels": [], @@ -36359,10 +36331,10 @@ ] }, "gridPos": { - "h": 22, + "h": 10, "w": 24, "x": 0, - "y": 99 + "y": 91 }, "id": 30, "options": { @@ -36431,7 +36403,7 @@ "h": 1, "w": 24, "x": 0, - "y": 121 + "y": 101 }, "id": 104, "panels": [], @@ -36521,7 +36493,7 @@ "h": 10, "w": 24, "x": 0, - "y": 122 + "y": 102 }, "id": 40, "options": { @@ -36664,18 +36636,10 @@ "id": "custom.width", "value": 200 }, - { - "id": "color", - "value": { - "mode": "fixed", - "fixedColor": "#5794F2" - } - }, { "id": "custom.cellOptions", "value": { - "type": "color-background", - "mode": "basic" + "type": "auto" } } ] @@ -36698,7 +36662,7 @@ "h": 10, "w": 24, "x": 0, - "y": 132 + "y": 112 }, "id": 41, "options": { From 5b7a07f8bfb896576f62fd6b7a3846fcb31dea62 Mon Sep 17 00:00:00 2001 From: Fabio Silva Date: Tue, 28 Jul 2026 14:47:15 +0100 Subject: [PATCH 11/11] chore: remove helm release selector --- dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json index 591f1de6692..b0b1724bd42 100644 --- a/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json +++ b/dashboards/dashboards/PMM Health/PMM_HA_Health_Overview.json @@ -36755,7 +36755,8 @@ "query": "label_values(grafana_live_node_num_nodes, instance)", "refresh": 1, "regex": "/^(.*)-\\d+$/", - "type": "query" + "type": "query", + "hide": 2 }, { "current": {