From 0ad0d9fe2739b2c103ea6d46f888f3f522398d03 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 26 Jul 2023 20:24:46 +0200 Subject: [PATCH] 2023.8: Initial beta release notes --- .../_posts/2023-08-02-release-20238.markdown | 631 ++++++ source/changelogs/core-2023.8.markdown | 2002 +++++++++++++++++ source/images/blog/2023-08/social.png | Bin 0 -> 197035 bytes 3 files changed, 2633 insertions(+) create mode 100644 source/_posts/2023-08-02-release-20238.markdown create mode 100644 source/changelogs/core-2023.8.markdown create mode 100644 source/images/blog/2023-08/social.png diff --git a/source/_posts/2023-08-02-release-20238.markdown b/source/_posts/2023-08-02-release-20238.markdown new file mode 100644 index 00000000000..eb9e2f6e937 --- /dev/null +++ b/source/_posts/2023-08-02-release-20238.markdown @@ -0,0 +1,631 @@ +--- +layout: post +title: "2023.8: Beta release notes" +description: "Beta release notes for Home Assistant Core 2023.8." +date: 2023-07-26 00:00:00 +date_formatted: "August 2, 2023" +author: Franck Nijhof +author_twitter: frenck +comments: true +categories: + - Release-Notes + - Core +og_image: /images/blog/2023-08/social.png +--- + + + + + +These are the beta release notes for Home Assistant Core 2023.8 (and is thus a +work in progress). + +If you encounter any issues with the beta release, please report them on GitHub: + +- Issues with integrations, automations and such (Core related):
+ +- Issues with the frontend/UI/dashboards:
+ +- Issues with the Supervisor:
+ +- Issues with the documentation:
+ + +Please be sure to include the beta version you are running in the issue +version field (not title), so we can classify your issue correctly. + +Issues introduced in the beta are processed with priority. + +--- + + + +Home Assistant Core 2023.8! 🎉 + +Thanks for helping out testing the beta! ❤️ + +Enjoy the (beta) release! + +../Frenck + + + +- [Translated services](#translated-services) +- [Introducing the event entity](#introducing-the-event-entity) +- [Improving the first experience with Home Assistant](#improving-the-first-experience-with-home-assistant) +- [Add items to your shopping list with Assist](#add-items-to-your-shopping-list-with-assist) +- [Wildcard support for sentence triggers](#wildcard-support-for-sentence-triggers) +- [Generate an image with OpenAI's DALL-E](#generate-an-image-with-openais-dall-e) +- [Condition selector](#condition-selector) +- [Other noteworthy changes](#other-noteworthy-changes) +- [New integrations](#new-integrations) +- [Integrations now available to set up from the UI](#integrations-now-available-to-set-up-from-the-ui) +- [Need help? Join the community!](#need-help-join-the-community) +- [Breaking changes](#breaking-changes) +- [Farewell to the following](#farewell-to-the-following) +- [All changes](#all-changes) + +Don't forget to [join our release party live stream on YouTube](https://www.youtube.com/watch?v=4EpUgLW03Pg) +2 August 2023, at 12:00 PDT / 21:00 CEST! + + + +## Translated services + +{% details "TODO" %} + +- Improve/extend story +- Proof read/spelling/grammar +- Replace screenshot + +Sources: + +- Add support for service translations ([@frenck] - [#95984]) ([light docs]) (noteworthy) +- Add support for service translations (#17264) @bramkragten + +{% enddetails %} + +All services in Home Assistant are now translatable! 🌎 + +Services are the actions you can call, like turning on a light. This was one of +the bigger things in Home Assistant, that still was only available in English. + +Starting this release, we are adding translations to these services. Hoping to +drasticly improve the experience when English is not main language. + +

+ +Temporary screenshot. My Home Assistant uses the Dutch language, and the service +to turn on a light is also translated into Dutch! +

+ +This is a big step forward! As a matter of fact, this change caused our +translations to grow and actually double! 😅 + +Because of that, It might take some time to translate all services; however... +You can help! You don't have to be a developer to help out with this, you can +do this from the comfort of your own browser. Check out our documentation on +[how to contribute translations](https://developers.home-assistant.io/docs/translations). + +## Introducing the event entity + +{% details "TODO" %} + +- Improve/extend story +- Proof read/spelling/grammar +- Replace screenshot + +Sources: + +- https://github.com/home-assistant/architecture/discussions/929 +- https://github.com/home-assistant/frontend/pull/17332 +- Add MQTT event entity platform ([@jbouwh] - [#96876]) ([mqtt docs]) (new-platform) (new-integration) +- Add doorbell event support to alexa ([@jbouwh] - [#97092]) ([alexa docs]) + +{% enddetails %} + +Events are signals that are emitted when something happens, for example, when +a user presses a physical button like a doorbell or when a button on a remote +control is pressed. + +If you ever tried to work with events in Home Assistant, you probably noticed +that it is not the easiest thing to do. You need to know the event name, +and then you need to know the data that is being sent with it. Before you know it, +you'll start fiddling with the developer tools to figure out what is going on. + +To make this all easier, we are introducing a new entity type this release: The event entity. + +The event entity can capture these events in the physical world and makes them +available in Home Assistant as an entity. + +The event entity can be used like any other entity in Home Assistant: They will +show up in the UI, can be used directly in the automations editor and provides +historical information in the logbook. + +

+ +Temporary screen recording, showing a fake/demo button that triggers an event entity. Mainly to showcase the UI of the event entity. +

+ +

+ +Temporary screenshot. Matter supports the event entity, as shown for this Philips Hue remote. +

+ +Besides [Matter](/integrations/matter), the event entity is also supported by +[HomeKit Devices](/integrations/homekit_controller), [MQTT](/integrations/mqtt), +and [Philips Hue](/integrations/hue). We expect to see more integrations +supporting this new entity type soon. + +## Improving the first experience with Home Assistant + +{% details "TODO" %} + +- Improve/extend story +- Proof read/spelling/grammar +- Replace screenshot + +Sources: + +- Use nominatim from openstreetmap for location search in onboarding (#17287) @bramkragten +- https://github.com/home-assistant/frontend/pull/17287 + +{% enddetails %} + +Onboarding is the first experience a user has with Home Assistant, and we want +to make it as smooth as possible. This release, we are improving the onboarding +experience by adding a search field to the map, so you can search for your +location instead of endless dragging the map around. + +

+ +Temporary screenshot. +

+ +This is powered by [OpenStreetMap](https://www.openstreetmap.org/) ❤️ + +## Add items to your shopping list with Assist + +{% details "TODO" %} + +- Improve/extend story +- Proof read/spelling/grammar +- Replace screenshot + +{% enddetails %} + +What if you could ask [Assist](/integrations/assist) to add items to your +Home Assistant [shopping list](/integrations/shopping_list)? Well, now you can! + +> Add milk to my shopping list! + +😎 + +## Wildcard support for sentence triggers + +{% details "TODO" %} + +- Improve/extend story +- Proof read/spelling/grammar +- Replace screenshot + +Sources: + +- https://github.com/home-assistant/core/pull/97236 +- https://github.com/home-assistant/home-assistant.io/pull/28332 + +{% enddetails %} + +⚠️ **This is pending a final review and might not make it into the release.** + +Sentence triggers now support wildcards! This means you can now partially match +a sentence, and use the matched part in your actions. This is what powers the +above shopping list feature too and it can be used for many other things as well. + +You could for example, create a sentence trigger that matches when you say: + +> Play the white album by the beatles + +Using the wildcard support, you can actually get the album and artist name +from the sentence, and use that in your actions. + +Sentence trigger; `Play {album} by {artist}` + +This will make `album` and `artist` available as trigger variables that you +can use in your actions; e.g., to start playing the music requested. Or maybe, +you could even ask to display an AI generated image on your TV using a prompt... + +## Generate an image with OpenAI's DALL-E + +{% details "TODO" %} + +- Improve/extend story +- Proof read/spelling/grammar +- Replace screenshot + +Sources: + +- https://github.com/home-assistant/core/pull/97018 + +{% enddetails %} + +In the last release, we added the ability for service to respond with data, +and now we added a service that allows you to generate an image using +[OpenAI's DALL-E](https://openai.com/dall-e-2). + +All you need is having the [OpenAI conversation agent](/integrations/openai_conversation) +integration set up on your instance, and you will get a new service: +{% my developer_call_service service="openai_conversation.generate_image" %}. + + +Call this service describing the image you'd like the AI to generate, and +it will respond with an image URL you can use in your automations. + +

+ +Temporary screenshot. +

+ +You could, for example use this to generate an image of a city that matches +the weather conditions outside of your home, let the AI generate an image +about the latest new headline to show on your dashboard, or maybe a nice +random piece of abstract art to show on your TV. + +

+ +Temporary screenshot. AI generated image of New York based on the current weather state. +

+ +But if you combine it with the wildcard support for sentence triggers, you +could even ask Home Assistant to generate an image for you by using your voice! + +{% my developer_call_service badge service="openai_conversation.generate_image" %} + +## Condition selector + +{% details "TODO" %} + +- Improve/extend story +- Proof read/spelling/grammar +- Replace screenshot + +Sources: + +- Add condition selector for blueprint (#17278) @piitaya +https://github.com/home-assistant/frontend/pull/17278 + +{% enddetails %} + +A new selector is available for use in, for example, blueprints: +[The condition selector](/docs/blueprint/selectors/#condition-selector). + +This selector takes and shows the condition part of the automation editor, +and allows Blueprints creators to use a user-provided condition in their +blueprint. + +

+ +Temporary screenshot. +

+ +## Other noteworthy changes + +{% details "TODO" %} + +- Proof read/spelling/grammar +- Last minute ones added? +- Go over list again, might have missed something + +Still to process: + +- Add unique_id to Wirelesstag entities. ([@davecpearce] - [#95631]) ([wirelesstag docs]) +- Add Bridge module to AsusWRT ([@ollo69] - [#84152]) ([asuswrt docs]) +- Add mold risk sensor to Notion ([@bachya] - [#95643]) ([notion docs]) +- Add Airzone Cloud Zone running binary sensor ([@Noltari] - [#95606]) ([airzone_cloud docs]) +- Speed up hassio ingress ([@bdraco] - [#95777]) ([hassio docs]) +- Airvisual Pro Outside Station Support ([@tedivm] - [#96618]) ([airvisual_pro docs]) +- Add support for multiple Russound RNET controllers ([@stonith] - [#96793]) ([media_player docs]) +- Add sensors to LOQED integration for battery percentage and BLE stength ([@mikewoudenberg] - [#95726]) ([loqed docs]) (new-platform) +- Add UV Index and UV Health Concern sensors to tomorrow.io ([@dirrgang] - [#96534]) ([tomorrowio docs]) +- Add humidity to NWS forecast ([@lymanepp] - [#95575]) ([nws docs]) +- Add new Forecasting to Weather ([@gjohansson-ST] - [#75219]) ([demo docs]) ([weather docs]) ([kitchen_sink docs]) (deprecation) +- Add uv_index to Weather Entity ([@gjohansson-ST] - [#96951]) ([weather docs]) +- Add `uv_index` to AccuWeather weather entity ([@bieniu] - [#97015]) ([accuweather docs]) +- Add humidity to meteo_france weather forecast ([@vingerha] - [#96524]) ([meteo_france docs]) +- Add external power sensor for Shelly Plus HT ([@bieniu] - [#96768]) ([shelly docs]) +- Add sensors for Shelly Plus PM Mini ([@bieniu] - [#97163]) ([shelly docs]) +- Add new sensors for Shelly Pro 3EM ([@bieniu] - [#97006]) ([shelly docs]) +- Add Airzone Cloud Aidoo binary sensors ([@Noltari] - [#95607]) ([airzone_cloud docs]) +- Add action attribute to generic hygrostat ([@Shulyaka] - [#95675]) ([generic_hygrostat docs]) +- Add service turn_on and turn_off service for water_heater ([@jbouwh] - [#94817]) ([water_heater docs]) +- Add turn on/off support for mqtt water_heater ([@jbouwh] - [#97197]) ([mqtt docs]) + +{% enddetails %} + +There are much more easter bunnies in this release; here are some of the other +noteworthy changes this release: + +- Tons of performance upgrades again this month (thanks [@bdraco]), these + include a much faster ingress experience when visiting add-on web interfaces. 🚀 +- [@emontnemery] added filters to many of the services Home Assistant provides, + meaning only options that are relevant to the entity you are calling the + service on, will be shown in the UI. Nice! +- CO2Signal changed their name to [Electricity Maps]. The integration + has been renamed to match that. Thanks, [@madsnedergaard]! +- [@Lash-L] keeps extending the [Roborock] integration, adding many new entities + this release. This includes an error sensor, volume controls, and DnD setting + times. Awesome! +- [EZVIZ] received a big update, adding support for alarm control panels, button, + and select entities. Thanks [@RenierM26]! +- [@farmio] added support for adding [date] and [date/time] entities to [KNX]! Great! +- The [Xiaomi BLE] now supports for the MiScale (V1 and V2). Thanks [@Ernst79]! +- [UniFi Network] now has controls to enable and disable a UniFi WLAN, and added + image entities for QR-codes for WLAN access. Thanks [@Kane610]! + + +[@bdraco]: https://github.com/bdraco +[@emontnemery]: https://github.com/emontnemery +[@Ernst79]: https://github.com/Ernst79 +[@farmio]: https://github.com/farmio +[@Kane610]:https://github.com/Kane610 +[@Lash-L]: https://github.com/Lash-L +[@madsnedergaard]: https://github.com/madsnedergaard +[@RenierM26]:https://github.com/RenierM26 +[date]: /integrations/date +[date/time]: /integrations/datetime +[Electricity Maps]: /integrations/co2signal +[EZVIZ]: /integrations/ezviz +[KNX]: /integrations/knx +[UniFi Network]: /integrations/unifi +[Xiaomi BLE]: /integrations/xiaomi_ble +[Roborock]: /integrations/roborock + +## New integrations + +We welcome the following new integrations in this release: + +- **[Electric Kiwi]**, added by [@mikey0000]
+ Integrate with the independent power and broadband company [Electric Kiwi](https://www.electrickiwi.co.nz/) from New Zealand. +- **[Event]**, added by [@frenck]
+ A new event entity that can be provided by other integrations to show detected events. +- **[Duotecno]**, added by [@Cereal2nd]
+ Integrate with the [Duotecno](https://www.duotecno.be/) nodes. +- **[Gardena Bluetooth]**, added by [@elupus]
+ Integrate your [Gardena Smart](https://www.gardena.com/int/products/smart/) devices using Bluetooth. +- **[Opower]**, added by [@tronikos]
+ Read out energy information from utilities that use [Opwer](https://www.oracle.com/industries/utilities/opower-energy-efficiency/). + See the virtual integrations below for which utility providers those are. +- **[PEGELONLINE]**, added by [@mib1185]
+ Provides water level sensors from the [German Federal Waterways and Shipping Administration](https://www.pegelonline.wsv.de/). + +This release also has a new virtual integration. Virtual integrations +are stubs that are handled by other (existing) integrations to help with +findability. These are is new: + +- **[Atlantic City Electric]** provided by [Opower] +- **[Baltimore Gas and Electric (BGE)]** provided by [Opower] +- **[Commonwealth Edison (ComEd)]** provided by [Opower] +- **[Delmarva Power]** provided by [Opower] +- **[Evergy]** provided by [Opower] +- **[Pacific Gas & Electric (PG&E)]** provided by [Opower] +- **[PECO Energy Company (PECO)]** provided by [Opower] +- **[Potomac Electric Power Company (Pepco)]** provided by [Opower] +- **[Puget Sound Energy (PSE)]** provided by [Opower] + +[@Cereal2nd]: https://github.com/Cereal2nd +[@elupus]: https://github.com/elupus +[@frenck]: https://github.com/frenck +[@mib1185]: https://github.com/mib1185 +[@mikey0000]: https://github.com/mikey0000 +[@tronikos]: https://github.com/tronikos +[Atlantic City Electric]: /integrations/atlanticcityelectric +[Baltimore Gas and Electric (BGE)]: /integrations/bge +[Commonwealth Edison (ComEd)]: /integrations/comed +[Delmarva Power]: /integrations/delmarva +[Duotecno]: /integrations/duotecno +[Electric Kiwi]: /integrations/electric_kiwi +[Event]: /integrations/event +[Evergy]: /integrations/evergy +[Gardena Bluetooth]: /integrations/gardena_bluetooth +[Opower]: /integrations/opower +[Pacific Gas & Electric (PG&E)]: /integrations/pge +[PECO Energy Company (PECO)]: /integrations/peco_opower +[PEGELONLINE]: /integrations/pegel_online +[Potomac Electric Power Company (Pepco)]: /integrations/pepco +[Puget Sound Energy (PSE)]: /integrations/pse + +## Integrations now available to set up from the UI + +The following integrations are now available via the Home Assistant UI: + +- **[OpenSky]**, done by [@joostlek] +- **[Zodiac]**, done by [@joostlek] + +[@joostlek]: https://github.com/jooostlek +[OpenSky]: /integrations/opensky +[Zodiac]: /integrations/zodiac + +## Need help? Join the community! + +Home Assistant has a great community of users who are all more than willing +to help each other out. So, join us! + +Our very active [Discord chat server](/join-chat) is an excellent place to be +at, and don't forget to join our amazing [forums](https://community.home-assistant.io/). + +Found a bug or issue? Please report it in our [issue tracker](https://github.com/home-assistant/core/issues), +to get it fixed! Or, check [our help page](/help) for guidance for more +places you can go. + +Are you more into email? [Sign-up for our Building the Open Home Newsletter](/newsletter) +to get the latest news about features, things happening in our community and +other news about building an Open Home; straight into your inbox. + +## Breaking changes + +{% details "Python 3.10 support has been removed" %} + +Python 3.10 support has previously been deprecated and has now been removed. +Home Assistant now requires Python 3.11 to run. + +If you are using Home Assistant OS, Home Assistant Container, +or Home Assistant Supervised installation method, you don’t have to do anything. +In those cases, we handle this all for you. + +Your system has been using Python 3.11 for quite some time already. + +([@frenck] - [#97007]) + +[@frenck]: https://github.com/frenck +[#97007]: https://github.com/home-assistant/core/pull/97007 + +{% enddetails %} + +{% details "Ecovacs" %} + +The Ecovacs integration has been migrated to the new "StateVacuumEntity" +under the hood. + +The states of the vacuum entity now reports not only on or off, +instead `cleaning`, `paused`, `docked` (_implicit mean charging_), +`returning` (_to base_), `idle` and `error`. Further the actions `turn_on` +(_start cleaning_) and `turn_off` (_stop cleaning and return to base_) were +superseded by three single actions `start`, `stop` and `return_to_base`. + +([@mib1185] - [#95920]) ([documentation](/integrations/ecovacs)) + +[@mib1185]: https://github.com/mib1185 +[#95920]: https://github.com/home-assistant/core/pull/95920 + +{% enddetails %} + +{% details "MQTT" %} + +It's no longer allowed for an MQTT RGB light without a `brighness_state_topic` +to report an RGB value of `RGB=0,0,0`. The reason is that for such lights +the light's brightness is derived from the RGB value, and and RGB value +of `RGB=0,0,0` corresponds to a brightness of 0 which is not allowed. + +In case an MQTT RGB light without a `brighness_state_topic` reports `0,0,0` +for R, G and B, that update will be ignored. + +([@jbouwh] - [#96286]) ([documentation](/integrations/mqtt)) + +[@jbouwh]: https://github.com/jbouwh +[#96286]: https://github.com/home-assistant/core/pull/96286 + +--- + +The MQTT climate `CONF_POWER_STATE_TOPIC` and `CONF_POWER_STATE_TEMPLATE` were +depredated in HA Core 2023.2.0 and are now removed. Please remove these options +from your configuration. The options were not implemented but will break your +MQTT configuration if they are still present in your config. + +([@jbouwh] - [#96771]) ([documentation](/integrations/mqtt)) + +[@jbouwh]: https://github.com/jbouwh +[#96771]: https://github.com/home-assistant/core/pull/96771 + +--- + +The way MQTT entities are named and how device configuration can be shared +between discovered entities has changed. + +**Sharing of device configuration** + +Discovered MQTT entities can share device configuration, meaning one entity +can include the full device configuration and other entities can link to that +device by only setting mandatory fields. + +The mandatory fields were previously limited to at least one of +`connection` and `identifiers`, but has now been extended to at least +one of `connection` and `identifiers` as well as the `name`. + +**Naming of MQTT entities** + +Naming of MQTT entities has been changed to be aligned with the +[entity naming guidelines](https://developers.home-assistant.io/docs/core/entity/#entity-naming): + +- The `has_entity_name` entity will be set to `True` on all MQTT entities. +- This means any MQTT entity which is part of a device will [automatically have it's `friendly_name` attribute prefixed with the device name](https://developers.home-assistant.io/docs/core/entity/#has_entity_name-true-mandatory-for-new-integrations). +- Unnamed `binary_sensor`, `button`, `event`, `number` and `sensor` entities will + now be named by their device class instead of being named "MQTT binary sensor" etc. +- It's now allowed to set an MQTT entity's name to `None` to mark it as the + main feature of a device. + +([@jbouwh] - [#95159]) ([documentation](/integrations/mqtt)) + +[@jbouwh]: https://github.com/jbouwh +[#95159]: https://github.com/home-assistant/core/pull/95159 + +{% enddetails %} + +{% details "Philips Dynalite" %} + +The Dynalite configuration panel, which previously was on the Home Assistant +side bar, has moved. It now can be accessed via the integration page in +**Settings** -> **Device & services** -> **Dynalite** -> **Configure**. + +([@frenck] - [#95920]) ([documentation](/integrations/dynalite)) + +[@frenck]: https://github.com/frenck +[#96853]: https://github.com/home-assistant/core/pull/96853 + +{% enddetails %} + +{% details "Renson" %} + +The state values of the Reason Ventilation integration have been changed to +be more consistent with other integrations, and are now lowercase. Additionally, +it can now provide translations for the state values in the UI. + +This means that the following state values have changed: + +- `Off` -> `off` +- `Level1` -> `level1` +- `Level2` -> `level2` +- `Level3` -> `level3` +- `Level4` -> `level4` +- `Breeze` -> `breeze` +- `Holiday` -> `holiday` + +Please update any automations where you are using the state of this Renson sensor. + +[@joostlek]: https://github.com/joostlek +[#96040]: https://github.com/home-assistant/core/pull/96040 + +{% enddetails %} + +If you are a custom integration developer and want to learn about breaking +changes and new features available for your integration: Be sure to follow our +[developer blog][devblog]. The following are the most notable for this release: + +- [Action event for custom cards](https://developers.home-assistant.io/blog/2023/07/07/action-event-custom-cards) +- [The naming of MQTT entities changes to correspond with HA guidelines](https://developers.home-assistant.io/blog/2023-057-21-change-naming-mqtt-entities) +- [Translating services](https://developers.home-assistant.io/blog/2023/07/11/translating-services) +- [Updates to the Vacuum entity integration](https://developers.home-assistant.io/blog/2023/07/10/vacuum-updates) + +[devblog]: https://developers.home-assistant.io/blog/ + +## Farewell to the following + +The following integrations are also no longer available as of this release: + +- **Mi Flora** has been removed. This integration was replaced by the + [Xiaomi BLE] a long time ago and was in a non-functional state. + ([@frenck] - [#96868]) +- **Xiaomi Mijia BLE T&H Sensor** has been removed. This integration was + replaced by the [Xiaomi BLE] a long time ago and was in a non-functional state. + ([@frenck] - [#96869]) + +- Remove legacy discovery integration ([@frenck] - [#96856]) + +[@frenck]: https://github.com/frenck +[#96868]: https://github.com/home-assistant/core/pull/96868 +[#96869]: https://github.com/home-assistant/core/pull/96869 +[Xiaomi BLE]: /integations/xiaomi_ble + +## All changes + +Of course, there is a lot more in this release. You can find a list of +all changes made here: [Full changelog for Home Assistant Core 2023.8](/changelogs/core-2023.8) diff --git a/source/changelogs/core-2023.8.markdown b/source/changelogs/core-2023.8.markdown new file mode 100644 index 00000000000..cf394b88094 --- /dev/null +++ b/source/changelogs/core-2023.8.markdown @@ -0,0 +1,2002 @@ +--- +title: Full Changelog for Home Assistant Core 2023.8 +description: Detailed changelog for the Home Assistant Core 2023.8 release +replace_regex: \s\(\[?[a-z0-9\-\s_]+\]?\)$ +--- + +These are all the changes included in the Home Assistant Core 2023.8 release. + +For a summary in a more readable format: +[Release notes blog for this release](/blog/2023/07/26/release-20238/). + +## Full Changelog + +- Bump version to 2023.8.0dev0 ([@frenck] - [#95476]) +- Update featured integrations screenshot ([@joostlek] - [#95473]) +- Refactor ESPHome connection management logic into a class ([@bdraco] - [#95457]) +- Small cleanups to bluetooth manager advertisement processing ([@bdraco] - [#95453]) +- Remove statement in iss config flow ([@joostlek] - [#95472]) +- Add entity translations to iOS ([@joostlek] - [#95467]) +- Fix device_id not set in esphome ([@bdraco] - [#95580]) +- Refactor Airzone Cloud _attr_has_entity_name in sensor ([@Noltari] - [#95609]) +- Add config flow for zodiac ([@joostlek] - [#95447]) +- Update typing-extensions to 4.7.0 ([@cdce8p] - [#95539]) +- Add ability to configure map icons for PurpleAir ([@bachya] - [#86124]) +- Default device name to config entry title ([@balloob] - [#95547]) +- Add unique_id to Wirelesstag entities. ([@davecpearce] - [#95631]) +- Remove passing MAC as an identifier for Fritz ([@balloob] - [#95648]) +- Met: use correct device info keys ([@balloob] - [#95644]) +- Rainbird: use correct device info keys ([@balloob] - [#95645]) +- VeSync: use correct device info keys ([@balloob] - [#95646]) +- Tesla Wall Connector: use correct device info keys ([@balloob] - [#95647]) +- Update ruff pre-commit repo ([@cdce8p] - [#95603]) +- Use `async_on_remove` for KNX entities removal ([@farmio] - [#95658]) +- Add Bridge module to AsusWRT ([@ollo69] - [#84152]) +- Update log message when referenced entity not found ([@balloob] - [#95577]) +- Met Eireann: fix device info ([@balloob] - [#95683]) +- Fix songpal test_setup_failed test ([@jbouwh] - [#95712]) +- Add action attribute to generic hygrostat ([@Shulyaka] - [#95675]) +- Remove obsolete entity name from Lametric ([@joostlek] - [#95688]) +- Use device info object in LaCrosse View ([@joostlek] - [#95687]) +- Small improvements to websocket api performance ([@bdraco] - [#95693]) +- Add entity translations to kaleidescape ([@joostlek] - [#95625]) +- Add mold risk sensor to Notion ([@bachya] - [#95643]) +- Use a normal tuple for the EventBus jobs ([@bdraco] - [#95731]) +- Use device class naming for Nest ([@joostlek] - [#95742]) +- Add Opower integration for getting electricity/gas usage and cost for many utilities ([@tronikos] - [#90489]) +- Remove NAM translations handled by device class ([@joostlek] - [#95740]) +- Add entity translations to minecraft server ([@joostlek] - [#95737]) +- Add entity translations to melnor ([@joostlek] - [#95734]) +- Use DeviceInfo object for Meater ([@joostlek] - [#95733]) +- Add entity translations for lifx ([@joostlek] - [#95727]) +- Avoid regex for negative zero check in sensor ([@bdraco] - [#95691]) +- Add entity translations to LaCrosse View ([@joostlek] - [#95686]) +- Add entity translations for Meater ([@joostlek] - [#95732]) +- Delete the local calendar store when removing the config entry ([@allenporter] - [#95599]) +- Clean up solarlog const file ([@joostlek] - [#95542]) +- Speed up routing URLs ([@bdraco] - [#95721]) +- Small zwave_js code cleanup ([@raman325] - [#95745]) +- Use DeviceInfo object for Nobo hub ([@joostlek] - [#95753]) +- Use device class naming for Nuki ([@joostlek] - [#95756]) +- Use device info object for Nuki ([@joostlek] - [#95757]) +- Use device info object for Discovergy ([@jpbede] - [#95764]) +- Bump opower to 0.0.12 ([@tronikos] - [#95748]) +- Address Opower review comments ([@tronikos] - [#95763]) +- Improve opower generic typing ([@cdce8p] - [#95758]) +- Add entity translations to Notion ([@joostlek] - [#95755]) +- Remove unsupported services from tuya vacuum ([@emontnemery] - [#95790]) +- Fix flaky websocket_api test ([@emontnemery] - [#95786]) +- Bump aioesphomeapi to 15.1.2 ([@bdraco] - [#95792]) +- Use the converter factory in sensor.recorder._normalize_states ([@bdraco] - [#95785]) +- Tune httpx keep alives for polling integrations ([@bdraco] - [#95782]) +- Remove the weak ref for tracking update listeners ([@balloob] - [#95798]) +- Add entity translations for Open UV ([@joostlek] - [#95810]) +- Add entity translations for P1 Monitor ([@joostlek] - [#95811]) +- Fix siren.toggle service schema ([@emontnemery] - [#95770]) +- Fix ring siren test ([@emontnemery] - [#95825]) +- Update roomba vacuum supported features ([@emontnemery] - [#95828]) +- Update sharkiq vacuum supported features ([@emontnemery] - [#95829]) +- Update tuya vacuum supported features ([@emontnemery] - [#95832]) +- Use common translations for `On`, `Off`, `Open` and `Closed` ([@jbouwh] - [#95779]) +- Update mqtt vacuum supported features ([@emontnemery] - [#95830]) +- Revert "Remove unsupported services from tuya vacuum" ([@emontnemery] - [#95845]) +- Set Matter battery sensors as diagnostic ([@MartinHjelmare] - [#95794]) +- Add Airzone Cloud Zone running binary sensor ([@Noltari] - [#95606]) +- Make local calendar integration title translatable ([@jpbede] - [#95805]) +- Use slots in TraceElement ([@bdraco] - [#95877]) +- Bump protobuf to 4.23.3 ([@bdraco] - [#95875]) +- Small cleanups to service calls ([@bdraco] - [#95873]) +- Adjust services and properties supported by roborock vacuum ([@emontnemery] - [#95789]) +- Add slots to the StateMachine class ([@bdraco] - [#95849]) +- Fix ESPHome camera not accepting the same exact image bytes ([@bdraco] - [#95822]) +- Clarify GPS coordinates for device_tracker.see ([@gigatexel] - [#95847]) +- Add raid array degraded state binary sensor to freebox sensors ([@fthiery] - [#95242]) +- Add slots to the service registry ([@bdraco] - [#95857]) +- Warn when changing multipan channel if there are not 2 known users ([@emontnemery] - [#95898]) +- Address late review of freebox tests ([@jbouwh] - [#95910]) +- Add slots to core EventBus ([@bdraco] - [#95856]) +- Deprecate Dry and Fan preset modes in favor of HVAC modes ([@adrianmo] - [#95634]) +- Correct spelling roborock strings ([@jbouwh] - [#95919]) +- Migrate from deprecated VacuumEntity to StateVacuumEntity in Ecovacs ([@mib1185] - [#95920]) +- Add filters to calendar/services.yaml ([@emontnemery] - [#95853]) +- Mention automatic issue assignment in issue template ([@spacegaier] - [#95987]) +- Add more device info for SmartThings devices ([@guix77] - [#95723]) +- Add entity translations to Pushbullet ([@joostlek] - [#95943]) +- Add entity translations for PureEnergie ([@joostlek] - [#95935]) +- Add humidity to NWS forecast ([@lymanepp] - [#95575]) +- Add entity translations to Purpleair ([@joostlek] - [#95942]) +- Add entity translations to Rainbird ([@joostlek] - [#96030]) +- Add sensors to LOQED integration for battery percentage and BLE stength ([@mikewoudenberg] - [#95726]) +- Remove copy/pasted references to GMail in YouTube integration tests ([@ScottG489] - [#96048]) +- Add entity translations to RFXTRX ([@joostlek] - [#96041]) +- Revert zwave_js change to THERMOSTAT_MODE_SETPOINT_MAP ([@adrianmo] - [#96058]) +- Use device class naming in Renault ([@joostlek] - [#96038]) +- Move platform_integration_no_support issue to the homeassistant integration ([@emontnemery] - [#95927]) +- Add RDW codeowner ([@joostlek] - [#96035]) +- Add entity translations to RDW ([@joostlek] - [#96034]) +- Add full test coverage to Jellyfin ([@j-stienstra] - [#86974]) +- Fix missing name in Renault service descriptions ([@frenck] - [#96075]) +- Add device class back to Purpleair ([@joostlek] - [#96062]) +- Fix missing name in TP-Link service descriptions ([@frenck] - [#96074]) +- Add entity translations to Recollect waste ([@joostlek] - [#96037]) +- Fix missing name in FluxLED service descriptions ([@frenck] - [#96077]) +- Remove deprecated Pihole binary sensors ([@joostlek] - [#95799]) +- Update sentry-sdk to 1.27.1 ([@frenck] - [#96089]) +- Add missing issue translations to the kitchen_sink integration ([@emontnemery] - [#95931]) +- Remove unreferenced issues ([@emontnemery] - [#95976]) +- Bump aioesphomeapi to 15.1.3 ([@bdraco] - [#95819]) +- Add entity translations to Rainmachine ([@joostlek] - [#96033]) +- Make season integration title translatable ([@jpbede] - [#95802]) +- Add entity translations to pvoutput ([@joostlek] - [#96029]) +- Warn when vacuum.turn_on or turn_off is called on Tuya vacuums ([@emontnemery] - [#95848]) +- Add entity translations to Rympro ([@joostlek] - [#96087]) +- Avoid http route linear search fallback when there are multiple paths ([@bdraco] - [#95776]) +- Set some Switchbot entity names to none ([@Nardol] - [#90846]) +- Update PyTurboJPEG to 1.7.1 ([@frenck] - [#96104]) +- Fix missing name in Fritz!Box service descriptions ([@frenck] - [#96076]) +- Correct Goalzero sensor state class ([@tkdrob] - [#96122]) +- Rename 'Switch as X' helper to ... ([@c0ffeeca7] - [#96114]) +- Update apprise to 1.4.5 ([@frenck] - [#96086]) +- Update pipdeptree to 2.9.4 ([@frenck] - [#96115]) +- Move ESPHomeManager into its own file ([@bdraco] - [#95870]) +- Small speed up to cameras ([@bdraco] - [#96124]) +- Use global CONF_API_TOKEN constant rather than defining our own ([@ScottG489] - [#96120]) +- Add entity translations for plugwise ([@joostlek] - [#95808]) +- Speed up hassio ingress ([@bdraco] - [#95777]) +- Add MEDIA_ENQUEUE to MediaPlayerEntityFeature ([@emontnemery] - [#95905]) +- Use device class naming for nobo hub v2 ([@joostlek] - [#96022]) +- Update aioairzone-cloud to v0.2.1 ([@Noltari] - [#96063]) +- Add filters to alarm_control_panel/services.yaml ([@emontnemery] - [#95850]) +- Make generic camera integration title translatable ([@jpbede] - [#95806]) +- Update template vacuum supported features ([@emontnemery] - [#95831]) +- Make workday integration title translatable ([@jpbede] - [#95803]) +- Add filters to fan/services.yaml ([@emontnemery] - [#95855]) +- Add filters to humidifier/services.yaml ([@emontnemery] - [#95859]) +- Add filters to lock/services.yaml ([@emontnemery] - [#95860]) +- Add filters to cover/services.yaml ([@emontnemery] - [#95854]) +- Refactor ESPHome camera to avoid creating tasks ([@bdraco] - [#95818]) +- Update pydantic to 1.10.11 ([@cdce8p] - [#96137]) +- Update lxml to 4.9.3 ([@frenck] - [#96132]) +- Add entity translations to Sensibo ([@joostlek] - [#96091]) +- Add entity translations to Slack ([@joostlek] - [#96149]) +- Update Pillow to 10.0.0 ([@frenck] - [#96106]) +- Add entity translations to SkyBell ([@joostlek] - [#96096]) +- Add dim to full state service for Sensibo ([@gjohansson-ST] - [#96152]) +- Update holidays to 0.28 ([@arkid15r] - [#95091]) +- Add `device_class` and `state_class` in config flow for SQL ([@dougiteixeira] - [#95020]) +- Use device name for Nuki door sensor ([@Nardol] - [#95904]) +- Bump pysensibo to 1.0.31 ([@gjohansson-ST] - [#96154]) +- Add bthome logbook platform ([@bdraco] - [#96171]) +- KNX Cover: Use absolute tilt position if available ([@farmio] - [#96192]) +- Update Ruff to v0.0.277 ([@frenck] - [#96108]) +- Update tplink dhcp discovery ([@bdraco] - [#96191]) +- Update pytest-xdist to 3.3.1 ([@frenck] - [#96110]) +- Migrate ring to entity name ([@joostlek] - [#96080]) +- Add error sensor to Roborock ([@Lash-L] - [#96209]) +- Add entity translations to Speedtest.net ([@joostlek] - [#96168]) +- Restore KNX telegram history ([@farmio] - [#95800]) +- Add entity translations to Starlink ([@joostlek] - [#96181]) +- Fix missing name in wilight service descriptions ([@frenck] - [#96073]) +- Add slots to bluetooth manager ([@bdraco] - [#95881]) +- Enrich instructions to retreive Roomba password ([@alepee] - [#95902]) +- Enhance diagnostics for Sensibo ([@gjohansson-ST] - [#96150]) +- Update pyipp to 0.14.2 ([@ctalkington] - [#96218]) +- Add entity translations to Sonarr ([@joostlek] - [#96159]) +- Refactor IPP tests ([@ctalkington] - [#94097]) +- Optimize bluetooth base scanners for python3.11+ ([@bdraco] - [#96165]) +- Avoid probing ESPHome devices when we do not have the encryption key ([@bdraco] - [#95820]) +- Bump zeroconf to 0.71.0 ([@bdraco] - [#96183]) +- Reduce system_log overhead ([@bdraco] - [#96177]) +- Remove Legacy Works With Nest ([@allenporter] - [#96111]) +- Fix missing name in Siren service descriptions ([@frenck] - [#96072]) +- Update yamllint to 1.32.0 ([@frenck] - [#96109]) +- Bump aioesphomeapi to 15.1.4 ([@bdraco] - [#96227]) +- Simplify FastUrlDispatcher resolve ([@bdraco] - [#96234]) +- Update Nest Legacy removal strings ([@allenporter] - [#96229]) +- Clean up unused device class translations from binary sensor ([@frenck] - [#96241]) +- Use fixed token for CodeCov uploads to deal with recent failures ([@frenck] - [#96133]) +- Add entity translations to tailscale ([@joostlek] - [#96237]) +- Use common string references for device_automation translations ([@jbouwh] - [#95897]) +- Add MEDIA_ANNOUNCE to MediaPlayerEntityFeature ([@emontnemery] - [#95906]) +- Use the ESPHome object_id to suggest the entity id ([@bdraco] - [#95852]) +- Check supported features in calls to vacuum services ([@emontnemery] - [#95833]) +- Add deprecated_yaml issue to the homeassistant integration ([@emontnemery] - [#95980]) +- Add entity translations to trafikverket ferry ([@joostlek] - [#96249]) +- Use explicit device name in trafikverket train ([@joostlek] - [#96250]) +- Correct flags for issue registry issue raised by ezviz ([@emontnemery] - [#95846]) +- Remove unsupported vacuum service handlers ([@emontnemery] - [#95787]) +- Add filters to vacuum/services.yaml ([@emontnemery] - [#95865]) +- Add filters to remote/services.yaml ([@emontnemery] - [#95863]) +- Only load the device entry when it changes in the base entity ([@bdraco] - [#95801]) +- Remove unreferenced issues ([@emontnemery] - [#96262]) +- Change explicit rounding to suggested_display_precision ([@disforw] - [#95773]) +- Use snapshots in devolo Home Network sensor tests ([@Shutgun] - [#95104]) +- Make Zodiac integration title translatable ([@joostlek] - [#95816]) +- Differentiate between device info types ([@balloob] - [#95641]) +- Bump fritzconection to 1.12.2 ([@mib1185] - [#96265]) +- Add entity translations to trafikverket weatherstation ([@joostlek] - [#96251]) +- Add filters to siren/services.yaml ([@emontnemery] - [#95864]) +- Add filters to media_player/services.yaml ([@emontnemery] - [#95862]) +- Move Hydrawise to a supported library ([@dknowles2] - [#96023]) +- Move tractive attribute to entity class ([@joostlek] - [#96247]) +- Correct issues raised when calling deprecated vacuum services ([@emontnemery] - [#96295]) +- Deprecate mqtt vacuum with legacy schema ([@jbouwh] - [#95836]) +- Improve mqtt tag schema logging and avoid tests that use xfail ([@jbouwh] - [#95711]) +- Improve test coverage mqtt vacuum ([@jbouwh] - [#96288]) +- Improve the docstring of some config schema generators ([@emontnemery] - [#96296]) +- Reolink add reboot button ([@starkillerOG] - [#96311]) +- Avoid CI fail in command_line tests ([@jbouwh] - [#96324]) +- Add support for service translations ([@frenck] - [#95984]) +- Remove some duplicated translations ([@emontnemery] - [#96300]) +- Fix hassfest services check ([@frenck] - [#96337]) +- Fix a couple of typos ([@emontnemery] - [#96298]) +- Remove removed_yaml from the spotify integeration ([@emontnemery] - [#96261]) +- Improve integration startup in AVM Fritz!Tools ([@mib1185] - [#96269]) +- Schedule `VacuumEntity` for removal in Home Assistant Core 2024.2 ([@emontnemery] - [#96236]) +- Fix diagnostics Sensibo ([@gjohansson-ST] - [#96336]) +- Speedup tests command_line integration ([@jbouwh] - [#96349]) +- Fix service schema to allow for services without any fields/properties ([@frenck] - [#96346]) +- Use DeviceInfo object s-x ([@joostlek] - [#96281]) +- Use DeviceInfo object d-o ([@joostlek] - [#96280]) +- Bump aioesphomeapi to 15.1.6 ([@bdraco] - [#96297]) +- Tibber upgrade lib, improve reconnect issues ([@Danielhiversen] - [#96276]) +- Remove unreferenced issues ([@emontnemery] - [#96264]) +- Add entity translations to Ukraine Alarm ([@joostlek] - [#96260]) +- Update orjson to 3.9.2 ([@frenck] - [#96257]) +- Use device class naming for sfr box ([@joostlek] - [#96092]) +- Add entity translations to solarlog ([@joostlek] - [#96157]) +- Fix handling MQTT light brightness from zero rgb ([@jbouwh] - [#96286]) +- Add entity translations to Rainforest eagle ([@joostlek] - [#96031]) +- Migrate Roomba to has entity name ([@joostlek] - [#96085]) +- Update colorlog to 6.7.0 ([@frenck] - [#96131]) +- Upgrade pylint-per-file-ignore to v1.2.1 ([@frenck] - [#96134]) +- Cleanup unneeded MQTT vacuum feature check ([@jbouwh] - [#96312]) +- Add entity translations to Juicenet ([@joostlek] - [#95487]) +- Migrate reload only helper services to support translations ([@frenck] - [#96344]) +- Add Reolink sensor platform ([@starkillerOG] - [#96323]) +- Migrate number services to support translations ([@frenck] - [#96343]) +- Migrate camera services to support translations ([@frenck] - [#96313]) +- Migrate backup services to support translations ([@frenck] - [#96308]) +- Migrate integration services (A) to support translations ([@frenck] - [#96362]) +- Migrate integration services (B-D) to support translations ([@frenck] - [#96363]) +- Fix ESPHome deep sleep devices staying unavailable after unexpected disconnect ([@bdraco] - [#96353]) +- Migrate climate services to support translations ([@frenck] - [#96314]) +- Migrate automation services to support translations ([@frenck] - [#96306]) +- Migrate device_tracker services to support translations ([@frenck] - [#96320]) +- Migrate image_processing services to support translations ([@frenck] - [#96328]) +- Migrate button services to support translations ([@frenck] - [#96309]) +- Migrate calendar services to support translations ([@frenck] - [#96310]) +- Migrate cloud services to support translations ([@frenck] - [#96319]) +- Migrate integration services (E-F) to support translations ([@frenck] - [#96367]) +- Migrate integration services (L-M) to support translations ([@frenck] - [#96374]) +- Migrate integration services (N-P) to support translations ([@frenck] - [#96376]) +- Update pre-commit to 3.3.3 ([@frenck] - [#96359]) +- Migrate integration services (Q-S) to support translations ([@frenck] - [#96378]) +- Add additional tplink kasa OUI ([@bdraco] - [#96383]) +- Migrate integration services (W-Z) to support translations ([@frenck] - [#96381]) +- Migrate integration services (T-V) to support translations ([@frenck] - [#96379]) +- Add Nut commands to diagnostics data ([@ollo69] - [#96285]) +- Migrate time services to support translations ([@frenck] - [#96402]) +- Migrate integration services (G-H) to support translations ([@frenck] - [#96372]) +- Migrate conversation services to support translations ([@frenck] - [#96365]) +- Migrate switch services to support translations ([@frenck] - [#96405]) +- Migrate date services to support translations ([@frenck] - [#96317]) +- Migrate datetime services to support translations ([@frenck] - [#96318]) +- Migrate logbook services to support translations ([@frenck] - [#96341]) +- Migrate script services to support translations ([@frenck] - [#96401]) +- Migrate homeassistant services to support translations ([@frenck] - [#96388]) +- Migrate hassio services to support translations ([@frenck] - [#96386]) +- Migrate scene services to support translations ([@frenck] - [#96390]) +- Migrate water_heater services to support translations ([@frenck] - [#96389]) +- Migrate fan services to support translations ([@frenck] - [#96325]) +- Migrate template services to support translations ([@frenck] - [#96414]) +- Migrate LaMetric services to support translations ([@frenck] - [#96415]) +- Migrate intent_script services to support translations ([@frenck] - [#96394]) +- Migrate Matter services to support translations ([@frenck] - [#96406]) +- Add support for gardena bluetooth ([@elupus] - [#95179]) +- Migrate cover services to support translations ([@frenck] - [#96315]) +- Migrate siren services to support translations ([@frenck] - [#96400]) +- Migrate persistent notification services to support translations ([@frenck] - [#96391]) +- Migrate media player services to support translations ([@frenck] - [#96408]) +- Migrate & fix logger services to support translations ([@frenck] - [#96393]) +- Migrate alarm control panel services to support translations ([@frenck] - [#96305]) +- Migrate mqtt services to support translations ([@frenck] - [#96396]) +- Migrate integration services (I-K) to support translations ([@frenck] - [#96373]) +- Add condition selector for blueprint ([@piitaya] - [#96350]) +- Migrate update services to support translations ([@frenck] - [#96395]) +- Migrate lovelace services to support translations ([@frenck] - [#96340]) +- Migrate input helpers services to support translations ([@frenck] - [#96392]) +- Migrate recorder services to support translations ([@frenck] - [#96409]) +- Migrate humidifier services to support translations ([@frenck] - [#96327]) +- Migrate vacuum services to support translations ([@frenck] - [#96417]) +- Migrate remote services to support translations ([@frenck] - [#96410]) +- Migrate lock services to support translations ([@frenck] - [#96416]) +- Add Ezviz select entity ([@RenierM26] - [#93625]) +- Improve chances of recovering stuck down bluetooth adapters ([@bdraco] - [#96382]) +- Migrate select services to support translations ([@frenck] - [#96411]) +- Migrate tts services to support translations ([@frenck] - [#96412]) +- Migrate system_log services to support translations ([@frenck] - [#96398]) +- Migrate group services to support translations ([@frenck] - [#96369]) +- Migrate text services to support translations ([@frenck] - [#96397]) +- Migrate notify services to support translations ([@frenck] - [#96413]) +- Migrate zha services to support translations ([@frenck] - [#96418]) +- Include a warning when changing channels with multi-PAN ([@puddly] - [#96351]) +- Add more common translations ([@joostlek] - [#96429]) +- Fix huawei_lte suspend_integration service URL description ([@scop] - [#96450]) +- Improve ESPHome update platform error reporting ([@bdraco] - [#96455]) +- Add number entity to gardena ([@elupus] - [#96430]) +- Improve performance of http auth logging ([@bdraco] - [#96464]) +- Migrate Z-Wave services to support translations ([@frenck] - [#96361]) +- Use device class translations in airvisual pro ([@joostlek] - [#96472]) +- ImageEntity split load_image_from_url ([@RenierM26] - [#96146]) +- Add deduplicate translations script ([@balloob] - [#96384]) +- Rename CO2Signal to Electricity Maps ([@madsnedergaard] - [#96252]) +- Correct unifi device info ([@emontnemery] - [#96483]) +- Correct huawei_lte device info ([@emontnemery] - [#96481]) +- Correct dlna_dmr device info ([@emontnemery] - [#96480]) +- Correct knx device info ([@emontnemery] - [#96482]) +- Bump yalexs-ble to 2.2.0 ([@bdraco] - [#96460]) +- Don't require passing identifiers to DeviceRegistry.async_get_device ([@emontnemery] - [#96479]) +- Update denonavr to `0.11.3` ([@ol-iver] - [#96467]) +- Bump unifiprotect to 4.10.5 ([@AngellusMortis] - [#96486]) +- Bump bluetooth-data-tools to 1.6.0 ([@bdraco] - [#96461]) +- Bump bond-async to 0.2.1 ([@bdraco] - [#96504]) +- Remove unused code in ESPHome ([@bdraco] - [#96503]) +- Bump opower to 0.0.14 ([@tronikos] - [#96506]) +- Simplify ESPHome bluetooth disconnected during operation wrapper ([@bdraco] - [#96459]) +- Only lookup supported_features once in media_player capability_attributes ([@bdraco] - [#96510]) +- Add Ezviz last motion picture image entity ([@RenierM26] - [#94421]) +- Remove unneeded str() in StrEnum backport ([@bdraco] - [#96509]) +- Bump actions/setup-python from 4.6.1 to 4.7.0 (@dependabot - [#96526]) +- Revert translation reference for Tuya motion_sensitivity ([@jbouwh] - [#96536]) +- Move device info validation to device registry ([@emontnemery] - [#96465]) +- Wyoming Piper 1.1 ([@synesthesiam] - [#96490]) +- Address Ezviz select entity late review ([@RenierM26] - [#96525]) +- Improve Mullvad typing ([@joostlek] - [#96545]) +- Add feature to turn off using IMAP-Push on an IMAP server ([@jbouwh] - [#96436]) +- Add entity translations to Sonos ([@joostlek] - [#96167]) +- Remove unreachable code in the ESPHome fan platform ([@bdraco] - [#96458]) +- Add missing type hints for AndroidTV ([@ollo69] - [#96554]) +- Migrate AppleTV to use has entity name ([@joostlek] - [#96563]) +- Avoid compressing binary images on ingress ([@bdraco] - [#96581]) +- Avoid writing state in homekit_controller for unrelated aid/iids ([@bdraco] - [#96583]) +- Migrate Heos to has entity name ([@joostlek] - [#96595]) +- Add UV Index and UV Health Concern sensors to tomorrow.io ([@dirrgang] - [#96534]) +- Update pip constraint to allow pip 23.2 ([@cdce8p] - [#96614]) +- Bump aioesphomeapi to 15.1.7 ([@bdraco] - [#96615]) +- Use device class naming for Switchbot ([@joostlek] - [#96187]) +- Add entity translations for Mazda ([@joostlek] - [#95729]) +- Migrate evil genius labs to has entity name ([@joostlek] - [#96570]) +- Bump bthome-ble to 3.0.0 ([@bdraco] - [#96616]) +- Correct unit types in gardean bluetooth ([@elupus] - [#96683]) +- Ensure async_get_system_info does not fail if supervisor is unavailable ([@bdraco] - [#96492]) +- Migrate google assistant to has entity name ([@joostlek] - [#96593]) +- Avoid multiple options and current_option lookups in select entites ([@bdraco] - [#96630]) +- Reduce unifiprotect update overhead ([@bdraco] - [#96626]) +- IMAP service strings: Fix typo ([@c0ffeeca7] - [#96711]) +- Use device class naming for BraviaTV ([@joostlek] - [#96564]) +- Migrate DuneHD to has entity name ([@joostlek] - [#96568]) +- Remove redundant phrase ([@c0ffeeca7] - [#96716]) +- Guard type checking assertions in unifiprotect ([@bdraco] - [#96721]) +- Airvisual Pro Outside Station Support ([@tedivm] - [#96618]) +- Ezviz image entity cleanup ([@RenierM26] - [#96548]) +- Remove the ability to defer websocket message construction ([@bdraco] - [#96734]) +- Avoid regenerating the mobile app schema every time a webhook is called ([@bdraco] - [#96733]) +- Check the registry entry in sensor unit_of_measurement instead of unique_id ([@bdraco] - [#96731]) +- Make async_set_state in ConfigEntry a protected method ([@bdraco] - [#96727]) +- Add wellness sensors to Tractive integration ([@bieniu] - [#96719]) +- Vacuum services strings: rename 'base' to 'dock' for consistency ([@c0ffeeca7] - [#96715]) +- Create Tractive battery charging sensor if `charging_state` is not `None` ([@bieniu] - [#96713]) +- Small tweaks to ZHA service strings ([@c0ffeeca7] - [#96709]) +- Migrate Monoprice to has entity name ([@joostlek] - [#96704]) +- Migrate Laundrify to has entity name ([@joostlek] - [#96703]) +- Add sensor to gardena ([@elupus] - [#96691]) +- Migrate Kulersky to has entity name ([@joostlek] - [#96702]) +- Use device class naming in keenteic ndms2 ([@joostlek] - [#96701]) +- Bump Cryptography from 41.0.1 to 41.0.2 ([@blastoise186] - [#96699]) +- Migrate iAlarm to has entity name ([@joostlek] - [#96700]) +- Fix typo for PM 1 ([@joostlek] - [#96473]) +- Add string "Quiet" to fan mode in climate component ([@mattmccormack] - [#96584]) +- Bump pytomorrowio to 0.3.6 ([@raman325] - [#96628]) +- Bump pynina to 0.3.1 ([@DeerMaximum] - [#96693]) +- Speed up single entity/response service calls ([@bdraco] - [#96729]) +- Periodically re-scan for Fronius inverters that were offline while setup ([@weitzelb] - [#96538]) +- Update pygtfs to 0.1.9 ([@cdce8p] - [#96682]) +- Remove the virtual integration for ultraloq ([@b-uwe] - [#96355]) +- Add entity translations to mutesync ([@joostlek] - [#96741]) +- Migrate NuHeat to has entity name ([@joostlek] - [#96742]) +- Add base entity to philips js ([@joostlek] - [#96756]) +- Add entity translations to philips js ([@joostlek] - [#96747]) +- Migrate Plum Lightpad to has entity name ([@joostlek] - [#96744]) +- Fix device name for OwnTracks ([@joostlek] - [#96759]) +- Add entity translations to radiotherm ([@joostlek] - [#96745]) +- Add entity translations to MotionEye ([@joostlek] - [#96740]) +- Migrate OwnTracks to has entity name ([@joostlek] - [#96743]) +- Add entity translations to Twentemilieu ([@joostlek] - [#96762]) +- Reduce attribute lookups in update state_attributes ([@bdraco] - [#96511]) +- Migrate VLC Telnet to has entity naming ([@joostlek] - [#96774]) +- Migrate VeSync to has entity name ([@joostlek] - [#96772]) +- Remove support for mqtt climate option CONF_POWER_STATE_TOPIC and template ([@jbouwh] - [#96771]) +- Switch homekit_controller to use subscriber lookups ([@bdraco] - [#96739]) +- Add external power sensor for Shelly Plus HT ([@bieniu] - [#96768]) +- Protect entities for availability in gardena bluetooth ([@elupus] - [#96776]) +- Add base class to gardena bluetooth entities ([@elupus] - [#96775]) +- Add some basic tests for gardena ([@elupus] - [#96777]) +- Remove extra otbr config entries ([@emontnemery] - [#96785]) +- Include addon name in otbr config entry title ([@emontnemery] - [#96786]) +- Fix otbr test ([@emontnemery] - [#96788]) +- Bump wyoming to 1.1 ([@synesthesiam] - [#96778]) +- Drop upper constraint for pip ([@cdce8p] - [#96738]) +- Alexa temperature adjustment handle multiple setpoint ([@mkeesey] - [#95821]) +- Bump androidtvremote2 to 0.0.12 ([@tronikos] - [#96796]) +- Bump aioesphomeapi to 15.1.9 ([@bdraco] - [#96791]) +- Correct tests for gardena ([@elupus] - [#96806]) +- Bump aiohomekit to 2.6.8 ([@bdraco] - [#96805]) +- Replace EventType annotations with Event ([@cdce8p] - [#96426]) +- Migrate Traccar to has entity naming ([@joostlek] - [#96760]) +- Add binary sensor for valve connectivity for gardena bluetooth ([@elupus] - [#96810]) +- Add entity translations to Transmission ([@joostlek] - [#96761]) +- Bump yalexs-ble to 2.2.1 ([@bdraco] - [#96808]) +- Use entity registry id in zwave_js device actions ([@emontnemery] - [#96407]) +- Migrate gpslogger to has entity name ([@joostlek] - [#96594]) +- Small cleanups to expand_entity_ids ([@bdraco] - [#96585]) +- Make Version integration title translatable ([@joostlek] - [#96586]) +- Remove deprecated state.get_changed_since ([@bdraco] - [#96579]) +- Migrate geofency to has entity name ([@joostlek] - [#96592]) +- Migrate Home plus control to has entity name ([@joostlek] - [#96596]) +- Rename 'life' to 'lifetime' in Tuya ([@c0ffeeca7] - [#96813]) +- Migrate Soundtouch to has entity name ([@joostlek] - [#96754]) +- Migrate Senz to has entity name ([@joostlek] - [#96752]) +- Migrate frontier silicon to has entity name ([@joostlek] - [#96571]) +- Migrate AndroidTV to has entity name ([@joostlek] - [#96572]) +- Migrate Dynalite to has entity name ([@joostlek] - [#96569]) +- Migrate Brunt to has entity name ([@joostlek] - [#96565]) +- Rename 'life' to 'lifetime' in Xiaomi Miio ([@c0ffeeca7] - [#96817]) +- Fix incorrect leagacy code tweak for MQTT ([@jbouwh] - [#96812]) +- Add entity translations to Yalexs BLE ([@joostlek] - [#96827]) +- Migrate Wilight to has entity name ([@joostlek] - [#96825]) +- Add support for restricted playback devices in Spotify ([@joostlek] - [#96794]) +- Allow integrations to register custom config panels ([@frenck] - [#96245]) +- Add entity translations to Whirlpool ([@joostlek] - [#96823]) +- Prevent creating scripts which override script services ([@emontnemery] - [#96828]) +- Add prefix support to text selector ([@frenck] - [#96830]) +- Migrate Volumio to has entity naming ([@joostlek] - [#96822]) +- Rename 'life' to 'lifetime' in trådfri ([@c0ffeeca7] - [#96818]) +- Migrate Songpal to has entity name ([@joostlek] - [#96753]) +- Do not include stack trace when shell_command service times out ([@emontnemery] - [#96833]) +- Fix shell_command timeout test ([@emontnemery] - [#96834]) +- Migrate Zerproc to has entity naming ([@joostlek] - [#96837]) +- Add entity translations to zeversolar ([@joostlek] - [#96838]) +- Migrate Yolink to has entity name ([@joostlek] - [#96839]) +- Make Spotify accept user playlist uris ([@joostlek] - [#96820]) +- Change device classes for Airvisual Pro ([@joostlek] - [#96474]) +- Allow ADR 0007 compliant schema for mqtt ([@jbouwh] - [#94305]) +- Add entity translations to Whois ([@joostlek] - [#96824]) +- Rename homekit "Filter Life" sensor to "Filter lifetime" ([@c0ffeeca7] - [#96821]) +- Resolve bugs with Transport NSW ([@craibo] - [#96692]) +- Fix ESPHome bluetooth client cancellation when the operation is cancelled externally ([@bdraco] - [#96804]) +- Make default theme selectable for set theme service ([@piitaya] - [#96849]) +- Clean up entity descriptions in Tuya ([@joostlek] - [#96847]) +- Rename life to lifetime: wemo ([@c0ffeeca7] - [#96845]) +- Update construct to 2.10.68 ([@cdce8p] - [#96843]) +- Add Tuya Soil sensor ([@iKaew] - [#96819]) +- Rename 'life' to 'lifetime' in Brother ([@c0ffeeca7] - [#96815]) +- Add entity translations to NextCloud ([@joostlek] - [#96544]) +- Use device class for DLink ([@joostlek] - [#96567]) +- Rename life to lifetime in vesync ([@c0ffeeca7] - [#96844]) +- Migrate Crownstone to has entity name ([@joostlek] - [#96566]) +- Migrate Agent DVR to has entity name ([@joostlek] - [#96562]) +- Plugwise prepare native_value_fn and companions for number ([@CoMPaTech] - [#93416]) +- Migrate Ambiclimate to use has entity name ([@joostlek] - [#96561]) +- Migrate MyStrom to has entity name ([@joostlek] - [#96540]) +- Migrate Tradfri to has entity name ([@joostlek] - [#96248]) +- Add device info to ISS ([@joostlek] - [#96469]) +- Add entity translations to Vallox ([@joostlek] - [#96495]) +- Remove duplicated available property from Shelly coordinator entities ([@mib1185] - [#96859]) +- Fix smoke alarm detection in tuya ([@si458] - [#96475]) +- Add entity translations to Forecast Solar ([@joostlek] - [#96476]) +- Clean up Kraken const file ([@joostlek] - [#95544]) +- Use device class naming for SMS ([@joostlek] - [#96156]) +- Migrate Soma to entity naming ([@joostlek] - [#96158]) +- Migrate spider to entity name ([@joostlek] - [#96170]) +- Add entity translations to Tautulli ([@joostlek] - [#96239]) +- Add entity translations to Tesla Wall Connector ([@joostlek] - [#96242]) +- Remove duplicated available property from Picnic coordinator entities ([@mib1185] - [#96861]) +- Add entity translations to islamic prayer times ([@joostlek] - [#95469]) +- Migrate Starline to entity name ([@joostlek] - [#96176]) +- Remove miflora integration ([@frenck] - [#96868]) +- Use dispatcher helper to add new Fronius inverter entities ([@weitzelb] - [#96782]) +- Remove mitemp_bt integration ([@frenck] - [#96869]) +- Allow number to be zero in gardena bluetooth ([@elupus] - [#96872]) +- Add more complete test coverage to gardena bluetooth ([@elupus] - [#96874]) +- Bump aioesphomeapi to 15.1.11 ([@bdraco] - [#96873]) +- Bump flux_led to 1.0.0 ([@bdraco] - [#96879]) +- Remove legacy discovery integration ([@frenck] - [#96856]) +- Clean up conversation agent attribution ([@frenck] - [#96883]) +- Improve handling of unrecoverable storage corruption ([@bdraco] - [#96712]) +- Add support for multiple Russound RNET controllers ([@stonith] - [#96793]) +- Add tomorrow.io state translations and dynamically assign enum device class ([@raman325] - [#96603]) +- Add support for buttons in gardena bluetooth ([@elupus] - [#96871]) +- Add WS command for changing thread channels ([@emontnemery] - [#94525]) +- Ezviz NumberEntity 1st update only when enabled ([@RenierM26] - [#96587]) +- Move Dynalite configuration panel to config entry ([@frenck] - [#96853]) +- Add humidity to meteo_france weather forecast ([@vingerha] - [#96524]) +- Remove version string from Ecowitt name ([@joostlek] - [#96498]) +- Add entity translations to Tuya ([@joostlek] - [#96842]) +- Improve pip caching [ci] ([@cdce8p] - [#96896]) +- Add comment to EntityPlatform._async_add_entity about update_before_add ([@emontnemery] - [#96891]) +- Add Ezviz SensorEntity name and translation ([@RenierM26] - [#95697]) +- Update sentry-sdk to 1.28.1 ([@frenck] - [#96898]) +- Update PyJWT to 2.8.0 ([@frenck] - [#96899]) +- Remove Reolink event connection sensor ([@frenck] - [#96903]) +- Update syrupy to 4.0.6 ([@frenck] - [#96900]) +- Update black to 23.7.0 ([@frenck] - [#96901]) +- Fix typo in Nuki integration ([@steffenrapp] - [#96908]) +- Fix websocket_api _state_diff_event using json_encoder_default ([@bdraco] - [#96905]) +- Add lightweight API to get core state ([@bdraco] - [#96860]) +- Handle nullable context in Spotify ([@joostlek] - [#96913]) +- Allow match quirk_class of custom quirks to ZHA ([@gmsoft-tuxicoman] - [#93268]) +- Correct invalid docstring in gardena button ([@elupus] - [#96922]) +- Bump bleak-retry-connector to 3.1.0 ([@bdraco] - [#96917]) +- Bump aioesphomeapi to 15.1.12 ([@bdraco] - [#96924]) +- Add a message to the config entry cancel call ([@bdraco] - [#96925]) +- EZVIZ NumberEntity async added to hass ([@RenierM26] - [#96930]) +- Fix mock assert_called_with ([@cdce8p] - [#96929]) +- Transport NSW: Set DeviceClass and StateClass ([@craibo] - [#96928]) +- Avoid accessing coordinator in gardena_bluetooth tests ([@elupus] - [#96921]) +- Pre-split unifiprotect nested attribute lookups ([@bdraco] - [#96862]) +- Add support for MiScale V2 ([@Ernst79] - [#96807]) +- Fully unload wemo config entry ([@esev] - [#96620]) +- Upgrade yt-dlp to fix security issue ([@blastoise186] - [#96453]) +- Add EZVIZ BinarySensorEntity proper names and translation key ([@RenierM26] - [#95698]) +- Implement coordinator in Trafikverket Train ([@gjohansson-ST] - [#96916]) +- Add NumberDeviceClass.DURATION ([@emontnemery] - [#96932]) +- Migrate airtouch 4 to use has entity name ([@joostlek] - [#96356]) +- Support Tuya Air Conditioner Mate (WiFi) - Smart IR socket with power monitoring ([@slydiman] - [#95027]) +- Refactor SQL with ManualTriggerEntity ([@gjohansson-ST] - [#95116]) +- Fix bug in check_config when an integration is removed by its own validator ([@joostlek] - [#96068]) +- Shell command response ([@RoboMagus] - [#96695]) +- Create an issue if push updates fail for Shelly gen1 devices ([@bieniu] - [#96910]) +- Update .devcontainer.json structure ([@lkshrk] - [#96537]) +- Fix broken service test ([@emontnemery] - [#96943]) +- Update bind_hass docstring to discourage its use ([@emontnemery] - [#96933]) +- Avoid using name in Subaru migrations ([@joostlek] - [#96221]) +- Update pipdeptree to 2.10.2 ([@frenck] - [#96940]) +- Bump aiohomekit to 2.6.9 ([@bdraco] - [#96956]) +- Fix assertions in zeroconf tests ([@bdraco] - [#96957]) +- Bump yalexs-ble to 2.2.3 ([@bdraco] - [#96927]) +- Use default icon for demo button entity ([@frenck] - [#96961]) +- Bump aioesphomeapi to 15.1.13 ([@bdraco] - [#96964]) +- Add cancel messages to core task cancelation ([@bdraco] - [#96972]) +- Fix translation key in profiler integration ([@bdraco] - [#96979]) +- Do not override extra_state_attributes property for MqttEntity ([@jbouwh] - [#96890]) +- Only lookup hostname/ip_address/mac_address once in device_tracker ([@bdraco] - [#96984]) +- Bump xiaomi-ble to 0.19.1 ([@Ernst79] - [#96967]) +- Fix sentry test assert ([@cdce8p] - [#96983]) +- Cache version compare in update entity ([@bdraco] - [#96978]) +- Add snapshot testing to YouTube ([@joostlek] - [#96974]) +- Add entity translations to Daikin ([@joostlek] - [#95181]) +- Clean up logi circle const ([@joostlek] - [#95540]) +- Clean up Ombi const file ([@joostlek] - [#95541]) +- Update syrupy to 4.0.8 ([@frenck] - [#96990]) +- Add diagnostics to YouTube ([@joostlek] - [#96975]) +- Add EZVIZ AlarmControlPanelEntity ([@RenierM26] - [#96602]) +- Add event entity ([@frenck] - [#96797]) +- Change naming of MQTT entities to correspond with HA guidelines ([@jbouwh] - [#95159]) +- Fix a translation bug for water price issue ([@karwosts] - [#96958]) +- Add uv_index to Weather Entity ([@gjohansson-ST] - [#96951]) +- Update pytest-freezer to 0.4.8 ([@cdce8p] - [#97000]) +- Create an issue if Shelly TRV is not calibrated ([@bieniu] - [#96952]) +- Update pytest-cov to 4.1.0 ([@cdce8p] - [#97010]) +- Move OpenSky constants to separate const file ([@joostlek] - [#97013]) +- Update pytest-socket to 0.6.0 ([@cdce8p] - [#97011]) +- Use walrus in event entity last event attributes ([@frenck] - [#97005]) +- Add new sensors for Shelly Pro 3EM ([@bieniu] - [#97006]) +- Add new Forecasting to Weather ([@gjohansson-ST] - [#75219]) +- Bump aioesphomeapi to 15.1.14 ([@bdraco] - [#97019]) +- Update pytest-sugar to 0.9.7 ([@cdce8p] - [#97001]) +- Update pytest-asyncio to 0.21.0 ([@cdce8p] - [#96999]) +- Update tqdm to 4.65.0 ([@cdce8p] - [#96997]) +- Update respx to 0.20.2 ([@cdce8p] - [#96996]) +- Fix ESPHome bluetooth client cancel behavior when device unexpectedly disconnects ([@bdraco] - [#96918]) +- Display current version in common format in AVM Fritz!Tools ([@mib1185] - [#96424]) +- Decouple more of ESPHome Bluetooth support ([@bdraco] - [#96502]) +- Bump httpcore to 0.17.3 ([@bdraco] - [#97032]) +- Update coverage to 7.2.7 ([@cdce8p] - [#96998]) +- Add entity translations for PoolSense ([@joostlek] - [#95814]) +- Add upload date to Youtube state attributes ([@joostlek] - [#96976]) +- Use snapshot testing in LastFM ([@joostlek] - [#97009]) +- Clean up fitbit const ([@joostlek] - [#95545]) +- Fix duplicate and missing decorators in ESPHome Bluetooth client ([@bdraco] - [#97027]) +- Add entity translations for Ondilo Ico ([@joostlek] - [#95809]) +- Move Aseko coordinator to separate file ([@joostlek] - [#95120]) +- Add entity translations to iCloud ([@joostlek] - [#95461]) +- Add entity translations to Modern Forms ([@joostlek] - [#95738]) +- Add entity translations to Wiz ([@joostlek] - [#96826]) +- Add entity translations to IntelliFire ([@joostlek] - [#95466]) +- Clean up Vilfo const file ([@joostlek] - [#95543]) +- Migrate Uptimerobot to has entity name ([@joostlek] - [#96770]) +- Clean up Enphase Envoy const file ([@joostlek] - [#95536]) +- Add `uv_index` to AccuWeather weather entity ([@bieniu] - [#97015]) +- Fix Vicare cleanup token file on uninstall ([@CFenner] - [#95992]) +- Airthings BLE: Improve supported devices ([@LaStrada] - [#95883]) +- Add entity translations to Subaru ([@joostlek] - [#96186]) +- Teach zwave_js device trigger about entity registry ids ([@emontnemery] - [#96303]) +- Migrate Tolo to entity name ([@joostlek] - [#96244]) +- Apply common entity schema for MQTT Scene ([@jbouwh] - [#96949]) +- Fix zeroconf tests with cython 3 ([@bdraco] - [#97054]) +- Bump aiohomekit to 2.6.10 ([@bdraco] - [#97057]) +- Allow homeassistant in MQTT configuration_url schema ([@jbouwh] - [#96107]) +- Drop Python 3.10 support ([@frenck] - [#97007]) +- Bump aiohomekit to 2.6.11 ([@bdraco] - [#97061]) +- Import names from typing instead of typing_extensions [3.11] ([@cdce8p] - [#97065]) +- Replace typing.Optional with new typing syntax ([@cdce8p] - [#97068]) +- Drop tomli ([@cdce8p] - [#97064]) +- Use datetime.UTC alias [3.11] ([@cdce8p] - [#97067]) +- Add a cancel message to the aiohttp compatiblity layer ([@bdraco] - [#97058]) +- Add another OUI to tplink ([@bdraco] - [#97062]) +- Use entity name naming for Nanoleaf ([@joostlek] - [#95741]) +- Fix has_entity_name not always being set in ESPHome ([@bdraco] - [#97055]) +- Cleanup sensor unit conversion code ([@bdraco] - [#97074]) +- Guard expensive debug formatting with calls with isEnabledFor ([@bdraco] - [#97073]) +- Disable Spotify controls when no active session ([@joostlek] - [#96914]) +- Add repair hint to deprecate generic camera yaml config ([@davet2001] - [#96923]) +- Add support for MiScale V1 ([@Ernst79] - [#97081]) +- Add entity translations for ld2410 BLE ([@joostlek] - [#95709]) +- Add missing translations for power binary sensor device class ([@frenck] - [#97084]) +- Add entity translations to Tado ([@joostlek] - [#96226]) +- Add MQTT event entity platform ([@jbouwh] - [#96876]) +- Add Axis camera sources to diagnostics ([@Kane610] - [#97063]) +- Add new device class: PH (potential hydrogen) ([@cibernox] - [#95928]) +- Add Number platform to Roborock ([@Lash-L] - [#94209]) +- Improve code coverage for LastFM ([@joostlek] - [#97012]) +- Add entity translations to Renson ([@joostlek] - [#96040]) +- Add doorbell event support to alexa ([@jbouwh] - [#97092]) +- Add entity translations to uPnP ([@joostlek] - [#96763]) +- Add "enqueue" parameter to spotify integration ([@FOLLGAD] - [#90687]) +- Bump flux_led to 1.0.1 ([@bdraco] - [#97094]) +- Fix imap cleanup error on abort ([@jbouwh] - [#97097]) +- Fix typo hidrogen to hydrogen ([@frenck] - [#97096]) +- Add frequency and N current sensors for Shelly Pro 3EM ([@bieniu] - [#97082]) +- State attributes translation for Sensibo ([@gjohansson-ST] - [#85239]) +- Fix vulcan integration ([@Antoni-Czaplicki] - [#91401]) +- Add generic Event class ([@cdce8p] - [#97071]) +- Update ruff to v0.0.280 ([@frenck] - [#97102]) +- Update Home Assistant base image to 2023.07.0 ([@frenck] - [#97103]) +- Bump async-upnp-client to 0.34.1 ([@StevenLooman] - [#97105]) +- Add Low Battery binary_sensor to Flume ([@jeeftor] - [#94914]) +- Migrate backported StrEnum to built-in StrEnum ([@frenck] - [#97101]) +- Add second led control for carro smart fan ([@rale] - [#94195]) +- Use EventType for more helper methods ([@cdce8p] - [#97107]) +- Remove the use of StateType from AccuWeather ([@frenck] - [#97109]) +- Update pipdeptree to 2.11.0 ([@frenck] - [#97098]) +- Bump yeelight to 0.7.12 ([@bdraco] - [#97112]) +- Use EventType for state changed [core] ([@cdce8p] - [#97115]) +- Only construct enum __or__ once in emulated_hue ([@bdraco] - [#97114]) +- Remove the use of StateType from Demo ([@frenck] - [#97111]) +- Use EventType for remaining event helper methods ([@cdce8p] - [#97121]) +- Relax typing on cached_property to accept subclasses ([@bdraco] - [#95407]) +- Bump zeroconf to 0.71.3 ([@bdraco] - [#97119]) +- Use EventType for state changed [h-m] ([@cdce8p] - [#97117]) +- Use EventType for state changed [a-h] ([@cdce8p] - [#97116]) +- Use EventType for state changed [m-z] ([@cdce8p] - [#97118]) +- Improve `async_track_state_added/removed_domain` callback typing ([@cdce8p] - [#97126]) +- Wrap internal ZHA exceptions in `HomeAssistantError`s ([@puddly] - [#97033]) +- Improve `async_track_entity_registry_updated_event` callback typing ([@cdce8p] - [#97124]) +- Migrate Yeelight to has entity naming ([@joostlek] - [#96836]) +- Improve `async_track_device_registry_updated_event` callback typing ([@cdce8p] - [#97125]) +- Fix ruff ([@cdce8p] - [#97131]) +- Improve `async_track_template_result` callback typing ([@cdce8p] - [#97135]) +- Improve `async_track_state_change_filtered` callback typing ([@cdce8p] - [#97134]) +- Cleanup EventType typing ([@cdce8p] - [#97136]) +- Update xknx to 2.11.2 - fix DPT 9 small negative values ([@farmio] - [#97137]) +- Fix typos in Radio Browser comment and docstring ([@joostlek] - [#97138]) +- Allow for translating service examples ([@frenck] - [#97141]) +- Reduce attribute lookups in climate needed to write state ([@bdraco] - [#97145]) +- Enable long-term statistics for Fast.com sensor ([@N3rdix] - [#97139]) +- Migrate frontend services to support translations ([@frenck] - [#96342]) +- Add Fallback to cloud api for Roborock ([@Lash-L] - [#96147]) +- Add name and default name to device info of APCUPSD sensors ([@yuxincs] - [#94415]) +- Make Codespell skip snapshot tests ([@joostlek] - [#97150]) +- Add initial test coverage for ESPHome manager ([@bdraco] - [#97147]) +- Bump home-assistant-bluetooth to 1.10.1 ([@bdraco] - [#97153]) +- Remove unused words from codespell check ([@joostlek] - [#97152]) +- Add alternative key names for Discovergy voltage sensors ([@jpbede] - [#97155]) +- Implement data coordinator for LastFM ([@joostlek] - [#96942]) +- Fix denonavr netaudio telnet event ([@ol-iver] - [#97159]) +- Bump zeroconf to 0.71.4 ([@bdraco] - [#97156]) +- Bump bluetooth deps ([@bdraco] - [#97157]) +- Add sensors for Shelly Plus PM Mini ([@bieniu] - [#97163]) +- Change AsusWRT entities unique id ([@ollo69] - [#97066]) +- Limit AndroidTV screencap calls ([@ollo69] - [#96485]) +- Android TV Remote: Add option to disable IME ([@tronikos] - [#95765]) +- Fix EZVIZ LightEntity occasional ValueError ([@RenierM26] - [#95679]) +- Jellyfin: Sort seasons and episodes by index ([@j-stienstra] - [#92961]) +- Bump ulid-transform to 0.8.0 ([@bdraco] - [#97162]) +- Improve reading of MOTD and bump mcstatus to 11.0.0 ([@elmurato] - [#95715]) +- Add entity translations to AsusWRT ([@joostlek] - [#95125]) +- Bump fnv-hash-fast to 0.4.0 ([@bdraco] - [#97160]) +- Bump anyio to 3.7.1 ([@bdraco] - [#97165]) +- Migrate TPLink to has entity name ([@joostlek] - [#96246]) +- Add date platform to KNX ([@farmio] - [#97154]) +- Add support for sleepy Xiaomi BLE sensors ([@Ernst79] - [#97166]) +- Bump dbus-fast to 1.87.2 ([@bdraco] - [#97167]) +- Reolink improve webhook URL error message ([@starkillerOG] - [#96088]) +- Bumb python-homewizard-energy to 2.0.2 ([@DCSBL] - [#97169]) +- Add frequency sensor for Shelly Plus/Pro xPM devices ([@bieniu] - [#97172]) +- Add Airzone Cloud Aidoo binary sensors ([@Noltari] - [#95607]) +- Bump hassil and intents ([@synesthesiam] - [#97174]) +- Make setup of Ecovacs async ([@mib1185] - [#96200]) +- Use snapshots in devolo Home Network button tests ([@Shutgun] - [#95141]) +- Add Ezviz button entities ([@RenierM26] - [#93647]) +- Scrape refactor to ManualTriggerEntity ([@gjohansson-ST] - [#96329]) +- Use get_url to get Home Assistant instance for Loqed webhook ([@mikewoudenberg] - [#95761]) +- Add yolink finger support ([@matrixd2] - [#96944]) +- Aligned integration manifest files ([@GrumpyMeow] - [#97175]) +- Bump python-otbr-api to 2.3.0 ([@emontnemery] - [#97185]) +- Create zwave_js repair issue instead of warning log entry ([@adrianmo] - [#95997]) +- Add WLAN QR code support to UniFi Image platform ([@Kane610] - [#97171]) +- Move Minecraft Server base entity to its own file ([@elmurato] - [#97187]) +- Add service turn_on and turn_off service for water_heater ([@jbouwh] - [#94817]) +- Implement YouTube async library ([@joostlek] - [#97072]) +- Add electric kiwi integration ([@mikey0000] - [#81149]) +- Add datetime platform to KNX ([@farmio] - [#97190]) +- Use device class ENUM for Tractive tracker state sensor ([@bieniu] - [#97191]) +- Add the Duotecno intergration ([@Cereal2nd] - [#96399]) +- Improve Tractive sensor names ([@bieniu] - [#97192]) +- Prevent duplicate Matter attribute event subscription ([@marcelveldt] - [#97194]) +- Bump home-assistant-bluetooth to 1.10.2 ([@bdraco] - [#97193]) +- Fix broken translation keys ([@mikey0000] - [#97202]) +- Add time platform to Roborock ([@Lash-L] - [#94039]) +- Add turn on/off support for mqtt water_heater ([@jbouwh] - [#97197]) +- Bump pydiscovergy to 2.0.1 ([@jpbede] - [#97186]) +- Add controls to enable and disable a UniFi WLAN ([@Kane610] - [#97204]) +- Check before casting to float & add integration type to bsblan ([@jpbede] - [#97210]) +- Bump bleak-retry-connector to 3.1.1 ([@bdraco] - [#97218]) +- Add support for bleak 0.21 ([@bdraco] - [#97212]) +- Update frontend to 20230725.0 ([@frenck] - [#97220]) +- Add config flow to OpenSky ([@joostlek] - [#96912]) +- Add explicit device naming for Verisure ([@joostlek] - [#97224]) +- Whrilpool add periodic update ([@mkmer] - [#97222]) +- Bump youtubeaio to 1.1.5 ([@joostlek] - [#97231]) +- Correct AsusWRT device identifier ([@ollo69] - [#97238]) +- Add HassShoppingListAddItem to default agent ([@synesthesiam] - [#97232]) +- Bump opower==0.0.15 ([@tronikos] - [#97243]) +- Add WLAN clients reporting to UniFi Sensor platform ([@Kane610] - [#97234]) +- Bump pyunifiprotect to 4.10.6 ([@bdraco] - [#97240]) +- Stop rounding history_stats sensor ([@amosyuen] - [#97195]) +- Add event entities to homekit_controller ([@Jc2k] - [#97140]) +- Codeowner update for cert-expiry ([@Cereal2nd] - [#97246]) +- Add Pegel Online integration ([@mib1185] - [#97028]) +- Add service to OpenAI to Generate an image ([@balloob] - [#97018]) +- Fix pegel_online generic typing ([@cdce8p] - [#97252]) +- Add guard for missing xy color support in Matter light platform ([@marcelveldt] - [#97251]) +- Add virtual integrations supported by opower ([@tronikos] - [#97250]) +- Add duotecno covers ([@Cereal2nd] - [#97205]) +- Add Event platform to Matter ([@marcelveldt] - [#97219]) +- Bump whirlpool-sixth-sense to 0.18.4 ([@mkmer] - [#97255]) +- Handle UpdateFailed for YouTube ([@joostlek] - [#97233]) +- Add Event platform/entity to Hue integration ([@marcelveldt] - [#97256]) +- Fix invalid ColorMode on (some) 3rd party Hue Color lights ([@marcelveldt] - [#97263]) + +[#75219]: https://github.com/home-assistant/core/pull/75219 +[#81149]: https://github.com/home-assistant/core/pull/81149 +[#84152]: https://github.com/home-assistant/core/pull/84152 +[#85239]: https://github.com/home-assistant/core/pull/85239 +[#86124]: https://github.com/home-assistant/core/pull/86124 +[#86974]: https://github.com/home-assistant/core/pull/86974 +[#90489]: https://github.com/home-assistant/core/pull/90489 +[#90687]: https://github.com/home-assistant/core/pull/90687 +[#90846]: https://github.com/home-assistant/core/pull/90846 +[#91401]: https://github.com/home-assistant/core/pull/91401 +[#92961]: https://github.com/home-assistant/core/pull/92961 +[#93268]: https://github.com/home-assistant/core/pull/93268 +[#93416]: https://github.com/home-assistant/core/pull/93416 +[#93625]: https://github.com/home-assistant/core/pull/93625 +[#93647]: https://github.com/home-assistant/core/pull/93647 +[#94039]: https://github.com/home-assistant/core/pull/94039 +[#94097]: https://github.com/home-assistant/core/pull/94097 +[#94195]: https://github.com/home-assistant/core/pull/94195 +[#94209]: https://github.com/home-assistant/core/pull/94209 +[#94305]: https://github.com/home-assistant/core/pull/94305 +[#94415]: https://github.com/home-assistant/core/pull/94415 +[#94421]: https://github.com/home-assistant/core/pull/94421 +[#94525]: https://github.com/home-assistant/core/pull/94525 +[#94817]: https://github.com/home-assistant/core/pull/94817 +[#94914]: https://github.com/home-assistant/core/pull/94914 +[#95020]: https://github.com/home-assistant/core/pull/95020 +[#95027]: https://github.com/home-assistant/core/pull/95027 +[#95091]: https://github.com/home-assistant/core/pull/95091 +[#95104]: https://github.com/home-assistant/core/pull/95104 +[#95116]: https://github.com/home-assistant/core/pull/95116 +[#95120]: https://github.com/home-assistant/core/pull/95120 +[#95125]: https://github.com/home-assistant/core/pull/95125 +[#95141]: https://github.com/home-assistant/core/pull/95141 +[#95159]: https://github.com/home-assistant/core/pull/95159 +[#95179]: https://github.com/home-assistant/core/pull/95179 +[#95181]: https://github.com/home-assistant/core/pull/95181 +[#95242]: https://github.com/home-assistant/core/pull/95242 +[#95407]: https://github.com/home-assistant/core/pull/95407 +[#95447]: https://github.com/home-assistant/core/pull/95447 +[#95453]: https://github.com/home-assistant/core/pull/95453 +[#95457]: https://github.com/home-assistant/core/pull/95457 +[#95461]: https://github.com/home-assistant/core/pull/95461 +[#95466]: https://github.com/home-assistant/core/pull/95466 +[#95467]: https://github.com/home-assistant/core/pull/95467 +[#95469]: https://github.com/home-assistant/core/pull/95469 +[#95472]: https://github.com/home-assistant/core/pull/95472 +[#95473]: https://github.com/home-assistant/core/pull/95473 +[#95476]: https://github.com/home-assistant/core/pull/95476 +[#95487]: https://github.com/home-assistant/core/pull/95487 +[#95536]: https://github.com/home-assistant/core/pull/95536 +[#95539]: https://github.com/home-assistant/core/pull/95539 +[#95540]: https://github.com/home-assistant/core/pull/95540 +[#95541]: https://github.com/home-assistant/core/pull/95541 +[#95542]: https://github.com/home-assistant/core/pull/95542 +[#95543]: https://github.com/home-assistant/core/pull/95543 +[#95544]: https://github.com/home-assistant/core/pull/95544 +[#95545]: https://github.com/home-assistant/core/pull/95545 +[#95547]: https://github.com/home-assistant/core/pull/95547 +[#95575]: https://github.com/home-assistant/core/pull/95575 +[#95577]: https://github.com/home-assistant/core/pull/95577 +[#95580]: https://github.com/home-assistant/core/pull/95580 +[#95599]: https://github.com/home-assistant/core/pull/95599 +[#95603]: https://github.com/home-assistant/core/pull/95603 +[#95606]: https://github.com/home-assistant/core/pull/95606 +[#95607]: https://github.com/home-assistant/core/pull/95607 +[#95609]: https://github.com/home-assistant/core/pull/95609 +[#95625]: https://github.com/home-assistant/core/pull/95625 +[#95631]: https://github.com/home-assistant/core/pull/95631 +[#95634]: https://github.com/home-assistant/core/pull/95634 +[#95641]: https://github.com/home-assistant/core/pull/95641 +[#95643]: https://github.com/home-assistant/core/pull/95643 +[#95644]: https://github.com/home-assistant/core/pull/95644 +[#95645]: https://github.com/home-assistant/core/pull/95645 +[#95646]: https://github.com/home-assistant/core/pull/95646 +[#95647]: https://github.com/home-assistant/core/pull/95647 +[#95648]: https://github.com/home-assistant/core/pull/95648 +[#95658]: https://github.com/home-assistant/core/pull/95658 +[#95675]: https://github.com/home-assistant/core/pull/95675 +[#95679]: https://github.com/home-assistant/core/pull/95679 +[#95683]: https://github.com/home-assistant/core/pull/95683 +[#95686]: https://github.com/home-assistant/core/pull/95686 +[#95687]: https://github.com/home-assistant/core/pull/95687 +[#95688]: https://github.com/home-assistant/core/pull/95688 +[#95691]: https://github.com/home-assistant/core/pull/95691 +[#95693]: https://github.com/home-assistant/core/pull/95693 +[#95697]: https://github.com/home-assistant/core/pull/95697 +[#95698]: https://github.com/home-assistant/core/pull/95698 +[#95709]: https://github.com/home-assistant/core/pull/95709 +[#95711]: https://github.com/home-assistant/core/pull/95711 +[#95712]: https://github.com/home-assistant/core/pull/95712 +[#95715]: https://github.com/home-assistant/core/pull/95715 +[#95721]: https://github.com/home-assistant/core/pull/95721 +[#95723]: https://github.com/home-assistant/core/pull/95723 +[#95726]: https://github.com/home-assistant/core/pull/95726 +[#95727]: https://github.com/home-assistant/core/pull/95727 +[#95729]: https://github.com/home-assistant/core/pull/95729 +[#95731]: https://github.com/home-assistant/core/pull/95731 +[#95732]: https://github.com/home-assistant/core/pull/95732 +[#95733]: https://github.com/home-assistant/core/pull/95733 +[#95734]: https://github.com/home-assistant/core/pull/95734 +[#95737]: https://github.com/home-assistant/core/pull/95737 +[#95738]: https://github.com/home-assistant/core/pull/95738 +[#95740]: https://github.com/home-assistant/core/pull/95740 +[#95741]: https://github.com/home-assistant/core/pull/95741 +[#95742]: https://github.com/home-assistant/core/pull/95742 +[#95745]: https://github.com/home-assistant/core/pull/95745 +[#95748]: https://github.com/home-assistant/core/pull/95748 +[#95753]: https://github.com/home-assistant/core/pull/95753 +[#95755]: https://github.com/home-assistant/core/pull/95755 +[#95756]: https://github.com/home-assistant/core/pull/95756 +[#95757]: https://github.com/home-assistant/core/pull/95757 +[#95758]: https://github.com/home-assistant/core/pull/95758 +[#95761]: https://github.com/home-assistant/core/pull/95761 +[#95763]: https://github.com/home-assistant/core/pull/95763 +[#95764]: https://github.com/home-assistant/core/pull/95764 +[#95765]: https://github.com/home-assistant/core/pull/95765 +[#95770]: https://github.com/home-assistant/core/pull/95770 +[#95773]: https://github.com/home-assistant/core/pull/95773 +[#95776]: https://github.com/home-assistant/core/pull/95776 +[#95777]: https://github.com/home-assistant/core/pull/95777 +[#95779]: https://github.com/home-assistant/core/pull/95779 +[#95782]: https://github.com/home-assistant/core/pull/95782 +[#95785]: https://github.com/home-assistant/core/pull/95785 +[#95786]: https://github.com/home-assistant/core/pull/95786 +[#95787]: https://github.com/home-assistant/core/pull/95787 +[#95789]: https://github.com/home-assistant/core/pull/95789 +[#95790]: https://github.com/home-assistant/core/pull/95790 +[#95792]: https://github.com/home-assistant/core/pull/95792 +[#95794]: https://github.com/home-assistant/core/pull/95794 +[#95798]: https://github.com/home-assistant/core/pull/95798 +[#95799]: https://github.com/home-assistant/core/pull/95799 +[#95800]: https://github.com/home-assistant/core/pull/95800 +[#95801]: https://github.com/home-assistant/core/pull/95801 +[#95802]: https://github.com/home-assistant/core/pull/95802 +[#95803]: https://github.com/home-assistant/core/pull/95803 +[#95805]: https://github.com/home-assistant/core/pull/95805 +[#95806]: https://github.com/home-assistant/core/pull/95806 +[#95808]: https://github.com/home-assistant/core/pull/95808 +[#95809]: https://github.com/home-assistant/core/pull/95809 +[#95810]: https://github.com/home-assistant/core/pull/95810 +[#95811]: https://github.com/home-assistant/core/pull/95811 +[#95814]: https://github.com/home-assistant/core/pull/95814 +[#95816]: https://github.com/home-assistant/core/pull/95816 +[#95818]: https://github.com/home-assistant/core/pull/95818 +[#95819]: https://github.com/home-assistant/core/pull/95819 +[#95820]: https://github.com/home-assistant/core/pull/95820 +[#95821]: https://github.com/home-assistant/core/pull/95821 +[#95822]: https://github.com/home-assistant/core/pull/95822 +[#95825]: https://github.com/home-assistant/core/pull/95825 +[#95828]: https://github.com/home-assistant/core/pull/95828 +[#95829]: https://github.com/home-assistant/core/pull/95829 +[#95830]: https://github.com/home-assistant/core/pull/95830 +[#95831]: https://github.com/home-assistant/core/pull/95831 +[#95832]: https://github.com/home-assistant/core/pull/95832 +[#95833]: https://github.com/home-assistant/core/pull/95833 +[#95836]: https://github.com/home-assistant/core/pull/95836 +[#95845]: https://github.com/home-assistant/core/pull/95845 +[#95846]: https://github.com/home-assistant/core/pull/95846 +[#95847]: https://github.com/home-assistant/core/pull/95847 +[#95848]: https://github.com/home-assistant/core/pull/95848 +[#95849]: https://github.com/home-assistant/core/pull/95849 +[#95850]: https://github.com/home-assistant/core/pull/95850 +[#95852]: https://github.com/home-assistant/core/pull/95852 +[#95853]: https://github.com/home-assistant/core/pull/95853 +[#95854]: https://github.com/home-assistant/core/pull/95854 +[#95855]: https://github.com/home-assistant/core/pull/95855 +[#95856]: https://github.com/home-assistant/core/pull/95856 +[#95857]: https://github.com/home-assistant/core/pull/95857 +[#95859]: https://github.com/home-assistant/core/pull/95859 +[#95860]: https://github.com/home-assistant/core/pull/95860 +[#95862]: https://github.com/home-assistant/core/pull/95862 +[#95863]: https://github.com/home-assistant/core/pull/95863 +[#95864]: https://github.com/home-assistant/core/pull/95864 +[#95865]: https://github.com/home-assistant/core/pull/95865 +[#95870]: https://github.com/home-assistant/core/pull/95870 +[#95873]: https://github.com/home-assistant/core/pull/95873 +[#95875]: https://github.com/home-assistant/core/pull/95875 +[#95877]: https://github.com/home-assistant/core/pull/95877 +[#95881]: https://github.com/home-assistant/core/pull/95881 +[#95883]: https://github.com/home-assistant/core/pull/95883 +[#95897]: https://github.com/home-assistant/core/pull/95897 +[#95898]: https://github.com/home-assistant/core/pull/95898 +[#95902]: https://github.com/home-assistant/core/pull/95902 +[#95904]: https://github.com/home-assistant/core/pull/95904 +[#95905]: https://github.com/home-assistant/core/pull/95905 +[#95906]: https://github.com/home-assistant/core/pull/95906 +[#95910]: https://github.com/home-assistant/core/pull/95910 +[#95919]: https://github.com/home-assistant/core/pull/95919 +[#95920]: https://github.com/home-assistant/core/pull/95920 +[#95927]: https://github.com/home-assistant/core/pull/95927 +[#95928]: https://github.com/home-assistant/core/pull/95928 +[#95931]: https://github.com/home-assistant/core/pull/95931 +[#95935]: https://github.com/home-assistant/core/pull/95935 +[#95942]: https://github.com/home-assistant/core/pull/95942 +[#95943]: https://github.com/home-assistant/core/pull/95943 +[#95976]: https://github.com/home-assistant/core/pull/95976 +[#95980]: https://github.com/home-assistant/core/pull/95980 +[#95984]: https://github.com/home-assistant/core/pull/95984 +[#95987]: https://github.com/home-assistant/core/pull/95987 +[#95992]: https://github.com/home-assistant/core/pull/95992 +[#95997]: https://github.com/home-assistant/core/pull/95997 +[#96022]: https://github.com/home-assistant/core/pull/96022 +[#96023]: https://github.com/home-assistant/core/pull/96023 +[#96029]: https://github.com/home-assistant/core/pull/96029 +[#96030]: https://github.com/home-assistant/core/pull/96030 +[#96031]: https://github.com/home-assistant/core/pull/96031 +[#96033]: https://github.com/home-assistant/core/pull/96033 +[#96034]: https://github.com/home-assistant/core/pull/96034 +[#96035]: https://github.com/home-assistant/core/pull/96035 +[#96037]: https://github.com/home-assistant/core/pull/96037 +[#96038]: https://github.com/home-assistant/core/pull/96038 +[#96040]: https://github.com/home-assistant/core/pull/96040 +[#96041]: https://github.com/home-assistant/core/pull/96041 +[#96048]: https://github.com/home-assistant/core/pull/96048 +[#96058]: https://github.com/home-assistant/core/pull/96058 +[#96062]: https://github.com/home-assistant/core/pull/96062 +[#96063]: https://github.com/home-assistant/core/pull/96063 +[#96068]: https://github.com/home-assistant/core/pull/96068 +[#96072]: https://github.com/home-assistant/core/pull/96072 +[#96073]: https://github.com/home-assistant/core/pull/96073 +[#96074]: https://github.com/home-assistant/core/pull/96074 +[#96075]: https://github.com/home-assistant/core/pull/96075 +[#96076]: https://github.com/home-assistant/core/pull/96076 +[#96077]: https://github.com/home-assistant/core/pull/96077 +[#96080]: https://github.com/home-assistant/core/pull/96080 +[#96085]: https://github.com/home-assistant/core/pull/96085 +[#96086]: https://github.com/home-assistant/core/pull/96086 +[#96087]: https://github.com/home-assistant/core/pull/96087 +[#96088]: https://github.com/home-assistant/core/pull/96088 +[#96089]: https://github.com/home-assistant/core/pull/96089 +[#96091]: https://github.com/home-assistant/core/pull/96091 +[#96092]: https://github.com/home-assistant/core/pull/96092 +[#96096]: https://github.com/home-assistant/core/pull/96096 +[#96104]: https://github.com/home-assistant/core/pull/96104 +[#96106]: https://github.com/home-assistant/core/pull/96106 +[#96107]: https://github.com/home-assistant/core/pull/96107 +[#96108]: https://github.com/home-assistant/core/pull/96108 +[#96109]: https://github.com/home-assistant/core/pull/96109 +[#96110]: https://github.com/home-assistant/core/pull/96110 +[#96111]: https://github.com/home-assistant/core/pull/96111 +[#96114]: https://github.com/home-assistant/core/pull/96114 +[#96115]: https://github.com/home-assistant/core/pull/96115 +[#96120]: https://github.com/home-assistant/core/pull/96120 +[#96122]: https://github.com/home-assistant/core/pull/96122 +[#96124]: https://github.com/home-assistant/core/pull/96124 +[#96131]: https://github.com/home-assistant/core/pull/96131 +[#96132]: https://github.com/home-assistant/core/pull/96132 +[#96133]: https://github.com/home-assistant/core/pull/96133 +[#96134]: https://github.com/home-assistant/core/pull/96134 +[#96137]: https://github.com/home-assistant/core/pull/96137 +[#96146]: https://github.com/home-assistant/core/pull/96146 +[#96147]: https://github.com/home-assistant/core/pull/96147 +[#96149]: https://github.com/home-assistant/core/pull/96149 +[#96150]: https://github.com/home-assistant/core/pull/96150 +[#96152]: https://github.com/home-assistant/core/pull/96152 +[#96154]: https://github.com/home-assistant/core/pull/96154 +[#96156]: https://github.com/home-assistant/core/pull/96156 +[#96157]: https://github.com/home-assistant/core/pull/96157 +[#96158]: https://github.com/home-assistant/core/pull/96158 +[#96159]: https://github.com/home-assistant/core/pull/96159 +[#96165]: https://github.com/home-assistant/core/pull/96165 +[#96167]: https://github.com/home-assistant/core/pull/96167 +[#96168]: https://github.com/home-assistant/core/pull/96168 +[#96170]: https://github.com/home-assistant/core/pull/96170 +[#96171]: https://github.com/home-assistant/core/pull/96171 +[#96176]: https://github.com/home-assistant/core/pull/96176 +[#96177]: https://github.com/home-assistant/core/pull/96177 +[#96181]: https://github.com/home-assistant/core/pull/96181 +[#96183]: https://github.com/home-assistant/core/pull/96183 +[#96186]: https://github.com/home-assistant/core/pull/96186 +[#96187]: https://github.com/home-assistant/core/pull/96187 +[#96191]: https://github.com/home-assistant/core/pull/96191 +[#96192]: https://github.com/home-assistant/core/pull/96192 +[#96200]: https://github.com/home-assistant/core/pull/96200 +[#96209]: https://github.com/home-assistant/core/pull/96209 +[#96218]: https://github.com/home-assistant/core/pull/96218 +[#96221]: https://github.com/home-assistant/core/pull/96221 +[#96226]: https://github.com/home-assistant/core/pull/96226 +[#96227]: https://github.com/home-assistant/core/pull/96227 +[#96229]: https://github.com/home-assistant/core/pull/96229 +[#96234]: https://github.com/home-assistant/core/pull/96234 +[#96236]: https://github.com/home-assistant/core/pull/96236 +[#96237]: https://github.com/home-assistant/core/pull/96237 +[#96239]: https://github.com/home-assistant/core/pull/96239 +[#96241]: https://github.com/home-assistant/core/pull/96241 +[#96242]: https://github.com/home-assistant/core/pull/96242 +[#96244]: https://github.com/home-assistant/core/pull/96244 +[#96245]: https://github.com/home-assistant/core/pull/96245 +[#96246]: https://github.com/home-assistant/core/pull/96246 +[#96247]: https://github.com/home-assistant/core/pull/96247 +[#96248]: https://github.com/home-assistant/core/pull/96248 +[#96249]: https://github.com/home-assistant/core/pull/96249 +[#96250]: https://github.com/home-assistant/core/pull/96250 +[#96251]: https://github.com/home-assistant/core/pull/96251 +[#96252]: https://github.com/home-assistant/core/pull/96252 +[#96257]: https://github.com/home-assistant/core/pull/96257 +[#96260]: https://github.com/home-assistant/core/pull/96260 +[#96261]: https://github.com/home-assistant/core/pull/96261 +[#96262]: https://github.com/home-assistant/core/pull/96262 +[#96264]: https://github.com/home-assistant/core/pull/96264 +[#96265]: https://github.com/home-assistant/core/pull/96265 +[#96269]: https://github.com/home-assistant/core/pull/96269 +[#96276]: https://github.com/home-assistant/core/pull/96276 +[#96280]: https://github.com/home-assistant/core/pull/96280 +[#96281]: https://github.com/home-assistant/core/pull/96281 +[#96285]: https://github.com/home-assistant/core/pull/96285 +[#96286]: https://github.com/home-assistant/core/pull/96286 +[#96288]: https://github.com/home-assistant/core/pull/96288 +[#96295]: https://github.com/home-assistant/core/pull/96295 +[#96296]: https://github.com/home-assistant/core/pull/96296 +[#96297]: https://github.com/home-assistant/core/pull/96297 +[#96298]: https://github.com/home-assistant/core/pull/96298 +[#96300]: https://github.com/home-assistant/core/pull/96300 +[#96303]: https://github.com/home-assistant/core/pull/96303 +[#96305]: https://github.com/home-assistant/core/pull/96305 +[#96306]: https://github.com/home-assistant/core/pull/96306 +[#96308]: https://github.com/home-assistant/core/pull/96308 +[#96309]: https://github.com/home-assistant/core/pull/96309 +[#96310]: https://github.com/home-assistant/core/pull/96310 +[#96311]: https://github.com/home-assistant/core/pull/96311 +[#96312]: https://github.com/home-assistant/core/pull/96312 +[#96313]: https://github.com/home-assistant/core/pull/96313 +[#96314]: https://github.com/home-assistant/core/pull/96314 +[#96315]: https://github.com/home-assistant/core/pull/96315 +[#96317]: https://github.com/home-assistant/core/pull/96317 +[#96318]: https://github.com/home-assistant/core/pull/96318 +[#96319]: https://github.com/home-assistant/core/pull/96319 +[#96320]: https://github.com/home-assistant/core/pull/96320 +[#96323]: https://github.com/home-assistant/core/pull/96323 +[#96324]: https://github.com/home-assistant/core/pull/96324 +[#96325]: https://github.com/home-assistant/core/pull/96325 +[#96327]: https://github.com/home-assistant/core/pull/96327 +[#96328]: https://github.com/home-assistant/core/pull/96328 +[#96329]: https://github.com/home-assistant/core/pull/96329 +[#96336]: https://github.com/home-assistant/core/pull/96336 +[#96337]: https://github.com/home-assistant/core/pull/96337 +[#96340]: https://github.com/home-assistant/core/pull/96340 +[#96341]: https://github.com/home-assistant/core/pull/96341 +[#96342]: https://github.com/home-assistant/core/pull/96342 +[#96343]: https://github.com/home-assistant/core/pull/96343 +[#96344]: https://github.com/home-assistant/core/pull/96344 +[#96346]: https://github.com/home-assistant/core/pull/96346 +[#96349]: https://github.com/home-assistant/core/pull/96349 +[#96350]: https://github.com/home-assistant/core/pull/96350 +[#96351]: https://github.com/home-assistant/core/pull/96351 +[#96353]: https://github.com/home-assistant/core/pull/96353 +[#96355]: https://github.com/home-assistant/core/pull/96355 +[#96356]: https://github.com/home-assistant/core/pull/96356 +[#96359]: https://github.com/home-assistant/core/pull/96359 +[#96361]: https://github.com/home-assistant/core/pull/96361 +[#96362]: https://github.com/home-assistant/core/pull/96362 +[#96363]: https://github.com/home-assistant/core/pull/96363 +[#96365]: https://github.com/home-assistant/core/pull/96365 +[#96367]: https://github.com/home-assistant/core/pull/96367 +[#96369]: https://github.com/home-assistant/core/pull/96369 +[#96372]: https://github.com/home-assistant/core/pull/96372 +[#96373]: https://github.com/home-assistant/core/pull/96373 +[#96374]: https://github.com/home-assistant/core/pull/96374 +[#96376]: https://github.com/home-assistant/core/pull/96376 +[#96378]: https://github.com/home-assistant/core/pull/96378 +[#96379]: https://github.com/home-assistant/core/pull/96379 +[#96381]: https://github.com/home-assistant/core/pull/96381 +[#96382]: https://github.com/home-assistant/core/pull/96382 +[#96383]: https://github.com/home-assistant/core/pull/96383 +[#96384]: https://github.com/home-assistant/core/pull/96384 +[#96386]: https://github.com/home-assistant/core/pull/96386 +[#96388]: https://github.com/home-assistant/core/pull/96388 +[#96389]: https://github.com/home-assistant/core/pull/96389 +[#96390]: https://github.com/home-assistant/core/pull/96390 +[#96391]: https://github.com/home-assistant/core/pull/96391 +[#96392]: https://github.com/home-assistant/core/pull/96392 +[#96393]: https://github.com/home-assistant/core/pull/96393 +[#96394]: https://github.com/home-assistant/core/pull/96394 +[#96395]: https://github.com/home-assistant/core/pull/96395 +[#96396]: https://github.com/home-assistant/core/pull/96396 +[#96397]: https://github.com/home-assistant/core/pull/96397 +[#96398]: https://github.com/home-assistant/core/pull/96398 +[#96399]: https://github.com/home-assistant/core/pull/96399 +[#96400]: https://github.com/home-assistant/core/pull/96400 +[#96401]: https://github.com/home-assistant/core/pull/96401 +[#96402]: https://github.com/home-assistant/core/pull/96402 +[#96405]: https://github.com/home-assistant/core/pull/96405 +[#96406]: https://github.com/home-assistant/core/pull/96406 +[#96407]: https://github.com/home-assistant/core/pull/96407 +[#96408]: https://github.com/home-assistant/core/pull/96408 +[#96409]: https://github.com/home-assistant/core/pull/96409 +[#96410]: https://github.com/home-assistant/core/pull/96410 +[#96411]: https://github.com/home-assistant/core/pull/96411 +[#96412]: https://github.com/home-assistant/core/pull/96412 +[#96413]: https://github.com/home-assistant/core/pull/96413 +[#96414]: https://github.com/home-assistant/core/pull/96414 +[#96415]: https://github.com/home-assistant/core/pull/96415 +[#96416]: https://github.com/home-assistant/core/pull/96416 +[#96417]: https://github.com/home-assistant/core/pull/96417 +[#96418]: https://github.com/home-assistant/core/pull/96418 +[#96424]: https://github.com/home-assistant/core/pull/96424 +[#96426]: https://github.com/home-assistant/core/pull/96426 +[#96429]: https://github.com/home-assistant/core/pull/96429 +[#96430]: https://github.com/home-assistant/core/pull/96430 +[#96436]: https://github.com/home-assistant/core/pull/96436 +[#96450]: https://github.com/home-assistant/core/pull/96450 +[#96453]: https://github.com/home-assistant/core/pull/96453 +[#96455]: https://github.com/home-assistant/core/pull/96455 +[#96458]: https://github.com/home-assistant/core/pull/96458 +[#96459]: https://github.com/home-assistant/core/pull/96459 +[#96460]: https://github.com/home-assistant/core/pull/96460 +[#96461]: https://github.com/home-assistant/core/pull/96461 +[#96464]: https://github.com/home-assistant/core/pull/96464 +[#96465]: https://github.com/home-assistant/core/pull/96465 +[#96467]: https://github.com/home-assistant/core/pull/96467 +[#96469]: https://github.com/home-assistant/core/pull/96469 +[#96472]: https://github.com/home-assistant/core/pull/96472 +[#96473]: https://github.com/home-assistant/core/pull/96473 +[#96474]: https://github.com/home-assistant/core/pull/96474 +[#96475]: https://github.com/home-assistant/core/pull/96475 +[#96476]: https://github.com/home-assistant/core/pull/96476 +[#96479]: https://github.com/home-assistant/core/pull/96479 +[#96480]: https://github.com/home-assistant/core/pull/96480 +[#96481]: https://github.com/home-assistant/core/pull/96481 +[#96482]: https://github.com/home-assistant/core/pull/96482 +[#96483]: https://github.com/home-assistant/core/pull/96483 +[#96485]: https://github.com/home-assistant/core/pull/96485 +[#96486]: https://github.com/home-assistant/core/pull/96486 +[#96490]: https://github.com/home-assistant/core/pull/96490 +[#96492]: https://github.com/home-assistant/core/pull/96492 +[#96495]: https://github.com/home-assistant/core/pull/96495 +[#96498]: https://github.com/home-assistant/core/pull/96498 +[#96502]: https://github.com/home-assistant/core/pull/96502 +[#96503]: https://github.com/home-assistant/core/pull/96503 +[#96504]: https://github.com/home-assistant/core/pull/96504 +[#96506]: https://github.com/home-assistant/core/pull/96506 +[#96509]: https://github.com/home-assistant/core/pull/96509 +[#96510]: https://github.com/home-assistant/core/pull/96510 +[#96511]: https://github.com/home-assistant/core/pull/96511 +[#96524]: https://github.com/home-assistant/core/pull/96524 +[#96525]: https://github.com/home-assistant/core/pull/96525 +[#96526]: https://github.com/home-assistant/core/pull/96526 +[#96534]: https://github.com/home-assistant/core/pull/96534 +[#96536]: https://github.com/home-assistant/core/pull/96536 +[#96537]: https://github.com/home-assistant/core/pull/96537 +[#96538]: https://github.com/home-assistant/core/pull/96538 +[#96540]: https://github.com/home-assistant/core/pull/96540 +[#96544]: https://github.com/home-assistant/core/pull/96544 +[#96545]: https://github.com/home-assistant/core/pull/96545 +[#96548]: https://github.com/home-assistant/core/pull/96548 +[#96554]: https://github.com/home-assistant/core/pull/96554 +[#96561]: https://github.com/home-assistant/core/pull/96561 +[#96562]: https://github.com/home-assistant/core/pull/96562 +[#96563]: https://github.com/home-assistant/core/pull/96563 +[#96564]: https://github.com/home-assistant/core/pull/96564 +[#96565]: https://github.com/home-assistant/core/pull/96565 +[#96566]: https://github.com/home-assistant/core/pull/96566 +[#96567]: https://github.com/home-assistant/core/pull/96567 +[#96568]: https://github.com/home-assistant/core/pull/96568 +[#96569]: https://github.com/home-assistant/core/pull/96569 +[#96570]: https://github.com/home-assistant/core/pull/96570 +[#96571]: https://github.com/home-assistant/core/pull/96571 +[#96572]: https://github.com/home-assistant/core/pull/96572 +[#96579]: https://github.com/home-assistant/core/pull/96579 +[#96581]: https://github.com/home-assistant/core/pull/96581 +[#96583]: https://github.com/home-assistant/core/pull/96583 +[#96584]: https://github.com/home-assistant/core/pull/96584 +[#96585]: https://github.com/home-assistant/core/pull/96585 +[#96586]: https://github.com/home-assistant/core/pull/96586 +[#96587]: https://github.com/home-assistant/core/pull/96587 +[#96592]: https://github.com/home-assistant/core/pull/96592 +[#96593]: https://github.com/home-assistant/core/pull/96593 +[#96594]: https://github.com/home-assistant/core/pull/96594 +[#96595]: https://github.com/home-assistant/core/pull/96595 +[#96596]: https://github.com/home-assistant/core/pull/96596 +[#96602]: https://github.com/home-assistant/core/pull/96602 +[#96603]: https://github.com/home-assistant/core/pull/96603 +[#96614]: https://github.com/home-assistant/core/pull/96614 +[#96615]: https://github.com/home-assistant/core/pull/96615 +[#96616]: https://github.com/home-assistant/core/pull/96616 +[#96618]: https://github.com/home-assistant/core/pull/96618 +[#96620]: https://github.com/home-assistant/core/pull/96620 +[#96626]: https://github.com/home-assistant/core/pull/96626 +[#96628]: https://github.com/home-assistant/core/pull/96628 +[#96630]: https://github.com/home-assistant/core/pull/96630 +[#96682]: https://github.com/home-assistant/core/pull/96682 +[#96683]: https://github.com/home-assistant/core/pull/96683 +[#96691]: https://github.com/home-assistant/core/pull/96691 +[#96692]: https://github.com/home-assistant/core/pull/96692 +[#96693]: https://github.com/home-assistant/core/pull/96693 +[#96695]: https://github.com/home-assistant/core/pull/96695 +[#96699]: https://github.com/home-assistant/core/pull/96699 +[#96700]: https://github.com/home-assistant/core/pull/96700 +[#96701]: https://github.com/home-assistant/core/pull/96701 +[#96702]: https://github.com/home-assistant/core/pull/96702 +[#96703]: https://github.com/home-assistant/core/pull/96703 +[#96704]: https://github.com/home-assistant/core/pull/96704 +[#96709]: https://github.com/home-assistant/core/pull/96709 +[#96711]: https://github.com/home-assistant/core/pull/96711 +[#96712]: https://github.com/home-assistant/core/pull/96712 +[#96713]: https://github.com/home-assistant/core/pull/96713 +[#96715]: https://github.com/home-assistant/core/pull/96715 +[#96716]: https://github.com/home-assistant/core/pull/96716 +[#96719]: https://github.com/home-assistant/core/pull/96719 +[#96721]: https://github.com/home-assistant/core/pull/96721 +[#96727]: https://github.com/home-assistant/core/pull/96727 +[#96729]: https://github.com/home-assistant/core/pull/96729 +[#96731]: https://github.com/home-assistant/core/pull/96731 +[#96733]: https://github.com/home-assistant/core/pull/96733 +[#96734]: https://github.com/home-assistant/core/pull/96734 +[#96738]: https://github.com/home-assistant/core/pull/96738 +[#96739]: https://github.com/home-assistant/core/pull/96739 +[#96740]: https://github.com/home-assistant/core/pull/96740 +[#96741]: https://github.com/home-assistant/core/pull/96741 +[#96742]: https://github.com/home-assistant/core/pull/96742 +[#96743]: https://github.com/home-assistant/core/pull/96743 +[#96744]: https://github.com/home-assistant/core/pull/96744 +[#96745]: https://github.com/home-assistant/core/pull/96745 +[#96747]: https://github.com/home-assistant/core/pull/96747 +[#96752]: https://github.com/home-assistant/core/pull/96752 +[#96753]: https://github.com/home-assistant/core/pull/96753 +[#96754]: https://github.com/home-assistant/core/pull/96754 +[#96756]: https://github.com/home-assistant/core/pull/96756 +[#96759]: https://github.com/home-assistant/core/pull/96759 +[#96760]: https://github.com/home-assistant/core/pull/96760 +[#96761]: https://github.com/home-assistant/core/pull/96761 +[#96762]: https://github.com/home-assistant/core/pull/96762 +[#96763]: https://github.com/home-assistant/core/pull/96763 +[#96768]: https://github.com/home-assistant/core/pull/96768 +[#96770]: https://github.com/home-assistant/core/pull/96770 +[#96771]: https://github.com/home-assistant/core/pull/96771 +[#96772]: https://github.com/home-assistant/core/pull/96772 +[#96774]: https://github.com/home-assistant/core/pull/96774 +[#96775]: https://github.com/home-assistant/core/pull/96775 +[#96776]: https://github.com/home-assistant/core/pull/96776 +[#96777]: https://github.com/home-assistant/core/pull/96777 +[#96778]: https://github.com/home-assistant/core/pull/96778 +[#96782]: https://github.com/home-assistant/core/pull/96782 +[#96785]: https://github.com/home-assistant/core/pull/96785 +[#96786]: https://github.com/home-assistant/core/pull/96786 +[#96788]: https://github.com/home-assistant/core/pull/96788 +[#96791]: https://github.com/home-assistant/core/pull/96791 +[#96793]: https://github.com/home-assistant/core/pull/96793 +[#96794]: https://github.com/home-assistant/core/pull/96794 +[#96796]: https://github.com/home-assistant/core/pull/96796 +[#96797]: https://github.com/home-assistant/core/pull/96797 +[#96804]: https://github.com/home-assistant/core/pull/96804 +[#96805]: https://github.com/home-assistant/core/pull/96805 +[#96806]: https://github.com/home-assistant/core/pull/96806 +[#96807]: https://github.com/home-assistant/core/pull/96807 +[#96808]: https://github.com/home-assistant/core/pull/96808 +[#96810]: https://github.com/home-assistant/core/pull/96810 +[#96812]: https://github.com/home-assistant/core/pull/96812 +[#96813]: https://github.com/home-assistant/core/pull/96813 +[#96815]: https://github.com/home-assistant/core/pull/96815 +[#96817]: https://github.com/home-assistant/core/pull/96817 +[#96818]: https://github.com/home-assistant/core/pull/96818 +[#96819]: https://github.com/home-assistant/core/pull/96819 +[#96820]: https://github.com/home-assistant/core/pull/96820 +[#96821]: https://github.com/home-assistant/core/pull/96821 +[#96822]: https://github.com/home-assistant/core/pull/96822 +[#96823]: https://github.com/home-assistant/core/pull/96823 +[#96824]: https://github.com/home-assistant/core/pull/96824 +[#96825]: https://github.com/home-assistant/core/pull/96825 +[#96826]: https://github.com/home-assistant/core/pull/96826 +[#96827]: https://github.com/home-assistant/core/pull/96827 +[#96828]: https://github.com/home-assistant/core/pull/96828 +[#96830]: https://github.com/home-assistant/core/pull/96830 +[#96833]: https://github.com/home-assistant/core/pull/96833 +[#96834]: https://github.com/home-assistant/core/pull/96834 +[#96836]: https://github.com/home-assistant/core/pull/96836 +[#96837]: https://github.com/home-assistant/core/pull/96837 +[#96838]: https://github.com/home-assistant/core/pull/96838 +[#96839]: https://github.com/home-assistant/core/pull/96839 +[#96842]: https://github.com/home-assistant/core/pull/96842 +[#96843]: https://github.com/home-assistant/core/pull/96843 +[#96844]: https://github.com/home-assistant/core/pull/96844 +[#96845]: https://github.com/home-assistant/core/pull/96845 +[#96847]: https://github.com/home-assistant/core/pull/96847 +[#96849]: https://github.com/home-assistant/core/pull/96849 +[#96853]: https://github.com/home-assistant/core/pull/96853 +[#96856]: https://github.com/home-assistant/core/pull/96856 +[#96859]: https://github.com/home-assistant/core/pull/96859 +[#96860]: https://github.com/home-assistant/core/pull/96860 +[#96861]: https://github.com/home-assistant/core/pull/96861 +[#96862]: https://github.com/home-assistant/core/pull/96862 +[#96868]: https://github.com/home-assistant/core/pull/96868 +[#96869]: https://github.com/home-assistant/core/pull/96869 +[#96871]: https://github.com/home-assistant/core/pull/96871 +[#96872]: https://github.com/home-assistant/core/pull/96872 +[#96873]: https://github.com/home-assistant/core/pull/96873 +[#96874]: https://github.com/home-assistant/core/pull/96874 +[#96876]: https://github.com/home-assistant/core/pull/96876 +[#96879]: https://github.com/home-assistant/core/pull/96879 +[#96883]: https://github.com/home-assistant/core/pull/96883 +[#96890]: https://github.com/home-assistant/core/pull/96890 +[#96891]: https://github.com/home-assistant/core/pull/96891 +[#96896]: https://github.com/home-assistant/core/pull/96896 +[#96898]: https://github.com/home-assistant/core/pull/96898 +[#96899]: https://github.com/home-assistant/core/pull/96899 +[#96900]: https://github.com/home-assistant/core/pull/96900 +[#96901]: https://github.com/home-assistant/core/pull/96901 +[#96903]: https://github.com/home-assistant/core/pull/96903 +[#96905]: https://github.com/home-assistant/core/pull/96905 +[#96908]: https://github.com/home-assistant/core/pull/96908 +[#96910]: https://github.com/home-assistant/core/pull/96910 +[#96912]: https://github.com/home-assistant/core/pull/96912 +[#96913]: https://github.com/home-assistant/core/pull/96913 +[#96914]: https://github.com/home-assistant/core/pull/96914 +[#96916]: https://github.com/home-assistant/core/pull/96916 +[#96917]: https://github.com/home-assistant/core/pull/96917 +[#96918]: https://github.com/home-assistant/core/pull/96918 +[#96921]: https://github.com/home-assistant/core/pull/96921 +[#96922]: https://github.com/home-assistant/core/pull/96922 +[#96923]: https://github.com/home-assistant/core/pull/96923 +[#96924]: https://github.com/home-assistant/core/pull/96924 +[#96925]: https://github.com/home-assistant/core/pull/96925 +[#96927]: https://github.com/home-assistant/core/pull/96927 +[#96928]: https://github.com/home-assistant/core/pull/96928 +[#96929]: https://github.com/home-assistant/core/pull/96929 +[#96930]: https://github.com/home-assistant/core/pull/96930 +[#96932]: https://github.com/home-assistant/core/pull/96932 +[#96933]: https://github.com/home-assistant/core/pull/96933 +[#96940]: https://github.com/home-assistant/core/pull/96940 +[#96942]: https://github.com/home-assistant/core/pull/96942 +[#96943]: https://github.com/home-assistant/core/pull/96943 +[#96944]: https://github.com/home-assistant/core/pull/96944 +[#96949]: https://github.com/home-assistant/core/pull/96949 +[#96951]: https://github.com/home-assistant/core/pull/96951 +[#96952]: https://github.com/home-assistant/core/pull/96952 +[#96956]: https://github.com/home-assistant/core/pull/96956 +[#96957]: https://github.com/home-assistant/core/pull/96957 +[#96958]: https://github.com/home-assistant/core/pull/96958 +[#96961]: https://github.com/home-assistant/core/pull/96961 +[#96964]: https://github.com/home-assistant/core/pull/96964 +[#96967]: https://github.com/home-assistant/core/pull/96967 +[#96972]: https://github.com/home-assistant/core/pull/96972 +[#96974]: https://github.com/home-assistant/core/pull/96974 +[#96975]: https://github.com/home-assistant/core/pull/96975 +[#96976]: https://github.com/home-assistant/core/pull/96976 +[#96978]: https://github.com/home-assistant/core/pull/96978 +[#96979]: https://github.com/home-assistant/core/pull/96979 +[#96983]: https://github.com/home-assistant/core/pull/96983 +[#96984]: https://github.com/home-assistant/core/pull/96984 +[#96990]: https://github.com/home-assistant/core/pull/96990 +[#96996]: https://github.com/home-assistant/core/pull/96996 +[#96997]: https://github.com/home-assistant/core/pull/96997 +[#96998]: https://github.com/home-assistant/core/pull/96998 +[#96999]: https://github.com/home-assistant/core/pull/96999 +[#97000]: https://github.com/home-assistant/core/pull/97000 +[#97001]: https://github.com/home-assistant/core/pull/97001 +[#97005]: https://github.com/home-assistant/core/pull/97005 +[#97006]: https://github.com/home-assistant/core/pull/97006 +[#97007]: https://github.com/home-assistant/core/pull/97007 +[#97009]: https://github.com/home-assistant/core/pull/97009 +[#97010]: https://github.com/home-assistant/core/pull/97010 +[#97011]: https://github.com/home-assistant/core/pull/97011 +[#97012]: https://github.com/home-assistant/core/pull/97012 +[#97013]: https://github.com/home-assistant/core/pull/97013 +[#97015]: https://github.com/home-assistant/core/pull/97015 +[#97018]: https://github.com/home-assistant/core/pull/97018 +[#97019]: https://github.com/home-assistant/core/pull/97019 +[#97027]: https://github.com/home-assistant/core/pull/97027 +[#97028]: https://github.com/home-assistant/core/pull/97028 +[#97032]: https://github.com/home-assistant/core/pull/97032 +[#97033]: https://github.com/home-assistant/core/pull/97033 +[#97054]: https://github.com/home-assistant/core/pull/97054 +[#97055]: https://github.com/home-assistant/core/pull/97055 +[#97057]: https://github.com/home-assistant/core/pull/97057 +[#97058]: https://github.com/home-assistant/core/pull/97058 +[#97061]: https://github.com/home-assistant/core/pull/97061 +[#97062]: https://github.com/home-assistant/core/pull/97062 +[#97063]: https://github.com/home-assistant/core/pull/97063 +[#97064]: https://github.com/home-assistant/core/pull/97064 +[#97065]: https://github.com/home-assistant/core/pull/97065 +[#97066]: https://github.com/home-assistant/core/pull/97066 +[#97067]: https://github.com/home-assistant/core/pull/97067 +[#97068]: https://github.com/home-assistant/core/pull/97068 +[#97071]: https://github.com/home-assistant/core/pull/97071 +[#97072]: https://github.com/home-assistant/core/pull/97072 +[#97073]: https://github.com/home-assistant/core/pull/97073 +[#97074]: https://github.com/home-assistant/core/pull/97074 +[#97081]: https://github.com/home-assistant/core/pull/97081 +[#97082]: https://github.com/home-assistant/core/pull/97082 +[#97084]: https://github.com/home-assistant/core/pull/97084 +[#97092]: https://github.com/home-assistant/core/pull/97092 +[#97094]: https://github.com/home-assistant/core/pull/97094 +[#97096]: https://github.com/home-assistant/core/pull/97096 +[#97097]: https://github.com/home-assistant/core/pull/97097 +[#97098]: https://github.com/home-assistant/core/pull/97098 +[#97101]: https://github.com/home-assistant/core/pull/97101 +[#97102]: https://github.com/home-assistant/core/pull/97102 +[#97103]: https://github.com/home-assistant/core/pull/97103 +[#97105]: https://github.com/home-assistant/core/pull/97105 +[#97107]: https://github.com/home-assistant/core/pull/97107 +[#97109]: https://github.com/home-assistant/core/pull/97109 +[#97111]: https://github.com/home-assistant/core/pull/97111 +[#97112]: https://github.com/home-assistant/core/pull/97112 +[#97114]: https://github.com/home-assistant/core/pull/97114 +[#97115]: https://github.com/home-assistant/core/pull/97115 +[#97116]: https://github.com/home-assistant/core/pull/97116 +[#97117]: https://github.com/home-assistant/core/pull/97117 +[#97118]: https://github.com/home-assistant/core/pull/97118 +[#97119]: https://github.com/home-assistant/core/pull/97119 +[#97121]: https://github.com/home-assistant/core/pull/97121 +[#97124]: https://github.com/home-assistant/core/pull/97124 +[#97125]: https://github.com/home-assistant/core/pull/97125 +[#97126]: https://github.com/home-assistant/core/pull/97126 +[#97131]: https://github.com/home-assistant/core/pull/97131 +[#97134]: https://github.com/home-assistant/core/pull/97134 +[#97135]: https://github.com/home-assistant/core/pull/97135 +[#97136]: https://github.com/home-assistant/core/pull/97136 +[#97137]: https://github.com/home-assistant/core/pull/97137 +[#97138]: https://github.com/home-assistant/core/pull/97138 +[#97139]: https://github.com/home-assistant/core/pull/97139 +[#97140]: https://github.com/home-assistant/core/pull/97140 +[#97141]: https://github.com/home-assistant/core/pull/97141 +[#97145]: https://github.com/home-assistant/core/pull/97145 +[#97147]: https://github.com/home-assistant/core/pull/97147 +[#97150]: https://github.com/home-assistant/core/pull/97150 +[#97152]: https://github.com/home-assistant/core/pull/97152 +[#97153]: https://github.com/home-assistant/core/pull/97153 +[#97154]: https://github.com/home-assistant/core/pull/97154 +[#97155]: https://github.com/home-assistant/core/pull/97155 +[#97156]: https://github.com/home-assistant/core/pull/97156 +[#97157]: https://github.com/home-assistant/core/pull/97157 +[#97159]: https://github.com/home-assistant/core/pull/97159 +[#97160]: https://github.com/home-assistant/core/pull/97160 +[#97162]: https://github.com/home-assistant/core/pull/97162 +[#97163]: https://github.com/home-assistant/core/pull/97163 +[#97165]: https://github.com/home-assistant/core/pull/97165 +[#97166]: https://github.com/home-assistant/core/pull/97166 +[#97167]: https://github.com/home-assistant/core/pull/97167 +[#97169]: https://github.com/home-assistant/core/pull/97169 +[#97171]: https://github.com/home-assistant/core/pull/97171 +[#97172]: https://github.com/home-assistant/core/pull/97172 +[#97174]: https://github.com/home-assistant/core/pull/97174 +[#97175]: https://github.com/home-assistant/core/pull/97175 +[#97185]: https://github.com/home-assistant/core/pull/97185 +[#97186]: https://github.com/home-assistant/core/pull/97186 +[#97187]: https://github.com/home-assistant/core/pull/97187 +[#97190]: https://github.com/home-assistant/core/pull/97190 +[#97191]: https://github.com/home-assistant/core/pull/97191 +[#97192]: https://github.com/home-assistant/core/pull/97192 +[#97193]: https://github.com/home-assistant/core/pull/97193 +[#97194]: https://github.com/home-assistant/core/pull/97194 +[#97195]: https://github.com/home-assistant/core/pull/97195 +[#97197]: https://github.com/home-assistant/core/pull/97197 +[#97202]: https://github.com/home-assistant/core/pull/97202 +[#97204]: https://github.com/home-assistant/core/pull/97204 +[#97205]: https://github.com/home-assistant/core/pull/97205 +[#97210]: https://github.com/home-assistant/core/pull/97210 +[#97212]: https://github.com/home-assistant/core/pull/97212 +[#97218]: https://github.com/home-assistant/core/pull/97218 +[#97219]: https://github.com/home-assistant/core/pull/97219 +[#97220]: https://github.com/home-assistant/core/pull/97220 +[#97222]: https://github.com/home-assistant/core/pull/97222 +[#97224]: https://github.com/home-assistant/core/pull/97224 +[#97231]: https://github.com/home-assistant/core/pull/97231 +[#97232]: https://github.com/home-assistant/core/pull/97232 +[#97233]: https://github.com/home-assistant/core/pull/97233 +[#97234]: https://github.com/home-assistant/core/pull/97234 +[#97238]: https://github.com/home-assistant/core/pull/97238 +[#97240]: https://github.com/home-assistant/core/pull/97240 +[#97243]: https://github.com/home-assistant/core/pull/97243 +[#97246]: https://github.com/home-assistant/core/pull/97246 +[#97250]: https://github.com/home-assistant/core/pull/97250 +[#97251]: https://github.com/home-assistant/core/pull/97251 +[#97252]: https://github.com/home-assistant/core/pull/97252 +[#97255]: https://github.com/home-assistant/core/pull/97255 +[#97256]: https://github.com/home-assistant/core/pull/97256 +[#97263]: https://github.com/home-assistant/core/pull/97263 +[@AngellusMortis]: https://github.com/AngellusMortis +[@Antoni-Czaplicki]: https://github.com/Antoni-Czaplicki +[@CFenner]: https://github.com/CFenner +[@Cereal2nd]: https://github.com/Cereal2nd +[@CoMPaTech]: https://github.com/CoMPaTech +[@DCSBL]: https://github.com/DCSBL +[@Danielhiversen]: https://github.com/Danielhiversen +[@DeerMaximum]: https://github.com/DeerMaximum +[@Ernst79]: https://github.com/Ernst79 +[@FOLLGAD]: https://github.com/FOLLGAD +[@GrumpyMeow]: https://github.com/GrumpyMeow +[@Jc2k]: https://github.com/Jc2k +[@Kane610]: https://github.com/Kane610 +[@LaStrada]: https://github.com/LaStrada +[@Lash-L]: https://github.com/Lash-L +[@MartinHjelmare]: https://github.com/MartinHjelmare +[@N3rdix]: https://github.com/N3rdix +[@Nardol]: https://github.com/Nardol +[@Noltari]: https://github.com/Noltari +[@RenierM26]: https://github.com/RenierM26 +[@RoboMagus]: https://github.com/RoboMagus +[@ScottG489]: https://github.com/ScottG489 +[@Shulyaka]: https://github.com/Shulyaka +[@Shutgun]: https://github.com/Shutgun +[@StevenLooman]: https://github.com/StevenLooman +[@adrianmo]: https://github.com/adrianmo +[@alepee]: https://github.com/alepee +[@allenporter]: https://github.com/allenporter +[@amosyuen]: https://github.com/amosyuen +[@arkid15r]: https://github.com/arkid15r +[@b-uwe]: https://github.com/b-uwe +[@bachya]: https://github.com/bachya +[@balloob]: https://github.com/balloob +[@bdraco]: https://github.com/bdraco +[@bieniu]: https://github.com/bieniu +[@blastoise186]: https://github.com/blastoise186 +[@c0ffeeca7]: https://github.com/c0ffeeca7 +[@cdce8p]: https://github.com/cdce8p +[@cibernox]: https://github.com/cibernox +[@craibo]: https://github.com/craibo +[@ctalkington]: https://github.com/ctalkington +[@davecpearce]: https://github.com/davecpearce +[@davet2001]: https://github.com/davet2001 +[@dirrgang]: https://github.com/dirrgang +[@disforw]: https://github.com/disforw +[@dknowles2]: https://github.com/dknowles2 +[@dougiteixeira]: https://github.com/dougiteixeira +[@elmurato]: https://github.com/elmurato +[@elupus]: https://github.com/elupus +[@emontnemery]: https://github.com/emontnemery +[@esev]: https://github.com/esev +[@farmio]: https://github.com/farmio +[@frenck]: https://github.com/frenck +[@fthiery]: https://github.com/fthiery +[@gigatexel]: https://github.com/gigatexel +[@gjohansson-ST]: https://github.com/gjohansson-ST +[@gmsoft-tuxicoman]: https://github.com/gmsoft-tuxicoman +[@guix77]: https://github.com/guix77 +[@iKaew]: https://github.com/iKaew +[@j-stienstra]: https://github.com/j-stienstra +[@jbouwh]: https://github.com/jbouwh +[@jeeftor]: https://github.com/jeeftor +[@joostlek]: https://github.com/joostlek +[@jpbede]: https://github.com/jpbede +[@karwosts]: https://github.com/karwosts +[@lkshrk]: https://github.com/lkshrk +[@lymanepp]: https://github.com/lymanepp +[@madsnedergaard]: https://github.com/madsnedergaard +[@marcelveldt]: https://github.com/marcelveldt +[@matrixd2]: https://github.com/matrixd2 +[@mattmccormack]: https://github.com/mattmccormack +[@mib1185]: https://github.com/mib1185 +[@mikewoudenberg]: https://github.com/mikewoudenberg +[@mikey0000]: https://github.com/mikey0000 +[@mkeesey]: https://github.com/mkeesey +[@mkmer]: https://github.com/mkmer +[@ol-iver]: https://github.com/ol-iver +[@ollo69]: https://github.com/ollo69 +[@piitaya]: https://github.com/piitaya +[@puddly]: https://github.com/puddly +[@rale]: https://github.com/rale +[@raman325]: https://github.com/raman325 +[@scop]: https://github.com/scop +[@si458]: https://github.com/si458 +[@slydiman]: https://github.com/slydiman +[@spacegaier]: https://github.com/spacegaier +[@starkillerOG]: https://github.com/starkillerOG +[@steffenrapp]: https://github.com/steffenrapp +[@stonith]: https://github.com/stonith +[@synesthesiam]: https://github.com/synesthesiam +[@tedivm]: https://github.com/tedivm +[@tkdrob]: https://github.com/tkdrob +[@tronikos]: https://github.com/tronikos +[@vingerha]: https://github.com/vingerha +[@weitzelb]: https://github.com/weitzelb +[@yuxincs]: https://github.com/yuxincs +[accuweather docs]: /integrations/accuweather/ +[agent_dvr docs]: /integrations/agent_dvr/ +[airthings_ble docs]: /integrations/airthings_ble/ +[airtouch4 docs]: /integrations/airtouch4/ +[airvisual_pro docs]: /integrations/airvisual_pro/ +[airzone_cloud docs]: /integrations/airzone_cloud/ +[alarm_control_panel docs]: /integrations/alarm_control_panel/ +[alert docs]: /integrations/alert/ +[alexa docs]: /integrations/alexa/ +[amberelectric docs]: /integrations/amberelectric/ +[ambiclimate docs]: /integrations/ambiclimate/ +[android_ip_webcam docs]: /integrations/android_ip_webcam/ +[androidtv docs]: /integrations/androidtv/ +[androidtv_remote docs]: /integrations/androidtv_remote/ +[apcupsd docs]: /integrations/apcupsd/ +[api docs]: /integrations/api/ +[apple_tv docs]: /integrations/apple_tv/ +[apprise docs]: /integrations/apprise/ +[aseko_pool_live docs]: /integrations/aseko_pool_live/ +[asuswrt docs]: /integrations/asuswrt/ +[august docs]: /integrations/august/ +[automation docs]: /integrations/automation/ +[axis docs]: /integrations/axis/ +[backup docs]: /integrations/backup/ +[bayesian docs]: /integrations/bayesian/ +[binary_sensor docs]: /integrations/binary_sensor/ +[bluetooth docs]: /integrations/bluetooth/ +[bond docs]: /integrations/bond/ +[braviatv docs]: /integrations/braviatv/ +[brother docs]: /integrations/brother/ +[brunt docs]: /integrations/brunt/ +[bsblan docs]: /integrations/bsblan/ +[bthome docs]: /integrations/bthome/ +[button docs]: /integrations/button/ +[calendar docs]: /integrations/calendar/ +[camera docs]: /integrations/camera/ +[cert_expiry docs]: /integrations/cert_expiry/ +[climate docs]: /integrations/climate/ +[cloud docs]: /integrations/cloud/ +[co2signal docs]: /integrations/co2signal/ +[command_line docs]: /integrations/command_line/ +[compensation docs]: /integrations/compensation/ +[config docs]: /integrations/config/ +[conversation docs]: /integrations/conversation/ +[counter docs]: /integrations/counter/ +[cover docs]: /integrations/cover/ +[crownstone docs]: /integrations/crownstone/ +[daikin docs]: /integrations/daikin/ +[date docs]: /integrations/date/ +[datetime docs]: /integrations/datetime/ +[deconz docs]: /integrations/deconz/ +[demo docs]: /integrations/demo/ +[denonavr docs]: /integrations/denonavr/ +[derivative docs]: /integrations/derivative/ +[device_automation docs]: /integrations/device_automation/ +[device_tracker docs]: /integrations/device_tracker/ +[devolo_home_network docs]: /integrations/devolo_home_network/ +[dhcp docs]: /integrations/dhcp/ +[discovergy docs]: /integrations/discovergy/ +[discovery docs]: /integrations/discovery/ +[dlink docs]: /integrations/dlink/ +[dlna_dmr docs]: /integrations/dlna_dmr/ +[dlna_dms docs]: /integrations/dlna_dms/ +[dsmr docs]: /integrations/dsmr/ +[dunehd docs]: /integrations/dunehd/ +[duotecno docs]: /integrations/duotecno/ +[dynalite docs]: /integrations/dynalite/ +[ecovacs docs]: /integrations/ecovacs/ +[ecowitt docs]: /integrations/ecowitt/ +[electric_kiwi docs]: /integrations/electric_kiwi/ +[elmax docs]: /integrations/elmax/ +[emulated_hue docs]: /integrations/emulated_hue/ +[energy docs]: /integrations/energy/ +[enphase_envoy docs]: /integrations/enphase_envoy/ +[eq3btsmart docs]: /integrations/eq3btsmart/ +[esphome docs]: /integrations/esphome/ +[event docs]: /integrations/event/ +[evil_genius_labs docs]: /integrations/evil_genius_labs/ +[ezviz docs]: /integrations/ezviz/ +[fan docs]: /integrations/fan/ +[fastdotcom docs]: /integrations/fastdotcom/ +[filter docs]: /integrations/filter/ +[fitbit docs]: /integrations/fitbit/ +[flume docs]: /integrations/flume/ +[flux_led docs]: /integrations/flux_led/ +[forecast_solar docs]: /integrations/forecast_solar/ +[forked_daapd docs]: /integrations/forked_daapd/ +[freebox docs]: /integrations/freebox/ +[fritz docs]: /integrations/fritz/ +[fritzbox_callmonitor docs]: /integrations/fritzbox_callmonitor/ +[fronius docs]: /integrations/fronius/ +[frontend docs]: /integrations/frontend/ +[frontier_silicon docs]: /integrations/frontier_silicon/ +[gardena_bluetooth docs]: /integrations/gardena_bluetooth/ +[generic docs]: /integrations/generic/ +[generic_hygrostat docs]: /integrations/generic_hygrostat/ +[generic_thermostat docs]: /integrations/generic_thermostat/ +[geo_location docs]: /integrations/geo_location/ +[geofency docs]: /integrations/geofency/ +[goalzero docs]: /integrations/goalzero/ +[google_assistant docs]: /integrations/google_assistant/ +[google_assistant_sdk docs]: /integrations/google_assistant_sdk/ +[gpslogger docs]: /integrations/gpslogger/ +[group docs]: /integrations/group/ +[gtfs docs]: /integrations/gtfs/ +[guardian docs]: /integrations/guardian/ +[hassio docs]: /integrations/hassio/ +[heos docs]: /integrations/heos/ +[history docs]: /integrations/history/ +[history_stats docs]: /integrations/history_stats/ +[home_plus_control docs]: /integrations/home_plus_control/ +[homeassistant docs]: /integrations/homeassistant/ +[homeassistant_hardware docs]: /integrations/homeassistant_hardware/ +[homeassistant_sky_connect docs]: /integrations/homeassistant_sky_connect/ +[homeassistant_yellow docs]: /integrations/homeassistant_yellow/ +[homekit docs]: /integrations/homekit/ +[homekit_controller docs]: /integrations/homekit_controller/ +[homewizard docs]: /integrations/homewizard/ +[http docs]: /integrations/http/ +[huawei_lte docs]: /integrations/huawei_lte/ +[hue docs]: /integrations/hue/ +[humidifier docs]: /integrations/humidifier/ +[hydrawise docs]: /integrations/hydrawise/ +[ialarm docs]: /integrations/ialarm/ +[icloud docs]: /integrations/icloud/ +[image docs]: /integrations/image/ +[image_processing docs]: /integrations/image_processing/ +[imap docs]: /integrations/imap/ +[input_boolean docs]: /integrations/input_boolean/ +[input_button docs]: /integrations/input_button/ +[input_datetime docs]: /integrations/input_datetime/ +[input_number docs]: /integrations/input_number/ +[input_select docs]: /integrations/input_select/ +[input_text docs]: /integrations/input_text/ +[integration docs]: /integrations/integration/ +[intellifire docs]: /integrations/intellifire/ +[intent_script docs]: /integrations/intent_script/ +[ios docs]: /integrations/ios/ +[ipp docs]: /integrations/ipp/ +[islamic_prayer_times docs]: /integrations/islamic_prayer_times/ +[iss docs]: /integrations/iss/ +[jellyfin docs]: /integrations/jellyfin/ +[juicenet docs]: /integrations/juicenet/ +[kaleidescape docs]: /integrations/kaleidescape/ +[keenetic_ndms2 docs]: /integrations/keenetic_ndms2/ +[kitchen_sink docs]: /integrations/kitchen_sink/ +[kmtronic docs]: /integrations/kmtronic/ +[knx docs]: /integrations/knx/ +[kraken docs]: /integrations/kraken/ +[kulersky docs]: /integrations/kulersky/ +[lacrosse_view docs]: /integrations/lacrosse_view/ +[lametric docs]: /integrations/lametric/ +[lastfm docs]: /integrations/lastfm/ +[laundrify docs]: /integrations/laundrify/ +[lcn docs]: /integrations/lcn/ +[ld2410_ble docs]: /integrations/ld2410_ble/ +[led_ble docs]: /integrations/led_ble/ +[lifx docs]: /integrations/lifx/ +[light docs]: /integrations/light/ +[litterrobot docs]: /integrations/litterrobot/ +[local_calendar docs]: /integrations/local_calendar/ +[lock docs]: /integrations/lock/ +[logbook docs]: /integrations/logbook/ +[logger docs]: /integrations/logger/ +[logi_circle docs]: /integrations/logi_circle/ +[loqed docs]: /integrations/loqed/ +[lovelace docs]: /integrations/lovelace/ +[lutron_caseta docs]: /integrations/lutron_caseta/ +[manual_mqtt docs]: /integrations/manual_mqtt/ +[matter docs]: /integrations/matter/ +[mazda docs]: /integrations/mazda/ +[meater docs]: /integrations/meater/ +[media_extractor docs]: /integrations/media_extractor/ +[media_player docs]: /integrations/media_player/ +[melnor docs]: /integrations/melnor/ +[met docs]: /integrations/met/ +[met_eireann docs]: /integrations/met_eireann/ +[meteo_france docs]: /integrations/meteo_france/ +[miflora docs]: /integrations/miflora/ +[min_max docs]: /integrations/min_max/ +[minecraft_server docs]: /integrations/minecraft_server/ +[mitemp_bt docs]: /integrations/mitemp_bt/ +[mobile_app docs]: /integrations/mobile_app/ +[modern_forms docs]: /integrations/modern_forms/ +[monoprice docs]: /integrations/monoprice/ +[moon docs]: /integrations/moon/ +[motioneye docs]: /integrations/motioneye/ +[mqtt docs]: /integrations/mqtt/ +[mullvad docs]: /integrations/mullvad/ +[mutesync docs]: /integrations/mutesync/ +[mystrom docs]: /integrations/mystrom/ +[nam docs]: /integrations/nam/ +[nanoleaf docs]: /integrations/nanoleaf/ +[nest docs]: /integrations/nest/ +[nextcloud docs]: /integrations/nextcloud/ +[nina docs]: /integrations/nina/ +[nobo_hub docs]: /integrations/nobo_hub/ +[notify docs]: /integrations/notify/ +[notion docs]: /integrations/notion/ +[nuheat docs]: /integrations/nuheat/ +[nuki docs]: /integrations/nuki/ +[number docs]: /integrations/number/ +[nut docs]: /integrations/nut/ +[nws docs]: /integrations/nws/ +[ombi docs]: /integrations/ombi/ +[ondilo_ico docs]: /integrations/ondilo_ico/ +[onvif docs]: /integrations/onvif/ +[openai_conversation docs]: /integrations/openai_conversation/ +[opensky docs]: /integrations/opensky/ +[openuv docs]: /integrations/openuv/ +[opower docs]: /integrations/opower/ +[otbr docs]: /integrations/otbr/ +[overkiz docs]: /integrations/overkiz/ +[owntracks docs]: /integrations/owntracks/ +[p1_monitor docs]: /integrations/p1_monitor/ +[panel_custom docs]: /integrations/panel_custom/ +[pegel_online docs]: /integrations/pegel_online/ +[persistent_notification docs]: /integrations/persistent_notification/ +[philips_js docs]: /integrations/philips_js/ +[pi_hole docs]: /integrations/pi_hole/ +[picnic docs]: /integrations/picnic/ +[plant docs]: /integrations/plant/ +[plugwise docs]: /integrations/plugwise/ +[plum_lightpad docs]: /integrations/plum_lightpad/ +[poolsense docs]: /integrations/poolsense/ +[profiler docs]: /integrations/profiler/ +[pure_energie docs]: /integrations/pure_energie/ +[purpleair docs]: /integrations/purpleair/ +[pushbullet docs]: /integrations/pushbullet/ +[pvoutput docs]: /integrations/pvoutput/ +[qnap docs]: /integrations/qnap/ +[radio_browser docs]: /integrations/radio_browser/ +[radiotherm docs]: /integrations/radiotherm/ +[rainbird docs]: /integrations/rainbird/ +[rainforest_eagle docs]: /integrations/rainforest_eagle/ +[rainmachine docs]: /integrations/rainmachine/ +[rdw docs]: /integrations/rdw/ +[recollect_waste docs]: /integrations/recollect_waste/ +[recorder docs]: /integrations/recorder/ +[remote docs]: /integrations/remote/ +[renault docs]: /integrations/renault/ +[renson docs]: /integrations/renson/ +[reolink docs]: /integrations/reolink/ +[rfxtrx docs]: /integrations/rfxtrx/ +[ring docs]: /integrations/ring/ +[roborock docs]: /integrations/roborock/ +[roomba docs]: /integrations/roomba/ +[rympro docs]: /integrations/rympro/ +[samsungtv docs]: /integrations/samsungtv/ +[scene docs]: /integrations/scene/ +[scrape docs]: /integrations/scrape/ +[script docs]: /integrations/script/ +[season docs]: /integrations/season/ +[select docs]: /integrations/select/ +[sensibo docs]: /integrations/sensibo/ +[sensor docs]: /integrations/sensor/ +[sentry docs]: /integrations/sentry/ +[senz docs]: /integrations/senz/ +[sfr_box docs]: /integrations/sfr_box/ +[sharkiq docs]: /integrations/sharkiq/ +[shell_command docs]: /integrations/shell_command/ +[shelly docs]: /integrations/shelly/ +[shopping_list docs]: /integrations/shopping_list/ +[siren docs]: /integrations/siren/ +[skybell docs]: /integrations/skybell/ +[slack docs]: /integrations/slack/ +[smartthings docs]: /integrations/smartthings/ +[sms docs]: /integrations/sms/ +[solarlog docs]: /integrations/solarlog/ +[soma docs]: /integrations/soma/ +[sonarr docs]: /integrations/sonarr/ +[songpal docs]: /integrations/songpal/ +[sonos docs]: /integrations/sonos/ +[soundtouch docs]: /integrations/soundtouch/ +[speedtestdotnet docs]: /integrations/speedtestdotnet/ +[spider docs]: /integrations/spider/ +[spotify docs]: /integrations/spotify/ +[sql docs]: /integrations/sql/ +[squeezebox docs]: /integrations/squeezebox/ +[ssdp docs]: /integrations/ssdp/ +[starline docs]: /integrations/starline/ +[starlink docs]: /integrations/starlink/ +[stream docs]: /integrations/stream/ +[subaru docs]: /integrations/subaru/ +[switch docs]: /integrations/switch/ +[switch_as_x docs]: /integrations/switch_as_x/ +[switchbot docs]: /integrations/switchbot/ +[synology_dsm docs]: /integrations/synology_dsm/ +[system_log docs]: /integrations/system_log/ +[tado docs]: /integrations/tado/ +[tailscale docs]: /integrations/tailscale/ +[tautulli docs]: /integrations/tautulli/ +[template docs]: /integrations/template/ +[tesla_wall_connector docs]: /integrations/tesla_wall_connector/ +[text docs]: /integrations/text/ +[thread docs]: /integrations/thread/ +[tibber docs]: /integrations/tibber/ +[time docs]: /integrations/time/ +[tolo docs]: /integrations/tolo/ +[tomorrowio docs]: /integrations/tomorrowio/ +[tplink docs]: /integrations/tplink/ +[traccar docs]: /integrations/traccar/ +[tractive docs]: /integrations/tractive/ +[tradfri docs]: /integrations/tradfri/ +[trafikverket_ferry docs]: /integrations/trafikverket_ferry/ +[trafikverket_train docs]: /integrations/trafikverket_train/ +[trafikverket_weatherstation docs]: /integrations/trafikverket_weatherstation/ +[transmission docs]: /integrations/transmission/ +[transport_nsw docs]: /integrations/transport_nsw/ +[tts docs]: /integrations/tts/ +[tuya docs]: /integrations/tuya/ +[twentemilieu docs]: /integrations/twentemilieu/ +[twitch docs]: /integrations/twitch/ +[ukraine_alarm docs]: /integrations/ukraine_alarm/ +[ultraloq docs]: /integrations/ultraloq/ +[unifi docs]: /integrations/unifi/ +[unifiprotect docs]: /integrations/unifiprotect/ +[universal docs]: /integrations/universal/ +[update docs]: /integrations/update/ +[upnp docs]: /integrations/upnp/ +[uptime docs]: /integrations/uptime/ +[uptimerobot docs]: /integrations/uptimerobot/ +[vacuum docs]: /integrations/vacuum/ +[vallox docs]: /integrations/vallox/ +[venstar docs]: /integrations/venstar/ +[verisure docs]: /integrations/verisure/ +[version docs]: /integrations/version/ +[vesync docs]: /integrations/vesync/ +[vicare docs]: /integrations/vicare/ +[vilfo docs]: /integrations/vilfo/ +[vlc_telnet docs]: /integrations/vlc_telnet/ +[volumio docs]: /integrations/volumio/ +[vulcan docs]: /integrations/vulcan/ +[water_heater docs]: /integrations/water_heater/ +[weather docs]: /integrations/weather/ +[websocket_api docs]: /integrations/websocket_api/ +[wemo docs]: /integrations/wemo/ +[whirlpool docs]: /integrations/whirlpool/ +[whois docs]: /integrations/whois/ +[wilight docs]: /integrations/wilight/ +[wirelesstag docs]: /integrations/wirelesstag/ +[wiz docs]: /integrations/wiz/ +[workday docs]: /integrations/workday/ +[wyoming docs]: /integrations/wyoming/ +[xiaomi_ble docs]: /integrations/xiaomi_ble/ +[xiaomi_miio docs]: /integrations/xiaomi_miio/ +[yalexs_ble docs]: /integrations/yalexs_ble/ +[yeelight docs]: /integrations/yeelight/ +[yolink docs]: /integrations/yolink/ +[youtube docs]: /integrations/youtube/ +[zamg docs]: /integrations/zamg/ +[zeroconf docs]: /integrations/zeroconf/ +[zerproc docs]: /integrations/zerproc/ +[zeversolar docs]: /integrations/zeversolar/ +[zha docs]: /integrations/zha/ +[zodiac docs]: /integrations/zodiac/ +[zone docs]: /integrations/zone/ +[zwave_js docs]: /integrations/zwave_js/ diff --git a/source/images/blog/2023-08/social.png b/source/images/blog/2023-08/social.png new file mode 100644 index 0000000000000000000000000000000000000000..c1b374eb285f5218dd98996e38d7674a5d20f072 GIT binary patch literal 197035 zcmW(+1yGak9|s0wG^5+mozeorU^I;G?q&!gq2%b05@{Hn0@5iB(%m2-4I-t2qW}H= zciZi5x4U=W_j%s$^Qmu~j*=1_qIus*)ZC26h7m29`ev3;j(W%Q*r10}r8U z>WhIvJoMii^BpfSJq7^NQcX$0AYlEx2QPqO^bIFIO$5eMkSYx+-uD3*1_d5j5!d!B z)wtr@?SxMrX;Y1H`F9+-_D$CzA!`=e=U)#HWSl;EH;(C&f~MZfY7D+kh{-p$LPg(x z%W-|CVo#9fGF?>gTk5XwEO)Q2KRqqzt+-zrC5ga52rcMae)@Om=Kf4@%*f){f^@`p zpqFgb7|UL2wu7sg9pmpO{Xn5Cs*EqiEx?5V6XNf$9fgcEC7UUVtyOwk9gvESvxV0u z_BTg>8=I+;HV5;(pYfixk}YKOIp#2TrlJ;zA77Eg-y9f?od=G2VVpu(j zP*N|PGjrDf^8!gff4pars{~(1|I8gM8*@PbeKgGn9Mfv+%t!@N+RcA)NHv~Xwj{6= z!rM7ym$sBAczl?nUq0tOxJ{>8FvSxppiJfu?@x4lKWhI z!!@}6Ki^-rY>7;67A+LsvKwFgrfa8hFnj7Y|5Y5#_Sr2L*WAZ{+SYqd=$hg~oSCOCx7Rc8wrxNexA0%vI= zCe1Bo9YH=-Fv`V{kJbqQZDs+eH= z=LC`J@F!}Isp5tEM*N-9zd>ocn7YhIRhqhRu<+Tz<7dL7K^WOGiTMQ!mLj;=|@yo6!h_4#QnB!8-zcy&SB;7RVy?qwqca!Tm6IFa?_-ZL}(6fp%cv zCb{ueoLKqDC=%xKD?Lc$S$Xz&%A3ZwDch?V|{EkmY+}nPNP(SuMfw3F4h8qA9US# z9>=Y5L`P3EEk?eHN%)`*udHx+_T$qQmlGYio&0JKmxn4q3&4Ch?nQ|?uZfpUcqeb~ zavo7pjWEVcbc)&~ghrb1NkfYJUsg%e4cW~Rzc9h>DV-Zm~V=24)cf1fnF8BfblzXr0Pd(Tj$8PyrVarr?DQ8jN@1>g_TtAT1 zbM&uux1EQTe7ky$au+q2_<2LAQqZ93(7SvS-~!B6MIlQ7^m}4QlQLS5wX=g|VO48@9FjEwa7!B(rLr2dpqPYoqaF?O2>n9QJbx{1IxC$O+& zMkY!j$|QrDsM7Cj_{nOQthl`>=g{j>{GO;bIGijT|Q9pO{Xc zk?Jit%u8!(lk>jw4j$D63pwNTnGxCoVp z{w-m%&0^ckgQd-di~jn?CatvHish_f;|oNU%;h!kb85zCAvz)F;HZ)(TG2|ZL7nlU z#m^FsUk$k+64=PMQmDLCmozv)bms;pxJTh$wNXa}WrtOqG3OCJI|rD;;UOgt5D(&C z4lGVbgQ{T{feoJsJE^5c6sz%ca~+NbONs^JAJfBSbrrU9l|p~UCA^-6KW=gUE8XK= zQG1g9WGQzZBjwj+F9jsRbAZ9W;bo~uwa_7Bxc4o-bOGD$bTJ(tmID3q+ge>21;75b zWSWhZD}ZZ5rSF1*PeJqQ(n%qHywOJT1$yZu*-CO`Pz>bSU;97v$mqj#5JHhVvm=C1 z6;{*RORov$+GJ!2Z1 zg65}Qy3?Zow1mSPwd04m1^)4F?u&llE6!-M0pm|>_8Vy&)VPYSrDxk2U_n?$f7OpbqNWs_bTV4{f3lPj)Oh;`h-O&cI-SB~AU>>dW@km2bK8q)W7WwR*HNUp3+HegL6dPP~RN0D6`0~aj$G&)Jgn&3S1 za9pJ%E@oh(D``nTy`G4u2|RUf2N>S5Uyju`x)}t|?);MQjx1(8*@b)b#o}ATm)p`o z0=6LQH))AmUu`}}aGwi?drC=Bd|kt?WXkbZXN@mI4Vo@0H?b2u9DoqAE#j)~DIMaK za@$2M$AvNlfYJB6bLz4ar-$hK9p3U8=n5|_U1!modc_s0Yb#3gGLa``E?Q2CsFe+V z5EExIgq=l0H=>9EnhEv=#eUEZ=}P@+m7^+dldu&_PCjoMv8RAv(;!4L%b9;K1YwwF z(QHo=A!n)zgBa;(9)gz;4zwPEAU8WiY+Bq8?pcVO`{_HBkJIMwf}j`60yK(mj)O?% z6{{}RW8R$J@ShshJzORn`do@N@oOK7eQ5XX0bOLpHrurjiKF}z$1_jK zVCuWXsG9OG)s18F$MfHiu8Pm|0Opw$*RNTqgfa8nc`o~kmY)ZQr->&z0JeE>Wf&J> zA2G?LkII1W5K~##)K(ck0{%!F^X67ARM{=&5+K6~QfIiW*S&}+QW~$%KkjVJ{R)LE6e%)TKOAXDiC|?~o|LtcM>$lHW`L1tr&&-M1 zO*Nku2(ZwX?j^}sDwS}th+4jPGa>3Kd&R39?OC2yXxE#)Gug6jli}=)IB4D~mU-7k zN#P47x3P0^`Nw+z$Lse1EB!FC*8dMrO(GpQ zhGNA3RZQHL&*ELz9w!ayAo$ExB2`&=d>H+5TyESrfa@a9`%(Mkhw6m)qhQV zj-sWFU=;APiakqr@Q}&cw^e~TUdq*;C!Kj?ZQAKFFfVAGjLaC=dh5OF7BR=-%+%GN zXmq@t&Y6sy%L`j+Z(b~*kK6^yfapXw?#0SAm-uw*7pohb!;Hz-JkVfVC+I zp;r#^bpGV~M(yM$+noNQ*{f!$#;rvXP5ELN2_=*Ekl9s)x0i?QP5$}{+q;#{e4}3J z9z(C@Yk!Z55k*1m{H6#ylmd8XGxjbcn-q6a^Xuur+`=Bkm!o%NM@Bm+bw>PT{h=MF zY7;y8kXlhW{T%$XD}}rs|5Px*K(Zmnt-0+KdZdCXfDgsGt^Be*F8gE_v_d{Csf$~y zfvSnB@S#|UmUs_-3@MMlEo)-`DwQ|J8hBs&OQL7Yx%D8!U54|VKl~{}XXGy5Kyjp= z%5hjX4RCNkAZOJW@tf+D%i{G+D+BzUyvuBGNbhi9HPV^9ahctz&Zon%YvyzBqvs*S!1Q}*Vp{A}_WXWGPyhh9K$0Dl=Yd9z0 zY4&K?MCOvyd)W)wW(NS{E}Pi>-8)FbeOI6Eq^?+gfd_h=c|-V19CpMl^T0E zXPiL)mpAxH8VSeEz%F~Al#R4rc(A%n$*q7@;c^jvm*1B$4s*q=H~(5^Z4BsC@0q{K z>{S65j&JFOF?${7i2VQRU_y0Uzs5*7Bv|KL8R{r)G@5RDeJI`jgQ-hS?v<8{*LI}a zIk_!zn``-96^Bs`#%`|2s(utptQRxZlBV3etFR}f1jNCwuHvLVkElLS{laZMk&Soy zmU-mI=6uOgHtOobbMM=biiJ`x-M*Zll_#Cr;-%od;suLI;hThG*#KYKs{m)?ohwH$ zLuQ{J_%nVv3|FMbU)3ERCsFOj6`A!fl_5yQJ0r+0_LQEUAh;A`p4icla25lJ7uua_ z?j*FHu0;K`^W=94jqF}kcXljH6JvC9DBy^M1mb7hN@1C=wU$(Tv3k~lSHmb!?kgZ# zihtm&L?#QLM4Cu;Dri!$VLr{`+%%<_uKUGqSuTM?%*WidqveQ=Ln&39d$22f%B4#* zYLm{s5`u*^c^+6BVetOjrg3cm@dhNxjU%6Dhj$jCO^G z{E&_K58<<$=4tW89Wd;e-xD^*x_$0#xBbnx64$s??c(WcWUGR5oaRkQ7L|8;0u);s zb1ju6kKzZI{xGriLbve#N@@VNK%m*gjX`qaMKM8d$I)p2ruQezfoYgujq+OB-vC}^ znRo9>yJE9mx_b?55K}Mg;&uG4IvG>2;}}AfpxY^F;J~BfB`;Tl<@aTtj|5)t-IatX zHZ!~`CxBmd5J~0s2<;e6p(Xpn55LD|2wW{Ud86(y=C( z6^MfcmyX#Mz*^FQC<)=g9t8+YNzh`{xEYWsE-yAG5^OQi;_Wt6pS5fE|@ zA#&C&AC7Zu(2t0S{}6~n;X#vh8{04S_=n~%SrZ6X4_6_W5P5hhV%~Hd>sy)VP?m?w z2nmgqs>Hl|=HAn0zSOeQlsqClr%4HTR9d^?8L%EbUdeHR!;WIyqsXD`eTCBIR6n5V6 zXPD^Ly#)*76<7p7Uivk>Eco7i;}KekTVml^2`1kmNy^fwHyFYeWyL1IgbZ24Jg-oi zTdK+k=zwi2Z!{iej79smXGQtZ8a~Uej>XEwlbCZF$U}J0wwo%<uc8^|&0#k}{d&N%%Ix?e zLJk|*+cSsW-)8;i(`B@tqo>@dvZpyFO<5@vx+w-h59g{k$n?P7Odj+twd&dthm~RD z;D~K0NlO*K)+PVT#hXBg^lHyJic}-Jj!N+7AJ;1pkKNokOhnlCg8`^0E;?hS;*{O&Jhd~Cpon`>y^OavVitw5- z|HHsZv5*2d(p)4-e+QUvgSX!q$YhriL!W4a`twLXc6@kWBB|{;mz5m;@RA8c7ZnEsS?IGwyp=KsCuo^x)>9wRy{dsS zFoCS_*+N{_Ax^y<&ON1|Xp3<|%mzwS-Q`PGqarKa{x56cP%LO_!cBgUWE#;i7w*W5 zzT69wO^}fBVRBf%Vp8S4u!gXl28xMe2=DGXC1~?BIW9_zrA;V@(x38z6EDv4`%W4e z{`^J6S)8TLH@bQ4kpOO z5lq_Prm@UoD}$}bWLD0EgaD8)Pd~%$S5(FO<^v=<-ne_9H?b~X zSSFL#*oEF?8qO}4r9D5+q#yry0Mx=>tGT3vWw6hbf2xV&hU?R9tP6E1YDWkM2bbNb z!MZ|kK$;?Pz}`a&jo{@gr3%sdpwpP5W5$oKg6l%%IG}yAAl(y7%>md6U$$*y@t`jN z)gs33MS&(JQ;rQi7#v)}_vMLvZdp-yJpg1#&5j$T@Q>H-?TfWci;R<)@o~>(FcTHY z|HM#F3cpq>)tHyAZ*vgJhgL`VbLM>Dsa z$dmr7JjA##NyBdqW58yaHQq;M9GdqJ6V` z9Sa>G=Xs&xT_m&{d#vt>o96z!X}h9 z&qDd7N&4OXvqI%&*EgS(hf{9sJf7D|Yr2I41fqM#08Pgv@|Aao7eyX@?&)_@#L4Nj zpIONMCKL2OCB2@F#+`8K^RuI!%2NJVBnO>WeZM<`1jCnZ>(68G<1<;D_`h`jLCAcw z_->tojk|ejLQ0&e3&L7AvAb4{XwU3boLL+MTBJY)T&}_k!cTT$uP?&K-=lplkYn6T zaLPXFF%25!-C-rTE3tx;J$}zs-wD7u=Z*+(Ue$W?G@i`UZnab@=Et1Uq%Oc#!!VKK zD_y`(684-h9l3E7QQuw0POVT5xj%L4wuq*SPW`XHnLIKL*cI3Eidud83g9aPg;>tm zEQ~HHe2d%uyOShkJ|{}jX;y~zHnyBOyX!D%0^V}5?D;&ys-L{#*SC~+UvZ~7(}=z^ z_`TjeyNe6!|MODLoZ?bePID!;3d(I~0i(b#AT>`@ot)I6yIb@fpNSR$$re~dFBBi) z(&GpdZ?aKM@t#MV>8)Qx1i@~C)w%Xe6(KqD&z*VRItAdu))7QTk82S?a#iK_`XLd{ z-wrH?i#Y`O;j@L`0OEs!m{4hJzx-RHVIPrpm0MLDO=^W$OjLxpOe5jX_o#8TF>Is{ z?zod33!G9HZZ-KnlF^!$ILT!8dxQW*qJ(I1iRtbt8O@|gRH(M#Ln*Z`Jk_I*?(HeA zbv;Q!;vW}kj}Z5TK_s@HnkB{7HAS!ow?!cp$2D3UrCZ1OnVCA{+=|^G>gV2?3^-ZM zqSqVuSNKpIcw!T?y>nBuKH3#vU(m*!q?)!*+0ez+3YY?%Im-!a4ok``KY!IeChxKU zUWj~P0YXZ*n=TA`kEP>gIB$1aNohg%D{DLqnyh)X*vOo$S!Q}$f*XVF=zExE*hww! z6ORTanZztzY(UE+aXFZRVFs`Bh-i3M{mtzBAFQLyFViJV`shj^F1=QTAR5Ap2%zn_ zTufAAShf^92ir&~6CSyp@$Qvl<*1ZR*G@Lirm?aP;^{8n=^Y1N4%rahT#Lb+%yQ66 zI)(mLY^)^Qi9Ums*T1o(*)O>x1|1u=^h{Kbu)OKJ(D;Iw7G%!Vxi&a!18fr%%sWo| zSoH8UXznUc$WR_QkO_^vAQ(u+M~gqZF1RHTQ16A}%;QOTzr zx2J&hXVVEv^qkpJC452Uw;pKU)kufXSr=nx4nHEIR3jx!-h+ZI!=~^nCEJh<0DpWM zvHp%M_vt`##FD>)u70O1$&dGa1!Odbmoz&Sf9?9YO+P{kJa7Q07*zj=kBGXws$S8t zWH!1Oa(@6S2qLDh1mJG2VJmCb&EfnS2T2a#c{ZZF&CrKdrxSmLwjNWzij)WlXD*FL z9XTu4R$iDHFy`^G%5S`9l1%*1H}F!oqQ|32^m>ZfTX`GLl_+EzBjXg!rRuEl5g*@! zTBetf^V+5d`=1b2w*m{mRUJ{+4Tp{jw2!+`Z(3rX=_%t~M;k)-w7?VZ-WtkpZB5^P zyw(rh)*fPzRYbmiURt9h^JGux2IdN|Ewm7fzk!*L%Bx=25DTFAW0%y9BizskMkfBh zM|_%pTCn4I@dZF|=of}9^mRyPAHrzU+cPFKDF3s+g3@y=XkMr8b$LH`8c`M<^7k+W z@{+|TRQ9>OloAEDBnL8`&BJEEP)ig2oLhu!6_Rjdt3*5l{&+W=kc>?AvB`h9asI5gVD$w- z59%Qy63-S?|2fBdipzP;!BP~#BpOs2@xaM398Ph5Me_D zH+!96?>=N9PFiggik~l#lD3?|kdbF{?3=Kco|gbo?s+nN6Y$#I?9K)R{tTR4-~Ho9 zeWlUzs^L5$Qy9erugrWqZo7-1Qfr$2(3eei8qnu9FUN=-i~9p#U5EQP=RJYa-JRuD zajkWi-d?w^jZLDv&|KsT^;8Ro&amhI9WKGD_2Fwq}P><-VJrlyGcm{J&vS2a@ey}kol5G71R9Uhjx)*?MTyP0xdvDxj_hBgHAIOy~p5+093D)A6HTcxR$!7ioprMJYC<} zf=?2+|7VV24<->GuK*<@lds%(o{CTsqq{OF5Gq3phR;-*1Cz4$0~Bsng<`zE;ZCR? zI85U6%+aL~%^u)#l55CCt^5l2b-S$$b-TVvT0U66LYL9ZIKA(7S+s$}j{%MLH-J%+ zfw>i;E%m&aF+-HV>#&>fJqdrl(2;Vy|1oOcHHM=T5?JMtu~||C<;!<3L^#OGmH|%w*_Kx6A<&q(XC@YXRjRaPK=Ux za`$CQkanS+huq};Uir-JBA}TO_Y3inR!f^;{&Mon2u&yGvFB~xq;z&oq}fGIZjp8@ zSC{4Yu{0XL6A?%T!IN3ofP@H0Yg!=`|4uD>_zSd7 zS2{3!MgV1fEAK5Q@FloKx3F2dGGG0wFrFNIA0fU(wW9oHRyl@GsE=*x$-^JE-E}H7 zJ+*BZ?66Xp8>38&p(dgeCx4+If$r!`9*|pXe6!v` zoKF!flR#*_1>7S+W3wo{!TdC`Ka7-GJ25_J?gR_e7LJzPm`t&{5(c!vq}s7z2qi2e zJ=YQ!3mzr=UGxF@QJpuRy%gz{0h8tsSzj1lY@1QI8zM@Zcn_z;5>Z}h$lWi5Urkzs zb@)ZCGN?wd5je7EM8Ry#dNyHAE9;a$)f^N-|#iU0S$jpGqXcof4^s*!~oXTi1UgMD4K#V8nd2(R23FHzH4@|J> zp&j&uloAzhf5jMOA|< z#W;fk>*h!Qfah2^#N6x&?0vB_@{TGImczjzQFoB|n&pf`f7FCyYm89owu>D03wLV( zO$$&=Z(6=tNuT(8I%3}ts zQ9hd!$%#Uq`em16?wSa!>dB5uJ$Z$FLHJ?vE+9e`bSP}48fJ;p@QDpCfiSmiaj1ym z5vtfPMgbZEHNZFHe^-&rs+WjCzQF(|4`zaI!k)){dJ*>ejd};jj_nCaX}>0(=bISb z@6n=tJ1K0PxY(r9*3UjL)6ecj4A`Ey;ylZn0xLM2dHB3lN$l8r?O~hFJ57YceZQETXOoHLk&Y83gZe86kk&%GvPLEV7;glfH9D(;zKfVZjz{nLS>ET0y&huqqv>$jij z(n1DC63JwV%cDNaw3nenE~Hp&AMY0oW3wAtDEK@G#@)|dE&||s(4c6G>^9dI#6=Oa zbga32A}_{V8Q+T-bO%2XNxcpoM_Sgy^J#bh8sN(R_nqY@(J;o(X)>eJ>ibCN9KVYA4fCVL^in7f(I3P6Pp zuL`Iyu`p-753prA=Vr;SOsqMgPN>#IcN$}aB3+dz9u56?(X+ca$AArdEZ43C8&Lvr z$I}j@++mXMqvpflrDeXHH6rJ;!YAc_N36p>xu@Uu80KluQ!Qyj1eC#2QF6GElUj@?MzGp>{KS6+FTK<9GT=D`BJWT z`K8&Ll4ov`Ty ziT*5XWN7ao)HdEd;gR`>{feruRi=+!zC_9=m84Wm;LQt*2f_!tEAwNq8~{2)<3XuS zt?;w>o03O4DE4EsASIXlF|~EQvFnS}^wo9CA&R{h*Y~Lxl2^dSrh25^REmofF+=B* zVaT!7alm;6|ApULtTMe(#UI8Fs!MQ7Kpv(Ts%_z2SztAr9U^^1X7=RK?JA zk}=LJ+<>H-cz+i>{N6-rOoNAcj)fK1`{gbJ{k$Ji7i)>p(EM8Fz5AHXMetA z(Q^WNMmxLhx#B*={Mz#r?egpq64}~La*&R_`te_JBs8msHWfuD0kRN0S|Ie?6@||U zWb5G)CM~FJO$pc0Rq)ZrvymT*%{=+a&DIQ|%|}b)a#Z%e{WsC)SI!8*2vlg_XM<;} zMl++>z4QTB^wk8&*|?~R(N)sCf+%&jA>w1bKc%kNnE%HiOsc<=8SNZppEzNSgPLGl zjcL7QfMdJb3#L|_YvtVUR#G-OLD%a7?Si-3c1%{&T}RFu$~!spag2Z_7^D>-R>RFW z;bTZ>+C4b@D={i)N9Qu#Cm3O~U$^d-G!r0_^PMT9b1bZe8E37l?My)ck~5j3kO|Fh86_zxxjs;pdC=w6rH8^>PQ(FtnMjA9$+9MfnlQ?y z+wG5G6n04hPi7xp@y1Q}swP}Ns39?hSv|@$I#^@uM#hrVU(X%4r8U9b8H}2J%Mr+F zrym$5(bEdqcFC`1Bq<6DKMHB8XVX?7o3k9!sAxGkal(orifvV_v1RVg={X!;jb7K~ zTn@A^(RRNw2+_lwq%xnEU+t#Zpo1(Xr_Z@SEOKknFvE#14DsrW7DQ>4^Ttu$pk%N# zMP~>pOZP}#(=84yF)Vz5*}U~e{mdXq$%2=8tbm`{BhU-SRh>j2T$UZJkeu`2FU)_rV`mxJpRg&%mg2PItU;JeR=6g3 zH52Q>Q!QsDGMR`z+7Zi22{4-Heyu7^4v#L+n6a9HKd$-4BuD{>X@4z%$XoH@2W_)E zRBTSNjr79Tvy?>01UleAogH0&E5p1>b5VGToJW2gI;Qb;l9`QJH|a7O zeAhvXaFN-?Li%L>8lf|p$PMEi`5brS=Z%D~D2G2LL3&5x*ZYj9h1$Ji2#Q|FmtP^a zTs`UGj^gprg%3>{iH!RV6mB11C(fwI7|wRH@Owi17QBX>KvjBt#g3=xx5c@o19%?j z3{9&51Rb{}&e+{$M=!u?RDxm2nI4)AII&`juY!(-&^mS`@eY+UOF`eewRF~w<6V~aDNKDJv?(FE7@P~#{dla!uEg|BVd-WERA}~+3*c2Z z5chfqgIW2$m$tg&JqNW`T#mme^O7S&zzg?&oT655->e8pHlQBL*n;5xyMCy4Tq7;G z$W1vl2{0ug7n4_UU4!43N+8!Bbl08`ro*YLYztvX0}S}`^1DGwkG`Rkr_(H}99RQ& zYn@4?6^$!R%GAfTy7V5%$Eq>;v7X`kDdMAa{CHK+h^(gfcvjsd6Pul`^hW~s>k5LM zJ~D*Xq5LTkJWlKucN}y`3(O;1`_s=($|irT@+>bR=(>Nm1QxHt@9||{3e%qRXWm9t^2!z&B#BrJ%)-B@{i(5IRG&e3>G)@I>Otk86q#y8Ph25|DUH^-lvRG#Tk!+_J#`ACE8I5qw zHsn=tzo8vDG{`lTn=5GmpQa+6UN{cbULVVn*`U(>WfX4zAb~_8`wpT_4zZ9>_vH`( z3TGWbmkq!?QmUQ$XCC>b0xu4AdMmIc^2UnQ!`4gGy`wPLcU(PafHY10!Dmih(mejQ_~T1oS_Uov7CH)WS2X7(Y+Sx2WE?%CICg4MSpVgq z2YqZX;S-ldJz};EN>zggp$%gK$Cwa@Ws=sK++*$_gedRkX-l}!PMFY+eo9sMASFe} zSwXTSG-)yKsbnCX*Sa+yGTktk zB}D$kLZY`mgUd6E0R;`X19f5m&ri&EANyHYoXo?6;$uz!B{ZI}Ciov=zjQOzDKHx& z3^o@KAw30t%eRQmtvrmgstPRLN-mn~ZyuMgq|DhdlnKutb$@t%0Bw+^Q5w#>ugLv_ zk;lBMfz+l|baa)NV3CYIsTuaDJzivR#Q%_D&jG-T^xbou({}CvHY8m5^vLj@f&*232@Ul5+eI@_L6+RYlUh|&?^`a znk<$8qEf}!z1uULEsCGDN@Tv`=}ljvVX7pv@l}@WME({3yC*ryxzF&$j==MH+Gg67 znZ{m7T9E#*xM!@FUVdK$U<0!t&4$(JxIeYngBC$d=pE_Qjs zPE8A%LdY$1+MTPlW;VxR4BSyD2Dsp9QnU6{qFIlrt_klAsoM`yHxZ;iUg~Q@1zXAT zwZ_slZ^T`zqrYqkxRPdArcZFv4H+C_P64dgKIa zEN}B>!pXn!SGY=bxy13j8S78XBiyr^?LMu4>_%7;*7*=M$qFh`minaxrh)=8Bc?Jq9yGKh_nulYOvN8hl`@ub4>+zga@&b*?d&ZoCop-30= zeYNZ#`Xb_OF%7*{d#~rj^m@6x{I^(6U}&!V{JUC;S51k3|0UAN5@ zA2HPdYO*lu?gWbu!;LUa=PX7EPFhAZ{syn^TU68_*kW$A@(Cyu#{eMDI=vlKLEasH z!3wqi$k|0i%y_KUlH?oqW;yN3zwZxMp5cO}TI>%c6qC$R=}@6u+!8WFoBt!`8x4_G zwY4axCSLCAwM@lbHB2#5vv-LvT>76;&kl>~->zk-k}yasQhwx<^;NcAU`oC?!c=Zb z>IqZSfB5`cLF?~PoqNk#MB@ucZOj-tbitOnLBf&}TXC(PxHUdhTNMs#diLqCKg#x% z=`85onrSRLe3yspO5l-~9GxN^InQNnm-!ZVmH$9iY5AR$m_YM5Qoh32LZfRUj{iay zm*;_Ub0(><%~gn}o>hD~0}VO2g9B_MzIKhd| zQT7@(LM8vU^*;rZU!zhFM^F3H2%3s-v=V=c^2^!@pE0*-&uArGble@diH;@UMH>DG zm8clLg5d`bJyQT-{{-@;*S_Sz{vl7pQVN{y!^s88RmSt7rPK#z>46k1p^DW^!s{Pm zY1p$;d@36*dFW>Fyeft4l!qW?&2*~FTwLT4?3>Uqr(Krc$75BD`%IHs2jLn}p}Kyq z)2GeB=|^#eXqWVLDR_UuV)nkcrz&U{`!n?x2Q4TPO@^Ev?(LuoGVJR)OSJRt4O&7N zoaTi)gz!qpY(5XuOIr`YF9a@c?mZOfiC)-2J$+yf5JFXCB7s$GY{f^!eaGvPq*&9z zqtWR6LKVU40_O=#X8-QIWJ2WYty>kI@2eu4d9E}dM{vnG8Pr+(gMeYM?@+fr^Qwm$ zA%R~6o&jk?>k|t8%8^N#a5U&Ie82e#CSB8$R*7}-3-9S-p&$=e^KRlFX@jNC4-4}N z)7WeB=xl(nZ+Sm@aByShj~u%?O;RjPFM_}+44E-3DDun2eaC0>K})=-UhvI^Kf)~$d@FjJm4iB@RGWoaj_83+rinb$0b1VS&Q=Jq< zwFQAosMQtuSSXL23lqZ#L;By&r!+5PUe3lB3JIs?{ZtWe;nwi~NDNZj9YRnEBgq3D zAbI@ZLRip{FGT@^8}-ERKFSd3b#LS|QJYewUh~VqZXDFV#(IQlXYkOLC@^UrkEWFs zd5l__ELz+_f1N~-P!ap+Co=94^k#Q__QPC#jwQiO%g%g~#f*+SculGRp^pV|=!rpj zx;ZpYXO8rM`mw+1Li^;3Y^a4%Jl3wAWxhg~4&V?oAHJ+|^zmOto#Fkc+a}0FHO(hX z6bEGAPXi6SzD)ZSXHU7Uu{h}9p&z9CQki;d@2S8k4B!d*Y7eqcoL3g&SjUlYnhcZQ zzE8O?lah7=($bBT*d`XE)}y$DQK9)*S&qb_4wnMjmjTHKdgqg@UjO<_8^l8sgwU&sNw4ool!+!gt; ze$vwfT;Ku--)q80RZ*;eLuQta`g4r@=_52)u2f3dOiY$tJuBl~n-JWQiipk*`c@+o z?HkRgy#m7>4JY@}Ls7pX;7Bd4bo%|-p?uAzZduM309Q^cWC> zy3p#G<*wpwam@P&PlzZM((TXFnDqeSOsVq-H=uWKhXOb-ed8&YnHUqra8g9+V-L3^ z8@&sVh|UI$AK=Vik{{J&aWpyiC+O=4>^yo13O=ymz2mS*z{(%*qHG$PA=T3w$0kM3 zp@p;e9gdH@D0+DwffgykMQA=VpRA+=jCCncBz#z!Ov}cl8;x$iAwrr>thsq#^?R$b za!KasKjw703Y*2q;_tjnYvHo4hWo39PRN-Q^@cPG#C*&6=b*(_<>M#HhKDtdkL@dT zYKjv@3$Udw>){NVv#kynI!42yKl;T}c7b!5iAKVZ1e!%)@aboru4M<%r=!nC#Zp|S zDJ1dhRi>$W!F|9O8R_|*6r?s`b*@UJhvu>Ve-odZ@Xmx-(_EvYh{5^{bUO8L{56{C z@O2eA%2%dG&8AZjAJc=n(p9O@YgJ&0*Ge9(j~*Vxha2r0FfpD`xTM6wl1>z4S9j>@ z?e=Yw)stPU<^10Zdo(nU3!d094jUr=8L7GZkq7*!=g@5i2=_(2ml5)ntdPe=STxlLR-ZHX)(pB&T=d3hFIYGTA94JyM8$*R*d-HgQ zxm$G(jl?GZkh{Vx8sQ<~Mp-Z(DkZGZ}`;#3Xa-jr6JZUU7dC1!m1CMWO0CK%j9 zQ2srC&NoTl;%B0E8@OOjnDiSTg!?2FKZ_fWGqYclyZPgMxadcMf~o;a7+W-(3)<4q zdK9L!s7U}~)|)K8OAll1R>wN$2?IF#t%-_I5WanVJ;;PQcUj~F1hZh)SoKIJ{IMRU z-X|F&8Pb0%_8{NrL*Y<4LK7q3Ra0Hk&s8U*Ct(sGWtv{$3(m*k&Z8kC3Er2&1}WP7 zx10AeTwZ}cD?Ou5EGlB6%lKOctb;Sl%Iu&x<=w~3&4Pl{O~Ki#b-GCz$8B#Ua9Fzx zVs)u$Maq>F&MO;pD?U;a?L8;42zS$r9l5Yua+Q~8L1UWN!%@m;XZ}UlcM>>;{fEgL z(T=_~94)PuB)ZcsDlnC_epHUdS``m^a>Snkc@iOHPUdAD4sa!vOX4b*|Cylfgr2X| zQxIu>*`Uusg~Ksa>}5&lPkgw?rQ;k*8^}H9Jvt1nubv5Joc|vHZ9$U0>6skT6ew<; z_$03t*SZv1ee%^W@wENaXZobCT$gHm*Sb{w=d6|Rp#nqVmvW7qUFbA~g*>i8A0Gc= z;$Sos8!Rcic9u5eFPso(YQ1s;Axe}H4TMK4V7drG3J67w=tK_eFN3}$$Bjq++^M&Q zPD&oIX0ZYD6qBA_ok7uB>K)#z^Yvs>R%pF*cn{BC7)W!|UB*>Pw_J#1x9uYB{W zQ5=ysm;oo2AziBvVW)@*k5thA3KJTf%-1Qt_@)t3~4R%NgMqSb|uZKFtt&`(DvIg)HUxoEz zq7PY(|4h|Cz+d05vuF(2ml8&D;Mg*};{x2j1p8ABeArE$1GVS@K5l^X>=%m$qc+fn z`%2ExhKvdyEdwE)C=)URp$;I7qxq0>N@NNRs-WN+$-tng3g}C*rbPX!kNf1aBE{TD zPj7HT8W1f3F(`K|$jgP)k)-NK;&=dL#xzMc>x67ct?kqHt>{jyRYCJ+X`^(CGpaca3Hd8r+f*Hff?e)ph__-a0sr_rD>Ce)z~(RhB&cgM;WdtsV6*f$S(~V} zG1K@ivhdFw5`XNb47jO;F5T%O=w6i6!r~}oQwH=&v_X%g9V4)?T{!}}p;C3tfY^F8 zRX~HHfi!5~Knd3==0h7)^PwUADbb*6IJ6O%d?9uM=p2Jpb1RKpbb5Gs{i&yc>a~f%3p@(Uv2#7f4twDt@*ECkUc8J`Y#XJ zthlf_=`JE>!=3{)UGVZfYvIs5T>zX<-Jd_N`@Z|}`)o~vWB@{)Tm(hj=vryijmq6)Blj97|r*n|ugGFSm0 zx`$#SKx#32Ji@>>(t~k>lxEEa!lOut4#ENmMN`D#G8jl{4Ity}ePLC-FA&YZ?h=|3 z?JYsP7aU)PGet0(0|e1+q~<;JQjdr>tG-4tBBJL;qPkaOO4Pm}9I3!PCD11&iIG83 zHx)vqD;_YV9Pkbh+QL)0i3Uw$LOE?%525kmsebu=)^GI3&q7Zg)r;@39@XEy2yH)$ zc#Fp(1EGoArysf>u3BqoNy1GT^gbGq zEHPL(I#WWz(ZG>}V>!_-xZHq(W0XvkjFL&9D6JUk(4>h}xBeXk;q6u3*ZM0jLbqum zGh%GrbX-mmvev1OXu@` z@3{0eBdWEt08TEWqo$tDxqA^Ay(aTuy+jM+w#juVxnxXz2sAta`U4O;-Z13LX`Mw3 zY}`k$G7v5{^rC~*1Z^@e+!7XbeVfb_5#u0I6}Oo=88=9X!Jecrl0|rortImx;P8^T z7f6F5Jmc9)4TOfNxB9Tw+A5jCaqr4j>Eq2AVS64;iH=sFdP>xr6mDCA8#8sqsU|Gc z$(u1BGjrY>&aipez`A+ifh(})`X4KpklYL75g_yi5Zat{7wKdiX6M`}Pd8dqdB0as zAZcY8CEf9FEPwXA!Jc`f>=;RCIJ%ve2}ipnKMZbI-aus}&}PCN1vLELTZRF$3m&N; zjp7WVp%5A*P!P?OCCA_mDP^E2K>}@R-=Nlg|DRuGz19HM_PaiL;Sysr(s9kxgYA?# zh^s!lX>(3S=(~LHu3KX>4R+&Toha201<*2 zx=9D6%V2L>i0X-|_?6M6*+B0y+w(p{vJae66h z1HChW__uLXlp&!zC$cU>0~Uj4vebNgEx-+D2#aienK=t5lqwN8q8B&Qr=jKP?2 zR}ocE_<#Q0n?k_#EV8Qsj334&DrvJiKSqp@=@Dh3v}v&2@OCf$eO-b@58^+6@C@{1 z+@mYTHl({v=GGGCq>ED1^{3FR$E=@fD1(#>Czj#46?AypUk1C1U`Ih9YkOW=;>T0s z!k`g3T~0yC0Hg(h{3gTI;ew(4x(=K+j4^8YyFK&(34q)rWo5G9akY} z;-djNsDm;=g9B;d;1aa#r@~YL){)&(g~yhW8*sXa)XR#sL%#NuWPK{^1Ltika3t5T z7pG{#V8_};nGJ;P`UXPWKzMu^hQmN;1PJ-iU^~?< z(JM_H2Q#Kw)ZS!6Q+l?F42L(D!A@yVv|UF)*5g@c7=`PaA_|Fd4QXw}Q85`z*!osUu zJLjh!0JZ@_c0)b$#!YlkdI2-Tax>v+4n3YHYdDJz3@4WnY#uu}*ZX z4gWyX^1#kKL)b7~cS_2~K53IAJ0vy`+H%4BwTF;jFDms75)pZQUq~YtUo$K!y%(HD zhC{FiZE7eBn=vJtHY091Qh~dQfQ%1iVv!3X+5Rlv+tUcd=$zDk$DcEQtCoLWgiLCGk*M{U=>`ZE0L%W!MnCI*;_pSW$M zZaCaq0y8BPdNf-?5OJm?>@A@rA)ZSVYs4n=U_{EE*r@6t>7_bIWNp=E17^;90AV8=BCQO!Quslo|bNkO*9=^_Y?flv+zV|+Stl~|NUgXE@i zXvsDfmFUaQuD}z>aEQPm9u(12BK-H^3a_|jD1$^MqdBxA(5jMwl*W$Gsp%)QCLHyp zY`|}5P!kh={z=|P7y&|00HFu9rVjAtx15jiHyUlQO+nh zRU!z!eK$tn8Ck&0@nztX3X1L|m??sDEAYS)AkGm@jVK9|>{YZ(EpViX>cs?z&+xnv zA^bhwHKTSeAWUdZ4!~onnpe`xmzbv6T}$>~Ep+_EEme3@1c!S{h&&WkqhO}Qs}Va@ zg`}5~#)OzBR0a;QDFGj3Nua@~O`H6uA7Slg|N1fv+`!KA)lLIKk| z0pWSmaWWlL{0^OAJ!qe7KyNR&RRo9omjE6S&6b22aZ0qihzQ(aK5@%|GPwLJs$p z?17_?zhh!g`@++Pmfj?~!%c}bIOL8( ze8##wA;V9|ZmajDY{1WGP=*QT!C$`+0Ybk6LYHgDZPdwx$u4NKy2jx(o^!WG((dQy zR0WvY(CpW=$IQ1-%xMSA;3+u1k8hN^wg@IXyaWy`K@T;er^Q%uViz2h+XV+HjVLLU z>Sbs|Ir3u~jB8B(K}`68d%zW~s@}zK!@l{TZ5rG(0L__r3kWr%XzsWG`88r^tB^3v zBXXtjdg?0b(Y2ednkyl5l0&m`FzPozXn#Bbw}G&o(okqt(w_~HflwtG<++#4YwQcX zl64T@MRpb3V^J0Q^3&p==oYb$p6A=Ai{MxVk{tn0i8OWuO^30XB-Fc$xV1Hyl?_-! zgI{_Me)4|s=|{ldzXUCO*ZEhV1x&apEBsXi2!j9!-K-tAQ703QWxu+{wR9O*DkyX- zxtm!3-%F-9wEyD*a03vsli^efKoSy8FrlJ|VtWDQc)MRg(VId}kh7v)aFVK&prt)D zx1+WTDx*OdjzP{_x%kX)SQLKgG4OAfVDU0czXt#6B0RSO0)_+Gek#S)BCnx;#UFrB z9Y4{_XLdbOK^7zhCR8_+^inBGaLA(^=w3w1ftey8I|9DP5I?#idbG>b zlqjxyBXLMJV5)t=0vfz>tu`wc1fHyDPf6)NFI-iA7iT<-0u%n@HzPn81VHFo?YQ9u zA8)0+8Jp~IUR6*yt~7S$`RSPx3^zdapMQDT;X*>LfEjsIxO7ABm4}WJo^V_$-Ey;n zg4hKQE+HsLS4z-#>h2?)(ni|1D0&Vn$Z znljLskmQbbDYT=$IsT#hpnZc;9|FR9Ji#2W84$*qfRLys-k3rBq*8?eR=e*7*#zMWY6*xN^~ z*64w-mJnm%PXq|P1%&R@j4eC9i*1upM z8ssdZ;ApESp`)6Z5c7nmxbyv+T$6d^Jvp+hY!_5`{%=UtwLE>PdZh%72Cdr#4V&d+ zq1ZjxSBpAabfMA77IZ*}HDX6A5OWk7IyP=jPE#;pRR{EV?-(Oyq;dq8_Qh{bi&hn$Xgs3}|6O z>t;g7_62^~fMwqx&F{T+t%3B|^dSD4Pu^euF3c8=q=g6&h87UIQai4D!Bbq28`M)| z7qlx7wFI2F4i7o`{4Bk$yOG}W7G!i$eCAR64mWJ7kk3p=Cn&6;QsUODiYRs$dGr07 zndhEZMg;@Asdm8;(Jr`!Y8PZwN?>A8rV*Xj*NDdXLc(2)1MoOeCa$XsqZM=^0ED=L zVs8oDC}P5Gd8JZpgWNjQZI&c-{@`b?fzY>r(6)*x?x+-U!7Cz02}5{m74{~DumeKA zPTOv|2c6J^djiO!4rP!iWx9yMwJ|0f&*}4oNhyX{eW&r1B;=G0SVn_IsX?oFx&G~+ zf3p6Wi&w3DR|E({3ZT;ng&#oDS5QF4#)qIsg3Jm=l2h zR{B#9g7j;;|NFix(1TOH9wwZVg^nts0fO4xxo-l zTAr#5XYUrqwvWFn#>ecH~@JV!Uv>t58h?2L=0hz07B<$$B)rXUkt8n-eyHj zWEXU5&Dm5z;a26w7oXAHOTV*P>zxz+@1*iU`3_GusrIc(G{GmLqW{jbW=Hy^20hGF&NXx5!JYB$65&x zYL(H~>A@s=6~X}s>D2mjEAYfJya^#gK(wQSR9F$6FIe{t&6!D;acD4_XbnIp4h^lx z6U6jmb@fXKyQt|HMml&dc2fz3S+*n~)G2CIxCe3YPC!{ytQ{NeVnwEetexA%sw_AT@-`>q6QZ~V)Pyzj*R z6#AvMX6qM#ffzexXAuP+jSr}_qx)@5ml+eQs*Y8(?Sez;x_EEBzDBfTK`Zaglt$F{ zJ9Qic1`rz20CW^B9uurjhX)X9HdvfNt@rT80;nJVBu2VNn-X9K&O3MZo3nr1>1RM# zk0*#bcG;`6kX@2vwqGh}#end{a@Y)n5+F1g!%7!5DrB{RW>M(|i?gWP5YCjqwmeX) z$$O=#q(S0n!aX%Pk8I#8FG4+=-${yW`Sc^Y!J%)dQbz0A?t=EWJV@2bE3!$|aP*V+ zgV_QYNh1dGg{u)D3wrCle4JKxj)mLCiEmNQ0d%88og6pMj7G2otPc z4#iD^(1W32QAvZv9T(uqDv}UP~VLxWeY)kf0BfK7pO zK5-xT-V5N5pKahhH72Cd;A{bX@req!^I@QVBrja8DRASudEvpPrL8V3b~A4T2tBAB zcZhn5?1FwylXFf(i>3JZX^*4x!FUd38|*8Al)gXk<@akJk+%19E3Ccr$L<3bgs;Y8 z>{zoIGipqT)j)La=#9Mor5Nc8dC#!I884l;b8f7cB{_)RAKxn&x z(Eot2J~Xtv)w4H4CPPTZVK?SOXdu**jB=YSNt_J6Hw=qj^YF2#^j?7M4NGvU05+t- zT8bp>P^ih>kDM}+4d|gk+!s%rf#0|U3025hAOFA=ZA_>@gKu5qQlg%$Ae>3Q%m0Az z+YumSu5B6N2krr1cn1FR6YvX9!#{c!{y$H_UwRCD>H%??uJMW^Nnn(Ey3Y2khS{pru1hn(-n^lQ*scr2F~J7%(GSX}Ux2^z1pL$k;Oq(_SJ87g56tyRSY4fq zXflf;9}~__#5N^`+gH#V?bn|Gzxy=&(sS^O&!DaK7aj#aaxXYs1|Ln>hX!?wLPLH9 zgu?~l_Itq3KL$Sg6!;zS!ub8?;cq+xKl23m;RnFMD(Ff!OBI~1!u@5~t(h)kM~cLj z6ncH{d>DN03GfHcp!?=;i}%eRy%!uPf$OLrf^KSw76XJ$#uIS*N>KTFtD-PmKvpp+SP*J}Ct-kQh?S!co^Yrq@1<0HJbCWYEQvy9{6Z!1$GV z_TAc7zX^Zx0kC%7smF7+ion(9pM<~nEc}a$5PyuI?R39wds z=3V3mJGWx-7PTWMeD-lrc>}&@6twg{sNMS({QYO(0q&$duN%rde@w2*D&??jrXzVKiw4cXq6=UmT!i^c> z&PPG)Rd|Wx4Z8|!PrY0F>bKxeKMY32`@Y!N~5f$M7dFpzmd@F8j`kH&qb)OJ0U=UNe4jJ_NOg-+_PeBK*Gl&>+cjSJ{>< zz#1`{4;ao0pMMG}mvo)%$m<^eu8#{paxeJDm*7k989e^0Lap)!{OsdkJdZ{m7RHXU zOINkxOful%w;}u6Z(nia-efVJpozNm0m(zSIfEJqhqEmR2vyy+T`JiC(TnaXqVAxu zqCvI3{N^%ZjR#WFreM}yY^!WQZ$QpQgCr@G0KzNg0ihZbnnHsFzmb3O{42_)3ZDYP zIS>It`hNCb9|jlRguv2^_O4L-mzN>!WwmQDj^hAoTq-v#3cvR>*QrbW=aIJ&xcvzC zyZg2($h-!vUFCPb1^@j$?!m(AV#3cpgkE0@kM^Ba1p9aAfvNjFgIDQEN~p{ugmqu?ev6eKyK#IFB;-UE`aS%0W+iVyYs?*%89QE1$Tw0O&IqGi{FL{*V9xUG&9m#c(tkD{VOlRY5D=gxB%goFFF|fR;$(4rkg#6^=E|t`w4L0 z+twfFD<9OpbP;aNoBpQ{E+I8sHw_5Iv)}P5Yfkp#_XG6_uz$hg9p@UXC0{eQueO~R zy5oYQFY8}C@5-^qni$(EAjH{PL>YlHmcvMWwQ1``wQ5OGAN`^-a)-ppY|Ek8u~4$8 zj5S>ZH@Br~R95{x~d%8%hhgSA@SKsb^{2=Ilg zjoccaOGf)skz}+!ar~(V!Sh$`xt(NRgGb819YBZ!+ERxI^3Rh{EGU4yTKFRY4)KCu=Y>if*U!>=IE@(GCA1JZT=AU~4 z;As&yL*gi!hxE^^ProbQuj1SRNHO!&lXUAjxP%yKTi&n&td(A`?XLi~Ms%i#%6@Mu z0Sp2O4%{dgh~AKrwF~wv3MW@U^-bFz>epU|qXk4u-c$mImqgkyDb$}s#{i+_Qr3ed zJ71=+eGAIyXd~gAp8?^zwD23xz&Ebh^GL1=wLiKDzdObIuTP2=vJL4*tPxR-vH{`G zJOtu*5LAoO+EMzK8BU&%|6u+3C!tv(yB`4I zR31d3GJA`x!>;AC%bz|Ed*<8#gj-XMEB4;EZ2LvtS*;N_ta|;**uG)Rne^;pex5u^b{yPh(Qes~jkPatYBQYo~9N#@a zK|xFmu1g7j`hxur_3hQ#rymiCngsfXw&%hA64+A$!&wuU%^V;UhYO}&sq5p8yiE1q z{XAEWpl<=;e|QkQ@`3%2=eeu3V=I7%ZXhn?8#Sk`7Pp9OPqdWHYltN2=wV5iM=q9zK(o;j?WVYo(%c3&85NB7= zlt>vj>MkJcPiYtkInf}&ge2Cb?L0CnSSCpbv@@&ryz^n%yZX+DK{H#DJNwb0GHCJI ziBCUbC$LdU@4i#pod-?>!kuD(_4i%?SFYLo_}>S$AHG-l_}9)0|8~j#W7aiL`^0_r zW5Vyf0A6$8;00^7FFpf#Zr=4AAXn^yoCd<~xWJg`7cWCS1K2hFE$yq{gchkklho6e zlyKLZ4xaMA{;G^-8OmV0ARNgy;NKv{2NI(o_6m}s`8A8ewt{f?6(=9+CHcr{0U^>| zBBQ&DDi^T}5MmWHXML#SFViL1GcOp`bNdkxek>#W^D7QMs`o+dCm#WNp|}T@P_p2S zC|0nMHm~3V*nkinki_TwRHa#BQ2pnwHzAJ|KRkfYf*3o-*S$%?br)rT5a-H-nEGM@ zLU|)c2bH%|$I6mkbiDNpgm_9cmTSa~Vt2CX3}QRXwF(2FDKw}6QP#M@<^dsX9c+dh zbPo`U{a`H%2(OC?U;CD`#|8DM!U;flumpbMez5AyuX0tW?WfXT`WJ+I-h$2@Wlk^K zi3xw>Nhmn^3jfo$AkVvOUkR~-9#n25w4@UOepJJCo~uagtwWD(F!IY z)YFU3NorbJFPfIs4{pl|2g~TT6nZF#y%4vpz}ZrLO4OHX?g-* z2KA9dy}`mVAQW3n*kWKeUncas&ud9WC6dHffN-)Ty!5_H&&(>Uef+-qX?84E55?V4 zKx2a8Y(4!*0SHOd{P8O5!ua!x@Rllg-^n}9&prfN2oRbTW5>+(u45bF8meh8#0Ekg zK&TZb!^jsM&j}NG;dC|R20}a~I=cc7h*Ki6Db)Lsl3FG8hLTa6c&g^nAR7=~xrVZ5 zPFBFl3i$LREODJr0HF(*5EHX42ner>2@9{9dx72(n@E;khxyC!?zd2GkSXfv1JIO5 zjtvMo{{UFC{8N7KY4n8iKWVUL{onfQ7i_rXe#ZaT6ifO@(+r%`@X2@K+a?K(#H$eFJuCzzo$`bXB&C8F3gTe4&IRG4Npnik z`a^vS-hV}WsNboXeW+i*1UYZDTeC<-e5j0?=zi`|D}b=Bg4PiOTYQ<`Li_54H?98e z`b}g00fg(b!V_j#({F!RE4%@}{wn;tZ^Ey93x4BOSa^f0s)YP`<63P`8L`}Fs&H=! zp}~n9I_r*z{U{qVf>Jdq@d0dxFn<}o{vq#Oz*=7Sb+R*Pt@0m4V$LA~%lb|2WC z2RAIDIJoQM$lJ50fF!1W^8)H861CUwnq^>UrcH_}M4GfhBNV zLOC-3$o%S&W#MyA!RNU7t4}`$dIhr#wGaQ9|Omhz}8gbE-+gFpS&OZ^$YM>?$`9Uo`URD@E^JdFxLNgf%R-x z-hk|H-&=HjKj$xHjhSnnXrsJxm<&6<42LqI2ZV7010kv7SVt93Y|YjSCuYKHAjDpX zvn%lCGT2FN3R|=FDbYZxu_H$J^2N5I}TS=Del- z;60#873k|9qMJ9*?=_hf{^}x^y0w`B?Vf_Mx#e8}H7k4 z;j15TUE3S84dB-;F@bpD;c3T$tipFk30QfkaWtPrCQSKh?;~;H6ZZk0hkE(LTE9uH zwKd6TW7eP&1M|L2d|HW*#LWEeN!1HYB}b5AZhY{=QG%EWV7D&qTC(Td{PT|)?|LtP zQ2WF~y#HLsBKnzEIc_@t^-*}F0(KXL>4LCbJo^zoU{H$>um%Xl6I| zjXwG;V$u&Sg_cF_UKGw&;ej&PRTOrLo5BP&B^s1+(t4$-r#xE5@rL?i6?AKC9t|=8 zA!#X8KrBu969W+9Mv8UwC_$9;kJG*yO+ZL~;K>TO^I<@K$P3)lUnel(V7gAswiFX1zyfG)-&!H1jhB4X=2*3HBvH*ZbK>OwAEH=xRUx&kKbHB^E72|BW z%OBRdEu98>=7h)JF=i)lE-U}~cXtCr9{87hCLHZaYD72R%7k;AIGnL@z5IStz!=va zsz3h^M&q->Ww>@hbqvruCy8rgb~VkR)cE4_uv45SWB7-eKmrBZNpr8X{=q1xs_;5o zyQpy|-CYEYqIvmUbz@RUzh?YUfBzZi8X&B9YFl`j=FMFayubUiP&ZLS&IGI%nE=u> z_S%Pz1Huhi!7%fD?lt(ajOm|zU>O*i5(}@x+gIS8k}xfjgp(pB9Ff{n)T&Vg2rrle zgkR&YW<6i`qAz~i_%;23CQKGV1cYocwh4Mr)jUDxr;Oyl(F$aTP2O=Kz!YK|XW@i8 zX=jr(CBg>65VNRLc@!{(rbMbufk?^MrS!8#H36Y5m{9C!w#9L$2MFJ~R{#8$B%vT7 z`ZT4RdVr9CJwoo`^vIF4zy^dEI?fgVxhdkWId3M^#CA+bda+vy5Prj`FX8Rg+HF;f zPxVI=Lc-`Zg*8^WUz33Ffh%ysqQxiN!h7&4RFAG)-@#y4p0>9QatufV8>mE%?!S?R)6)iWovmGXQdL-kgzx_tN|3 zNR_4lq005d^)gvX+2#G+=T!$k3Bz}*4t_XFa3U{Ub{-J^meKD0KVOC&ixz+Qp(
h>zlB(03l~G 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

+D_WS_MVFwnKhd%OxK4%*Q7FR_8}{m{4=foEMP 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 X+a^Pxm7cp&00000NkvXXu0mjfWlKBm literal 0 HcmV?d00001