iobroker.pv-notifications 1.0.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +368 -0
- package/admin/Batterie_notification.png +0 -0
- package/admin/Batterie_notification.svg +12 -0
- package/admin/i18n/de/translations.json +86 -0
- package/admin/i18n/en/translations.json +86 -0
- package/admin/i18n/es/translations.json +86 -0
- package/admin/i18n/fr/translations.json +86 -0
- package/admin/i18n/it/translations.json +86 -0
- package/admin/i18n/nl/translations.json +86 -0
- package/admin/i18n/pl/translations.json +86 -0
- package/admin/i18n/pt/translations.json +86 -0
- package/admin/i18n/ru/translations.json +86 -0
- package/admin/i18n/uk/translations.json +86 -0
- package/admin/i18n/zh-cn/translations.json +86 -0
- package/admin/index.html +298 -0
- package/admin/jsonConfig.js +11 -0
- package/admin/jsonConfig.json +460 -0
- package/admin/pv-notifications.png +0 -0
- package/admin/pv-notifications.svg +13 -0
- package/io-package.json +400 -0
- package/main.js +1448 -0
- package/package.json +63 -0
package/README.md
ADDED
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
# ioBroker PV Notifications Adapter
|
|
2
|
+
|
|
3
|
+
Sends Telegram notifications for PV battery status (full, empty, intermediate levels).
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- 🔋 **Battery Full Notification** at 100%
|
|
8
|
+
- ⚠️ **Battery Empty Notification** at 0%
|
|
9
|
+
- 📊 **Intermediate Levels** (20%, 40%, 60%, 80%) with charge level in % and kWh
|
|
10
|
+
- 🌙 **Night Mode** (configurable time, default: 23:00-06:00)
|
|
11
|
+
- 🤫 **Quiet Mode** (configurable time, default: 12:00-15:00)
|
|
12
|
+
- 📈 **Daily Statistics** at configurable time (default: 22:00)
|
|
13
|
+
- 📅 **Weekly Statistics** on configurable weekday
|
|
14
|
+
- 📆 **Monthly Statistics** (optional) on configurable day
|
|
15
|
+
- 🌤️ **Weather Forecast** integration (requires openweathermap adapter)
|
|
16
|
+
- ⚡ **Recommendations** for high production / high consumption
|
|
17
|
+
- 📊 **Statistics Data** from sourceanalytix adapter
|
|
18
|
+
|
|
19
|
+
## Dependencies
|
|
20
|
+
|
|
21
|
+
The following adapters are required for full functionality:
|
|
22
|
+
|
|
23
|
+
| Adapter | Description | Required |
|
|
24
|
+
|---------|-------------|----------|
|
|
25
|
+
| **telegram** | Sends notifications | ✅ Yes |
|
|
26
|
+
| **sourceanalytix** | Statistics data (consumption, feed-in, grid power) | ✅ Yes |
|
|
27
|
+
| **daswetter** or **openweathermap** | Weather forecast for recommendations | ❌ Optional |
|
|
28
|
+
|
|
29
|
+
## Installation
|
|
30
|
+
|
|
31
|
+
### Via ioBroker Admin (GitHub)
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# In ioBroker Admin under "Adapter" → "Install custom adapter":
|
|
35
|
+
https://github.com/sadam6752-tech/ioBroker.pv-notifications
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Via ioBroker CLI
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
iobroker url https://github.com/sadam6752-tech/ioBroker.pv-notifications
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Configuration
|
|
45
|
+
|
|
46
|
+
### Telegram
|
|
47
|
+
|
|
48
|
+
| Setting | Description |
|
|
49
|
+
|---------|-------------|
|
|
50
|
+
| Telegram Instance | E.g. `telegram.0` |
|
|
51
|
+
| Telegram Users | Comma-separated list of names or IDs, e.g. `User1, User2` or `-123456789` |
|
|
52
|
+
|
|
53
|
+
**Note:** You can add Telegram users both by **username** (without @) and by **Telegram ID** (negative for groups/channels).
|
|
54
|
+
|
|
55
|
+
### Data Points
|
|
56
|
+
|
|
57
|
+
| Setting | Description | Example |
|
|
58
|
+
|---------|-------------|---------|
|
|
59
|
+
| Battery SOC | SOC value in % | `modbus.0.holdingRegisters.40083_Batterie_SOC` |
|
|
60
|
+
| PV Power | Current power in W | `javascript.0.Solar.Sungrow.Leistung` |
|
|
61
|
+
| Total Production | Production today in kWh | `javascript.0.Solar.Sungrow.Gesamtproduktion` |
|
|
62
|
+
| Feed In | Feed-in today in kWh | `sourceanalytix.0...Einspeisung...` |
|
|
63
|
+
| Consumption | Consumption today in kWh | `sourceanalytix.0...Hausverbrauch...` |
|
|
64
|
+
| Grid Power | Grid power today in kWh | `sourceanalytix.0...Netzbezug...` |
|
|
65
|
+
| Production this Month | Monthly production (kWh) | `sourceanalytix.0...Produktion.currentMonth` |
|
|
66
|
+
| Consumption this Month | Monthly consumption (kWh) | `sourceanalytix.0...Verbrauch.currentMonth` |
|
|
67
|
+
| Feed In this Month | Monthly feed-in (kWh) | `sourceanalytix.0...Einspeisung.currentMonth` |
|
|
68
|
+
| Grid Power this Month | Monthly grid power (kWh) | `sourceanalytix.0...Netzbezug.currentMonth` |
|
|
69
|
+
| Production this Week | Weekly production (kWh) | `sourceanalytix.0...Produktion.currentWeek` |
|
|
70
|
+
| Consumption this Week | Weekly consumption (kWh) | `sourceanalytix.0...Verbrauch.currentWeek` |
|
|
71
|
+
| Feed In this Week | Weekly feed-in (kWh) | `sourceanalytix.0...Einspeisung.currentWeek` |
|
|
72
|
+
| Grid Power this Week | Weekly grid power (kWh) | `sourceanalytix.0...Netzbezug.currentWeek` |
|
|
73
|
+
|
|
74
|
+
### Weather (Optional)
|
|
75
|
+
|
|
76
|
+
| Setting | Description | Example (daswetter) | Example (openweathermap) |
|
|
77
|
+
|---------|-------------|---------------------|-------------------------|
|
|
78
|
+
| Weather Today | Weather description today | `daswetter.0.Day0.forecast.currentSymbol` | `openweathermap.0.forecast.0.text` |
|
|
79
|
+
| Temperature Today (°C) | Temperature today | `daswetter.0.Day0.forecast.maxTemp` | `openweathermap.0.forecast.0.temp` |
|
|
80
|
+
| Weather Tomorrow | Weather description tomorrow | `daswetter.0.Day1.forecast.currentSymbol` | `openweathermap.0.forecast.1.text` |
|
|
81
|
+
| Temperature Tomorrow (°C) | Temperature tomorrow | `daswetter.0.Day1.forecast.maxTemp` | `openweathermap.0.forecast.1.temp` |
|
|
82
|
+
|
|
83
|
+
**Note:** The fields `Weather Today` and `Weather Tomorrow` can alternatively be used if the weather adapter provides different formats. For best compatibility, we recommend using `Weather Text` fields.
|
|
84
|
+
|
|
85
|
+
### Battery
|
|
86
|
+
|
|
87
|
+
| Setting | Description | Default |
|
|
88
|
+
|---------|-------------|---------|
|
|
89
|
+
| Battery Capacity | Capacity in Wh | `21000` |
|
|
90
|
+
| Threshold FULL | SOC for "full" | `100` |
|
|
91
|
+
| Threshold EMPTY | SOC for "empty" | `0` |
|
|
92
|
+
| Reset FULL below | Reset if SOC < | `95` |
|
|
93
|
+
| Reset EMPTY above | Reset if SOC > | `5` |
|
|
94
|
+
|
|
95
|
+
### Intermediate Levels
|
|
96
|
+
|
|
97
|
+
| Setting | Description | Default |
|
|
98
|
+
|---------|-------------|---------|
|
|
99
|
+
| Intermediate Levels | Comma-separated SOC levels | `20,40,60,80` |
|
|
100
|
+
| Min. Interval FULL | Minutes between notifications | `10` |
|
|
101
|
+
| Min. Interval EMPTY | Minutes between notifications | `5` |
|
|
102
|
+
| Min. Interval Intermediate | Minutes between notifications | `30` |
|
|
103
|
+
| Enable Night Mode | Checkbox for night mode | `true` |
|
|
104
|
+
| Night Mode Start | Start time (Format: HH:MM) | `23:00` |
|
|
105
|
+
| Night Mode End | End time (Format: HH:MM) | `06:00` |
|
|
106
|
+
| Ignore Night Mode for 0% Battery | Always notify at 0% | `true` |
|
|
107
|
+
| Enable Quiet Mode | Checkbox for quiet mode | `false` |
|
|
108
|
+
| Quiet Mode Start | Start time (Format: HH:MM) | `12:00` |
|
|
109
|
+
| Quiet Mode End | End time (Format: HH:MM) | `15:00` |
|
|
110
|
+
|
|
111
|
+
### Statistics
|
|
112
|
+
|
|
113
|
+
| Setting | Description | Default |
|
|
114
|
+
|---------|-------------|---------|
|
|
115
|
+
| Daily Statistics Time | Format HH:MM | `22:00` |
|
|
116
|
+
| Weekday Weekly Statistics | 0=Mon, 1=Tue, ..., 6=Sun | `0` (Monday) |
|
|
117
|
+
| Time Weekly Statistics | Format HH:MM | `10:00` |
|
|
118
|
+
| Enable Monthly Statistics | Checkbox for monthly statistics | `false` |
|
|
119
|
+
| Day of Month | 1-31 | `1` (1st of month) |
|
|
120
|
+
| Time Monthly Statistics | Format HH:MM | `09:00` |
|
|
121
|
+
|
|
122
|
+
## Examples
|
|
123
|
+
|
|
124
|
+
### Battery Full (100%)
|
|
125
|
+
```
|
|
126
|
+
11:45 - 🔋 *Battery FULL* (100%)
|
|
127
|
+
|
|
128
|
+
⚡ Current Production: 5356 W
|
|
129
|
+
🏠 Current Consumption: 1200 W
|
|
130
|
+
☀️ Production Today: 12.5 kWh
|
|
131
|
+
🔌 Feed-in Today: 8.2 kWh
|
|
132
|
+
🌤️ Tomorrow: ☀️ Sunny
|
|
133
|
+
|
|
134
|
+
🚗 Now ideal for: Electric car, washing machine, dishwasher!
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### Intermediate (60%)
|
|
138
|
+
```
|
|
139
|
+
11:51 - 🔋 Battery at 60% (12.6 kWh) ⬆️
|
|
140
|
+
⚡ Production: 5356 W
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
### Daily Statistics (22:00)
|
|
144
|
+
```
|
|
145
|
+
22:00 - 📊 *Daily Statistics PV System*
|
|
146
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
147
|
+
🔋 Current Charge Level: 85%
|
|
148
|
+
⚡ Current Energy: 17.9 kWh (21.0 kWh Total)
|
|
149
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
150
|
+
☀️ Production: 12.5 kWh
|
|
151
|
+
🏠 Own Consumption: 8.2 kWh (65.6%)
|
|
152
|
+
🔌 Feed-in: 4.3 kWh
|
|
153
|
+
⚡ Grid Power: 2.1 kWh
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
### Monthly Statistics (1st of month at 09:00)
|
|
157
|
+
```
|
|
158
|
+
09:00 - 📊 *Monthly Statistics PV System*
|
|
159
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
160
|
+
🔋 Full Cycles This Month: 28
|
|
161
|
+
📉 Empty Cycles This Month: 15
|
|
162
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
163
|
+
☀️ Production: 345.2 kWh
|
|
164
|
+
🏠 Own Consumption: 287.5 kWh (83.3%)
|
|
165
|
+
🔌 Feed-in: 57.7 kWh
|
|
166
|
+
⚡ Grid Power: 23.4 kWh
|
|
167
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
## States
|
|
171
|
+
|
|
172
|
+
The adapter creates the following states under `pv-notifications.0`:
|
|
173
|
+
|
|
174
|
+
### Current Statistics
|
|
175
|
+
|
|
176
|
+
| State | Type | Description |
|
|
177
|
+
|-------|------|-------------|
|
|
178
|
+
| `statistics.fullCyclesToday` | number | Full cycles today |
|
|
179
|
+
| `statistics.emptyCyclesToday` | number | Empty cycles today |
|
|
180
|
+
| `statistics.maxSOCToday` | number | Max SOC today |
|
|
181
|
+
| `statistics.minSOCToday` | number | Min SOC today |
|
|
182
|
+
| `statistics.fullCyclesWeek` | number | Full cycles this week |
|
|
183
|
+
| `statistics.emptyCyclesWeek` | number | Empty cycles this week |
|
|
184
|
+
| `statistics.currentSOC` | number | Current SOC |
|
|
185
|
+
| `statistics.currentEnergyKWh` | number | Current energy in kWh |
|
|
186
|
+
|
|
187
|
+
### Saved Last Month Data (for Monthly Statistics)
|
|
188
|
+
|
|
189
|
+
| State | Type | Description |
|
|
190
|
+
|-------|------|-------------|
|
|
191
|
+
| `statistics.lastMonthProduction` | number | Production last month (kWh) |
|
|
192
|
+
| `statistics.lastMonthConsumption` | number | Consumption last month (kWh) |
|
|
193
|
+
| `statistics.lastMonthFeedIn` | number | Feed-in last month (kWh) |
|
|
194
|
+
| `statistics.lastMonthGridPower` | number | Grid power last month (kWh) |
|
|
195
|
+
| `statistics.lastMonthFullCycles` | number | Full cycles last month |
|
|
196
|
+
| `statistics.lastMonthEmptyCycles` | number | Empty cycles last month |
|
|
197
|
+
|
|
198
|
+
### Saved Last Week Data (for Weekly Statistics)
|
|
199
|
+
|
|
200
|
+
| State | Type | Description |
|
|
201
|
+
|-------|------|-------------|
|
|
202
|
+
| `statistics.lastWeekProduction` | number | Production last week (kWh) |
|
|
203
|
+
| `statistics.lastWeekConsumption` | number | Consumption last week (kWh) |
|
|
204
|
+
| `statistics.lastWeekFeedIn` | number | Feed-in last week (kWh) |
|
|
205
|
+
| `statistics.lastWeekGridPower` | number | Grid power last week (kWh) |
|
|
206
|
+
| `statistics.lastWeekFullCycles` | number | Full cycles last week |
|
|
207
|
+
| `statistics.lastWeekEmptyCycles` | number | Empty cycles last week |
|
|
208
|
+
|
|
209
|
+
## Note on Monthly and Weekly Statistics
|
|
210
|
+
|
|
211
|
+
**Important:** The adapter automatically saves data from last month and last week in the states.
|
|
212
|
+
|
|
213
|
+
### Monthly Statistics
|
|
214
|
+
|
|
215
|
+
- Monthly statistics are sent on the **configured day** (default: 1st of month)
|
|
216
|
+
- The adapter **automatically saves** current monthly data before resetting statistics
|
|
217
|
+
- Statistics use **saved data** from `statistics.lastMonth*` states
|
|
218
|
+
- **Configuration:** Ensure monthly statistics are sent **after the last day of the month** (e.g. 1st at 09:00)
|
|
219
|
+
|
|
220
|
+
### Weekly Statistics
|
|
221
|
+
|
|
222
|
+
- Weekly statistics are sent on the **configured weekday** (default: Monday)
|
|
223
|
+
- The adapter **automatically saves** current weekly data before resetting statistics
|
|
224
|
+
- Statistics use **saved data** from `statistics.lastWeek*` states
|
|
225
|
+
- **Configuration:** Set weekday (0=Mon, 1=Tue, ..., 6=Sun)
|
|
226
|
+
|
|
227
|
+
## Configuration Example (openweathermap)
|
|
228
|
+
|
|
229
|
+
### Configure Weather Data Points
|
|
230
|
+
|
|
231
|
+
If you use the **openweathermap** adapter, configure the following fields:
|
|
232
|
+
|
|
233
|
+
```
|
|
234
|
+
Weather Today: openweathermap.0.forecast.0.text
|
|
235
|
+
Temperature Today: openweathermap.0.forecast.0.temp
|
|
236
|
+
Weather Tomorrow: openweathermap.0.forecast.1.text
|
|
237
|
+
Temperature Tomorrow: openweathermap.0.forecast.1.temp
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
### Alternative: Daswetter Adapter
|
|
241
|
+
|
|
242
|
+
```
|
|
243
|
+
Weather Today: daswetter.0.Day0.forecast.currentSymbol
|
|
244
|
+
Temperature Today: daswetter.0.Day0.forecast.maxTemp
|
|
245
|
+
Weather Tomorrow: daswetter.0.Day1.forecast.currentSymbol
|
|
246
|
+
Temperature Tomorrow: daswetter.0.Day1.forecast.maxTemp
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
### Example Output with Weather
|
|
250
|
+
|
|
251
|
+
**Daily Statistics:**
|
|
252
|
+
```
|
|
253
|
+
📊 *Daily Statistics PV System*
|
|
254
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
255
|
+
🔋 Current Charge Level: 85%
|
|
256
|
+
⚡ Current Energy: 17.9 kWh (21.0 kWh Total)
|
|
257
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
258
|
+
☀️ Production: 45.2 kWh
|
|
259
|
+
🏠 Own Consumption: 32.1 kWh (71%)
|
|
260
|
+
🔌 Feed-in: 13 kWh
|
|
261
|
+
⚡ Grid Power: 2 kWh
|
|
262
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
263
|
+
🌤️ *Weather Tomorrow:* ☀️ Sunny 22.5°C
|
|
264
|
+
☀️ Good PV production expected!
|
|
265
|
+
```
|
|
266
|
+
|
|
267
|
+
**Weekly Statistics:**
|
|
268
|
+
```
|
|
269
|
+
📊 *Weekly Statistics PV System*
|
|
270
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
271
|
+
🔋 Full Cycles Last Week: 5
|
|
272
|
+
📉 Empty Cycles Last Week: 3
|
|
273
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
274
|
+
☀️ Production: 312.5 kWh
|
|
275
|
+
🏠 Own Consumption: 224.8 kWh (72%)
|
|
276
|
+
🔌 Feed-in: 87.7 kWh
|
|
277
|
+
⚡ Grid Power: 45.3 kWh
|
|
278
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
279
|
+
💡 A healthy cycle per day is normal.
|
|
280
|
+
🔋 Check battery settings if many cycles.
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
### Monthly Statistics (1st of month at 09:00)
|
|
284
|
+
```
|
|
285
|
+
09:00 - 📊 *Monthly Statistics PV System*
|
|
286
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
287
|
+
🔋 Full Cycles Last Month: 28
|
|
288
|
+
📉 Empty Cycles Last Month: 15
|
|
289
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
290
|
+
☀️ Production: 1245.7 kWh
|
|
291
|
+
🏠 Own Consumption: 897.3 kWh (72%)
|
|
292
|
+
🔌 Feed-in: 348.4 kWh
|
|
293
|
+
⚡ Grid Power: 185.2 kWh
|
|
294
|
+
━━━━━━━━━━━━━━━━━━━━━━
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
## Night Mode & Quiet Mode
|
|
298
|
+
|
|
299
|
+
### Night Mode (configurable)
|
|
300
|
+
|
|
301
|
+
Between **23:00 and 06:00** (configurable), the following notifications are suppressed:
|
|
302
|
+
- ❌ Battery FULL (100%)
|
|
303
|
+
- ❌ Intermediate Levels (20%, 40%, 60%, 80%)
|
|
304
|
+
|
|
305
|
+
The following notification is **always** sent:
|
|
306
|
+
- ✅ Battery EMPTY (0%) – if "Ignore night mode for 0% battery" is enabled
|
|
307
|
+
|
|
308
|
+
### Quiet Mode (configurable)
|
|
309
|
+
|
|
310
|
+
Between **12:00 and 15:00** (configurable), **all** notifications are suppressed:
|
|
311
|
+
- ❌ Battery FULL (100%)
|
|
312
|
+
- ❌ Battery EMPTY (0%)
|
|
313
|
+
- ❌ Intermediate Levels (20%, 40%, 60%, 80%)
|
|
314
|
+
|
|
315
|
+
**Note:** Quiet mode suppresses all notifications including 0% battery. Use it for times when you don't want to be disturbed at all (e.g. nap time, meetings).
|
|
316
|
+
|
|
317
|
+
## License
|
|
318
|
+
|
|
319
|
+
MIT License
|
|
320
|
+
|
|
321
|
+
Copyright (c) 2025-2026 sadam6752-tech sadam6752@gmail.com
|
|
322
|
+
|
|
323
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
324
|
+
|
|
325
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
326
|
+
|
|
327
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
328
|
+
|
|
329
|
+
## Author
|
|
330
|
+
|
|
331
|
+
Alex1808 via LLM: Qwen
|
|
332
|
+
|
|
333
|
+
sadam6752@gmail.com
|
|
334
|
+
|
|
335
|
+
## Changelog
|
|
336
|
+
|
|
337
|
+
### 1.0.85 (2026-02-26)
|
|
338
|
+
* (FIX) Deprecated common.main removed from io-package.json (W1084)
|
|
339
|
+
|
|
340
|
+
### 1.0.84 (2026-02-26)
|
|
341
|
+
* (FIX) Node.js version updated to >=18
|
|
342
|
+
* (FIX) Dependencies updated (@iobroker/adapter-core to 3.2.3, @iobroker/testing to 5.2.2)
|
|
343
|
+
* (FIX) io-package.json schema fixed (licenseInformation added, deprecated fields removed)
|
|
344
|
+
* (FIX) setInterval with clearInterval added for proper cleanup
|
|
345
|
+
* (FIX) js-controller dependency updated to >=6.0.11
|
|
346
|
+
* (FIX) admin dependency updated to >=7.6.17
|
|
347
|
+
|
|
348
|
+
### 1.0.83 (2026-02-26)
|
|
349
|
+
* (FIX) createState deprecated fixed (setObjectNotExists)
|
|
350
|
+
* (FIX) All log messages translated to English
|
|
351
|
+
* (FIX) README.md translated (EN + doc/de/ + doc/ru/ structure)
|
|
352
|
+
* (FIX) Node.js 24 added to test matrix
|
|
353
|
+
* (FIX) Manual installation guide removed
|
|
354
|
+
|
|
355
|
+
### 1.0.82 (2026-02-25)
|
|
356
|
+
* (FIX) Copilot infrastructure and AI assistant guidelines added
|
|
357
|
+
|
|
358
|
+
### 1.0.81 (2026-02-25)
|
|
359
|
+
* (FIX) create-adapter infrastructure added (GitHub Actions, Dependabot, ESLint, Tests)
|
|
360
|
+
|
|
361
|
+
### 1.0.80 (2026-02-25)
|
|
362
|
+
* (FIX) Unified intermediate notifications format (all levels show charging/discharging status)
|
|
363
|
+
|
|
364
|
+
## Documentation in Other Languages
|
|
365
|
+
|
|
366
|
+
- [🇬🇧 English](README.md)
|
|
367
|
+
- [🇩🇪 Deutsch](doc/de/README.md)
|
|
368
|
+
- [🇷🇺 Русский](doc/ru/README.md)
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="800" height="800">
|
|
3
|
+
<path d="M0 0 C1.69627631 -0.00706827 3.39254633 -0.01581709 5.08880615 -0.02610779 C9.67162253 -0.04851139 14.25409207 -0.04568304 18.8369422 -0.03678632 C22.67368324 -0.03165684 26.51036022 -0.03898495 30.34709466 -0.04625839 C39.40430555 -0.06322921 48.46134785 -0.05972056 57.51855469 -0.04296875 C66.83791668 -0.02605406 76.15681002 -0.04187939 85.47612083 -0.07419163 C93.50025787 -0.1009511 101.5242496 -0.10814629 109.54842675 -0.09967655 C114.33083063 -0.09476537 119.11295278 -0.09686428 123.89532089 -0.11746407 C128.39521896 -0.13592112 132.89444716 -0.12974114 137.39431 -0.10526466 C139.03730822 -0.10028819 140.68035838 -0.10366347 142.32331467 -0.11641312 C154.81802708 -0.20563759 165.92523628 1.50250915 175.33251953 10.51782227 C182.68133799 18.98208638 185.38632038 27.93377625 185.36772156 38.94482422 C185.37422183 39.75580753 185.3807221 40.56679085 185.38741934 41.40234941 C185.40669006 44.10884228 185.41197901 46.81517487 185.41723633 49.52172852 C185.42815825 51.48013298 185.43991413 53.43853293 185.45243359 55.39692783 C185.48405248 60.75204897 185.50321276 66.10715125 185.5200038 71.46233678 C185.53987321 77.19163325 185.57050476 82.92087451 185.59939575 88.65013123 C185.65948597 101.04239896 185.70373152 113.43469291 185.74432755 125.82703781 C185.76954516 133.51085128 185.79834704 141.19464904 185.82748413 148.87844849 C186.07312553 214.52923078 186.2135095 280.18086118 185.92744178 345.83171427 C185.90056077 352.15228757 185.88312777 358.47284265 185.86947632 364.79345703 C185.85255977 372.41501646 185.82094147 380.03634266 185.76968026 387.65775162 C185.74410035 391.48420096 185.72412132 395.31042147 185.72101212 399.13696098 C185.71728296 403.24138946 185.68242974 407.34496591 185.64428711 411.44921875 C185.64774989 412.62605728 185.65121267 413.80289581 185.65478039 415.01539612 C185.48450699 427.22576822 181.75780914 436.30467887 173.52783203 445.21704102 C164.17733975 454.18725012 152.19036108 454.11669591 140.03564453 454.05102539 C138.33759972 454.0564553 136.63955962 454.06358281 134.94152832 454.07226562 C130.35882365 454.09039868 125.77648184 454.08347315 121.19377136 454.07074928 C116.38096187 454.0605694 111.5681819 454.07002874 106.75537109 454.07629395 C98.67556219 454.08355589 90.59589989 454.07402089 82.51611328 454.05493164 C73.19619624 454.03316571 63.8766293 454.04021811 54.55672073 454.06223726 C46.53173466 454.08043277 38.50685353 454.08292934 30.48185349 454.07248259 C25.69898496 454.06627043 20.9162806 454.06534897 16.13342285 454.07862854 C11.63522585 454.09024705 7.13747697 454.08205261 2.639328 454.05905151 C0.9959131 454.05379629 -0.64754001 454.05522308 -2.29093933 454.06410217 C-15.59157092 454.12929752 -25.86045871 452.54203183 -35.75341797 442.96313477 C-45.03118143 432.54658445 -45.21322062 420.99896032 -45.17817688 407.71890259 C-45.18119938 406.09807674 -45.18508935 404.47725232 -45.18976945 402.85643041 C-45.20004551 398.41296817 -45.19786862 393.96958665 -45.19358885 389.5261178 C-45.19112093 384.7298308 -45.20013662 379.93356321 -45.20762634 375.13728333 C-45.22037346 365.7449171 -45.22216702 356.35257946 -45.21982608 346.96020605 C-45.21804279 339.32556275 -45.21979279 331.69092812 -45.22405052 324.05628586 C-45.22464571 322.96954004 -45.2252409 321.88279422 -45.22585412 320.76311671 C-45.22706588 318.55536529 -45.22828001 316.34761388 -45.2294965 314.13986246 C-45.24037207 293.43711679 -45.23820945 272.7343874 -45.23211166 252.03164081 C-45.22694236 233.09519527 -45.23819827 214.15880117 -45.25720987 195.22236581 C-45.2765851 175.77454597 -45.28484484 156.32675047 -45.28108662 136.87892091 C-45.27917412 125.96200453 -45.28166698 115.04513193 -45.29580116 104.12822342 C-45.30771188 94.83466819 -45.30912328 85.5411837 -45.297011 76.24762751 C-45.2911202 71.50716331 -45.29002848 66.76682851 -45.3020134 62.02637291 C-45.31286479 57.68376016 -45.30977767 53.34138499 -45.29575171 48.99878339 C-45.29310275 47.43088739 -45.2954776 45.86297282 -45.30348758 44.29509504 C-45.36673669 30.98711988 -43.8113572 20.85605921 -34.91748047 10.53344727 C-24.82998643 0.7808078 -13.31277852 -0.05858743 0 0 Z " fill="#38E053" transform="translate(329.91748046875,174.466552734375)"/>
|
|
4
|
+
<path d="M0 0 C0.89341095 -0.00524185 1.7868219 -0.0104837 2.70730591 -0.0158844 C4.58464526 -0.02226587 6.46202481 -0.02101829 8.33935547 -0.01245117 C11.18140293 -0.00394787 14.02143188 -0.03274593 16.86328125 -0.06445312 C28.59470039 -0.11008439 39.77965151 0.13325936 48.8203125 8.65234375 C53.47309475 14.17752267 56.45984562 20.29436393 56.41796875 27.5390625 C56.41474609 28.52197266 56.41152344 29.50488281 56.40820312 30.51757812 C56.39982422 31.54173828 56.39144531 32.56589844 56.3828125 33.62109375 C56.37830078 34.65685547 56.37378906 35.69261719 56.36914062 36.75976562 C56.3573526 39.31776641 56.34089765 41.87565108 56.3203125 44.43359375 C57.24753868 44.41693916 57.24753868 44.41693916 58.1934967 44.39994812 C64.69989384 44.28825816 71.20601335 44.2134779 77.71313477 44.15893555 C80.13284387 44.13398345 82.55247912 44.10000936 84.97192383 44.05639648 C106.01853989 43.68685251 122.6139154 45.32939967 138.69189453 60.34106445 C143.98434555 65.50169739 148.06049492 70.81396418 151.3203125 77.43359375 C151.78179688 78.36945313 152.24328125 79.3053125 152.71875 80.26953125 C158.38376382 92.74565994 158.61617027 105.6849014 158.58100891 119.15744019 C158.58403519 120.816141 158.58792705 122.47484042 158.59260148 124.13353741 C158.60282871 128.65866371 158.60071321 133.18371032 158.59642088 137.70884299 C158.59394404 142.60193456 158.60297964 147.49500742 158.61045837 152.38809204 C158.62318056 161.96125823 158.62500219 171.53439634 158.62265811 181.10756956 C158.62087212 188.89174515 158.62263061 196.67591225 158.62688255 204.46008682 C158.62747774 205.56968983 158.62807293 206.67929283 158.62868616 207.82252017 C158.62989796 210.07696826 158.63111209 212.33141635 158.63232853 214.58586444 C158.64319438 235.70797256 158.64104602 256.83006471 158.63494369 277.95217372 C158.62977461 297.25674844 158.64103146 316.5612727 158.66004191 335.86583744 C158.6794337 355.71047397 158.687674 375.55508664 158.68391865 395.39973271 C158.68200875 406.53191548 158.68447372 417.6640553 158.69863319 428.79623032 C158.710565 438.27250992 158.71193164 447.74872013 158.69984303 457.22500072 C158.69396719 462.05523004 158.69281902 466.88533253 158.70484543 471.71555328 C158.71574741 476.14581288 158.71254995 480.57584041 158.69858374 485.00608934 C158.69594866 486.60016965 158.69826554 488.1942684 158.70631961 489.78833054 C158.79324296 508.29117846 155.81104801 524.43462483 144.3203125 539.43359375 C143.88203125 540.04976562 143.44375 540.6659375 142.9921875 541.30078125 C134.27755274 552.6928038 119.52167244 559.56849976 105.7446537 562.00433922 C98.7248221 562.8843025 91.65015836 562.71978246 84.58666992 562.70825195 C82.81467984 562.71260654 81.04269163 562.71779217 79.27070618 562.72373962 C74.48542475 562.73706128 69.70022263 562.73771589 64.91492629 562.73517632 C60.90685312 562.73410185 56.89879569 562.73900218 52.89072591 562.74378175 C43.42738263 562.75485355 33.96407904 562.75532762 24.50073242 562.74926758 C14.76854312 562.74323077 5.0364985 562.75553674 -4.69566613 562.77683765 C-13.07906154 562.79450546 -21.46241111 562.80044682 -29.84582442 562.7971999 C-34.84059856 562.79539498 -39.8352695 562.79794367 -44.83002663 562.81191444 C-49.53087493 562.82457261 -54.23149922 562.82247384 -58.93234444 562.80950356 C-60.64707264 562.80715543 -62.36181701 562.80980833 -64.07652664 562.81812668 C-84.44939652 562.90975064 -102.42894139 559.07324725 -117.6796875 544.43359375 C-131.44298599 529.85633675 -135.14429386 513.7581548 -135.06736755 494.36734009 C-135.07154564 492.6470662 -135.07702575 490.92679508 -135.08368737 489.20652902 C-135.09809843 484.50196815 -135.09391085 479.79758312 -135.08652055 475.09301281 C-135.08178043 470.01041218 -135.0943062 464.92784912 -135.10453796 459.84526062 C-135.12171473 449.89682357 -135.1225683 439.94844971 -135.11732506 430.00000168 C-135.11328005 421.91207728 -135.11473086 413.82417153 -135.12007332 405.73624802 C-135.12119595 404.00812524 -135.12119595 404.00812524 -135.12234126 402.24509089 C-135.12387278 399.90447327 -135.12541112 397.56385565 -135.12695623 395.22323804 C-135.14067721 373.2842745 -135.1352464 351.34534664 -135.12377102 329.40638392 C-135.11383904 309.34696524 -135.12677945 289.28763881 -135.15070521 269.22823437 C-135.17510282 248.61751758 -135.18470245 228.00684374 -135.17805248 207.3961128 C-135.17456175 195.83023672 -135.17678278 184.26443158 -135.19430351 172.69856644 C-135.20903372 162.85289106 -135.20965014 153.00733657 -135.1922326 143.16166355 C-135.18372707 138.14129028 -135.18156226 133.1211329 -135.19688416 128.10077095 C-135.21075433 123.49900348 -135.20593816 118.89763638 -135.18664492 114.29589193 C-135.18289175 112.63718595 -135.18578704 110.97844771 -135.19625657 109.31977053 C-135.30304293 91.09617981 -130.26314012 75.04273535 -117.6796875 61.43359375 C-105.12092206 49.55190958 -90.43680333 43.89665508 -73.328125 44.140625 C-72.18808014 44.14486984 -71.04803528 44.14911469 -69.8734436 44.15348816 C-66.26694137 44.17015041 -62.66101807 44.2077798 -59.0546875 44.24609375 C-56.59506021 44.26115666 -54.13542407 44.27484224 -51.67578125 44.28710938 C-45.67688905 44.32001304 -39.67832966 44.37008685 -33.6796875 44.43359375 C-33.69883461 43.4884214 -33.69883461 43.4884214 -33.71836853 42.52415466 C-33.76938399 39.63856045 -33.80085545 36.75306152 -33.83203125 33.8671875 C-33.85245483 32.87601929 -33.87287842 31.88485107 -33.8939209 30.86364746 C-33.9694472 21.53518123 -32.24175556 15.16652578 -25.59375 8.26953125 C-18.02227443 1.81385208 -9.75774063 -0.03419344 0 0 Z M-107.6796875 76.43359375 C-117.07597308 87.72657735 -118.27166301 100.29815446 -118.18762207 114.39904785 C-118.19223814 116.09615058 -118.19859578 117.7932493 -118.20653105 119.49033976 C-118.22315057 124.12621721 -118.21501175 128.76176314 -118.20258617 133.39764142 C-118.19350767 138.40795407 -118.20751927 143.4182111 -118.21850586 148.42851257 C-118.23626581 158.23278651 -118.23246233 168.03693776 -118.2208553 177.84121644 C-118.21181132 185.81137558 -118.21060115 193.78150041 -118.21495056 201.75166321 C-118.21556349 202.88724612 -118.21617643 204.02282904 -118.21680793 205.19282356 C-118.21808687 207.49994339 -118.21938372 209.8070632 -118.2206983 212.11418301 C-118.2320967 233.73361654 -118.21900198 255.35298215 -118.19749683 276.97240454 C-118.17962654 295.51142218 -118.18273085 314.05033963 -118.20117188 332.58935547 C-118.22259163 354.13293084 -118.23099814 375.67644673 -118.21872282 397.22003126 C-118.21744866 399.51852893 -118.21619118 401.81702661 -118.21495056 404.11552429 C-118.21433346 405.24634521 -118.21371636 406.37716614 -118.21308056 407.54225436 C-118.20963098 415.50021477 -118.21544755 423.45813736 -118.22486877 431.41609192 C-118.23610239 441.11794927 -118.23301999 450.8196772 -118.2117458 460.52151978 C-118.2012538 465.46886319 -118.19708202 470.41599107 -118.21034241 475.36333275 C-118.22231043 479.89716851 -118.21563138 484.43059006 -118.1944322 488.96438855 C-118.18998477 490.59949086 -118.19219032 492.23462857 -118.20193535 493.86970788 C-118.28517041 509.00288909 -115.43884784 521.10991373 -104.80078125 532.43359375 C-96.56452046 540.15404831 -86.23660381 544.75086497 -74.93966675 544.70101929 C-74.1793827 544.7055504 -73.41909865 544.71008151 -72.63577569 544.71474993 C-70.09810438 544.72737047 -67.56064835 544.72577507 -65.02294922 544.72412109 C-63.19919052 544.73010797 -61.37543436 544.73691388 -59.55168152 544.74447632 C-54.60302823 544.76213123 -49.65444413 544.7668316 -44.70576239 544.76810789 C-41.61038465 544.76953079 -38.51502442 544.7738031 -35.41965103 544.77910233 C-24.61015967 544.7976037 -13.80071761 544.80577315 -2.99121094 544.80419922 C7.06643252 544.80299907 17.12386094 544.82407637 27.18145001 544.85568655 C35.82968021 544.88189329 44.47784039 544.89256461 53.12610996 544.8912884 C58.28525215 544.89077989 63.44420336 544.89640107 68.60330582 544.9176445 C73.46089345 544.93710003 78.31810945 544.93710154 83.17571068 544.92261124 C84.95094411 544.92053081 86.72620123 544.92517794 88.50139427 544.93733215 C104.79291245 545.04158094 116.87740246 542.1906347 129.1640625 530.7109375 C136.62893069 522.65573535 140.56519955 512.07929324 140.57758141 501.18703938 C140.58284052 500.13943437 140.58284052 500.13943437 140.58820587 499.07066563 C140.5974894 496.73683415 140.59260451 494.40325388 140.58773804 492.06941223 C140.59147584 490.37662815 140.59607788 488.68384579 140.60146868 486.99106616 C140.61369813 482.34398231 140.61343827 477.69697046 140.61107993 473.04987419 C140.61067175 468.03607631 140.62171111 463.02230152 140.63119507 458.0085144 C140.64780607 448.18687997 140.65330467 438.36526954 140.65441982 428.54362223 C140.65537031 420.55904818 140.65948065 412.57448205 140.66582108 404.58991051 C140.68343426 381.94832731 140.6926599 359.30676307 140.69116013 336.66517297 C140.69108022 335.44462829 140.6910003 334.22408362 140.69091797 332.96655273 C140.69079533 331.13349808 140.69079533 331.13349808 140.69067021 329.26341202 C140.68985743 309.46172733 140.70899283 289.66011873 140.7371947 269.85845605 C140.76592882 249.52246791 140.77973468 229.18651687 140.77800715 208.85050792 C140.7773434 197.43494656 140.78282906 186.01946495 140.80436325 174.60392189 C140.82258202 164.88365709 140.82691666 155.16350819 140.8133444 145.44323371 C140.80681814 140.48578997 140.8066853 135.52856855 140.8240509 130.57114601 C140.83980175 126.02787319 140.83689742 121.48499858 140.81948264 116.94173535 C140.81641717 115.30311295 140.82002799 113.66446068 140.83120279 112.02587352 C140.92482492 97.31702517 138.32057696 85.71731462 128.3203125 74.43359375 C119.19011903 65.43941806 107.52119316 61.27138232 94.87017822 61.29988098 C93.75848538 61.29648265 93.75848538 61.29648265 92.6243341 61.29301566 C90.14569899 61.28669534 87.66711883 61.28750376 85.18847656 61.28833008 C83.40926035 61.28533732 81.63004479 61.28193452 79.85083008 61.27815247 C75.02009394 61.26931916 70.18937552 61.2669746 65.35863209 61.26633668 C62.33883543 61.26562568 59.31904328 61.2634904 56.29924774 61.26083946 C45.7590659 61.25158757 35.2188967 61.2475043 24.67871094 61.24829102 C14.86251131 61.24889145 5.04636669 61.23834589 -4.76981902 61.22254735 C-13.2039636 61.20945814 -21.63809023 61.20410771 -30.07224488 61.20474643 C-35.10661137 61.20500105 -40.14092899 61.20216963 -45.17528534 61.19156837 C-49.91292839 61.18186443 -54.65047608 61.18182396 -59.38812256 61.18908501 C-61.12268463 61.19012806 -62.85725271 61.18778459 -64.5918045 61.18172455 C-81.48868171 61.12653614 -95.56197856 63.49028266 -107.6796875 76.43359375 Z " fill="#484D4C" transform="translate(388.6796875,98.56640625)"/>
|
|
5
|
+
<path d="M0 0 C2.77461081 1.68889354 4.83686679 3.22271482 6.875 5.75 C6.875 6.41 6.875 7.07 6.875 7.75 C7.535 7.75 8.195 7.75 8.875 7.75 C12.87455044 14.91586121 12.9094277 22.74363515 11.265625 30.69921875 C9.35048697 34.9006873 6.52631544 37.73429303 3.3125 41 C2.12189013 42.2326314 0.93300194 43.46692882 -0.25390625 44.703125 C-0.78056885 45.24098633 -1.30723145 45.77884766 -1.84985352 46.33300781 C-3.23220763 47.74285365 -3.23220763 47.74285365 -4.125 49.75 C-4.785 49.75 -5.445 49.75 -6.125 49.75 C-6.125 50.74 -6.125 51.73 -6.125 52.75 C-7.27744968 53.90244968 -8.43663917 55.04894982 -9.62890625 56.16015625 C-12.04763655 58.7304519 -13.80616309 61.71996111 -15.7109375 64.6796875 C-17.28640595 66.98631258 -19.15479345 68.77979345 -21.125 70.75 C-22.18511943 72.71879323 -23.19970849 74.71435867 -24.125 76.75 C-24.785 76.75 -25.445 76.75 -26.125 76.75 C-26.49625 78.0803125 -26.49625 78.0803125 -26.875 79.4375 C-28.125 82.75 -28.125 82.75 -30.03125 85.125 C-32.08704436 87.70241382 -33.44997392 90.099284 -34.875 93.0625 C-35.38160156 94.1040625 -35.88820313 95.145625 -36.41015625 96.21875 C-36.97605469 97.3840625 -37.54195313 98.549375 -38.125 99.75 C-38.80887327 101.11574983 -39.49517238 102.48028703 -40.18359375 103.84375 C-40.53647461 104.54330811 -40.88935547 105.24286621 -41.25292969 105.96362305 C-41.94146699 107.32752977 -42.63087172 108.69099907 -43.32128906 110.05395508 C-46.38222162 116.14736428 -49.00331851 122.26015074 -51.125 128.75 C-51.40085938 129.471875 -51.67671875 130.19375 -51.9609375 130.9375 C-55.04966323 139.04231631 -57.31409602 147.32697736 -59.56176758 155.6940918 C-60.0743026 157.56494462 -60.62310102 159.42576737 -61.17578125 161.28515625 C-62.23343144 165.14579707 -62.98863291 168.99943939 -63.6875 172.9375 C-65.02651859 180.37420325 -65.02651859 180.37420325 -65.63427734 182.69335938 C-73.47884666 215.57030063 -69.1930447 255.76803914 -60.125 288 C-59.86460938 288.94101562 -59.60421875 289.88203125 -59.3359375 290.8515625 C-58.82997977 292.67607676 -58.32075165 294.49968805 -57.80786133 296.32226562 C-57.24248541 298.33231144 -56.68814826 300.34545851 -56.13671875 302.359375 C-52.28110204 315.28090126 -47.06991786 327.66705791 -41.125 339.75 C-40.62097656 340.79671875 -40.11695312 341.8434375 -39.59765625 342.921875 C-31.1650695 360.18966537 -20.66729161 375.87327716 -8.68334961 390.84814453 C-8.10593018 391.57372559 -7.52851074 392.29930664 -6.93359375 393.046875 C-6.41595459 393.68979492 -5.89831543 394.33271484 -5.36499023 394.99511719 C-4.125 396.75 -4.125 396.75 -3.125 399.75 C-2.135 400.08 -1.145 400.41 -0.125 400.75 C1.59375 402.4921875 1.59375 402.4921875 3.375 404.625 C5.82556837 407.55072668 5.82556837 407.55072668 8.48828125 410.27734375 C11.9219153 413.92376639 12.78976316 418.85501323 13.25 423.6875 C12.95554479 430.48673853 10.72241749 436.90258251 5.875 441.75 C2.875 443.9375 2.875 443.9375 -0.125 445.75 C-0.71667969 446.10964844 -1.30835938 446.46929688 -1.91796875 446.83984375 C-7.05149501 448.95685547 -14.0812225 448.75195523 -19.3203125 447.02734375 C-21.0625 446.0625 -21.0625 446.0625 -24.125 443.75 C-25.115 443.0075 -26.105 442.265 -27.125 441.5 C-31.95292609 437.31579739 -35.906974 432.24396711 -39.9375 427.3125 C-41.86471393 424.71768028 -41.86471393 424.71768028 -44.125 423.75 C-44.125 422.76 -44.125 421.77 -44.125 420.75 C-45.115 420.42 -46.105 420.09 -47.125 419.75 C-48.44140625 417.9375 -48.44140625 417.9375 -49.6875 415.75 C-51.33874548 412.66497173 -51.33874548 412.66497173 -54.125 410.75 C-54.125 409.76 -54.125 408.77 -54.125 407.75 C-54.785 407.75 -55.445 407.75 -56.125 407.75 C-57.67578125 405.58984375 -57.67578125 405.58984375 -59.4375 402.6875 C-61.50113049 399.34536247 -63.55981767 396.04869979 -65.875 392.875 C-70.21696077 386.84449892 -73.59695922 380.27608439 -77.125 373.75 C-77.78885142 372.54024873 -78.45292233 371.33061788 -79.1171875 370.12109375 C-82.66212491 363.62680201 -85.98622628 357.1601358 -88.71875 350.2734375 C-89.84735803 347.44564738 -91.01795677 344.64881669 -92.21875 341.8515625 C-97.5349398 329.35840418 -101.71643209 316.88506405 -105.125 303.75 C-105.50730657 302.32538497 -105.89009119 300.9008981 -106.2734375 299.4765625 C-108.78205063 289.99676665 -110.71327146 280.4505389 -112.125 270.75 C-112.33237793 269.35297852 -112.33237793 269.35297852 -112.54394531 267.92773438 C-118.49884283 226.12247187 -116.38217599 182.65511014 -105.0078125 141.94921875 C-103.89293469 137.90901996 -102.98824271 133.85040286 -102.125 129.75 C-101.465 129.75 -100.805 129.75 -100.125 129.75 C-100.063125 128.5125 -100.00125 127.275 -99.9375 126 C-99.29281601 120.42133455 -97.2511585 115.83666524 -94.98193359 110.74121094 C-93.98777777 108.43114401 -93.06440996 106.09844628 -92.14453125 103.7578125 C-83.10925482 80.84759019 -71.59763005 58.84525859 -56.29785156 39.43041992 C-54.93135781 37.64182492 -54.93135781 37.64182492 -54.125 34.75 C-51.625 32.25 -51.625 32.25 -49.125 29.75 C-48.63 28.925 -48.135 28.1 -47.625 27.25 C-46.2115197 24.8941995 -44.68729836 23.21855753 -42.7109375 21.33203125 C-40.5907618 19.21707766 -38.6181388 16.98483171 -36.625 14.75 C-26.52245876 3.47663445 -16.32227405 -6.50757331 0 0 Z " fill="#11AC11" transform="translate(133.125,182.25)"/>
|
|
6
|
+
<path d="M0 0 C1.7421875 0.96484375 1.7421875 0.96484375 4.8046875 3.27734375 C5.7946875 4.01984375 6.7846875 4.76234375 7.8046875 5.52734375 C12.63261359 9.71154636 16.5866615 14.78337664 20.6171875 19.71484375 C22.54440143 22.30966347 22.54440143 22.30966347 24.8046875 23.27734375 C24.8046875 24.26734375 24.8046875 25.25734375 24.8046875 26.27734375 C25.7946875 26.60734375 26.7846875 26.93734375 27.8046875 27.27734375 C29.12109375 29.08984375 29.12109375 29.08984375 30.3671875 31.27734375 C32.01843298 34.36237202 32.01843298 34.36237202 34.8046875 36.27734375 C34.8046875 37.26734375 34.8046875 38.25734375 34.8046875 39.27734375 C35.4646875 39.27734375 36.1246875 39.27734375 36.8046875 39.27734375 C38.35546875 41.4375 38.35546875 41.4375 40.1171875 44.33984375 C42.18081799 47.68198128 44.23950517 50.97864396 46.5546875 54.15234375 C50.89664827 60.18284483 54.27664672 66.75125936 57.8046875 73.27734375 C58.46853892 74.48709502 59.13260983 75.69672587 59.796875 76.90625 C63.34181241 83.40054174 66.66591378 89.86720795 69.3984375 96.75390625 C70.52704553 99.58169637 71.69764427 102.37852706 72.8984375 105.17578125 C78.2146273 117.66893957 82.39611959 130.1422797 85.8046875 143.27734375 C86.18699407 144.70195878 86.56977869 146.12644565 86.953125 147.55078125 C89.46173813 157.0305771 91.39295896 166.57680485 92.8046875 176.27734375 C92.94293945 177.20869141 93.08119141 178.14003906 93.22363281 179.09960938 C99.17853033 220.90487188 97.06186349 264.37223361 85.6875 305.078125 C84.57262219 309.11832379 83.66793021 313.17694089 82.8046875 317.27734375 C82.1446875 317.27734375 81.4846875 317.27734375 80.8046875 317.27734375 C80.7428125 318.51484375 80.6809375 319.75234375 80.6171875 321.02734375 C79.97250351 326.6060092 77.930846 331.19067851 75.66162109 336.28613281 C74.66746527 338.59619974 73.74409746 340.92889747 72.82421875 343.26953125 C63.78894232 366.17975356 52.27731755 388.18208516 36.97753906 407.59692383 C35.61104531 409.38551883 35.61104531 409.38551883 34.8046875 412.27734375 C33.13802083 413.94401042 31.47135417 415.61067708 29.8046875 417.27734375 C29.0621875 418.51484375 29.0621875 418.51484375 28.3046875 419.77734375 C26.8912072 422.13314425 25.36698586 423.80878622 23.390625 425.6953125 C21.2704493 427.81026609 19.2978263 430.04251204 17.3046875 432.27734375 C3.34828654 447.8512084 3.34828654 447.8512084 -4.40234375 448.578125 C-18.24123087 448.62310513 -18.24123087 448.62310513 -24.6328125 443.21484375 C-26.1953125 441.27734375 -26.1953125 441.27734375 -26.1953125 439.27734375 C-26.8553125 439.27734375 -27.5153125 439.27734375 -28.1953125 439.27734375 C-32.19486294 432.11148254 -32.2297402 424.2837086 -30.5859375 416.328125 C-28.67079947 412.12665645 -25.84662794 409.29305072 -22.6328125 406.02734375 C-21.44220263 404.79471235 -20.25331444 403.56041493 -19.06640625 402.32421875 C-18.53974365 401.78635742 -18.01308105 401.24849609 -17.47045898 400.69433594 C-16.08810487 399.2844901 -16.08810487 399.2844901 -15.1953125 397.27734375 C-14.5353125 397.27734375 -13.8753125 397.27734375 -13.1953125 397.27734375 C-13.1953125 396.28734375 -13.1953125 395.29734375 -13.1953125 394.27734375 C-12.04286282 393.12489407 -10.88367333 391.97839393 -9.69140625 390.8671875 C-7.27267595 388.29689185 -5.51414941 385.30738264 -3.609375 382.34765625 C-2.03390655 380.04103117 -0.16551905 378.2475503 1.8046875 376.27734375 C2.86480693 374.30855052 3.87939599 372.31298508 4.8046875 370.27734375 C5.4646875 370.27734375 6.1246875 370.27734375 6.8046875 370.27734375 C7.0521875 369.39046875 7.2996875 368.50359375 7.5546875 367.58984375 C8.8046875 364.27734375 8.8046875 364.27734375 10.7109375 361.90234375 C12.76673186 359.32492993 14.12966142 356.92805975 15.5546875 353.96484375 C16.06128906 352.92328125 16.56789063 351.88171875 17.08984375 350.80859375 C17.65574219 349.64328125 18.22164062 348.47796875 18.8046875 347.27734375 C19.48856077 345.91159392 20.17485988 344.54705672 20.86328125 343.18359375 C21.21616211 342.48403564 21.56904297 341.78447754 21.93261719 341.0637207 C22.62115449 339.69981398 23.31055922 338.33634468 24.00097656 336.97338867 C27.06190912 330.87997947 29.68300601 324.76719301 31.8046875 318.27734375 C32.08054687 317.55546875 32.35640625 316.83359375 32.640625 316.08984375 C35.72935073 307.98502744 37.99378352 299.70036639 40.24145508 291.33325195 C40.7539901 289.46239913 41.30278852 287.60157638 41.85546875 285.7421875 C42.91311894 281.88154668 43.66832041 278.02790436 44.3671875 274.08984375 C45.70620609 266.6531405 45.70620609 266.6531405 46.31396484 264.33398438 C54.15853416 231.45704312 49.8727322 191.25930461 40.8046875 159.02734375 C40.41410156 157.61582031 40.41410156 157.61582031 40.015625 156.17578125 C39.50966727 154.35126699 39.00043915 152.5276557 38.48754883 150.70507812 C37.92217291 148.69503231 37.36783576 146.68188524 36.81640625 144.66796875 C32.96078954 131.74644249 27.74960536 119.36028584 21.8046875 107.27734375 C21.30066406 106.230625 20.79664063 105.18390625 20.27734375 104.10546875 C11.844757 86.83767838 1.34697911 71.15406659 -10.63696289 56.17919922 C-11.21438232 55.45361816 -11.79180176 54.72803711 -12.38671875 53.98046875 C-12.90435791 53.33754883 -13.42199707 52.69462891 -13.95532227 52.03222656 C-15.1953125 50.27734375 -15.1953125 50.27734375 -16.1953125 47.27734375 C-17.1853125 46.94734375 -18.1753125 46.61734375 -19.1953125 46.27734375 C-20.9140625 44.53515625 -20.9140625 44.53515625 -22.6953125 42.40234375 C-25.14588087 39.47661707 -25.14588087 39.47661707 -27.80859375 36.75 C-31.2422278 33.10357736 -32.11007566 28.17233052 -32.5703125 23.33984375 C-32.27585729 16.54060522 -30.04272999 10.12476124 -25.1953125 5.27734375 C-22.1953125 3.08984375 -22.1953125 3.08984375 -19.1953125 1.27734375 C-18.60363281 0.91769531 -18.01195312 0.55804688 -17.40234375 0.1875 C-12.26881749 -1.92951172 -5.23909 -1.72461148 0 0 Z " fill="#11AC11" transform="translate(685.1953125,174.72265625)"/>
|
|
7
|
+
<path d="M0 0 C5.42831474 5.37488645 7.28311659 9.24647078 7.546875 17.02734375 C7.18476378 25.96577338 4.19965397 29.98275511 -2.1484375 36.00390625 C-4.9468083 38.94278103 -7.10961174 42.25286661 -9.33984375 45.6328125 C-11.015625 47.96484375 -11.015625 47.96484375 -13.16015625 50.078125 C-15.24571002 51.92221691 -15.24571002 51.92221691 -16.015625 54.96484375 C-16.675625 54.96484375 -17.335625 54.96484375 -18.015625 54.96484375 C-18.2425 55.64546875 -18.469375 56.32609375 -18.703125 57.02734375 C-20.10125047 60.1564817 -21.82653401 62.60407752 -23.89453125 65.31640625 C-25.20694792 67.0854469 -25.20694792 67.0854469 -26.015625 69.96484375 C-26.675625 69.96484375 -27.335625 69.96484375 -28.015625 69.96484375 C-28.13856934 70.53348145 -28.26151367 71.10211914 -28.38818359 71.68798828 C-29.0514102 74.09470086 -29.96518754 76.14942897 -31.0546875 78.39453125 C-47.83563668 113.6610777 -55.14519156 152.05778051 -48.015625 190.96484375 C-47.89203613 191.65239746 -47.76844727 192.33995117 -47.64111328 193.04833984 C-43.54057366 215.22107593 -35.3086416 237.28807832 -23.01171875 256.25 C-22.015625 257.96484375 -22.015625 257.96484375 -22.015625 259.96484375 C-21.355625 259.96484375 -20.695625 259.96484375 -20.015625 259.96484375 C-19.22287352 261.38090365 -18.43147188 262.79771928 -17.640625 264.21484375 C-17.19976562 265.00375 -16.75890625 265.79265625 -16.3046875 266.60546875 C-15.015625 268.96484375 -15.015625 268.96484375 -14.0390625 271.19921875 C-13.07399561 273.31326576 -13.07399561 273.31326576 -10.015625 273.96484375 C-8.53551431 275.59698132 -7.12803782 277.29574564 -5.765625 279.02734375 C-2.4069602 283.24762681 1.03080003 287.33038221 4.671875 291.30859375 C8.76373236 296.47212804 7.65263994 304.753162 6.984375 310.96484375 C5.53952607 314.56446739 3.64153537 317.16175237 0.984375 319.96484375 C0.49324219 320.48691406 0.00210938 321.00898437 -0.50390625 321.546875 C-5.0763916 325.82356615 -9.88100183 326.79542921 -15.953125 327.27734375 C-24.47233643 326.98187977 -30.24702008 322.97380721 -36.015625 316.96484375 C-38.30170725 314.34810836 -40.51985274 311.67790034 -42.69091797 308.96508789 C-44.97802215 306.02816987 -44.97802215 306.02816987 -48.015625 303.96484375 C-49.03394705 302.3093082 -50.02936062 300.63967519 -51.015625 298.96484375 C-51.81841704 297.81939657 -52.63445773 296.68316236 -53.4609375 295.5546875 C-54.11642578 294.6584668 -54.11642578 294.6584668 -54.78515625 293.74414062 C-55.69341472 292.51000844 -56.60491145 291.27825332 -57.51953125 290.04882812 C-59.71299872 287.03850556 -61.27652026 284.61225124 -62.015625 280.96484375 C-62.675625 280.96484375 -63.335625 280.96484375 -64.015625 280.96484375 C-74.9514494 260.49718289 -74.9514494 260.49718289 -79.015625 250.96484375 C-79.62470703 249.57845703 -79.62470703 249.57845703 -80.24609375 248.1640625 C-84.16819989 239.05270824 -87.67796938 229.6170992 -90.015625 219.96484375 C-90.33402344 218.8871875 -90.65242188 217.80953125 -90.98046875 216.69921875 C-92.03442539 212.89702046 -92.86146007 209.09115652 -93.578125 205.21484375 C-93.70888428 204.51166016 -93.83964355 203.80847656 -93.97436523 203.08398438 C-94.82880153 198.34638708 -95.42144576 193.65182485 -95.765625 188.84765625 C-96.01220458 186.00428548 -96.39230856 183.19513894 -96.79589844 180.37036133 C-100.31584832 155.04560083 -99.06365659 122.73701605 -89.015625 98.96484375 C-88.5536594 97.34662898 -88.11725479 95.72095618 -87.703125 94.08984375 C-85.07540467 84.31842141 -82.37062068 74.60646154 -77.140625 65.87890625 C-75.46593657 63.02960996 -74.26087603 60.021369 -73.015625 56.96484375 C-72.4556177 55.65127825 -71.8931614 54.33875382 -71.328125 53.02734375 C-70.895 52.01671875 -70.461875 51.00609375 -70.015625 49.96484375 C-69.355625 49.96484375 -68.695625 49.96484375 -68.015625 49.96484375 C-67.891875 49.22234375 -67.768125 48.47984375 -67.640625 47.71484375 C-67.06075799 45.1634289 -66.27853761 43.23808645 -65.015625 40.96484375 C-64.355625 40.96484375 -63.695625 40.96484375 -63.015625 40.96484375 C-62.7475 40.07796875 -62.479375 39.19109375 -62.203125 38.27734375 C-61.0905615 35.17387715 -59.91366722 32.6537369 -58.015625 29.96484375 C-57.355625 29.96484375 -56.695625 29.96484375 -56.015625 29.96484375 C-55.78101563 29.25714844 -55.54640625 28.54945313 -55.3046875 27.8203125 C-53.7764404 24.43501362 -51.81555645 22.08891288 -49.390625 19.27734375 C-48.49111636 18.22747929 -47.59269586 17.17668165 -46.6953125 16.125 C-46.24639648 15.6005127 -45.79748047 15.07602539 -45.33496094 14.53564453 C-42.65838769 11.34891761 -40.14235917 8.03165304 -37.609375 4.73046875 C-37.0834375 4.1478125 -36.5575 3.56515625 -36.015625 2.96484375 C-35.355625 2.96484375 -34.695625 2.96484375 -34.015625 2.96484375 C-33.685625 1.97484375 -33.355625 0.98484375 -33.015625 -0.03515625 C-22.57831182 -8.95036126 -10.48352992 -9.08944349 0 0 Z " fill="#11AC11" transform="translate(201.015625,245.03515625)"/>
|
|
8
|
+
<path d="M0 0 C5.85150188 4.05103976 10.26468435 9.48856541 14.67529297 14.99975586 C16.96239715 17.93667388 16.96239715 17.93667388 20 20 C21.01832205 21.65553555 22.01373562 23.32516856 23 25 C23.80279204 26.14544718 24.61883273 27.28168139 25.4453125 28.41015625 C25.88230469 29.00763672 26.31929687 29.60511719 26.76953125 30.22070312 C27.67778972 31.45483531 28.58928645 32.68659043 29.50390625 33.91601562 C31.69737372 36.92633819 33.26089526 39.35259251 34 43 C34.66 43 35.32 43 36 43 C46.9358244 63.46766086 46.9358244 63.46766086 51 73 C51.40605469 73.92425781 51.81210937 74.84851563 52.23046875 75.80078125 C56.15257489 84.91213551 59.66234438 94.34774455 62 104 C62.31839844 105.07765625 62.63679687 106.1553125 62.96484375 107.265625 C64.01880039 111.06782329 64.84583507 114.87368723 65.5625 118.75 C65.69325928 119.45318359 65.82401855 120.15636719 65.95874023 120.88085938 C66.81317653 125.61845667 67.40582076 130.3130189 67.75 135.1171875 C67.99657958 137.96055827 68.37668356 140.76970481 68.78027344 143.59448242 C72.30022332 168.91924292 71.04803159 201.2278277 61 225 C60.5380344 226.61821477 60.10162979 228.24388757 59.6875 229.875 C57.05977967 239.64642234 54.35499568 249.35838221 49.125 258.0859375 C47.45031157 260.93523379 46.24525103 263.94347475 45 267 C44.4399927 268.3135655 43.8775364 269.62608993 43.3125 270.9375 C42.879375 271.948125 42.44625 272.95875 42 274 C41.34 274 40.68 274 40 274 C39.87625 274.7425 39.7525 275.485 39.625 276.25 C39.04513299 278.80141485 38.26291261 280.7267573 37 283 C36.34 283 35.68 283 35 283 C34.731875 283.886875 34.46375 284.77375 34.1875 285.6875 C33.0749365 288.7909666 31.89804222 291.31110685 30 294 C29.34 294 28.68 294 28 294 C27.64808594 295.06154297 27.64808594 295.06154297 27.2890625 296.14453125 C25.7608154 299.52983013 23.79993145 301.87593087 21.375 304.6875 C20.47549136 305.73736446 19.57707086 306.7881621 18.6796875 307.83984375 C18.00631348 308.62657471 18.00631348 308.62657471 17.31933594 309.42919922 C14.64276269 312.61592614 12.12673417 315.93319071 9.59375 319.234375 C9.0678125 319.81703125 8.541875 320.3996875 8 321 C7.34 321 6.68 321 6 321 C5.67 321.99 5.34 322.98 5 324 C-0.80247261 329.06173143 -6.56834134 331.20083444 -14.32421875 330.9140625 C-22.15226516 329.68452641 -28.33668155 324.62765656 -33.0625 318.4375 C-36.25495872 312.76201784 -35.79431294 306.27956831 -35 300 C-33.45891025 294.86907765 -29.65045155 291.54935533 -25.8671875 287.9609375 C-23.0688167 285.02206272 -20.90601326 281.71197714 -18.67578125 278.33203125 C-17 276 -17 276 -14.85546875 273.88671875 C-12.76991498 272.04262684 -12.76991498 272.04262684 -12 269 C-11.34 269 -10.68 269 -10 269 C-9.773125 268.319375 -9.54625 267.63875 -9.3125 266.9375 C-7.91437453 263.80836205 -6.18909099 261.36076623 -4.12109375 258.6484375 C-2.80867708 256.87939685 -2.80867708 256.87939685 -2 254 C-1.34 254 -0.68 254 0 254 C0.12294434 253.4313623 0.24588867 252.86272461 0.37255859 252.27685547 C1.0357852 249.87014289 1.94956254 247.81541478 3.0390625 245.5703125 C19.82001168 210.30376605 27.12956656 171.90706324 20 133 C19.87641113 132.31244629 19.75282227 131.62489258 19.62548828 130.91650391 C15.52494866 108.74376782 7.2930166 86.67676543 -5.00390625 67.71484375 C-6 66 -6 66 -6 64 C-6.66 64 -7.32 64 -8 64 C-8.79275148 62.5839401 -9.58415312 61.16712447 -10.375 59.75 C-10.81585937 58.96109375 -11.25671875 58.1721875 -11.7109375 57.359375 C-13 55 -13 55 -13.9765625 52.765625 C-14.94162939 50.65157799 -14.94162939 50.65157799 -18 50 C-19.48011069 48.36786243 -20.88758718 46.66909811 -22.25 44.9375 C-25.6086648 40.71721694 -29.04642503 36.63446154 -32.6875 32.65625 C-36.77935736 27.49271571 -35.66826494 19.21168175 -35 13 C-33.55515107 9.40037636 -31.65716037 6.80309138 -29 4 C-28.50886719 3.47792969 -28.01773438 2.95585937 -27.51171875 2.41796875 C-19.92746382 -4.67566053 -8.76492319 -4.77774245 0 0 Z " fill="#11AC11" transform="translate(626,235)"/>
|
|
9
|
+
<path d="M0 0 C1.13505882 3.39780275 0.84592409 5.65425141 0.01806641 9.11254883 C-0.22166901 10.14369308 -0.46140442 11.17483734 -0.70840454 12.23722839 C-1.11184586 13.92384331 -1.11184586 13.92384331 -1.5234375 15.64453125 C-2.09047478 18.10155727 -2.6537838 20.55944591 -3.21386719 23.01806641 C-3.43453952 23.98584849 -3.43453952 23.98584849 -3.65966988 24.97318172 C-5.35215298 32.45644059 -6.82603449 39.98084146 -8.2890625 47.51171875 C-8.56562682 48.92970287 -8.84221792 50.34768177 -9.11883545 51.76565552 C-10.09991637 56.80293412 -11.07491849 61.84138475 -12.04876709 66.88006592 C-13.01996636 71.90404443 -13.9947982 76.92729334 -14.9765625 81.94921875 C-15.10927803 82.62829159 -15.24199356 83.30736443 -15.37873077 84.00701523 C-17.2906178 93.75528302 -19.36247288 103.42041443 -22 113 C-20.93144775 112.67789551 -19.86289551 112.35579102 -18.76196289 112.02392578 C-9.40697297 109.21354707 -0.00466023 106.67089232 9.45581055 104.24072266 C16.16734484 102.50643846 22.81733382 100.62120536 29.45483398 98.62426758 C34.27082098 97.18478082 39.07251553 95.98549689 44 95 C42.5265319 99.78633334 40.56722416 104.23827798 38.39453125 108.73828125 C37.65884961 110.27864366 36.92317273 111.81900834 36.1875 113.359375 C35.80078125 114.16568359 35.4140625 114.97199219 35.015625 115.80273438 C28.70237371 128.97242253 22.49824593 142.18395552 16.5 155.5 C11.08932549 167.50100029 5.52725424 179.4233982 -0.125 191.3125 C-0.89315961 192.92894946 -1.66130749 194.54540449 -2.42944336 196.16186523 C-2.99227776 197.34624428 -2.99227776 197.34624428 -3.56648254 198.55455017 C-4.12331978 199.72637596 -4.12331978 199.72637596 -4.69140625 200.921875 C-5.24274483 202.0820388 -5.24274483 202.0820388 -5.80522156 203.26564026 C-17.4998011 227.86607891 -17.4998011 227.86607891 -28.28735352 252.87329102 C-28.61920654 253.67178467 -28.95105957 254.47027832 -29.29296875 255.29296875 C-29.71872192 256.33747192 -29.71872192 256.33747192 -30.15307617 257.40307617 C-31 259 -31 259 -33 260 C-31.64548727 251.42409777 -29.55721736 243.08200495 -27.34558105 234.69750977 C-24.02946217 222.11406541 -20.89658832 209.50777649 -18.03051758 196.81323242 C-16.44675302 189.83215769 -14.70009678 182.91435412 -12.82983398 176.00512695 C-10.91086684 168.84414109 -9.28257068 161.62365292 -7.69897461 154.38183594 C-7.4090564 153.06940918 -7.4090564 153.06940918 -7.11328125 151.73046875 C-6.94610596 150.96114014 -6.77893066 150.19181152 -6.60668945 149.39916992 C-5.8847444 146.5442186 -4.95771921 143.78369344 -4 141 C-8.54226387 142.16434706 -13.08378909 143.33155411 -17.625 144.5 C-18.3116272 144.676521 -18.99825439 144.85304199 -19.70568848 145.03491211 C-27.6917492 147.0894635 -35.67042654 149.16785919 -43.6328125 151.3125 C-44.32013458 151.49735962 -45.00745667 151.68221924 -45.71560669 151.87268066 C-49.02489481 152.76344366 -52.33284929 153.65879707 -55.63916016 154.56054688 C-56.82558105 154.88087891 -58.01200195 155.20121094 -59.234375 155.53125 C-60.80010254 155.95760742 -60.80010254 155.95760742 -62.39746094 156.39257812 C-65 157 -65 157 -68 157 C-66.02448512 150.68645887 -63.65355342 144.6735265 -60.9296875 138.6484375 C-60.33982811 137.32912231 -60.33982811 137.32912231 -59.73805237 135.9831543 C-58.89370612 134.09545569 -58.04752901 132.20857512 -57.19967651 130.32244873 C-54.92477227 125.26071211 -52.66421582 120.19257022 -50.40234375 115.125 C-49.94342239 114.0976474 -49.48450104 113.0702948 -49.01167297 112.0118103 C-44.76286938 102.49099472 -40.58903369 92.93854498 -36.4375 83.375 C-29.58733311 67.60276512 -22.65646449 51.86730125 -15.68139648 36.14990234 C-10.35733885 24.14088708 -5.14756534 12.08569813 0 0 Z " fill="#FBFEFB" transform="translate(411,260)"/>
|
|
10
|
+
<path d="M0 0 C0.33 0.99 0.66 1.98 1 3 C1.66 3.33 2.32 3.66 3 4 C1.35 7.63 -0.3 11.26 -2 15 C-3.23922223 11.28233332 -2.57018942 9.56110463 -1.5625 5.8125 C-1.13130859 4.18248047 -1.13130859 4.18248047 -0.69140625 2.51953125 C-0.46324219 1.68808594 -0.23507812 0.85664063 0 0 Z " fill="#C4F5CC" transform="translate(381,505)"/>
|
|
11
|
+
<path d="M0 0 C1.07310858 3.27185553 0.89263102 5.42947592 0.0625 8.75 C-0.22947266 9.94882812 -0.22947266 9.94882812 -0.52734375 11.171875 C-0.68332031 11.77515625 -0.83929688 12.3784375 -1 13 C-1.99 12.67 -2.98 12.34 -4 12 C-3.33501617 7.61110675 -1.81242323 4.0188515 0 0 Z " fill="#CEF6D4" transform="translate(411,260)"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pv-notifications": "PV Notifications",
|
|
3
|
+
"header_telegram": "Telegram Konfiguration",
|
|
4
|
+
"label_telegramInstance": "Telegram Instanz",
|
|
5
|
+
"label_telegramUsers": "Telegram Benutzer (kommagetrennt)",
|
|
6
|
+
"tooltip_telegramUsers": "Z.B. User1, User2 oder -123456789 (ID)",
|
|
7
|
+
"header_datapoints": "Datenpunkte Konfiguration",
|
|
8
|
+
"label_batterySOC": "Batterie SOC Datenpunkt",
|
|
9
|
+
"tooltip_batterySOC": "Z.B. modbus.0.holdingRegisters.40083_Batterie_SOC",
|
|
10
|
+
"label_powerProduction": "Aktuelle PV-Leistung (W)",
|
|
11
|
+
"label_totalProduction": "Gesamtproduktion heute (kWh)",
|
|
12
|
+
"label_feedIn": "Einspeisung heute (kWh)",
|
|
13
|
+
"label_consumption": "Hausverbrauch heute (kWh)",
|
|
14
|
+
"label_gridPower": "Netzbezug heute (kWh)",
|
|
15
|
+
"label_weeklyProduction": "Produktion diese Woche (kWh)",
|
|
16
|
+
"tooltip_weeklyProduction": "sourceanalytix...Produktion.currentWeek",
|
|
17
|
+
"label_weeklyConsumption": "Verbrauch diese Woche (kWh)",
|
|
18
|
+
"tooltip_weeklyConsumption": "sourceanalytix...Verbrauch.currentWeek",
|
|
19
|
+
"label_weeklyFeedIn": "Einspeisung diese Woche (kWh)",
|
|
20
|
+
"tooltip_weeklyFeedIn": "sourceanalytix...Einspeisung.currentWeek",
|
|
21
|
+
"label_weeklyGridPower": "Netzbezug diese Woche (kWh)",
|
|
22
|
+
"tooltip_weeklyGridPower": "sourceanalytix...Netzbezug.currentWeek",
|
|
23
|
+
"label_monthlyProduction": "Produktion diesen Monat (kWh)",
|
|
24
|
+
"tooltip_monthlyProduction": "sourceanalytix...Produktion.currentMonth",
|
|
25
|
+
"label_monthlyConsumption": "Verbrauch diesen Monat (kWh)",
|
|
26
|
+
"tooltip_monthlyConsumption": "sourceanalytix...Verbrauch.currentMonth",
|
|
27
|
+
"label_monthlyFeedIn": "Einspeisung diesen Monat (kWh)",
|
|
28
|
+
"tooltip_monthlyFeedIn": "sourceanalytix...Einspeisung.currentMonth",
|
|
29
|
+
"label_monthlyGridPower": "Netzbezug diesen Monat (kWh)",
|
|
30
|
+
"tooltip_monthlyGridPower": "sourceanalytix...Netzbezug.currentMonth",
|
|
31
|
+
"header_battery": "Batterie Konfiguration",
|
|
32
|
+
"label_batteryCapacityWh": "Batterie-Kapazität (Wh)",
|
|
33
|
+
"label_thresholdFull": "Schwellwert VOLL (%)",
|
|
34
|
+
"label_thresholdEmpty": "Schwellwert LEER (%)",
|
|
35
|
+
"label_thresholdResetFull": "Reset VOLL unter (%)",
|
|
36
|
+
"label_thresholdResetEmpty": "Reset LEER über (%)",
|
|
37
|
+
"header_intermediate": "Nachtmodus & Intermediate-Stufen",
|
|
38
|
+
"label_nightModeEnabled": "Nachtmodus aktivieren",
|
|
39
|
+
"tooltip_nightModeEnabled": "Wenn deaktiviert, werden Benachrichtigungen auch nachts gesendet",
|
|
40
|
+
"label_nightModeStart": "Start",
|
|
41
|
+
"tooltip_nightModeStart": "Startzeit für Nachtmodus (z.B. 00:00)",
|
|
42
|
+
"label_nightModeEnd": "Ende",
|
|
43
|
+
"tooltip_nightModeEnd": "Endezeit für Nachtmodus (z.B. 08:00)",
|
|
44
|
+
"label_nightModeIgnoreEmpty": "Nachtmodus für 0% Batterie ignorieren",
|
|
45
|
+
"tooltip_nightModeIgnoreEmpty": "Wenn aktiviert, wird bei 0% immer benachrichtigt (auch nachts)",
|
|
46
|
+
"label_quietModeEnabled": "Ruhemodus aktivieren",
|
|
47
|
+
"tooltip_quietModeEnabled": "Wenn aktiviert, werden keine Benachrichtigungen während der Ruhezeit gesendet",
|
|
48
|
+
"label_quietModeStart": "Start",
|
|
49
|
+
"tooltip_quietModeStart": "Startzeit für Ruhemodus (z.B. 22:00)",
|
|
50
|
+
"label_quietModeEnd": "Ende",
|
|
51
|
+
"tooltip_quietModeEnd": "Endezeit für Ruhemodus (z.B. 07:00)",
|
|
52
|
+
"label_intermediateSteps": "Intermediate-Stufen (kommagetrennt)",
|
|
53
|
+
"tooltip_intermediateSteps": "Z.B. 20,40,60,80",
|
|
54
|
+
"label_minIntervalFull": "Min. Intervall VOLL (Minuten)",
|
|
55
|
+
"label_minIntervalEmpty": "Min. Intervall LEER (Minuten)",
|
|
56
|
+
"label_minIntervalIntermediate": "Min. Intervall Intermediate (Minuten)",
|
|
57
|
+
"header_statistics": "Statistik & Zeitplanung",
|
|
58
|
+
"label_statsDayTime": "Tagesstatistik Uhrzeit",
|
|
59
|
+
"tooltip_statsDayTime": "Format: HH:MM (z.B. 22:00)",
|
|
60
|
+
"label_statsWeekDay": "Wochentag für Wochenstatistik",
|
|
61
|
+
"tooltip_statsWeekDay": "0=Montag, 1=Dienstag, ..., 6=Sonntag",
|
|
62
|
+
"label_statsWeekTime": "Uhrzeit für Wochenstatistik",
|
|
63
|
+
"tooltip_statsWeekTime": "Format: HH:MM (z.B. 10:00)",
|
|
64
|
+
"header_monthly": "Monatsstatistik (Optional)",
|
|
65
|
+
"label_monthlyStatsEnabled": "Monatsstatistik aktivieren",
|
|
66
|
+
"label_monthlyStatsDay": "Tag des Monats",
|
|
67
|
+
"tooltip_monthlyStatsDay": "1-31 (z.B. 1 = Erster des Monats)",
|
|
68
|
+
"label_monthlyStatsTime": "Uhrzeit",
|
|
69
|
+
"tooltip_monthlyStatsTime": "Format: HH:MM (z.B. 09:00)",
|
|
70
|
+
"header_weather": "Wetter (Optional)",
|
|
71
|
+
"label_weatherTodayText": "Wetter heute",
|
|
72
|
+
"tooltip_weatherTodayText": "Z.B. daswetter.0.Day0.forecast.currentSymbol",
|
|
73
|
+
"label_weatherTodayTemp": "Temperatur heute (°C)",
|
|
74
|
+
"tooltip_weatherTodayTemp": "Z.B. daswetter.0.Day0.forecast.maxTemp",
|
|
75
|
+
"label_weatherTomorrowText": "Wetter morgen",
|
|
76
|
+
"tooltip_weatherTomorrowText": "Z.B. daswetter.0.Day1.forecast.currentSymbol",
|
|
77
|
+
"label_weatherTomorrowTemp": "Temperatur morgen (°C)",
|
|
78
|
+
"tooltip_weatherTomorrowTemp": "Z.B. daswetter.0.Day1.forecast.maxTemp",
|
|
79
|
+
"header_thresholds": "Schwellwerte für Empfehlungen",
|
|
80
|
+
"label_highProduction": "Hohe Produktion ab (W)",
|
|
81
|
+
"label_highConsumption": "Hoher Verbrauch ab (W)",
|
|
82
|
+
"label_testButton": "Test-Benachrichtigung",
|
|
83
|
+
"buttonText_testButton": "Test senden",
|
|
84
|
+
"tooltip_testButton": "Sendet eine Test-Benachrichtigung an alle konfigurierten Telegram-Benutzer",
|
|
85
|
+
"Test Notification": "Test-Benachrichtigung"
|
|
86
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pv-notifications": "PV Notifications",
|
|
3
|
+
"header_telegram": "Telegram Configuration",
|
|
4
|
+
"label_telegramInstance": "Telegram Instance",
|
|
5
|
+
"label_telegramUsers": "Telegram Users (comma-separated)",
|
|
6
|
+
"tooltip_telegramUsers": "e.g. User1, User2 or -123456789 (ID)",
|
|
7
|
+
"header_datapoints": "Data Points Configuration",
|
|
8
|
+
"label_batterySOC": "Battery SOC Data Point",
|
|
9
|
+
"tooltip_batterySOC": "e.g. modbus.0.holdingRegisters.40083_Battery_SOC",
|
|
10
|
+
"label_powerProduction": "Current PV Power (W)",
|
|
11
|
+
"label_totalProduction": "Total Production Today (kWh)",
|
|
12
|
+
"label_feedIn": "Feed-in Today (kWh)",
|
|
13
|
+
"label_consumption": "House Consumption Today (kWh)",
|
|
14
|
+
"label_gridPower": "Grid Consumption Today (kWh)",
|
|
15
|
+
"label_weeklyProduction": "Production This Week (kWh)",
|
|
16
|
+
"tooltip_weeklyProduction": "sourceanalytix...Production.currentWeek",
|
|
17
|
+
"label_weeklyConsumption": "Consumption This Week (kWh)",
|
|
18
|
+
"tooltip_weeklyConsumption": "sourceanalytix...Consumption.currentWeek",
|
|
19
|
+
"label_weeklyFeedIn": "Feed-in This Week (kWh)",
|
|
20
|
+
"tooltip_weeklyFeedIn": "sourceanalytix...Feed-in.currentWeek",
|
|
21
|
+
"label_weeklyGridPower": "Grid Consumption This Week (kWh)",
|
|
22
|
+
"tooltip_weeklyGridPower": "sourceanalytix...GridConsumption.currentWeek",
|
|
23
|
+
"label_monthlyProduction": "Production This Month (kWh)",
|
|
24
|
+
"tooltip_monthlyProduction": "sourceanalytix...Production.currentMonth",
|
|
25
|
+
"label_monthlyConsumption": "Consumption This Month (kWh)",
|
|
26
|
+
"tooltip_monthlyConsumption": "sourceanalytix...Consumption.currentMonth",
|
|
27
|
+
"label_monthlyFeedIn": "Feed-in This Month (kWh)",
|
|
28
|
+
"tooltip_monthlyFeedIn": "sourceanalytix...Feed-in.currentMonth",
|
|
29
|
+
"label_monthlyGridPower": "Grid Consumption This Month (kWh)",
|
|
30
|
+
"tooltip_monthlyGridPower": "sourceanalytix...GridConsumption.currentMonth",
|
|
31
|
+
"header_battery": "Battery Configuration",
|
|
32
|
+
"label_batteryCapacityWh": "Battery Capacity (Wh)",
|
|
33
|
+
"label_thresholdFull": "Threshold FULL (%)",
|
|
34
|
+
"label_thresholdEmpty": "Threshold EMPTY (%)",
|
|
35
|
+
"label_thresholdResetFull": "Reset FULL below (%)",
|
|
36
|
+
"label_thresholdResetEmpty": "Reset EMPTY above (%)",
|
|
37
|
+
"header_intermediate": "Night Mode & Intermediate Levels",
|
|
38
|
+
"label_nightModeEnabled": "Activate night mode",
|
|
39
|
+
"tooltip_nightModeEnabled": "If disabled, notifications will be sent at night too",
|
|
40
|
+
"label_nightModeStart": "Start",
|
|
41
|
+
"tooltip_nightModeStart": "Start time for night mode (e.g. 00:00)",
|
|
42
|
+
"label_nightModeEnd": "End",
|
|
43
|
+
"tooltip_nightModeEnd": "End time for night mode (e.g. 08:00)",
|
|
44
|
+
"label_nightModeIgnoreEmpty": "Ignore night mode for 0% battery",
|
|
45
|
+
"tooltip_nightModeIgnoreEmpty": "If enabled, 0% will always notify (even at night)",
|
|
46
|
+
"label_quietModeEnabled": "Activate quiet mode",
|
|
47
|
+
"tooltip_quietModeEnabled": "If enabled, no notifications will be sent during quiet time",
|
|
48
|
+
"label_quietModeStart": "Start",
|
|
49
|
+
"tooltip_quietModeStart": "Start time for quiet mode (e.g. 22:00)",
|
|
50
|
+
"label_quietModeEnd": "End",
|
|
51
|
+
"tooltip_quietModeEnd": "End time for quiet mode (e.g. 07:00)",
|
|
52
|
+
"label_intermediateSteps": "Intermediate levels (comma-separated)",
|
|
53
|
+
"tooltip_intermediateSteps": "e.g. 20,40,60,80",
|
|
54
|
+
"label_minIntervalFull": "Min. interval FULL (minutes)",
|
|
55
|
+
"label_minIntervalEmpty": "Min. interval EMPTY (minutes)",
|
|
56
|
+
"label_minIntervalIntermediate": "Min. interval Intermediate (minutes)",
|
|
57
|
+
"header_statistics": "Statistics & Scheduling",
|
|
58
|
+
"label_statsDayTime": "Daily statistics time",
|
|
59
|
+
"tooltip_statsDayTime": "Format: HH:MM (e.g. 22:00)",
|
|
60
|
+
"label_statsWeekDay": "Weekday for weekly statistics",
|
|
61
|
+
"tooltip_statsWeekDay": "0=Monday, 1=Tuesday, ..., 6=Sunday",
|
|
62
|
+
"label_statsWeekTime": "Time for weekly statistics",
|
|
63
|
+
"tooltip_statsWeekTime": "Format: HH:MM (e.g. 10:00)",
|
|
64
|
+
"header_monthly": "Monthly Statistics (Optional)",
|
|
65
|
+
"label_monthlyStatsEnabled": "Activate monthly statistics",
|
|
66
|
+
"label_monthlyStatsDay": "Day of month",
|
|
67
|
+
"tooltip_monthlyStatsDay": "1-31 (e.g. 1 = First of month)",
|
|
68
|
+
"label_monthlyStatsTime": "Time",
|
|
69
|
+
"tooltip_monthlyStatsTime": "Format: HH:MM (e.g. 09:00)",
|
|
70
|
+
"header_weather": "Weather (Optional)",
|
|
71
|
+
"label_weatherTodayText": "Weather today",
|
|
72
|
+
"tooltip_weatherTodayText": "e.g. daswetter.0.Day0.forecast.currentSymbol",
|
|
73
|
+
"label_weatherTodayTemp": "Temperature today (°C)",
|
|
74
|
+
"tooltip_weatherTodayTemp": "e.g. daswetter.0.Day0.forecast.maxTemp",
|
|
75
|
+
"label_weatherTomorrowText": "Weather tomorrow",
|
|
76
|
+
"tooltip_weatherTomorrowText": "e.g. daswetter.0.Day1.forecast.currentSymbol",
|
|
77
|
+
"label_weatherTomorrowTemp": "Temperature tomorrow (°C)",
|
|
78
|
+
"tooltip_weatherTomorrowTemp": "e.g. daswetter.0.Day1.forecast.maxTemp",
|
|
79
|
+
"header_thresholds": "Thresholds for recommendations",
|
|
80
|
+
"label_highProduction": "High production from (W)",
|
|
81
|
+
"label_highConsumption": "High consumption from (W)",
|
|
82
|
+
"label_testButton": "Test Notification",
|
|
83
|
+
"buttonText_testButton": "Send Test",
|
|
84
|
+
"tooltip_testButton": "Sends a test notification to all configured Telegram users",
|
|
85
|
+
"Test Notification": "Test Notification"
|
|
86
|
+
}
|