Merge branch 'current' into next

This commit is contained in:
Jesse Hills 2024-04-10 11:40:29 +12:00
commit d6c38a14cd
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A
77 changed files with 114 additions and 2073 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 133 KiB

After

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 169 KiB

After

Width:  |  Height:  |  Size: 167 KiB

View File

@ -68,6 +68,12 @@ Release 2024.3.1 - March 27
- Don't compile strptime unless its required :esphomepr:`6424` by :ghuser:`gabest11`
- Fix editor live validation :esphomepr:`6431` by :ghuser:`bdraco`
Release 2024.3.2 - April 4
--------------------------
- Fix logger compile error on ESP32-C6 :esphomepr:`6323` by :ghuser:`DAVe3283`
- Add missing ethernet types :esphomepr:`6444` by :ghuser:`ssieb`
- fix: changing the content source when playing is paused blocks the player :esphomepr:`6454` by :ghuser:`NewoPL`
Thank you for your support
--------------------------

View File

@ -149,6 +149,35 @@ Configuration variables:
wake-up from a touch event. Note that no filter(s) is/are active during deep sleep.
- All other options from :ref:`Binary Sensor <config-binary_sensor>`.
Raw Values
----------
If access to the raw values is required, a template sensor can be created that polls for them:
.. code-block:: yaml
# Example configuration entry for accessing raw values
esp32_touch:
id: esp32_touch_1
binary_sensor:
- platform: esp32_touch
id: esp32_touch_pad
pin: GPIO4
threshold: 0
sensor:
- platform: template
name: "Raw touch value"
lambda: |-
return id(esp32_touch_pad).get_value();
update_interval: 3s
One example of use is a wide area pressure sensor that integrates a number of smaller sensors in an area. Make two strips
of aluminium foil that sandwich paper, and connect one wire to a touch pin and the other to ground. Set up several sensors
under a flexible object like a plastic mat, add the raw values, and apply a threshold.
.. _esp32-touch-pad-pins:
Touch Pad Pins

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -264,7 +264,7 @@ Configuration examples
clk_mode: GPIO17_OUT
phy_addr: 1
**LILYGO T-ETH-Lite**:
**LILYGO T-ETH-Lite ESP32**:
.. code-block:: yaml

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 89 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 730 KiB

After

Width:  |  Height:  |  Size: 727 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -50,7 +50,7 @@ Configuration variables:
- **current** (*Optional*): The current value of the sensor in Amperes. All options from
:ref:`Sensor <config-sensor>`.
- **power** (*Optional*): The (active) power value of the sensor in Watts. Note that some power meters will report this in negative values (probably wired backwards), so you may want to use a filter to multiply it by -1. All options from :ref:`Sensor <config-sensor>`.
- **energy** (*Optional*): Use the voltage value of the sensor in kWh.
- **energy** (*Optional*): Use the energy value of the sensor in kWh.
All options from :ref:`Sensor <config-sensor>`.
- **frequency** (*Optional*): The frequency value of the sensor in Hertz. All options from
:ref:`Sensor <config-sensor>`.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 52 KiB

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 614 KiB

After

Width:  |  Height:  |  Size: 611 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -1,88 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 125.72441 125.72436"
width="125.72441"
height="125.72436"
version="1.1"
id="svg7268"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<desc
id="desc7230">plate.dxf - scale = 1.0, origin = (0.0, 0.0), method = manual</desc>
<defs
id="defs7244">
<marker
id="DistanceX"
orient="auto"
refX="0"
refY="0"
style="overflow:visible">
<path
d="M 3,-3 -3,3 M 0,-5 V 5"
style="stroke:#000000;stroke-width:0.5"
id="path7232" />
</marker>
<pattern
id="Hatch"
patternUnits="userSpaceOnUse"
width="8"
height="8"
x="0"
y="0">
<path
d="M8 4 l-4,4"
stroke="#000000"
stroke-width="0.25"
linecap="square"
id="path7235" />
<path
d="M6 2 l-4,4"
stroke="#000000"
stroke-width="0.25"
linecap="square"
id="path7237" />
<path
d="M4 0 l-4,4"
stroke="#000000"
stroke-width="0.25"
linecap="square"
id="path7239" />
</pattern>
<symbol
id="*MODEL_SPACE" />
<symbol
id="*PAPER_SPACE" />
</defs>
<g
id="g7266"
transform="translate(62.862205,-1059.6575)">
<path
d="m 62.362205,1122.5197 a 62.362205,62.362205 0 1 0 -124.72441,0 62.362205,62.362205 0 1 0 124.72441,0 z"
style="fill:none;stroke:#000000"
id="path7246" />
<path
d="m -18.059243,1151.9175 a 11.338583,11.338583 0 1 0 -22.677165,0 11.338583,11.338583 0 1 0 22.677165,0 z"
style="fill:#800000;stroke:#000000"
id="path7250" />
<path
d="m 40.736408,1151.9175 a 11.338583,11.338583 0 1 0 -22.677165,0 11.338583,11.338583 0 1 0 22.677165,0 z"
style="fill:#800000;stroke:#000000"
id="path7252" />
<path
d="m 40.736408,1093.1219 a 11.338583,11.338583 0 1 0 -22.677165,0 11.338583,11.338583 0 1 0 22.677165,0 z"
style="fill:#800000;stroke:#000000"
id="path7254" />
<path
d="m -18.059243,1093.1219 a 11.338583,11.338583 0 1 0 -22.677165,0 11.338583,11.338583 0 1 0 22.677165,0 z"
style="fill:#800000;stroke:#000000"
id="path7256" />
<path
d="m -3.779528,1122.5197 a 9.448819,9.448819 0 1 0 -18.897637,0 9.448819,9.448819 0 1 0 18.897637,0 z"
style="fill:#008000;stroke:#000000"
id="path7262" />
<path
d="m 22.677165,1122.5197 a 9.448819,9.448819 0 1 0 -18.897637,0 9.448819,9.448819 0 1 0 18.897637,0 z"
style="fill:#008000;stroke:#000000"
id="path7264" />
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" id="svg7268" width="125.724" height="125.724" version="1.1" viewBox="0 0 125.724 125.724"><desc id="desc7230">plate.dxf - scale = 1.0, origin = (0.0, 0.0), method = manual</desc><defs id="defs7244"><marker id="DistanceX" orient="auto" refX="0" refY="0" style="overflow:visible"><path d="M 3,-3 -3,3 M 0,-5 V 5" style="stroke:#000;stroke-width:.5" id="path7232"/></marker><pattern id="Hatch" width="8" height="8" x="0" y="0" patternUnits="userSpaceOnUse"><path id="path7235" stroke="#000" stroke-width=".25" d="M8 4 l-4,4" linecap="square"/><path id="path7237" stroke="#000" stroke-width=".25" d="M6 2 l-4,4" linecap="square"/><path id="path7239" stroke="#000" stroke-width=".25" d="M4 0 l-4,4" linecap="square"/></pattern></defs><g id="g7266" transform="translate(62.862205,-1059.6575)"><path d="m 62.362205,1122.5197 a 62.362205,62.362205 0 1 0 -124.72441,0 62.362205,62.362205 0 1 0 124.72441,0 z" style="fill:none;stroke:#000" id="path7246"/><path d="m -18.059243,1151.9175 a 11.338583,11.338583 0 1 0 -22.677165,0 11.338583,11.338583 0 1 0 22.677165,0 z" style="fill:maroon;stroke:#000" id="path7250"/><path d="m 40.736408,1151.9175 a 11.338583,11.338583 0 1 0 -22.677165,0 11.338583,11.338583 0 1 0 22.677165,0 z" style="fill:maroon;stroke:#000" id="path7252"/><path d="m 40.736408,1093.1219 a 11.338583,11.338583 0 1 0 -22.677165,0 11.338583,11.338583 0 1 0 22.677165,0 z" style="fill:maroon;stroke:#000" id="path7254"/><path d="m -18.059243,1093.1219 a 11.338583,11.338583 0 1 0 -22.677165,0 11.338583,11.338583 0 1 0 22.677165,0 z" style="fill:maroon;stroke:#000" id="path7256"/><path d="m -3.779528,1122.5197 a 9.448819,9.448819 0 1 0 -18.897637,0 9.448819,9.448819 0 1 0 18.897637,0 z" style="fill:green;stroke:#000" id="path7262"/><path d="m 22.677165,1122.5197 a 9.448819,9.448819 0 1 0 -18.897637,0 9.448819,9.448819 0 1 0 18.897637,0 z" style="fill:green;stroke:#000" id="path7264"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 47 KiB

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -92,4 +92,6 @@ Platforms
See Also
--------
- :doc:`/guides/audio_clips_for_i2s`
- :doc:`/components/speaker/i2s_audio`
- :ghedit:`Edit`

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -47,7 +47,8 @@ adding the following to your configuration:
peer_endpoint: wg.server.example
peer_public_key: EeFfGgHh...=
# Optional netmask (this is the default if omitted)
# Optional netmask (this is the default, no outgoing traffic
# will pass through the tunnel if omitted)
netmask: 255.255.255.255
# Optional endpoint port (WireGuard default if omitted)

View File

@ -0,0 +1,58 @@
.. audio_clips_for_i2s:
Create audio clip files for use with I²S Speakers
=================================================
It is possible to create sound clips to include in your build to use with I²S speakers. No need for a media player component!
- Using `Audacity <https://github.com/audacity/audacity>`__, convert audio to WAV, mono, 16kHz, Unsigned 8bit PCM
.. figure:: /guides/images/save_as_wav.png
:alt: Audacity export dialog
:height: 200
:align: center
- Convert again, this time with `SOX <https://github.com/chirlu/sox>`__.
.. code-block:: console
sox startup.wav --bits 8 --encoding signed-integer --endian little startup_again.raw
- Now convert it into a hexadecimal string using `xxd <https://github.com/ckormanyos/xxd>`__ into a C++ file.
.. code-block:: console
xxd -i startup_again.raw startup.c
- The resulting file needs a modification in the start line:
Open in an editor and change
``unsigned char startup_again_raw[] = {…[SNIP]…}``
to
``std::vector<unsigned char> startup_raw = {…[SNIP]…}``.
Now you can rename the file to startup.h, put it inside the esphome configuration directory and put it in a include in your device config like this:
.. code-block:: yaml
esphome:
includes:
- startup.h
Now you can define using the audio clip using the following:
.. code-block:: yaml
- speaker.play:
id: speaker
data: !lambda return startup_raw;
Enjoy!
HowTo by [NUT].
See also
--------
- :doc:`/components/speaker/index`
- :doc:`/components/speaker/i2s_audio`
- :ghedit:`Edit`

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -164,6 +164,7 @@ Contributors
- `Pierre (@bemble) <https://github.com/bemble>`__
- `Ben-Schwabe (@Ben-Schwabe) <https://github.com/Ben-Schwabe>`__
- `Benas09 (@Benas09) <https://github.com/Benas09>`__
- `Ben Kristinsson (@benediktkr) <https://github.com/benediktkr>`__
- `Ben Hoff (@benhoff) <https://github.com/benhoff>`__
- `Benoît Leforestier (@Benichou34) <https://github.com/Benichou34>`__
- `Benjamin Aigner (@benjaminaigner) <https://github.com/benjaminaigner>`__
@ -443,6 +444,7 @@ Contributors
- `Maxime Michel (@Egglestron) <https://github.com/Egglestron>`__
- `Eike (@ei-ke) <https://github.com/ei-ke>`__
- `Elazar Leibovich (@elazarl) <https://github.com/elazarl>`__
- `Michael Jahn (@electr1cBugaloo) <https://github.com/electr1cBugaloo>`__
- `Eli (@eli-xciv) <https://github.com/eli-xciv>`__
- `Eli Lipsitz (@elipsitz) <https://github.com/elipsitz>`__
- `Eli Yu (@elizhyu) <https://github.com/elizhyu>`__
@ -476,7 +478,6 @@ Contributors
- `Everything Smart Home (@EverythingSmartHome) <https://github.com/EverythingSmartHome>`__
- `Evgeni Golov (@evgeni) <https://github.com/evgeni>`__
- `evlo (@evlo) <https://github.com/evlo>`__
- `Expaso (@Expaso) <https://github.com/Expaso>`__
- `Malte Franken (@exxamalte) <https://github.com/exxamalte>`__
- `f0rdprefect (@f0rdprefect) <https://github.com/f0rdprefect>`__
- `Fabian Affolter (@fabaff) <https://github.com/fabaff>`__
@ -537,7 +538,7 @@ Contributors
- `Giampiero Baggiani (@giampiero7) <https://github.com/giampiero7>`__
- `Gideon Kanikevich (@gid204) <https://github.com/gid204>`__
- `Giel Janssens (@gieljnssns) <https://github.com/gieljnssns>`__
- `Giovanni (@Gio-dot) <https://github.com/Gio-dot>`__
- `Giovanni (@gio-dot) <https://github.com/gio-dot>`__
- `git2212 (@git2212) <https://github.com/git2212>`__
- `github-actions[bot] (@github-actions[bot]) <https://github.com/github-actions[bot]>`__
- `gitolicious (@gitolicious) <https://github.com/gitolicious>`__
@ -754,7 +755,7 @@ Contributors
- `Thayne (@Legot) <https://github.com/Legot>`__
- `Leonardo La Rocca (@leoli51) <https://github.com/leoli51>`__
- `leoshusar (@leoshusar) <https://github.com/leoshusar>`__
- `Leo Winter (@LeoWinterDE) <https://github.com/LeoWinterDE>`__
- `Leo Winter (@leowinterde) <https://github.com/leowinterde>`__
- `Lubos Horacek (@lhoracek) <https://github.com/lhoracek>`__
- `Liionboy (@Liionboy) <https://github.com/Liionboy>`__
- `Juraj Liso (@LiJu09) <https://github.com/LiJu09>`__
@ -919,6 +920,7 @@ Contributors
- `Neil Martin (@neilmartin83) <https://github.com/neilmartin83>`__
- `Nejc Koncan (@nejc-cc) <https://github.com/nejc-cc>`__
- `Nerijus Baliūnas (@nerijus) <https://github.com/nerijus>`__
- `NewoPL (@NewoPL) <https://github.com/NewoPL>`__
- `Nicolas Graziano (@ngraziano) <https://github.com/ngraziano>`__
- `nickrout (@nickrout) <https://github.com/nickrout>`__
- `Nick Whyte (@nickw444) <https://github.com/nickw444>`__
@ -1129,7 +1131,6 @@ Contributors
- `SharkSharp (@SharkSharp) <https://github.com/SharkSharp>`__
- `Sebastiaan (@SharkWipf) <https://github.com/SharkWipf>`__
- `Alexander Dimitrov (@sharkydog) <https://github.com/sharkydog>`__
- `Fabio Todaro (@SharpEdgeMarshall) <https://github.com/SharpEdgeMarshall>`__
- `ShellAddicted (@ShellAddicted) <https://github.com/ShellAddicted>`__
- `shenxiaozheng (@shenxiaozheng) <https://github.com/shenxiaozheng>`__
- `sherbang (@sherbang) <https://github.com/sherbang>`__
@ -1196,7 +1197,6 @@ Contributors
- `Greg Lincoln (@tetious) <https://github.com/tetious>`__
- `Terry Hardie (@thardie) <https://github.com/thardie>`__
- `Craig Dean (@thargy) <https://github.com/thargy>`__
- `Michael Jahn (@thatSecOpsGuy) <https://github.com/thatSecOpsGuy>`__
- `thatslolo (@thatslolo) <https://github.com/thatslolo>`__
- `Avri Chen-Roth (@the-mentor) <https://github.com/the-mentor>`__
- `The-Paran0id-Andr0id (@The-Paran0id-Andr0id) <https://github.com/The-Paran0id-Andr0id>`__
@ -1234,6 +1234,7 @@ Contributors
- `Tinkerfish (@tinkerfish) <https://github.com/tinkerfish>`__
- `TJ Horner (@tjhorner) <https://github.com/tjhorner>`__
- `Christian (@Tntdruid) <https://github.com/Tntdruid>`__
- `Lars R. (@TNTLarsn) <https://github.com/TNTLarsn>`__
- `Philipp Tölke (@toelke) <https://github.com/toelke>`__
- `tomaszduda23 (@tomaszduda23) <https://github.com/tomaszduda23>`__
- `Tom Brien (@TomBrien) <https://github.com/TomBrien>`__
@ -1251,6 +1252,7 @@ Contributors
- `Trick van Staveren (@trickv) <https://github.com/trickv>`__
- `TripitakaBC (@TripitakaBC) <https://github.com/TripitakaBC>`__
- `Tobias (@tripplet) <https://github.com/tripplet>`__
- `tronikos (@tronikos) <https://github.com/tronikos>`__
- `Tyler Bules (@Troublebrewing) <https://github.com/Troublebrewing>`__
- `Troy K (@Troy-K) <https://github.com/Troy-K>`__
- `Olli Salonen (@trsqr) <https://github.com/trsqr>`__
@ -1334,4 +1336,4 @@ Contributors
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
*This page was last updated March 27, 2024.*
*This page was last updated April 4, 2024.*

View File

@ -1 +1 @@
<svg viewBox="0 0 132 25" id="svg5" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"><defs id="defs9"/><path d="M5 0H127a5 5 0 015 5v15a5 5 0 01-5 5H5a5 5 0 01-5-5V5a5 5 0 015-5z" style="fill:#000" id="path2"/><g aria-label="ade7880" id="component-text" style="font-weight:900;font-size:25px;font-family:Montserrat;letter-spacing:1.1px;fill:#fffffc"><path d="m14.525 21v-2.425l-.4-.65v-4.6q0-1-.625-1.525-.6-.525-1.975-.525-.925.0-1.875.3Q8.7 11.85 8.025 12.35l-1.8-3.725q1.2-.75 2.875-1.15t3.275-.4q3.525.0 5.45 1.575 1.95 1.575 1.95 5V21zm-3.875.25q-1.675.0-2.8-.575Q6.725 20.1 6.15 19.15 5.575 18.175 5.575 17q0-1.325.675-2.25t2.05-1.4q1.4-.475 3.525-.475h2.85V15.6h-1.95q-.9.0-1.325.3-.4.275-.4.85.0.475.35.8.375.3 1 .3.575.0 1.05-.3.5-.325.725-1l.725 1.675q-.325 1.525-1.375 2.275t-2.825.75z" id="path11"/><path d="m29.575005 21.25q-1.775.0-3.3-.85-1.5-.875-2.4-2.45-.9-1.6-.9-3.8t.9-3.775q.9-1.6 2.4-2.45 1.525-.85 3.3-.85 1.8.0 2.95.775 1.15.75 1.7 2.325.55 1.55.55 3.975.0 2.45-.525 4.025-.5 1.575-1.65 2.325-1.125.75-3.025.75zm1.35-4.4q.625.0 1.125-.3t.8-.9q.3-.625.3-1.5.0-.9-.3-1.475-.3-.6-.8-.9t-1.125-.3-1.125.3-.8.9q-.3.575-.3 1.475.0.875.3 1.5.3.6.8.9t1.125.3zm2.4 4.15v-1.85l-.025-5-.25-5v-6.7h5.65V21z" id="path13"/><path d="m49.850003 21.25q-2.5.0-4.375-.925-1.85-.925-2.875-2.525-1.025-1.625-1.025-3.65.0-2.075 1-3.675 1.025-1.6 2.775-2.5 1.775-.9 3.975-.9 2.025.0 3.725.8 1.725.8 2.75 2.375 1.05 1.575 1.05 3.9.0.3-.025.675-.025.35-.05.65h-10.525V12.75h7.525l-2.125.725q0-.8-.3-1.35-.275-.575-.775-.875-.5-.325-1.2-.325t-1.225.325q-.5.3-.775.875-.275.55-.275 1.35v.85q0 .875.35 1.5t1 .95q.65.3 1.575.3.95.0 1.55-.25.625-.25 1.3-.75l2.95 2.975q-1 1.075-2.475 1.65-1.45.55-3.5.55z" id="path15"/><path d="m61.07501 21 6.6-15.4 1.575 2.475h-8.3l2.3-2.675v5.225h-4.875V3.5h14.975V7.125L67.52501 21z" id="path17"/><path d="m83.175035 21.4q-2.325.0-4.1-.675-1.75-.7-2.75-1.95-1-1.275-1-2.975.0-1.7 1.025-2.9 1.025-1.2 2.8-1.825 1.775-.625 4.025-.625t4.025.625 2.8 1.825q1.025 1.2 1.025 2.9t-1 2.975q-1 1.25-2.775 1.95-1.75.675-4.075.675zm0-3.975q.85.0 1.375-.475.55-.5.55-1.35t-.55-1.325q-.525-.5-1.375-.5t-1.4.5q-.525.475-.525 1.325t.525 1.35q.55.475 1.4.475zm0-4.125q-2.05.0-3.7-.575-1.625-.6-2.575-1.7-.95-1.125-.95-2.7.0-1.6.925-2.75.925-1.175 2.55-1.825 1.625-.65 3.75-.65t3.75.65q1.625.65 2.55 1.825.925 1.15.925 2.75.0 1.575-.95 2.7-.95 1.1-2.575 1.7-1.625.575-3.7.575zm0-3.225q.6.0 1-.4t.4-1.1q0-.725-.4-1.1-.4-.4-1-.4t-1 .4q-.4.375-.4 1.1.0.7.4 1.1t1 .4z" id="path19"/><path d="m101.22502 21.4q-2.324997.0-4.099997-.675-1.75-.7-2.75-1.95-1-1.275-1-2.975.0-1.7 1.025-2.9 1.025-1.2 2.8-1.825 1.775-.625 4.024997-.625 2.25.0 4.025.625t2.8 1.825q1.025 1.2 1.025 2.9t-1 2.975q-1 1.25-2.775 1.95-1.75.675-4.075.675zm0-3.975q.85.0 1.375-.475.55-.5.55-1.35t-.55-1.325q-.525-.5-1.375-.5t-1.399997.5q-.525.475-.525 1.325t.525 1.35q.549997.475 1.399997.475zm0-4.125q-2.049997.0-3.699997-.575-1.625-.6-2.575-1.7-.95-1.125-.95-2.7.0-1.6.925-2.75.925-1.175 2.55-1.825 1.625-.65 3.749997-.65 2.125.0 3.75.65 1.625.65 2.55 1.825.925 1.15.925 2.75.0 1.575-.95 2.7-.95 1.1-2.575 1.7-1.625.575-3.7.575zm0-3.225q.6.0 1-.4t.4-1.1q0-.725-.4-1.1-.4-.4-1-.4t-1 .4q-.399997.375-.399997 1.1.0.7.399997 1.1.4.4 1 .4z" id="path21"/><path d="m119.45001 21.4q-2.325.0-4.125-1.075-1.775-1.075-2.8-3.125-1-2.05-1-4.95.0-2.9 1-4.95 1.025-2.05 2.8-3.125 1.8-1.075 4.125-1.075t4.1 1.075q1.8 1.075 2.8 3.125 1.025 2.05 1.025 4.95t-1.025 4.95q-1 2.05-2.8 3.125-1.775 1.075-4.1 1.075zm0-4.725q.575.0 1.025-.4.45-.4.7-1.375.275-.975.275-2.65.0-1.7-.275-2.65-.25-.975-.7-1.375t-1.025-.4-1.025.4-.725 1.375q-.25.95-.25 2.65.0 1.675.25 2.65.275.975.725 1.375.45.4 1.025.4z" id="path23"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" id="svg5" viewBox="0 0 132 25"><path d="M5 0H127a5 5 0 015 5v15a5 5 0 01-5 5H5a5 5 0 01-5-5V5a5 5 0 015-5z" style="fill:#000" id="path2"/><g id="component-text" aria-label="ade7880" style="font-weight:900;font-size:25px;font-family:Montserrat;letter-spacing:1.1px;fill:#fffffc"><path id="path11" d="m14.525 21v-2.425l-.4-.65v-4.6q0-1-.625-1.525-.6-.525-1.975-.525-.925.0-1.875.3Q8.7 11.85 8.025 12.35l-1.8-3.725q1.2-.75 2.875-1.15t3.275-.4q3.525.0 5.45 1.575 1.95 1.575 1.95 5V21zm-3.875.25q-1.675.0-2.8-.575Q6.725 20.1 6.15 19.15 5.575 18.175 5.575 17q0-1.325.675-2.25t2.05-1.4q1.4-.475 3.525-.475h2.85V15.6h-1.95q-.9.0-1.325.3-.4.275-.4.85.0.475.35.8.375.3 1 .3.575.0 1.05-.3.5-.325.725-1l.725 1.675q-.325 1.525-1.375 2.275t-2.825.75z"/><path id="path13" d="m29.575005 21.25q-1.775.0-3.3-.85-1.5-.875-2.4-2.45-.9-1.6-.9-3.8t.9-3.775q.9-1.6 2.4-2.45 1.525-.85 3.3-.85 1.8.0 2.95.775 1.15.75 1.7 2.325.55 1.55.55 3.975.0 2.45-.525 4.025-.5 1.575-1.65 2.325-1.125.75-3.025.75zm1.35-4.4q.625.0 1.125-.3t.8-.9q.3-.625.3-1.5.0-.9-.3-1.475-.3-.6-.8-.9t-1.125-.3-1.125.3-.8.9q-.3.575-.3 1.475.0.875.3 1.5.3.6.8.9t1.125.3zm2.4 4.15v-1.85l-.025-5-.25-5v-6.7h5.65V21z"/><path id="path15" d="m49.850003 21.25q-2.5.0-4.375-.925-1.85-.925-2.875-2.525-1.025-1.625-1.025-3.65.0-2.075 1-3.675 1.025-1.6 2.775-2.5 1.775-.9 3.975-.9 2.025.0 3.725.8 1.725.8 2.75 2.375 1.05 1.575 1.05 3.9.0.3-.025.675-.025.35-.05.65h-10.525V12.75h7.525l-2.125.725q0-.8-.3-1.35-.275-.575-.775-.875-.5-.325-1.2-.325t-1.225.325q-.5.3-.775.875-.275.55-.275 1.35v.85q0 .875.35 1.5t1 .95q.65.3 1.575.3.95.0 1.55-.25.625-.25 1.3-.75l2.95 2.975q-1 1.075-2.475 1.65-1.45.55-3.5.55z"/><path id="path17" d="m61.07501 21 6.6-15.4 1.575 2.475h-8.3l2.3-2.675v5.225h-4.875V3.5h14.975V7.125L67.52501 21z"/><path id="path19" d="m83.175035 21.4q-2.325.0-4.1-.675-1.75-.7-2.75-1.95-1-1.275-1-2.975.0-1.7 1.025-2.9 1.025-1.2 2.8-1.825 1.775-.625 4.025-.625t4.025.625 2.8 1.825q1.025 1.2 1.025 2.9t-1 2.975q-1 1.25-2.775 1.95-1.75.675-4.075.675zm0-3.975q.85.0 1.375-.475.55-.5.55-1.35t-.55-1.325q-.525-.5-1.375-.5t-1.4.5q-.525.475-.525 1.325t.525 1.35q.55.475 1.4.475zm0-4.125q-2.05.0-3.7-.575-1.625-.6-2.575-1.7-.95-1.125-.95-2.7.0-1.6.925-2.75.925-1.175 2.55-1.825 1.625-.65 3.75-.65t3.75.65q1.625.65 2.55 1.825.925 1.15.925 2.75.0 1.575-.95 2.7-.95 1.1-2.575 1.7-1.625.575-3.7.575zm0-3.225q.6.0 1-.4t.4-1.1q0-.725-.4-1.1-.4-.4-1-.4t-1 .4q-.4.375-.4 1.1.0.7.4 1.1t1 .4z"/><path id="path21" d="m101.22502 21.4q-2.324997.0-4.099997-.675-1.75-.7-2.75-1.95-1-1.275-1-2.975.0-1.7 1.025-2.9 1.025-1.2 2.8-1.825 1.775-.625 4.024997-.625 2.25.0 4.025.625t2.8 1.825q1.025 1.2 1.025 2.9t-1 2.975q-1 1.25-2.775 1.95-1.75.675-4.075.675zm0-3.975q.85.0 1.375-.475.55-.5.55-1.35t-.55-1.325q-.525-.5-1.375-.5t-1.399997.5q-.525.475-.525 1.325t.525 1.35q.549997.475 1.399997.475zm0-4.125q-2.049997.0-3.699997-.575-1.625-.6-2.575-1.7-.95-1.125-.95-2.7.0-1.6.925-2.75.925-1.175 2.55-1.825 1.625-.65 3.749997-.65 2.125.0 3.75.65 1.625.65 2.55 1.825.925 1.15.925 2.75.0 1.575-.95 2.7-.95 1.1-2.575 1.7-1.625.575-3.7.575zm0-3.225q.6.0 1-.4t.4-1.1q0-.725-.4-1.1-.4-.4-1-.4t-1 .4q-.399997.375-.399997 1.1.0.7.399997 1.1.4.4 1 .4z"/><path id="path23" d="m119.45001 21.4q-2.325.0-4.125-1.075-1.775-1.075-2.8-3.125-1-2.05-1-4.95.0-2.9 1-4.95 1.025-2.05 2.8-3.125 1.8-1.075 4.125-1.075t4.1 1.075q1.8 1.075 2.8 3.125 1.025 2.05 1.025 4.95t-1.025 4.95q-1 2.05-2.8 3.125-1.775 1.075-4.1 1.075zm0-4.725q.575.0 1.025-.4.45-.4.7-1.375.275-.975.275-2.65.0-1.7-.275-2.65-.25-.975-.7-1.375t-1.025-.4-1.025.4-.725 1.375q-.25.95-.25 2.65.0 1.675.25 2.65.275.975.725 1.375.45.4 1.025.4z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.6 KiB

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17,8H20V20H21V21H17V20H18V17H14L12.5,20H14V21H10V20H11L17,8M18,9L14.5,16H18V9M5,3H10C11.11,3 12,3.89 12,5V16H9V11H6V16H3V5C3,3.89 3.89,3 5,3M6,5V9H9V5H6Z" /></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17,8H20V20H21V21H17V20H18V17H14L12.5,20H14V21H10V20H11L17,8M18,9L14.5,16H18V9M5,3H10C11.11,3 12,3.89 12,5V16H9V11H6V16H3V5C3,3.89 3.89,3 5,3M6,5V9H9V5H6Z"/></svg>

Before

Width:  |  Height:  |  Size: 233 B

After

Width:  |  Height:  |  Size: 232 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -1 +1 @@
<svg width="240" height="240" viewBox="0 0 240 240" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M229.39 109.153L130.61 10.3725C124.78 4.5425 115.23 4.5425 109.4 10.3725L10.61 109.153C4.78 114.983 0 126.512 0 134.762V224.762C0 233.012 6.75 239.762 15 239.762H107.27L66.64 199.132C64.55 199.852 62.32 200.262 60 200.262C48.7 200.262 39.5 191.062 39.5 179.762C39.5 168.462 48.7 159.262 60 159.262C71.3 159.262 80.5 168.462 80.5 179.762C80.5 182.092 80.09 184.322 79.37 186.412L111 218.042V102.162C104.2 98.8225 99.5 91.8425 99.5 83.7725C99.5 72.4725 108.7 63.2725 120 63.2725C131.3 63.2725 140.5 72.4725 140.5 83.7725C140.5 91.8425 135.8 98.8225 129 102.162V183.432L160.46 151.972C159.84 150.012 159.5 147.932 159.5 145.772C159.5 134.472 168.7 125.272 180 125.272C191.3 125.272 200.5 134.472 200.5 145.772C200.5 157.072 191.3 166.272 180 166.272C177.5 166.272 175.12 165.802 172.91 164.982L129 208.892V239.772H225C233.25 239.772 240 233.022 240 224.772V134.772C240 126.522 235.23 115.002 229.39 109.162V109.153Z" fill="#1D2126"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" width="240" height="240" fill="none" viewBox="0 0 240 240"><path fill="#1D2126" d="M229.39 109.153L130.61 10.3725C124.78 4.5425 115.23 4.5425 109.4 10.3725L10.61 109.153C4.78 114.983 0 126.512 0 134.762V224.762C0 233.012 6.75 239.762 15 239.762H107.27L66.64 199.132C64.55 199.852 62.32 200.262 60 200.262C48.7 200.262 39.5 191.062 39.5 179.762C39.5 168.462 48.7 159.262 60 159.262C71.3 159.262 80.5 168.462 80.5 179.762C80.5 182.092 80.09 184.322 79.37 186.412L111 218.042V102.162C104.2 98.8225 99.5 91.8425 99.5 83.7725C99.5 72.4725 108.7 63.2725 120 63.2725C131.3 63.2725 140.5 72.4725 140.5 83.7725C140.5 91.8425 135.8 98.8225 129 102.162V183.432L160.46 151.972C159.84 150.012 159.5 147.932 159.5 145.772C159.5 134.472 168.7 125.272 180 125.272C191.3 125.272 200.5 134.472 200.5 145.772C200.5 157.072 191.3 166.272 180 166.272C177.5 166.272 175.12 165.802 172.91 164.982L129 208.892V239.772H225C233.25 239.772 240 233.022 240 224.772V134.772C240 126.522 235.23 115.002 229.39 109.162V109.153Z"/></svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -1 +1 @@
<svg viewBox="0 0 160 25" id="svg5" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"><defs id="defs9"/><path d="M5 0H155a5 5 0 015 5v15a5 5 0 01-5 5H5a5 5 0 01-5-5V5a5 5 0 015-5z" style="fill:#000" id="path2"/><g aria-label="MicroNova" id="component-text" style="font-weight:900;font-size:25px;font-family:Montserrat;letter-spacing:1.1px;fill:#fffffc"><path d="M6.425 21V3.5h4.85l7 11.425h-2.55L22.525 3.5h4.85L27.425 21H22.05L22 11.6h.85L18.2 19.425H15.6L10.75 11.6H11.8V21z" id="path11"/><path d="M31.200012 21V7.325h5.65V21zm2.825-14.775q-1.55.0-2.475-.825-.925-.825-.925-2.05.0-1.225.925-2.05.925-.825 2.475-.825 1.55.0 2.475.775.925.775.925 2 0 1.3-.925 2.15-.925.825-2.475.825z" id="path13"/><path d="m47.800016 21.25q-2.35.0-4.175-.9-1.825-.9-2.875-2.5-1.025-1.625-1.025-3.7t1.025-3.675q1.05-1.6 2.875-2.5t4.175-.9q2.5.0 4.275 1.075t2.45 2.975l-4.375 2.15q-.425-.95-1.05-1.375-.6-.425-1.325-.425-.625.0-1.175.3-.525.3-.85.9-.3.575-.3 1.475t.3 1.5q.325.6.85.9.55.3 1.175.3.725.0 1.325-.425.625-.425 1.05-1.375l4.375 2.15q-.675 1.9-2.45 2.975-1.775 1.075-4.275 1.075z" id="path15"/><path d="M56.925011 21V7.325h5.375v4.125l-.875-1.175q.625-1.6 2-2.4 1.375-.8 3.3-.8v5q-.375-.05-.675-.075-.275-.025-.575-.025-1.275.0-2.1.675-.8.65-.8 2.275V21z" id="path17"/><path d="m76.525018 21.25q-2.325.0-4.125-.9-1.775-.925-2.8-2.525-1.025-1.6-1.025-3.675t1.025-3.675q1.025-1.6 2.8-2.5 1.8-.9 4.125-.9t4.125.9 2.8 2.5q1.025 1.6 1.025 3.675t-1.025 3.675q-1 1.6-2.8 2.525-1.8.9-4.125.9zm0-4.4q.625.0 1.125-.3t.8-.9q.3-.625.3-1.5.0-.9-.3-1.475-.3-.6-.8-.9t-1.125-.3-1.125.3-.8.9q-.3.575-.3 1.475.0.875.3 1.5.3.6.8.9t1.125.3z" id="path19"/><path d="M87.525006 21V3.5h4.85l8.900004 10.65H99.025006V3.5h5.750004V21h-4.850004l-8.9-10.65h2.25V21z" id="path21"/><path d="m115.77503 21.25q-2.325.0-4.125-.9-1.775-.925-2.8-2.525-1.025-1.6-1.025-3.675t1.025-3.675q1.025-1.6 2.8-2.5 1.8-.9 4.125-.9t4.125.9 2.8 2.5q1.025 1.6 1.025 3.675t-1.025 3.675q-1 1.6-2.8 2.525-1.8.9-4.125.9zm0-4.4q.625.0 1.125-.3t.8-.9q.3-.625.3-1.5.0-.9-.3-1.475-.3-.6-.8-.9t-1.125-.3-1.125.3-.8.9q-.3.575-.3 1.475.0.875.3 1.5.3.6.8.9t1.125.3z" id="path23"/><path d="m130.10003 21-5.5-13.675h5.8l4.175 11.1h-2.925l4.45-11.1h5.35l-5.5 13.675z" id="path25"/><path d="m151.19999 21v-2.425l-.4-.65v-4.6q0-1-.625-1.525-.6-.525-1.975-.525-.925.0-1.875.3-.95.275-1.625.775l-1.8-3.725q1.2-.75 2.875-1.15t3.275-.4q3.525.0 5.45 1.575 1.95 1.575 1.95 5V21zm-3.875.25q-1.675.0-2.8-.575t-1.7-1.525q-.575-.975-.575-2.15.0-1.325.675-2.25t2.05-1.4q1.4-.475 3.525-.475h2.85V15.6h-1.95q-.9.0-1.325.3-.4.275-.4.85.0.475.35.8.375.3 1 .3.575.0 1.05-.3.5-.325.725-1l.725 1.675q-.325 1.525-1.375 2.275t-2.825.75z" id="path27"/></g></svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" id="svg5" viewBox="0 0 160 25"><path d="M5 0H155a5 5 0 015 5v15a5 5 0 01-5 5H5a5 5 0 01-5-5V5a5 5 0 015-5z" style="fill:#000" id="path2"/><g id="component-text" aria-label="MicroNova" style="font-weight:900;font-size:25px;font-family:Montserrat;letter-spacing:1.1px;fill:#fffffc"><path id="path11" d="M6.425 21V3.5h4.85l7 11.425h-2.55L22.525 3.5h4.85L27.425 21H22.05L22 11.6h.85L18.2 19.425H15.6L10.75 11.6H11.8V21z"/><path id="path13" d="M31.200012 21V7.325h5.65V21zm2.825-14.775q-1.55.0-2.475-.825-.925-.825-.925-2.05.0-1.225.925-2.05.925-.825 2.475-.825 1.55.0 2.475.775.925.775.925 2 0 1.3-.925 2.15-.925.825-2.475.825z"/><path id="path15" d="m47.800016 21.25q-2.35.0-4.175-.9-1.825-.9-2.875-2.5-1.025-1.625-1.025-3.7t1.025-3.675q1.05-1.6 2.875-2.5t4.175-.9q2.5.0 4.275 1.075t2.45 2.975l-4.375 2.15q-.425-.95-1.05-1.375-.6-.425-1.325-.425-.625.0-1.175.3-.525.3-.85.9-.3.575-.3 1.475t.3 1.5q.325.6.85.9.55.3 1.175.3.725.0 1.325-.425.625-.425 1.05-1.375l4.375 2.15q-.675 1.9-2.45 2.975-1.775 1.075-4.275 1.075z"/><path id="path17" d="M56.925011 21V7.325h5.375v4.125l-.875-1.175q.625-1.6 2-2.4 1.375-.8 3.3-.8v5q-.375-.05-.675-.075-.275-.025-.575-.025-1.275.0-2.1.675-.8.65-.8 2.275V21z"/><path id="path19" d="m76.525018 21.25q-2.325.0-4.125-.9-1.775-.925-2.8-2.525-1.025-1.6-1.025-3.675t1.025-3.675q1.025-1.6 2.8-2.5 1.8-.9 4.125-.9t4.125.9 2.8 2.5q1.025 1.6 1.025 3.675t-1.025 3.675q-1 1.6-2.8 2.525-1.8.9-4.125.9zm0-4.4q.625.0 1.125-.3t.8-.9q.3-.625.3-1.5.0-.9-.3-1.475-.3-.6-.8-.9t-1.125-.3-1.125.3-.8.9q-.3.575-.3 1.475.0.875.3 1.5.3.6.8.9t1.125.3z"/><path id="path21" d="M87.525006 21V3.5h4.85l8.900004 10.65H99.025006V3.5h5.750004V21h-4.850004l-8.9-10.65h2.25V21z"/><path id="path23" d="m115.77503 21.25q-2.325.0-4.125-.9-1.775-.925-2.8-2.525-1.025-1.6-1.025-3.675t1.025-3.675q1.025-1.6 2.8-2.5 1.8-.9 4.125-.9t4.125.9 2.8 2.5q1.025 1.6 1.025 3.675t-1.025 3.675q-1 1.6-2.8 2.525-1.8.9-4.125.9zm0-4.4q.625.0 1.125-.3t.8-.9q.3-.625.3-1.5.0-.9-.3-1.475-.3-.6-.8-.9t-1.125-.3-1.125.3-.8.9q-.3.575-.3 1.475.0.875.3 1.5.3.6.8.9t1.125.3z"/><path id="path25" d="m130.10003 21-5.5-13.675h5.8l4.175 11.1h-2.925l4.45-11.1h5.35l-5.5 13.675z"/><path id="path27" d="m151.19999 21v-2.425l-.4-.65v-4.6q0-1-.625-1.525-.6-.525-1.975-.525-.925.0-1.875.3-.95.275-1.625.775l-1.8-3.725q1.2-.75 2.875-1.15t3.275-.4q3.525.0 5.45 1.575 1.95 1.575 1.95 5V21zm-3.875.25q-1.675.0-2.8-.575t-1.7-1.525q-.575-.975-.575-2.15.0-1.325.675-2.25t2.05-1.4q1.4-.475 3.525-.475h2.85V15.6h-1.95q-.9.0-1.325.3-.4.275-.4.85.0.475.35.8.375.3 1 .3.575.0 1.05-.3.5-.325.725-1l.725 1.675q-.325 1.525-1.375 2.275t-2.825.75z"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -1,4 +1 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.0" width="105" height="27" viewBox="-0.561 -0.624 105 27" id="svg2217" xml:space="preserve">
<g id="g2241"><path d="M 26.743,0 C 22.23,0 18.574,3.659 18.574,8.171 L 18.574,11.094 L 18.572,11.094 L 18.572,23.803 C 18.572,24.807 19.387,25.62 20.387,25.62 L 22.201,25.62 C 23.206,25.62 24.02,24.807 24.02,23.803 L 24.02,19.707 C 24.871,20.009 25.786,20.172 26.742,20.172 C 31.256,20.172 34.913,16.514 34.913,12.002 L 34.913,8.171 C 34.914,3.659 31.257,0 26.743,0 M 29.467,13.818 C 29.467,15.322 28.246,16.541 26.743,16.541 C 25.239,16.541 24.021,15.322 24.021,13.818 L 24.021,6.357 C 24.021,4.852 25.239,3.631 26.743,3.631 C 28.246,3.631 29.467,4.852 29.467,6.357 L 29.467,13.818 z " style="fill: rgb(0, 116, 190); fill-rule: evenodd;" id="path2221"/><path d="M 14.522,0 L 12.707,0 C 11.704,0 10.893,0.813 10.893,1.816 L 10.893,13.818 C 10.893,15.322 9.673,16.541 8.168,16.541 C 6.665,16.541 5.445,15.322 5.445,13.818 L 5.445,1.816 C 5.445,0.813 4.633,0 3.63,0 L 1.815,0 C 0.813,0 0,0.813 0,1.816 L 0,12.002 C 0,16.514 3.657,20.172 8.168,20.172 C 12.68,20.172 16.338,16.514 16.338,12.002 L 16.338,1.816 C 16.338,0.813 15.524,0 14.522,0" style="fill: rgb(0, 116, 190); fill-rule: evenodd;" id="path2223"/><path d="M 101.95,0 L 101.041,0 C 96.528,0 92.873,3.659 92.873,8.171 L 92.873,18.357 C 92.873,19.359 93.683,20.172 94.687,20.172 L 96.503,20.172 C 97.504,20.172 98.315,19.359 98.315,18.357 L 98.315,6.357 C 98.315,4.852 99.536,3.631 101.041,3.631 L 101.95,3.631 C 102.952,3.631 103.764,2.819 103.764,1.816 C 103.764,0.813 102.952,0 101.95,0" style="fill: rgb(0, 116, 190); fill-rule: evenodd;" id="path2225"/><path d="M 82.467,0 C 77.956,0 74.296,3.659 74.296,8.171 L 74.296,12.002 C 74.296,16.514 77.956,20.172 82.467,20.172 C 86.978,20.172 90.638,16.514 90.638,12.002 L 90.638,8.171 C 90.638,3.659 86.978,0 82.467,0 M 85.188,13.818 C 85.188,15.322 83.97,16.541 82.466,16.541 C 80.961,16.541 79.742,15.322 79.742,13.818 L 79.742,6.357 C 79.742,4.852 80.961,3.631 82.466,3.631 C 83.97,3.631 85.188,4.852 85.188,6.357 L 85.188,13.818 z " style="fill: rgb(0, 116, 190); fill-rule: evenodd;" id="path2227"/><path d="M 63.892,0 C 59.379,0 55.722,3.659 55.722,8.171 L 55.722,18.357 C 55.722,19.359 56.535,20.172 57.539,20.172 L 59.353,20.172 C 60.356,20.172 61.169,19.359 61.169,18.357 L 61.169,6.357 C 61.169,4.852 62.388,3.631 63.891,3.631 C 65.395,3.631 66.616,4.852 66.616,6.357 L 66.616,18.357 C 66.616,19.359 67.429,20.172 68.43,20.172 L 70.245,20.172 C 71.251,20.172 72.062,19.359 72.062,18.357 L 72.062,8.171 C 72.063,3.659 68.405,0 63.892,0" style="fill: rgb(0, 116, 190); fill-rule: evenodd;" id="path2231"/><path d="M 45.317,0 C 40.806,0 37.149,3.659 37.149,8.171 L 37.149,12.002 C 37.149,16.514 40.806,20.172 45.317,20.172 C 49.831,20.172 53.488,16.514 53.488,12.002 L 53.488,8.171 C 53.488,3.659 49.831,0 45.317,0 M 48.041,13.818 C 48.041,15.322 46.821,16.541 45.317,16.541 C 43.814,16.541 42.593,15.322 42.593,13.818 L 42.593,6.357 C 42.593,4.852 43.814,3.631 45.317,3.631 C 46.821,3.631 48.041,4.852 48.041,6.357 L 48.041,13.818 z " style="fill: rgb(0, 116, 190); fill-rule: evenodd;" id="path2233"/></g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg" id="svg2217" width="105" height="27" version="1.0" viewBox="-0.561 -0.624 105 27" xml:space="preserve"><g id="g2241"><path d="M 26.743,0 C 22.23,0 18.574,3.659 18.574,8.171 L 18.574,11.094 L 18.572,11.094 L 18.572,23.803 C 18.572,24.807 19.387,25.62 20.387,25.62 L 22.201,25.62 C 23.206,25.62 24.02,24.807 24.02,23.803 L 24.02,19.707 C 24.871,20.009 25.786,20.172 26.742,20.172 C 31.256,20.172 34.913,16.514 34.913,12.002 L 34.913,8.171 C 34.914,3.659 31.257,0 26.743,0 M 29.467,13.818 C 29.467,15.322 28.246,16.541 26.743,16.541 C 25.239,16.541 24.021,15.322 24.021,13.818 L 24.021,6.357 C 24.021,4.852 25.239,3.631 26.743,3.631 C 28.246,3.631 29.467,4.852 29.467,6.357 L 29.467,13.818 z" style="fill:#0074be;fill-rule:evenodd" id="path2221"/><path d="M 14.522,0 L 12.707,0 C 11.704,0 10.893,0.813 10.893,1.816 L 10.893,13.818 C 10.893,15.322 9.673,16.541 8.168,16.541 C 6.665,16.541 5.445,15.322 5.445,13.818 L 5.445,1.816 C 5.445,0.813 4.633,0 3.63,0 L 1.815,0 C 0.813,0 0,0.813 0,1.816 L 0,12.002 C 0,16.514 3.657,20.172 8.168,20.172 C 12.68,20.172 16.338,16.514 16.338,12.002 L 16.338,1.816 C 16.338,0.813 15.524,0 14.522,0" style="fill:#0074be;fill-rule:evenodd" id="path2223"/><path d="M 101.95,0 L 101.041,0 C 96.528,0 92.873,3.659 92.873,8.171 L 92.873,18.357 C 92.873,19.359 93.683,20.172 94.687,20.172 L 96.503,20.172 C 97.504,20.172 98.315,19.359 98.315,18.357 L 98.315,6.357 C 98.315,4.852 99.536,3.631 101.041,3.631 L 101.95,3.631 C 102.952,3.631 103.764,2.819 103.764,1.816 C 103.764,0.813 102.952,0 101.95,0" style="fill:#0074be;fill-rule:evenodd" id="path2225"/><path d="M 82.467,0 C 77.956,0 74.296,3.659 74.296,8.171 L 74.296,12.002 C 74.296,16.514 77.956,20.172 82.467,20.172 C 86.978,20.172 90.638,16.514 90.638,12.002 L 90.638,8.171 C 90.638,3.659 86.978,0 82.467,0 M 85.188,13.818 C 85.188,15.322 83.97,16.541 82.466,16.541 C 80.961,16.541 79.742,15.322 79.742,13.818 L 79.742,6.357 C 79.742,4.852 80.961,3.631 82.466,3.631 C 83.97,3.631 85.188,4.852 85.188,6.357 L 85.188,13.818 z" style="fill:#0074be;fill-rule:evenodd" id="path2227"/><path d="M 63.892,0 C 59.379,0 55.722,3.659 55.722,8.171 L 55.722,18.357 C 55.722,19.359 56.535,20.172 57.539,20.172 L 59.353,20.172 C 60.356,20.172 61.169,19.359 61.169,18.357 L 61.169,6.357 C 61.169,4.852 62.388,3.631 63.891,3.631 C 65.395,3.631 66.616,4.852 66.616,6.357 L 66.616,18.357 C 66.616,19.359 67.429,20.172 68.43,20.172 L 70.245,20.172 C 71.251,20.172 72.062,19.359 72.062,18.357 L 72.062,8.171 C 72.063,3.659 68.405,0 63.892,0" style="fill:#0074be;fill-rule:evenodd" id="path2231"/><path d="M 45.317,0 C 40.806,0 37.149,3.659 37.149,8.171 L 37.149,12.002 C 37.149,16.514 40.806,20.172 45.317,20.172 C 49.831,20.172 53.488,16.514 53.488,12.002 L 53.488,8.171 C 53.488,3.659 49.831,0 45.317,0 M 48.041,13.818 C 48.041,15.322 46.821,16.541 45.317,16.541 C 43.814,16.541 42.593,15.322 42.593,13.818 L 42.593,6.357 C 42.593,4.852 43.814,3.631 45.317,3.631 C 46.821,3.631 48.041,4.852 48.041,6.357 L 48.041,13.818 z" style="fill:#0074be;fill-rule:evenodd" id="path2233"/></g></svg>

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 24 KiB