Copy airline logos and SCSS from Angular to React
@@ -0,0 +1,189 @@
|
||||
$width-base: 120px;
|
||||
$height-base: 36px;
|
||||
|
||||
@mixin scale($base, $ratio: 0.25, $scale: 1.5) {
|
||||
width: $base;
|
||||
height: $base * $ratio;
|
||||
|
||||
&.large {
|
||||
width: $base * $scale;
|
||||
height: $base * $scale * $ratio;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
width: $base * 0.75;
|
||||
height: $base * $ratio * 0.75;
|
||||
|
||||
&.large {
|
||||
width: $base * $scale * 0.75;
|
||||
height: $base * $scale * $ratio * 0.75;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.company-logo {
|
||||
display: inline-block;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-position: left top;
|
||||
|
||||
@include scale($width-base);
|
||||
|
||||
&.round {
|
||||
width: $height-base !important;
|
||||
height: $height-base !important;
|
||||
}
|
||||
|
||||
&--SU {
|
||||
@include scale($width-base, 0.258);
|
||||
background-image: url('./airlines-logo/aeroflot/large/en.png') !important;
|
||||
|
||||
&.ru { background-image: url('./airlines-logo/aeroflot/large/ru.png') !important; }
|
||||
&.round { background-image: url('./airlines-logo/aeroflot/round.png') !important; }
|
||||
}
|
||||
|
||||
&--HZ {
|
||||
@include scale(80px, 0.5556);
|
||||
background-image: url('./airlines-logo/aurora/large/en.svg') !important;
|
||||
|
||||
&.ru { background-image: url('./airlines-logo/aurora/large/ru.svg') !important; }
|
||||
&.round { background-image: url('./airlines-logo/aurora/round.png') !important; }
|
||||
}
|
||||
|
||||
&--F7 {
|
||||
@include scale($width-base, 0.258);
|
||||
background-image: url('./airlines-logo/aeroflot/large/en.png') !important;
|
||||
|
||||
&.ru { background-image: url('./airlines-logo/aeroflot/large/ru.png') !important; }
|
||||
&.round { background-image: url('./airlines-logo/aeroflot/round.png') !important; }
|
||||
}
|
||||
|
||||
&--FV {
|
||||
@include scale(90px, 0.1667);
|
||||
background-image: url('./airlines-logo/rossiya/large/en.svg') !important;
|
||||
|
||||
&.ru { background-image: url('./airlines-logo/rossiya/large/ru.svg') !important; }
|
||||
&.round { background-image: url('./airlines-logo/rossiya/round.png') !important; }
|
||||
}
|
||||
|
||||
&--RO {
|
||||
@include scale($width-base, 0.3334);
|
||||
background-image: url('./airlines-logo/tarom/large.png') !important;
|
||||
&.round { background-image: url('./airlines-logo/tarom/round.svg') !important; }
|
||||
}
|
||||
|
||||
&--DP {
|
||||
@include scale($width-base, 0.1889);
|
||||
background-image: url('./airlines-logo/pobeda/large.svg') !important;
|
||||
&.round { background-image: url('./airlines-logo/pobeda/round.png') !important; }
|
||||
}
|
||||
|
||||
&--OM {
|
||||
background-image: url('./airlines-logo/miat/large.svg') !important;
|
||||
&.round { background-image: url('./airlines-logo/miat/round.svg') !important; }
|
||||
}
|
||||
|
||||
&--KL {
|
||||
@include scale($width-base, 0.4444);
|
||||
background-image: url('./airlines-logo/klm/large.png') !important;
|
||||
&.round { background-image: url('./airlines-logo/klm/round.png') !important; }
|
||||
}
|
||||
|
||||
&--AY {
|
||||
background-image: url('./airlines-logo/finnair/large.svg') !important;
|
||||
&.round { background-image: url('./airlines-logo/finnair/round.png') !important; }
|
||||
}
|
||||
|
||||
&--DL {
|
||||
background-image: url('./airlines-logo/delta/large.svg') !important;
|
||||
&.round { background-image: url('./airlines-logo/delta/round.png') !important; }
|
||||
}
|
||||
|
||||
&--OK {
|
||||
background-image: url('./airlines-logo/czech-airline/large.png') !important;
|
||||
&.round { background-image: url('./airlines-logo/czech-airline/round.svg') !important; }
|
||||
}
|
||||
|
||||
&--JU {
|
||||
background-image: url('./airlines-logo/air-serbia/large.svg') !important;
|
||||
&.round { background-image: url('./airlines-logo/air-serbia/round.svg') !important; }
|
||||
}
|
||||
|
||||
&--UX {
|
||||
background-image: url('./airlines-logo/air-europa/large.svg') !important;
|
||||
&.round { background-image: url('./airlines-logo/air-europa/round.svg') !important; }
|
||||
}
|
||||
|
||||
&--BT {
|
||||
background-image: url('./airlines-logo/air-baltic/large.svg') !important;
|
||||
&.round { background-image: url('./airlines-logo/air-baltic/round.svg') !important; }
|
||||
}
|
||||
|
||||
&--AM {
|
||||
background-image: url('./airlines-logo/aeromexico/large.svg') !important;
|
||||
&.round { background-image: url('./airlines-logo/aeromexico/round.svg') !important; }
|
||||
}
|
||||
|
||||
&--AR {
|
||||
background-image: url('./airlines-logo/aerolineas-argentinas/large.png') !important;
|
||||
&.round { background-image: url('./airlines-logo/aerolineas-argentinas/round.svg') !important; }
|
||||
}
|
||||
|
||||
&--KM {
|
||||
background-image: url('./airlines-logo/airmalta/large.svg') !important;
|
||||
}
|
||||
|
||||
&--AF {
|
||||
@include scale($width-base, 0.1222);
|
||||
background-image: url('./airlines-logo/airfrance/large.svg') !important;
|
||||
}
|
||||
|
||||
&--AZ {
|
||||
@include scale($width-base, 0.2444);
|
||||
background-image: url('./airlines-logo/alitalia/large.svg') !important;
|
||||
}
|
||||
|
||||
&--PG {
|
||||
background-image: url('./airlines-logo/bangkok-airways/large.png') !important;
|
||||
}
|
||||
|
||||
&--SN {
|
||||
@include scale($width-base, 0.1667);
|
||||
background-image: url('./airlines-logo/brussels-airlines/large.png') !important;
|
||||
}
|
||||
|
||||
&--FB {
|
||||
@include scale($width-base, 0.296);
|
||||
background-image: url('./airlines-logo/bulgaria-air/large.png') !important;
|
||||
}
|
||||
|
||||
&--CI {
|
||||
@include scale($width-base, 0.1556);
|
||||
background-image: url('./airlines-logo/china-airlines/large.png') !important;
|
||||
}
|
||||
|
||||
&--MU { background-image: url('./airlines-logo/china-eastern/large.svg') !important; }
|
||||
&--CZ { background-image: url('./airlines-logo/china-southern/large.svg') !important; }
|
||||
&--GA { background-image: url('./airlines-logo/garuda-indonesia/large.png') !important; }
|
||||
&--FI { background-image: url('./airlines-logo/icelandair/large.svg') !important; }
|
||||
&--KO { background-image: url('./airlines-logo/kenya-airways/large.svg') !important; }
|
||||
&--KE { background-image: url('./airlines-logo/korean-air/large.svg') !important; }
|
||||
&--JL { background-image: url('./airlines-logo/japan-airlines/large.svg') !important; }
|
||||
&--LO { background-image: url('./airlines-logo/polish-airlines/large.png') !important; }
|
||||
&--ME { background-image: url('./airlines-logo/mea/large.png') !important; }
|
||||
|
||||
&--S7 {
|
||||
@include scale($width-base, 0.3333);
|
||||
background-image: url('./airlines-logo/s7/large.svg') !important;
|
||||
}
|
||||
|
||||
&--SV { background-image: url('./airlines-logo/saudi-arabian-airlines/large.png') !important; }
|
||||
&--VN { background-image: url('./airlines-logo/vietnam-airlines/large.png') !important; }
|
||||
&--MF { background-image: url('./airlines-logo/vietnam-airlines/large.png') !important; }
|
||||
}
|
||||
|
||||
.operator-logo__caption {
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 154.46 152.79"><defs><clipPath id="clip-path" transform="translate(2.3 0.66)"><path d="M75,0A75,75,0,1,1,0,75,75,75,0,0,1,75,0Z" style="fill:none;clip-rule:evenodd"/></clipPath></defs><g id="Слой_2" data-name="Слой 2"><g id="Слой_1-2" data-name="Слой 1"><g style="clip-path:url(#clip-path)"><image width="72" height="71" transform="matrix(2.15, 0, 0, -2.15, 0, 152.79)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEkAAABJCAYAAABxcwvcAAAACXBIWXMAAAU6AAAFOgE+3gFaAAAFj0lEQVR4Xu3av28b1wHA8e/du99HnkiK+mHKkm1FjofISGIj6C90qNGOBbJ1KbLkf+jQKcj/0KnI0qno1CFAlgAtkABxAg9BnBQ14giRjTiOJEoUyTve8X5loC3aFiM9y5JiJO8DCCBP7yjxy3vHdwQ17y/vlygH0g8boKhIUlQkCSqSBBVJgookQUWSoCJJUJEkqEgSVCQJKpIEFUmCiiRBRZKgIklQkSSoSBJUJAkqkgQVSYKKJEFFkqAiSVCRJKhIEoyHN5oVm8VZjz9earA6W8E2j9ZvN87YDIfsxtmB44SuMeWYLNZsDE07cOxJ+v3Fxr5tf//kHu/c+Jab6x3gkUjdQcqd70L+0Rtim4LFusPFpstKw2Fl2uOFpkfVFvse8ElZXpIWJWleHDhO0zQMXcMWOvrRXo8T85+1DpudeO/+XqRhXtAOh7TDIQDtbsLdnZgv6w6LQcjClE3dNfBtg6otWAhsLKHjWwaBLZitmPv/2o+sn+R8uN7hbicB4EqrwuUzVSwx+ciNs4Lrd7p8/m2f7f5wb/tepCdt9RO2+gm37nX3tlVtg6pv0gwcrrYq1F2Dpm9xrm6zOldF6GDoGqauYQgNoY1vW0JHP+VZtREOeefGfT6+vQ3Am79eZHnaw3INihKyoqQoS7K8pD/M+WY35m/Xv2FjZ8DwkZnwnB3oz6cfPJIm6SUZvSTj3vaAz77e2ff7ZsVmOrCZCSxemfepOQbn6i4XGg5zFYvlhjvhUU9WN8mI0xxd0/h8IyTJRkdINMy5tRmyM8i43Y74YL3H9a+2ub87Phc9pB3nl7gsMTowTaHhmKOTvKaNppsuNISuMV+zWQhczlRNLjU9fEvQ8AyWGx4vNo83YlHCzft9/v3FFv/69D7tbkLVNxG6Rl6UFPnoqWd5SZLmJFnx2DR76FgjyQgcE88WOJag6pkYQsO3BNOuyeKUxZWFgFdbVZZqNgCO8WxnhDgruN2O+Gi9y7v/b/PRl23CYX7Ybo95qul2HLpxSjdO9223hI4pND5drnNtO+Laymj98trZYN/Yp+EYOqtzFc7XXALHIM4L1jZCdvtD6VjC/M0bbx026DTkZUmal9zZirhxp4ttC/63EfKHCYu9o7AMndU5n1dbFeK85G43oRvtf7EmOfXpdphWw+XPV1u8/lITgJfPVA7Z4+nFWcF/13b463trjy1xfsipT7cnNSs2rabH5VmPCw2HX52rsVSzmfWtw3Y9MkvorEz7/OnlGd5+HiPNTzn4rkngGbzY8FiYsliqOVxouCzVnGN/h5tE1yCwBZdm/cOGAiccyRI6jimwDB1DaJimzuWFgNVZn4tNl99eqLEQ2Ke+EgcoypI8lzvTnGikxRmfXy4FXFmosDLtTbzi/jGMlgUD/nlz87ChwDFHajVclmd9fnE24NoLdZZqNhXLwDNHR9Jp6MQZW2HGZji6qA2HBe0opfvgo5tbWxE3vwtZ34ro9MYXsQd55ki+JZiZcvjdSp3VeZ/zDZezUzbnay6eJaSmUifO2BlkpI8c/r0Ha6mdeLyW6Q8zeklOd5A+si1ne5ARDUcr5SQr6KfF3hoozguSLCdOR4/di9LRT5xNXF1PcuRID1fO0zWbV+YqvP7SDEt1F1NolGXJRjiEEKI0Z5CO/5msKEmykjgbP/nNMGU7yoiG4w/qOg9e+c3+eFt7kLKbpHSj8b69OH2qheFRHDnS+fkKV1sVVuc8VqY9AD6+u8t2lBGn4yd2azNmrRPt3Y/SgnYnmXgh+bw6cqTPvt6Z+EnAT9GzXT3+TKhIElQkCSqSBBVJgookQUWSoCJJUJEkqEgSVCQJKpIEFUmCiiRBRZKgIklQkSSoSBJUJAkqkgQVSYKKJEFFkqAiSVCRJGhlKfcdnZ+z7wEHyenbu09HiAAAAABJRU5ErkJggg=="/></g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 990.75 150">
|
||||
<g data-name="Слой 2">
|
||||
<g data-name="Layer 1">
|
||||
<path d="M834.64 102.41a5.88 5.88 0 1 0 5.94 5.86 5.88 5.88 0 0 0-5.94-5.86Zm0 10.79a4.91 4.91 0 1 1 4.76-4.93 4.77 4.77 0 0 1-4.76 4.93Z" style="fill:#003361"/>
|
||||
<path d="M835.58 108.68a1.73 1.73 0 0 0 1.76-1.84c0-1.35-.78-1.94-2.4-1.94h-2.58v6.78h1v-2.94h1.19l1.79 2.94h1.15l-1.93-3Zm-2.2-.81v-2.1h1.4c.71 0 1.48.14 1.48 1 0 1-.77 1.1-1.63 1.1ZM132 45.38a15.13 15.13 0 0 1 6.7 1.7c3.45 1.64 7.5 3.53 12.58 6 0 0 8.18-5.83 8.62-6.13a4.3 4.3 0 0 1 6.34 1.18c3.05 5.76 8.68 17.72 11.65 28.65a3.23 3.23 0 0 1-2.12 4 44.92 44.92 0 0 1-5.35.9c-3 .37-2.91 2.77-2.91 4.22v18a10.91 10.91 0 0 1-11.43 10.82h-21.83c-8.26 0-14.9-7-14.94-14.38V57.66c0-7.35 6.65-12.32 12.66-12.23Z" style="fill:#003361"/>
|
||||
<path d="M97.45 114.67h-71v7.88h83.27a41.6 41.6 0 0 0 3-14.69v-53.5c0-4.22 1.72-11.36 10.39-13.25l.73-.15c24.57-5.8 49.9-.52 64.2 5.64 2.57 1.25 3.15-.8 3.08-1.67.29-12-8.85-25.74-25.65-26.56a44.43 44.43 0 0 0-24 5.94.73.73 0 0 1-.88-.29 35.53 35.53 0 0 0-13.94-7.92.83.83 0 0 1 .05-1.65 112 112 0 0 1 29 .84c1.09.19 1.92-.45 1.49-1.45-.35-.77-.61-1.11-1.16-2.29-1.16-2.49-4.2-5.1-8.06-6.19C137.82 2.54 120.51.1 105.1 0 87.75-.11 69.45 3.36 64.82 4.41c-1.1.23-2.66.64-2.94.68-1.26.26-1.56 1.46-1 2 .33.37 1.29 1.18 1.75 1.74a1.93 1.93 0 0 1-.25 2.81l-32.1 28.85h22.21a2.9 2.9 0 0 1 .1 5.79h-28.7l-8.73 7.94h37.56a2.89 2.89 0 0 1 0 5.75H8.76L0 67.86h75.7a2.91 2.91 0 0 1 2.64 2.87 2.73 2.73 0 0 1-2.59 2.92H0v7.88h75.6a2.88 2.88 0 0 1 2.74 3 2.92 2.92 0 0 1-2.77 2.74H0v7.93h98.64a2.78 2.78 0 0 1 2.64 3 2.83 2.83 0 0 1-2.63 2.8H26.51v7.94h72.45c1.32 0 2.47 1.66 2.47 3a2.84 2.84 0 0 1-2.51 2.8ZM53 141.91V150h16.75a42.85 42.85 0 0 0 24.81-8.08Zm0-13.58v7.9h48.17a44.31 44.31 0 0 0 5.83-7.88H53Zm776.86-48.8v-.44a31 31 0 0 0-5.18-15.86c-6-9.36-16.44-14.41-29-14.24-12.59-.17-23.07 4.88-29 14.24a30.92 30.92 0 0 0-5.18 15.86v.44c-1.71 20.55 10.27 34.76 30.68 36.41 1.24.1 2.41.14 3.59.13s2.38 0 3.6-.13c20.41-1.65 32.39-15.86 30.66-36.41Zm-32.68 26.76-1.58.09c-.51 0-1 0-1.58-.09a14 14 0 0 1-7.51-3 18.5 18.5 0 0 1-1.8-1.76c-3.14-3.54-4.84-9.58-5.24-14.33-.92-11.12 1.29-27.37 14.94-28.46h2.31c13.67 1.09 15.9 17.34 15 28.46-.4 4.75-1.94 10.67-5.25 14.33a21.07 21.07 0 0 1-1.8 1.76 14.27 14.27 0 0 1-7.52 3ZM694.11 64.24c0-5.08.49-14 .49-14h-16.77s.51 8.94.51 14v36.63c0 5.09-.48 13.73-.48 13.73h16.74s-.45-8.64-.45-13.73V64.24Zm-97.77 40.41h-11.65c-.16-6.47-.23-12.73-.24-18.4v-1.04h19.33v-9.1h-19.3c0-9.81.23-16.25.23-16.25h24v-9.65c-16.75.07-41 0-41 0s.35 8.89.35 14v36.55c0 4.65-.28 12.56-.34 13.85h42.56V104.4s-8.38.27-14 .27Zm-279.08 0h-11.65c-.16-6.47-.23-12.73-.26-18.4v-1.04h19.33v-9.1h-19.3c.05-9.81.23-16.25.23-16.25h24v-9.65c-16.77.07-41 0-41 0s.36 8.89.36 14v36.55c0 4.65-.29 12.56-.34 13.85h42.57V104.4s-8.38.27-14 .27ZM651.12 80l18.47-29.75h-12.8l-.1.29c-3.88 6.69-8.7 14.8-10.63 17.77l-.74 1.19-10.71-19.28h-19.24l18.55 33.32-19.32 31.06h12.73c8.22-14.09 12.48-20.6 12.48-20.6l11.48 20.56h19.17L651.12 80Zm95.21 25.86c-14.9 0-22.93-11-22.52-24.44.36-11.73 5.71-21.71 18.5-22.57 4.91-.33 8.9.52 15.78 2.36l-.7-10.06A58.7 58.7 0 0 0 743.22 49c-10.61-.4-20.22 1.64-27.88 8.71a34.07 34.07 0 0 0-10.88 24.53 32.57 32.57 0 0 0 11.77 25.49c8 6.75 16.58 8.28 26.78 8.28a56 56 0 0 0 17.11-2.21l-1-9.87a40.92 40.92 0 0 1-12.84 2ZM531.3 40.56H550l.53 4.31c4.16 43 6.72 69.76 6.72 69.76h-19.47L535.86 88l-1.79-23.81-16.45 50.42h-10.39s-5.23-17.94-6.16-20.43l-9.42-30.25s-1.46 16.84-2 24c-1.14 14.44-2.14 26.67-2.14 26.67H473s5.94-60.23 6.39-63.89 1.16-10.18 1.16-10.18h19l15.78 43.36 15.97-43.33Zm-66.1 39.07c0-.15-.05-.31-.06-.43A30.61 30.61 0 0 0 460 63.38c-5.93-9.33-16.36-14.34-28.89-14.17-12.57-.17-23 4.84-28.93 14.17A30.88 30.88 0 0 0 397 79.2v.43c-1.72 20.45 10.21 34.6 30.53 36.24 1.21.09 2.39.11 3.59.11s2.35 0 3.57-.11c20.3-1.64 32.25-15.79 30.54-36.24Zm-32.56 26.62a13.7 13.7 0 0 1-1.55.07 12.32 12.32 0 0 1-1.59-.07 14 14 0 0 1-7.48-3 16.21 16.21 0 0 1-1.8-1.74C417.1 98 415.4 92 415 87.24c-.92-11 1.31-27.22 14.89-28.31h1a.48.48 0 0 1 .17 0s.1 0 .14 0h1c13.58 1.09 15.81 17.26 14.87 28.31-.39 4.76-1.92 10.64-5.22 14.29a16.15 16.15 0 0 1-1.79 1.74 14.07 14.07 0 0 1-7.48 3Zm-148.05 8.34c-.57-1.32-4-9.49-6.55-16.07l-21.76-58h-16.95s-4.82 13.59-5.51 15.83l-15.9 44.93c-2.06 5.75-5 13.28-5 13.28h13.83s3.91-12.49 4.72-14.75l2.13-6.23h24l3.25 9.5c.7 1.78 3.53 11.33 3.58 11.47Zm-47.45-31.51 8.06-24 .48-1.41 8.43 25.39Zm160.68 31.52c-4-5.75-5.49-8.13-8.57-12.33l-11.54-17.93c5.56-2.75 10.77-7.34 11.57-17a16.49 16.49 0 0 0-4.64-12.69 15.51 15.51 0 0 0-9.32-3.95c-3.09-.4-5.32-.42-7.17-.53H341s.32 8.89.32 14v36.4c0 5.11-.32 14-.32 14h16.72s-.49-8.89-.49-14l.12-11.67h6.21l10.57 19.39c1.42 2.46 3.48 5.56 4 6.26Zm-29.58-35.93c-2.49 1.28-8.13.93-10.92.76l.22-18.4 1.55-.1c5.13-.41 8.87.28 10.41 1 2.31 1 3.65 3.17 3.77 6.82.2 5.42-1.86 8.32-5 10Z" style="fill:#003361"/>
|
||||
<path style="fill:#004289" d="m963.54 16.17-.71-.32.18-.39 1.9.86-.18.38-.71-.31-.92 2.07-.49-.22.93-2.07zm1.74.31.78.37-.33 2.11.01.01 1.47-1.55.77.38-1.18 2.42-.46-.23.98-2h-.01l-1.63 1.68-.46-.23.32-2.31h-.01l-.97 1.99-.46-.23 1.18-2.41zM971 37.41v.06a56.29 56.29 0 0 1-74.84 83.83v.06A56.28 56.28 0 1 0 971 37.41Zm-99.76 64c-1.78 1-2.19 2.51-1.27 4.82.85 2.12 2.17 3 3.59 2.47 1.14-.46 1.33-1.44.86-4l-.21-1c-.46-2.51-.54-3.58-.23-4.66a3.23 3.23 0 0 1 2-2.41c2.54-1 5 .54 6.39 4.13 1.54 3.88.71 6.79-2.3 8l-.76-1.89c2.1-.92 2.63-2.88 1.51-5.69-.92-2.3-2.38-3.31-3.92-2.7-1.24.5-1.53 1.65-1.07 4.25l.17 1.09.17 1a8.19 8.19 0 0 1 .18 3.45 3.07 3.07 0 0 1-2 2.2c-2.39 1-4.68-.45-6-3.68-1.4-3.49-.65-6.1 2-7.29l.75 1.86Zm-1.59-20.32 8.54-7.19.06 2.65-7.24 6 2.35 2.58 5.07-.11.05 2.09-14.51.32-.05-2.09 5.71-.13.79.01.74-.02-.49-.51-.5-.52-6.42-6.93-.07-2.76 5.97 6.61zm6.43-22.48 5.59 2-.69 2-5.59-2-10 3 .85-2.4 6.23-1.73.76-.22c.31-.09.52-.12 1.06-.24a17.06 17.06 0 0 1-1.11-1.43l-3.84-5.2.79-2.28 6 8.51Zm9.82-26.64-3.06 3.75 9.15 7.49-2.2 2.7-9.16-7.51-3.06 3.74-2.07-1.7 8.33-10.17 2.07 1.7zm19.59-13.76-7.33 4.28 1.57 2.67 6.73-3.93 1.25 2.15-6.73 3.93 1.81 3.08 7.47-4.37 1.35 2.32-10.47 6.12-7.34-12.53 10.34-6.04 1.35 2.32zm28.1 5.63-3.8.25-1.87-3.09-5.86.94-.82 3.57-3.61.93 3.82-15.86L925 10l8.57 13.88Zm-8.3-7.48a23 23 0 0 1-1.56-2.95 31.05 31.05 0 0 1-.62 3.3l-.61 2.77 4.22-.68-1.43-2.44Zm31.62 12.13-3.06-1.16L955 23c.13-.5.31-1.2.57-2.08s.45-1.61.61-2.14.36-1.19.56-1.81l.35-1c-.86 1.47-1.2 2-2 3.18-.33.52-.64 1-.89 1.32l-4.12 5.77-2.64-.69-.83-6.94c-.06-.35-.1-.86-.14-1.55 0-.91-.1-1.6-.13-2.08s0-1 0-1.76l-.34 1.72c-.43 1.91-.62 2.75-1.2 5l-1.21 4.68-3.21-.5L944 9.94l4.87.94.7 6.72a30.41 30.41 0 0 1 .14 4.76 21.63 21.63 0 0 1 1.37-2.4c.42-.66.79-1.21 1.12-1.72l3.82-5.48 4.63 1.57-3.77 14.16Z"/>
|
||||
<path d="M929.16 56.45c-1.76 1.55-5.25 4.89-8.62 8.13l-3.81 3.66a51.67 51.67 0 0 0-9.37-.84c-7.08 0-13.55 1.95-16.5 5a5.13 5.13 0 0 0-1.66 3.73c.07 3.42 4 5.14 5.19 5.59 6.27 2.34 11.55 1.66 17.08-2.21a92.19 92.19 0 0 0 9.61-8.33c2.23.52 4.78 1.17 7.49 2l2.52.74c-3.26 3.19-6.6 6.58-9.71 9.32l-.23.21c-4.32 3.8-7.44 6.55-11.93 7.55-3.18.7-5.43 0-6.16-.42-.07 0-.18.14-.18.14a11.53 11.53 0 0 0 9.32 3c4-.35 8.71-2.9 13.5-7.37l6.45-6.35 4.51-4.49 9.13 2.68h.17c-.09 0-5.65 5.5-5.65 5.5l-4.85 4.83c-5 4.83-7.68 7.34-10.58 9.39-4.82 3.41-8.92 5.18-12.55 5.43a12.28 12.28 0 0 1-6.84-1.33c-.1 0-.24.1-.24.1 2.46 2.1 5.47 4.61 10.64 4.47 5.87-.16 11.05-3 19.13-10.41 3.68-3.37 7.34-7.15 10.57-10.49l6-6.08A46.15 46.15 0 0 0 963 80.75c5.69-.11 10.54-2.83 10.61-5.94 0-2.3-1.84-3.53-3-4.26a13.07 13.07 0 0 0-7-2c-4.27 0-8.71 1.89-13.22 5.6l-3 2.65-1.1-.31-8.35-2.33c2.46-2.31 4.56-4.28 6.45-6C949 64.1 954 62.43 957 62.24c2.15-.14 5.91 0 7.45 1.14.08 0 .17-.17.17-.17a15 15 0 0 0-10.6-4c-2.89 0-7.53.92-13.21 5.32a105.74 105.74 0 0 0-8.48 8s-4.22-1.3-4.22-1.3l-1-.32-4.44-1.35c.1 0 2.53-2.38 2.53-2.38 3-2.94 5.82-5.71 8-7.57 8-6.74 13.05-7.62 16.56-7.63 3.85 0 6.9.77 9.08 2.35.06 0 .16-.16.16-.16-4.5-4.06-7.73-5.36-13.32-5.41-4.91 0-10.77 2.7-16.5 7.7Zm-31.48 24c-2.61-.18-3.88-1.23-3.88-3.23 0-.27.18-6.61 14.73-7.34a35 35 0 0 1 6.34.18 20.14 20.14 0 0 0-1.65 1.41l-.9.82c-3.52 3.18-9.39 8.51-14.64 8.16Zm58.89-5.16c4.19-2.82 7.68-4.33 9.84-4.25 1.28 0 2.82.43 2.82 2s-1.55 3-4.59 4.07c-2.65.95-6.73 1.19-11.19.69a28.47 28.47 0 0 1 3.12-2.52Z" style="fill:#004289"/>
|
||||
<path d="M474.75 147.89S504.05 124 578 124c55.73 0 89.13 17.8 154.3 17.8 58.61 0 97.74-20.14 97.74-20.14s-34.36 26.81-103.31 26.81-90.93-18-159-18-92.98 17.42-92.98 17.42Z" style="fill:#dc0d15"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><g id="Слой_2" data-name="Слой 2"><g id="Layer_1" data-name="Layer 1"><path d="M75,150A75,75,0,1,0,0,75a75.21,75.21,0,0,0,75,75Z" style="fill:#182945;fill-rule:evenodd"/><path d="M99.37,64.31a10.64,10.64,0,0,1,4.55,1.15c2.3,1.09,5,2.36,8.41,4,0,.06,5.51-3.88,5.76-4.12a3,3,0,0,1,4.3.85,103.16,103.16,0,0,1,7.81,19.2,2.14,2.14,0,0,1-1.46,2.66,26.51,26.51,0,0,1-3.57.61c-2,.24-1.94,1.87-1.94,2.84v12a7.34,7.34,0,0,1-7.69,7.27H101a10.11,10.11,0,0,1-10-9.63V72.55a8.51,8.51,0,0,1,8.47-8.24Z" style="fill:#fff;fill-rule:evenodd"/><path d="M76.24,110.82H28.64v5.27H84.48a27.41,27.41,0,0,0,2.06-9.81V70.37c0-2.85,1.15-7.63,7-8.9.18-.07.3-.07.48-.13,16.48-3.87,33.49-.3,43.06,3.82,1.76.85,2.12-.55,2.06-1.15a17.59,17.59,0,0,0-17.2-17.8,30.21,30.21,0,0,0-16.11,4,.54.54,0,0,1-.6-.18,22.89,22.89,0,0,0-9.33-5.33.55.55,0,0,1,.06-1.09,74.41,74.41,0,0,1,19.38.55c.79.12,1.33-.31,1-1s-.42-.73-.79-1.52a8.53,8.53,0,0,0-5.39-4.18,125.6,125.6,0,0,0-28.76-3.57,138,138,0,0,0-27.07,2.91c-.73.18-1.76.42-1.94.48a.88.88,0,0,0-.66,1.4c.18.24.84.78,1.15,1.15a1.29,1.29,0,0,1-.19,1.87L31.19,61H46.08A1.94,1.94,0,0,1,48,63a1.89,1.89,0,0,1-1.82,1.94H26.89L21,70.25h25.2A1.92,1.92,0,0,1,48,72.18a2,2,0,0,1-1.75,1.94H16.71l-5.87,5.27H61.65a2,2,0,0,1,1.75,1.94,1.89,1.89,0,0,1-1.75,2H10.84V88.6H61.59a1.93,1.93,0,0,1,1.81,2,2,2,0,0,1-1.87,1.88H10.84V97.8H77a1.81,1.81,0,0,1,1.75,2A1.84,1.84,0,0,1,77,101.61H28.64v5.33H77.27c.85,0,1.64,1.09,1.64,2a1.91,1.91,0,0,1-1.7,1.88Z" style="fill:#fff;fill-rule:evenodd"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 289.13 150"><g id="Слой_2" data-name="Слой 2"><g id="Слой_1-2" data-name="Слой 1"><polygon points="0 150 289.13 150 289.13 0 0 0 0 150 0 150" style="fill:#c8d400;fill-rule:evenodd"/><path d="M64.64,55.43V46.07H74v9.36Zm0,42.81V59H74V98.24Z" style="fill:#0c2355;fill-rule:evenodd"/><path d="M87.21,98.24H77.85V59h9.06v7.24C89.85,62,94,58.15,99.67,58.15a7.67,7.67,0,0,1,2.19.23v8.83a18,18,0,0,0-2.72-.15c-4.3,0-11.93,4-11.93,11.85V98.24Z" style="fill:#0c2355;fill-rule:evenodd"/><path d="M104.39,98.24V46.07h16.72c4.41,0,19.36,0,19.36,12.74,0,8.75-6.83,11.1-10.32,12.31,4,1.07,11.52,3.2,11.52,12.8,0,7.91-6,14.32-19.35,14.32Zm9.82-30.89h6.9c8.9,0,9.68-5.34,9.68-7,0-6.54-6.76-6.54-8.82-6.54h-7.76V67.35Zm0,23.2h6.12c6.54,0,11.24-2.14,11.24-7.76,0-3.7-2-7.9-10.6-7.9h-6.76V90.55Z" style="fill:#0c2355;fill-rule:evenodd"/><path d="M168.13,98.24l-1.06-4.16a17.05,17.05,0,0,1-11.86,5c-7,0-12-4.52-12-10.79,0-4.08,1.44-8.83,10.12-11.78l11.25-3.77c1.58-.53,1.74-.61,1.74-1.74V69.4c0-3.32-3-4.31-6.65-4.31-6.19,0-11.85,3.78-14,5.28V62.23a29,29,0,0,1,15.47-4.08c12.16,0,14.57,6.11,14.57,13.58V98.24ZM158,81.47c-3.93,1.44-5.29,3.25-5.29,6,0,3.93,3.4,4.76,5.06,4.76,1.51,0,4.76-.53,8.54-4.37V78.23a6.47,6.47,0,0,1-2.42,1.13L158,81.47Z" style="fill:#0c2355;fill-rule:evenodd"/><path d="M53.23,98.24l-1-4.16a17,17,0,0,1-11.85,5c-7,0-12-4.52-12-10.79,0-4.08,1.43-8.83,10.12-11.78l11.24-3.77c1.59-.53,1.74-.61,1.74-1.74V69.4c0-3.32-3-4.31-6.64-4.31-6.19,0-11.85,3.78-14,5.28V62.23a29,29,0,0,1,15.48-4.08c12.15,0,14.57,6.11,14.57,13.58V98.24ZM43.12,81.47c-3.92,1.44-5.28,3.25-5.28,6,0,3.93,3.4,4.76,5.06,4.76s4.75-.53,8.53-4.37V78.23A6.38,6.38,0,0,1,49,79.36l-5.89,2.11Z" style="fill:#0c2355;fill-rule:evenodd"/><polygon points="179.53 98.24 188.89 98.24 188.89 46.07 179.53 46.07 179.53 98.24 179.53 98.24" style="fill:#0c2355;fill-rule:evenodd"/><path d="M196.67,66.08H191V59h5.7V46.07H206V59h7.09v7.1H206V85.93c0,2.87.37,5.51,4.68,5.51a12.89,12.89,0,0,0,2.71-.3v7.1a32.25,32.25,0,0,1-4.38.3c-10.42,0-12.38-5.21-12.38-12.08V66.08Z" style="fill:#0c2355;fill-rule:evenodd"/><path d="M216.75,55.43V46.07h9.37v9.36Zm0,42.81V59h9.37V98.24Z" style="fill:#0c2355;fill-rule:evenodd"/><path d="M260.05,69.55a14.75,14.75,0,0,0-10.19-4.08c-8,0-11.32,6.72-11.32,13.14,0,2.72.75,13.13,11,13.13,5.36,0,8.83-2.42,11.25-4.15v8.3a26.11,26.11,0,0,1-12.76,3.17c-13.36,0-19-10-19-20.45,0-10.88,6.12-20.46,19.4-20.46A21.9,21.9,0,0,1,260.05,61v8.53Z" style="fill:#0c2355;fill-rule:evenodd"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><g id="Слой_2" data-name="Слой 2"><g id="Слой_1-2" data-name="Слой 1"><path d="M75,0A75,75,0,1,1,0,75,75,75,0,0,1,75,0Z" style="fill:#cfd71a;fill-rule:evenodd"/><path d="M32.46,65.89v-5h5v5Zm0,22.77V67.76h5v20.9Z" style="fill:#18223b;fill-rule:evenodd"/><path d="M44.51,88.66h-5V67.76h4.85v3.88c1.57-2.24,3.75-4.3,6.78-4.3a3,3,0,0,1,1.15.12v4.66a12.21,12.21,0,0,0-1.45-.06c-2.24,0-6.3,2.12-6.3,6.3Z" style="fill:#18223b;fill-rule:evenodd"/><path d="M53.59,88.66V60.92h8.9c2.37,0,10.3,0,10.3,6.78,0,4.61-3.63,5.88-5.45,6.54,2.12.55,6.12,1.7,6.12,6.79,0,4.23-3.15,7.63-10.3,7.63Zm5.27-16.42h3.63c4.79,0,5.15-2.84,5.15-3.75C67.64,65,64.07,65,63,65H58.86Zm0,12.3h3.21c3.51,0,6-1.09,6-4.12,0-1.94-1-4.18-5.64-4.18H58.86Z" style="fill:#18223b;fill-rule:evenodd"/><path d="M87.51,88.66,87,86.42a9,9,0,0,1-6.3,2.66c-3.75,0-6.42-2.42-6.42-5.75,0-2.12.79-4.67,5.39-6.24l6-2c.85-.3.91-.36.91-1v-.79C86.54,71.52,85,71,83,71c-3.27,0-6.29,2-7.44,2.79v-4.3a15.11,15.11,0,0,1,8.23-2.18c6.42,0,7.75,3.21,7.75,7.21V88.66Zm-5.39-8.91c-2.06.73-2.79,1.7-2.79,3.21a2.5,2.5,0,0,0,2.72,2.49c.79,0,2.49-.25,4.49-2.31V78c-.25.24-.37.3-1.28.6Z" style="fill:#18223b;fill-rule:evenodd"/><path d="M26.4,88.66l-.54-2.24a9.14,9.14,0,0,1-6.3,2.66c-3.75,0-6.42-2.42-6.42-5.75,0-2.12.79-4.67,5.39-6.24l6-2c.84-.3.9-.36.9-1v-.79c0-1.81-1.57-2.3-3.51-2.3-3.33,0-6.3,2-7.51,2.79v-4.3a15.34,15.34,0,0,1,8.24-2.18c6.48,0,7.75,3.21,7.75,7.21V88.66ZM21,79.75c-2.06.73-2.78,1.7-2.78,3.21a2.48,2.48,0,0,0,2.66,2.49c.85,0,2.55-.25,4.54-2.31V78c-.24.24-.36.3-1.27.6Z" style="fill:#18223b;fill-rule:evenodd"/><rect x="93.62" y="60.92" width="4.97" height="27.74" style="fill:#18223b"/><path d="M102.7,71.52h-3V67.76h3V60.92h5v6.84h3.82v3.76h-3.82v10.6c0,1.51.24,2.9,2.54,2.9a8.7,8.7,0,0,0,1.4-.12v3.76a20.12,20.12,0,0,1-2.3.18c-5.58,0-6.61-2.79-6.61-6.48Z" style="fill:#18223b;fill-rule:evenodd"/><path d="M113.42,65.89v-5h5v5Zm0,22.77V67.76h5v20.9Z" style="fill:#18223b;fill-rule:evenodd"/><path d="M136.44,73.4A7.91,7.91,0,0,0,131,71.22c-4.24,0-6,3.57-6,7,0,1.45.42,7,5.87,7a9.62,9.62,0,0,0,6-2.24v4.42a13.8,13.8,0,0,1-6.84,1.7c-7.09,0-10.06-5.33-10.06-10.9,0-5.75,3.27-10.84,10.3-10.84a11.88,11.88,0,0,1,6.18,1.51Z" style="fill:#18223b;fill-rule:evenodd"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 943.84 150">
|
||||
<g data-name="Слой 2">
|
||||
<g data-name="Слой 1">
|
||||
<path d="M189.51 106.61c-11.26 8.3-25.15 18.78-39.69 21.13-7.71 1.25-14.8.39-19.77-3.68-17.29-14.19-12.58-56.75-2.8-77.6 7.87-16.76 22.24-34.33 42-30.13 7.11 1.51 10.08 7.27 10.64 14a32.11 32.11 0 0 1-4.66 19.48c-6 9.15-27 22.56-37.37 29.51a33.23 33.23 0 0 0-3.72 2.59l-.06 16.4c1.71-.74 42.93-26.72 44.3-27.58 13.07-8.19 33.28-18.33 32.72-39.09-.33-12-4.51-19.4-11.53-24.27-7.19-5-18-7.25-28.71-7.24C159 .08 151 2.33 141.36 6.32a91.1 91.1 0 0 0-19.83 11.51 24.91 24.91 0 0 1-2.53 2c-4.53-5.19-6.51-8.09-12.67-12.33a38 38 0 0 0-18.28-7 68.23 68.23 0 0 0-41.34 8.21c-17.89 10-35.65 33.12-42.78 58a108.93 108.93 0 0 0-2.7 45.41c2.44 16.17 7.81 25.62 18.06 32.4 11.74 7.75 27.65 6.48 40.44.88 9.42-4.12 19.13-10.84 27-17.23a39 39 0 0 1 3.48-2.77l4 6.71a38.49 38.49 0 0 0 18.49 14.5c11 4.18 26.6 4.32 38.39 1.21 12-3.17 20.84-8.91 28.88-14.85 7-5.18 11.85-9 18.29-14.45.54-.46.81-.81 1.34-1.23a35.06 35.06 0 0 0 4.39-4.12l-7.38-11.62c-1.36.53-5.56 3.93-7.1 5.06ZM97 38c-3 16-11.79 27.81-13.44 52-.67 9.78.48 12.47 1 20.41a65.63 65.63 0 0 1-6.89 4.11c-5.8 3.35-16 10.08-21.63 11.07-12.91 2.27-18.49-11.52-20.61-22.39-2.4-12.31-1-27.81 1.78-39.67a73.25 73.25 0 0 1 14.24-29.26c5.08-6.53 14.21-15.73 25.8-17.93C93.83 13.18 99.88 22.22 97 38Zm510 13.6c-20.74 1.9-29.15 19.65-28.09 38.69C580 109.8 592.74 123.8 613.72 122c19-1.61 29-17.9 27.74-38.72-1.19-19.24-13.65-33.6-34.5-31.69Zm-205.58 69.26 51.31.06.01-16.21-30.5-.06.01-20.65 27.41-.08.03-15.72-27.42-.12V48.24l30.13-.06.09-15.99h-51.07v88.67zm102.88-8.77 2.15 8.78h14.66V52.93h-19.28c-.58 3.62.3 43.44-.14 45.93a9.22 9.22 0 0 1-3.1 4.62 9.51 9.51 0 0 1-5.75 2c-10.38.2-8.92-12.88-8.92-21.75 0-2.38.17-29.13-.08-30.74h-19.23c-.39 1.81-.12 25.65-.12 29.61 0 9-.74 20 2.18 27.79 4.88 13.08 21.42 14.49 29.89 8.89a26.33 26.33 0 0 0 4.11-3.37c.71-.71 1.11-1.23 1.78-2s1.05-1.63 1.85-1.83ZM367.5 64.11 364.93 53h-13.39v67.92h19.14v-47.8l18.57-1.8V51.46c-5.69-.42-10.4.21-14.3 2.83a16.4 16.4 0 0 0-4.36 4.31c-1.43 2-2.6 5.19-3.15 5.51Zm184.97 0c-1-1.75-2-9.93-2.73-10.85-.44-.57-5.43-.3-6.39-.3-2.21 0-4.71-.1-6.89 0l-.07 67.86 19.11.06.07-47.47 18.53-2.14v-19.7c-4.29-1.24-11.34.82-14.14 2.71-5.91 4-6.3 9.11-7.5 9.83Zm-235.53 56.81 19.39-.01.04-67.91-19.31-.04-.12 67.96z" style="fill:#0175cf;fill-rule:evenodd"/>
|
||||
<path d="M608.69 68.27c-8.54 1.29-10.8 10.62-10.45 20.14.32 8.91 3.61 18.25 13.53 17 8.76-1.12 10.48-10.86 10.3-20.26-.16-8.82-3.74-18.33-13.38-16.87Z" style="fill:#fff;fill-rule:evenodd"/>
|
||||
<path d="M710.94 82.82c-.49-13.57-4.21-23.31-13.08-28.49a23.47 23.47 0 0 0-17.18-2.1c-8.28 2.43-10.32 8.68-11.53 9.44-.57-.84-1.74-7-2.24-8.64L652 53l-.06 90h19.16l.11-24.69c2.45 1.25 3.85 2.53 7.07 3.32 9.08 2.25 17.78 0 23.86-6.06 7.22-7.25 9.28-19.37 8.8-32.75Zm-21.38 16c-2.38 6.06-7.86 7.94-13.89 6.06-2-.64-3-1.78-4.43-2.55V73.72c.36-3.31 13.83-9.52 18.28.27 2.48 5.51 2.3 19.01.04 24.78ZM290.91 54.13c-1-3.57-2-7.42-2.93-11.07-.49-1.86-.94-3.61-1.46-5.55-.23-.86-.5-1.87-.73-2.77-.16-.63-.36-2.37-1.07-2.56h-30.63c-.94 2.2-2.19 8.46-2.84 11.06l-18.08 71.93a38.73 38.73 0 0 0-1.33 5.73h21.27l4-16.87h23.81l4 16.88h23.48c-.09-1.98-16.22-62.06-17.49-66.78ZM260 87.71c.48-3 1.44-6.57 2.13-9.57l5.36-23.84c.17-.75.35-1.5.52-2.31s.11-1.88 1-1.69 1.26 3.56 1.47 4.45l5.46 23.52c.69 2.89 1.7 6.5 2.15 9.51Zm64.07-61.08c-13.14 2.41-10.28 22.91 5 20.09 12.54-2.31 10.57-23-5-20.09Zm450.62 62.48c0-20.89 1.55-36.88-26.25-37.63a58 58 0 0 0-14.54 1.39c-2.14.47-11.23 2.75-12.25 3.74l3.12 13.65 9.23-2.59c9.2-2.1 23.61-3.11 21.34 11-10.57.24-19.57-.26-27.53 5-14.58 9.6-12.7 35.73 7.84 38.51 7.94 1.08 13.34-1.1 18.62-5.5a12.89 12.89 0 0 0 1.93-2c.49-.58 1.39-1.91 2.06-2.13l2.3 8.39h14.08c.36-3.85.05-26.04.05-31.83Zm-19.3 13.11c-2.2 1.8-5.1 4.5-9 5.17-4.55.78-8.16-1.08-8.89-5-1.91-10.35 11.08-10.85 18-10.55Z" style="fill:#0175cf;fill-rule:evenodd"/>
|
||||
<path style="fill:#004289" d="m916.63 19.5-.7-.32.17-.38 1.9.86-.18.38-.7-.32-.93 2.07-.49-.22.93-2.07zm1.74.31.78.38-.32 2.11 1.47-1.55.78.39-1.18 2.41-.46-.23.97-1.99h-.01L918.78 23l-.46-.23.32-2.31h-.01l-.98 1.99-.46-.22 1.18-2.42zm5.74 20.93-.06.07a56.28 56.28 0 0 1-74.84 83.82l-.05.06a56.28 56.28 0 1 0 75-83.95Zm-99.78 64.01c-1.78 1-2.19 2.5-1.27 4.82.85 2.11 2.18 3 3.6 2.46 1.13-.45 1.33-1.43.85-4l-.2-1c-.47-2.5-.54-3.58-.24-4.65a3.25 3.25 0 0 1 2-2.42c2.55-1 4.95.55 6.39 4.14 1.54 3.87.71 6.78-2.3 8l-.76-1.89c2.1-.91 2.63-2.88 1.51-5.69-.92-2.3-2.38-3.31-3.92-2.7-1.23.5-1.53 1.65-1.07 4.26l.18 1.08.16 1a8.21 8.21 0 0 1 .19 3.44 3.07 3.07 0 0 1-2 2.2c-2.38 1-4.68-.44-6-3.68-1.4-3.49-.65-6.09 2-7.29l.74 1.87Zm-1.59-20.32 8.54-7.2.06 2.66-7.24 5.99 2.35 2.59 5.08-.12.04 2.09-14.51.32-.05-2.09 5.72-.12.78.01.74-.02-.49-.51-.5-.52-6.42-6.94-.07-2.75 5.97 6.61zM829.17 62l5.6 2-.7 2-5.59-2-10 3 .84-2.4 6.23-1.74.77-.21a8.87 8.87 0 0 1 1.06-.24 14.19 14.19 0 0 1-1.12-1.44l-3.84-5.19.8-2.29 6 8.52ZM839 35.3l-3.07 3.75 9.16 7.5-2.21 2.69-9.16-7.5-3.05 3.73-2.08-1.7 8.33-10.16L839 35.3zm19.58-13.76-7.32 4.28 1.56 2.68 6.73-3.93 1.25 2.14-6.73 3.93 1.81 3.09 7.47-4.37 1.35 2.32-10.47 6.12-7.34-12.53 10.34-6.04 1.35 2.31zm28.1 5.64-3.8.24-1.88-3.13-5.85.93-.82 3.58-3.62.93 3.82-15.87 3.57-.57 8.57 13.89Zm-8.3-7.48a23.64 23.64 0 0 1-1.56-3 28.42 28.42 0 0 1-.62 3.31l-.6 2.76 4.21-.67-1.43-2.44ZM910 31.83l-3-1.17 1.16-4.31c.13-.51.31-1.2.57-2.08s.45-1.62.61-2.14.37-1.19.56-1.82l.35-1c-.86 1.46-1.2 2-2 3.17-.33.53-.64 1-.89 1.32l-4.12 5.78-2.64-.7-.83-6.94c-.06-.35-.09-.85-.14-1.54-.05-.92-.1-1.61-.12-2.09s0-1 0-1.75l-.36 1.75c-.43 1.91-.62 2.74-1.2 5L896.69 28l-3.21-.51 3.64-14.2 4.88 1 .69 6.71a30.54 30.54 0 0 1 .14 4.77 22.48 22.48 0 0 1 1.37-2.41l1.12-1.71 3.82-5.49 4.64 1.57-3.78 14.1Z"/>
|
||||
<path d="M882.26 59.79c-1.77 1.54-5.25 4.89-8.62 8.12l-3.82 3.66a51.63 51.63 0 0 0-9.36-.83c-7.09 0-13.56 1.94-16.51 5a5.22 5.22 0 0 0-1.66 3.74c.08 3.41 4 5.14 5.19 5.58 6.28 2.35 11.55 1.67 17.08-2.21a92.23 92.23 0 0 0 9.61-8.32c2.24.51 4.78 1.17 7.49 2l2.52.74c-3.26 3.19-6.6 6.58-9.7 9.31l-.24.21c-4.31 3.8-7.43 6.55-11.93 7.55-3.17.71-5.43 0-6.16-.42a.6.6 0 0 0-.15.08 11.61 11.61 0 0 0 9.33 3c4-.36 8.71-2.91 13.49-7.37l6.45-6.34 4.52-4.48 9.13 2.68h.16c-.09 0-5.64 5.49-5.64 5.49l-4.86 4.83c-5 4.83-7.68 7.34-10.58 9.4-4.81 3.4-8.91 5.18-12.55 5.42a12.28 12.28 0 0 1-6.84-1.33c-.1 0-.23.1-.23.1 2.45 2.11 5.46 4.62 10.64 4.47 5.86-.16 11-3 19.12-10.4 3.68-3.38 7.34-7.16 10.57-10.5l6-6.08a46.21 46.21 0 0 0 11.39 1.16c5.7-.11 10.55-2.84 10.61-6 .05-2.3-1.84-3.53-3-4.26a13.06 13.06 0 0 0-7-2c-4.27 0-8.71 1.88-13.22 5.59l-3 2.65-1.1-.3-8.39-2.27c2.46-2.3 4.56-4.28 6.45-6 4.57-4.06 9.63-5.73 12.58-5.92 2.15-.14 5.91 0 7.46 1.14.07 0 .17-.17.17-.17a15 15 0 0 0-10.61-4c-2.88 0-7.53.93-13.21 5.33a103.67 103.67 0 0 0-8.47 8s-4.23-1.29-4.23-1.29l-1-.33-4.44-1.34c.1 0 2.53-2.39 2.53-2.39 3-2.93 5.82-5.7 8-7.56 8-6.74 13.05-7.62 16.56-7.64 3.85 0 6.9.78 9.08 2.35.06 0 .16-.15.16-.15-4.5-4.07-7.73-5.37-13.32-5.42-4.9 0-10.77 2.7-16.49 7.71Zm-31.49 24c-2.6-.18-3.88-1.23-3.88-3.22 0-.27.18-6.62 14.73-7.35a35.09 35.09 0 0 1 6.35.18c-.12 0-1.66 1.41-1.66 1.41l-.9.82c-3.52 3.19-9.39 8.52-14.64 8.16Zm58.9-5.16c4.18-2.82 7.67-4.33 9.83-4.25 1.29 0 2.82.43 2.82 2s-1.55 3-4.58 4.07c-2.66 1-6.74 1.19-11.2.69a29 29 0 0 1 3.13-2.53Z" style="fill:#004289"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 5.3 KiB |
|
After Width: | Height: | Size: 6.5 KiB |
|
After Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 669.31 150"><defs><clipPath id="clip-path"><rect width="669.22" height="150" style="fill:none"/></clipPath></defs><g id="Слой_2" data-name="Слой 2"><g id="Слой_1-2" data-name="Слой 1"><path d="M220.24,118.55V66.19C220.24,44.44,206.41,37,189,37a68,68,0,0,0-29,6.4l4.39,11a50,50,0,0,1,21.16-5.23c9.87,0,16.78,3,16.78,14v4.55c-25.72,2.45-47.22,8.94-47.22,31.2,0,16.27,11.47,25.71,34.49,25.71,13.15,0,23.86-2.52,30.61-6.15m-17.88-6.91A26.94,26.94,0,0,1,190.89,114c-11.13,0-17.7-4.64-17.7-15.69,0-15.34,11.13-19.22,29.17-21.41" style="fill:#b5211b"/><path d="M253,14.59c0-5.32-4.55-9.53-10.45-9.53S232,9.27,232,14.59,236.68,24,242.5,24,253,19.81,253,14.59Z" style="fill:#b5211b"/><rect x="232.88" y="38.62" width="19.14" height="84.49" style="fill:#b5211b"/><path d="M306.49,37.18c-21.33-.59-32,1.77-40.81,6V123.1h19.14V51.77c4.39-2.53,11.47-2.78,17.88-.67" style="fill:#b5211b"/><path d="M431.11,123.1V62.9c0-13.32-8.93-25.88-29-25.88-12.82,0-21.5,4-27.15,9.27C370.15,41,362.31,37,348.65,37c-14.08,0-23.19,2-31.7,6.15V123.1h19.14V51.43a29.89,29.89,0,0,1,12.56-2.36c10.37,0,15.85,5.4,15.85,13.49V123.1h19.14v-68a18.7,18.7,0,0,1,14.08-5.82c10.21,0,14.25,6.49,14.25,13.83v60" style="fill:#b5211b"/><path d="M508.6,118.55V66.19C508.6,44.44,494.77,37,477.32,37a68,68,0,0,0-29,6.4l4.39,11A50.79,50.79,0,0,1,474,49.24c9.86,0,16.69,3,16.69,14v4.55C465,70.24,443.51,76.73,443.51,99c0,16.27,11.38,25.71,34.48,25.71,13.16,0,23.86-2.52,30.53-6.15m-17.88-6.91A26.25,26.25,0,0,1,479.26,114c-11.13,0-17.71-4.64-17.71-15.69,0-15.34,11.13-19.22,29.09-21.41" style="fill:#b5211b"/><rect x="522.09" width="19.14" height="123.1" style="fill:#b5211b"/><path d="M595.62,122.34V110.46a15.72,15.72,0,0,1-4.56.75c-6.57,0-9.19-4.38-9.19-11V50.84h13.75V38.62H581.87v-24L562.73,19.9V38.62h-9.44V50.84h9.44v50.34c0,11.72,6.58,22.85,23.19,22.85a25.23,25.23,0,0,0,9.7-1.69" style="fill:#b5211b"/><g style="clip-path:url(#clip-path)"><path d="M669.31,118.55V66.19c0-21.75-13.83-29.17-31.2-29.17A68.11,68.11,0,0,0,609,43.42l4.39,11a50.74,50.74,0,0,1,21.24-5.23c9.87,0,16.78,3,16.78,14v4.55c-25.71,2.45-47.21,8.94-47.21,31.2,0,16.27,11.38,25.71,34.48,25.71,13.15,0,23.86-2.52,30.61-6.15m-17.88-6.91A26.9,26.9,0,0,1,640,114c-11.13,0-17.71-4.64-17.71-15.69,0-15.34,11.13-19.22,29.17-21.41" style="fill:#b5211b"/><path d="M71.84,78.25,141.65,49,112.82,78.92l29.34,28.75L71.84,79.6,101,149.49,71.08,120.66,42.33,150,70.4,79.6.51,108.85,29.34,78.92,0,50.25l70.4,28L41.15,8.43,71.08,37.18,99.83,7.84" style="fill:#b5211b"/></g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 658.24 150">
|
||||
<g data-name="Слой 2">
|
||||
<g data-name="Слой 1">
|
||||
<path style="fill:#004289;fill-rule:evenodd" d="m626.08 7.4-.81-.49.16-.32 2.26 1.13v.32l-1.13-.32-1.13 2.41-.48-.32 1.13-2.41zm2.09.32.8.48-.32 2.41 1.93-1.77.8.48-1.28 2.9-.64-.16 1.12-2.41-1.93 1.76-.48-.16.32-2.73-1.12 2.41-.49-.32 1.29-2.89zm6.59 24.76v.32a65.7 65.7 0 0 1 19.29 42.45A66.62 66.62 0 0 1 546.33 132H546a66.66 66.66 0 0 0 112.07-53.38 65.15 65.15 0 0 0-23.31-46.14Zm-118.01 76.05c-2.09 1-2.74 2.89-1.61 5.62 1.13 2.58 2.73 3.7 4.18 2.9 1.45-.48 1.61-1.61 1.13-4.83l-.33-1.12c-.48-2.89-.48-4.18-.16-5.47a3.51 3.51 0 0 1 2.42-2.73c3.21-1.29 5.78.48 7.71 4.82 1.77 4.5.81 8-2.89 9.49l-.81-2.25c2.42-1.13 3.22-3.22 1.77-6.75-1-2.58-2.89-4-4.82-3.22-1.29.64-1.61 1.93-1 5.14v1.29l.16 1.13c.64 2.41.64 3.21.32 4a3.55 3.55 0 0 1-2.41 2.57c-2.58 1.12-5.63-.48-6.92-4.18-1.93-4.34-.8-7.24 2.41-8.84l.81 2.41Zm-1.93-24.28 10.13-8.52v3.21l-8.52 7.08 2.73 3.05h6.11v2.41l-17.04.49v-2.74h8.52l-.81-.8-.48-.48-7.56-8.2-.16-3.22 7.08 7.72zm7.72-26.37L529 60l-.81 2.41-6.62-2.41-11.74 3.7 1-2.9 7.17-2.12 1.13-.32a1.58 1.58 0 0 0 1-.32c-.48-.48-.48-.8-1.28-1.61l-4.5-6.11 1.12-2.57 7.08 10.13Zm11.57-31.83-3.53 4.66 10.61 8.68-2.58 3.22L528 33.76l-3.86 4.34-2.41-1.92 9.97-11.9 2.41 1.77zm23.15-16.24-8.52 5.14 1.77 3.22 8.04-4.82 1.45 2.57-8.04 4.66 2.09 3.7 8.84-5.15 1.61 2.74-12.38 7.23-8.68-14.79 12.22-7.07 1.6 2.57zm33.29 6.75-4.51.16L584 13l-7 1.15-1.12 4.18-4.35 1.12L576.24.8l4.18-.8 10.13 16.56Zm-9.81-8.84c-.81-1.61-1.29-2.41-1.93-3.54a19.38 19.38 0 0 1-.48 3.82l-.81 3.38 5-.81-1.77-2.89Zm37.62 14.47-3.86-1.45 1.5-5.31c.16-.48.48-1.28.8-2.41a8.5 8.5 0 0 1 .81-2.41 4 4 0 0 1 .39-2.09l.48-1.28c-1 1.6-1.61 2.41-2.41 3.69a4.37 4.37 0 0 0-1 1.61l-4.83 6.91-3.21-1.12-1.03-7.88a8.58 8.58 0 0 0-.16-1.93V4l-.64 1.77a57 57 0 0 1-1.29 6.27l-1.29 5.46-4-.8L602.77 0l5.94 1.13.81 7.87a32.31 32.31 0 0 1 .32 5.63 8.48 8.48 0 0 1 1.61-2.57c.48-.81.8-1.61 1.28-2.25l4.51-6.43 5.62 1.93-4.5 16.88Z"/>
|
||||
<path d="M585.24 55.15c-1.93 1.93-6.11 6-10.13 9.64l-4.5 4.21a83.85 83.85 0 0 0-10.93-.8c-8.53 0-16.24 2.25-19.78 6a5.47 5.47 0 0 0-1.77 4.18c0 4 4.66 6.27 6.11 6.75 7.4 2.58 13.51 1.77 20.26-2.73a148 148 0 0 0 11.42-9.81 68.86 68.86 0 0 1 8.84 2.41l2.89.81c-3.7 3.7-7.72 7.71-11.41 11.09l-.32.32c-5 4.34-8.85 7.72-14.15 8.85a11.92 11.92 0 0 1-7.4-.49v.16a13.32 13.32 0 0 0 10.93 3.46c4.83-.32 10.29-3.54 15.92-8.84l7.72-7.4 5.3-5.46c0 .32 10.78 3.21 10.78 3.21.16 0 .16.32.16.32l-6.59 6.43-6 5.63c-5.79 5.79-9 8.68-12.38 11.1-5.63 4-10.45 6.11-14.8 6.43a13 13 0 0 1-8.2-1.61l-.32.32c3.06 2.41 6.43 5.31 12.54 5.31 7.24-.33 13.35-3.7 22.67-12.54 4.51-4 8.85-8.2 12.54-12.22l7.24-7.24a55.48 55.48 0 0 0 13.51 1.29c6.75-.16 12.54-3.38 12.54-7.24 0-2.57-2.09-3.86-3.38-4.66a16.15 16.15 0 0 0-8.36-2.41c-5 0-10.29 2.09-15.6 6.27l-3.86 3.21c.33 0-1-.16-1-.16l-10.13-3c2.9-2.57 5.63-5 7.72-6.92a28.19 28.19 0 0 1 15-6.91c2.57-.16 6.91 0 8.68 1.45l.32-.32a17.08 17.08 0 0 0-12.54-4.83c-3.37 0-9 1.13-15.75 6.43-2.57 2.09-6.43 5.63-10.13 9.33l-4.83-1.29-1.28-.64-5.31-1.61a28.32 28.32 0 0 0 3.26-2.63 120.1 120.1 0 0 1 9.32-9.16c9.65-7.88 15.44-9 19.78-9 4.5 0 8.2.81 10.61 2.74h.32c-5.46-4.83-9.16-6.44-15.75-6.44-5.95 0-12.87 3.22-19.78 9Zm-37 28.62c-3.21-.33-4.82-1.61-4.82-4 0-.32.16-7.72 17.52-8.52a23.78 23.78 0 0 1 7.56.16c-.32 0-1.93 1.6-1.93 1.6l-1.13.81c-4.18 4-11.09 10.13-17.2 10Zm69.46-6.27c5.14-3.38 9.16-5 11.73-5 1.61 0 3.22.48 3.22 2.41 0 1.77-1.61 3.38-5.31 4.83-3.21 1-8 1.28-13.34.8a34.33 34.33 0 0 1 3.7-3Zm-34.07 3.86v4.98-4.98z" style="fill:#004289;fill-rule:evenodd"/>
|
||||
<path d="M67.05 119.94c8.84 0 11.25-19 16.07-39.39L43.73 120.1c8.52 0 15-.16 23.32-.16Z" style="fill:#e40520;fill-rule:evenodd"/>
|
||||
<path style="fill:#007a4e;fill-rule:evenodd" d="m159.49 32.32-18.81 88.1h-22.83l18.81-88.1h22.83zm33.13 21.54-14.31 66.56h-22.84l14.31-66.56h22.84zm4.5-21.54-3.38 15.91h-22.83l3.38-15.91h22.83zm169.14-.49-18.81 88.11h-22.83l18.81-88.11h22.83zm32.48 21.71-14.15 66.4h-22.83l14.14-66.4h22.84zm4.66-21.71-3.38 15.92h-22.83l3.38-15.92h22.83zM206.76 40h21.71l-2.9 13.19h23.48c-.64 13.66-6.75 18.17-15.92 17.68h-10.45l-5.47 25.57s-1.6 6.11 5.63 6.11h16.56l-3.86 17.52h-27.17s-19 1.13-15.27-16.4L206.76 40Zm104.03 13.06a77.57 77.57 0 0 0-35.37.16S256.12 56 253.39 74h22.83s2.09-9.17 13.51-9.17c0 0 10.13-.8 9.48 6.11 0 0 .65 3.86-5.95 5.95l-31.51 5.63a22.8 22.8 0 0 0-17.52 18.17s-2.9 10.45 3.05 15.92c0 0 6.59 5.78 21.38 5.78 0 0 28 .81 43.25-1.44l10.29-48.4s5.15-16.24-11.41-19.45Zm-19.13 54.5s-14.31 1.29-20.26-.64c0 0-4.34-1.61-3.06-7.72a9.36 9.36 0 0 1 6.76-6.59l20.58-4.18-4 19.13Zm170.58-54.5a77 77 0 0 0-35.21.16S407.74 56 405.17 74h23s1.61-9.17 13.18-9.17c0 0 10.13-.8 9.49 6.11 0 0 .8 3.86-6.11 5.95l-31.35 5.63a23.11 23.11 0 0 0-17.69 18.17s-2.57 10.45 3.22 15.92c0 0 6.43 5.78 21.54 5.78 0 0 27.65.81 43.25-1.44l10.45-48.4s4.82-16.24-11.9-19.45Zm-19 54.5s-14.47 1.29-20.1-.64c0 0-4.5-1.61-3.21-7.72a9.36 9.36 0 0 1 6.91-6.59l20.42-4.18-4 19.13ZM103.38 43.09l-17.68 77h12.38c9.32 0 11.89-7.88 14.79-22.35l13.66-66.24H94.86c-9.16 0-13.34 5-13.34 5L0 120.1h28.14l75.24-77Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.0 KiB |
@@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45.68 27.55">
|
||||
<g data-name="Слой 2">
|
||||
<g data-name="Слой 1">
|
||||
<path d="M7.09 27.41H10L6.2 17.5H3.65L0 27.41h2.8l.4-1.35h3.47ZM3.81 24l1.1-3.68L6.05 24Zm39.68 3.41h-2.16v-.62a3.37 3.37 0 0 1-2.09.76 3.75 3.75 0 0 1-3.53-3.92 3.76 3.76 0 0 1 3.53-3.93 3.37 3.37 0 0 1 2.09.76v-.59h2.16Zm-5.55-3.78a1.71 1.71 0 1 0 1.7-1.72 1.66 1.66 0 0 0-1.7 1.63v.09Zm-11.43 3.92a3.91 3.91 0 1 1 .06 0Zm0-2.23a1.69 1.69 0 1 0 0-3.38 1.68 1.68 0 0 0-1.7 1.67 1.65 1.65 0 0 0 1.61 1.69Zm-14.13-5.45v4.34a1.39 1.39 0 0 0 .35 1.05 1.12 1.12 0 0 0 .74.28 1.22 1.22 0 0 0 .92-.38 1.84 1.84 0 0 0 .33-1.25v-4H17v7.54h-2.2v-.68a2.56 2.56 0 0 1-1.86.8 2.6 2.6 0 0 1-1.94-.82 3.26 3.26 0 0 1-.83-2.45v-4.43Zm7.82 0v1.26a2.36 2.36 0 0 1 2.11-1.37V22a2.16 2.16 0 0 0-1.44.55 2.37 2.37 0 0 0-.52 1.7v3.21h-2.26v-7.59Zm13.1 0v1.26a2.38 2.38 0 0 1 2.12-1.36V22a2.07 2.07 0 0 0-1.44.55 2.3 2.3 0 0 0-.52 1.7v3.2H31.2v-7.58Zm.48-10.97A2.88 2.88 0 1 1 37 6.45a2.92 2.92 0 0 1-.82 1.64 4.85 4.85 0 1 0 6.86 0 4.92 4.92 0 0 0-2.52-1.34 7.09 7.09 0 0 1-.14.78 4.06 4.06 0 1 1-4.76 3.21 4.1 4.1 0 0 1 1.11-2.09 3.67 3.67 0 1 0-5.19 0 3.77 3.77 0 0 0 1.92 1 6.92 6.92 0 0 1 .32-.75Zm-.55 2.3a5.23 5.23 0 1 1 4.66-1.45 2.49 2.49 0 1 0 2-.72 5.9 5.9 0 0 1-.49.8 1.72 1.72 0 1 1-.92.48 6 6 0 1 0-8.54 0A6.13 6.13 0 0 0 33.25 12a7.12 7.12 0 0 1 0-.8Zm-1.92-8a4.06 4.06 0 0 1 5.74 5.75 3.67 3.67 0 1 0 5.19 0 3.71 3.71 0 0 0-1.92-1 5.34 5.34 0 0 1-.28.76 2.88 2.88 0 1 1-3.25 2.45 2.92 2.92 0 0 1 .82-1.64 4.85 4.85 0 1 0-6.86 0 4.8 4.8 0 0 0 2.52 1.33 6.51 6.51 0 0 1 .13-.85 4.06 4.06 0 0 1-3.21-4.76 4.11 4.11 0 0 1 1.12-2.1Zm9.28 3.19a5.24 5.24 0 1 1-4.65 1.45 2.49 2.49 0 1 0-3.52 0 2.49 2.49 0 0 0 1.58.69 7.18 7.18 0 0 1 .5-.8 1.7 1.7 0 0 1-.57-3.35 1.7 1.7 0 0 1 1.49 2.88 6 6 0 1 0 5.19-1.69 5.21 5.21 0 0 1 0 .79Z" style="fill:#002653" data-name="Слой 2"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 272.07 150">
|
||||
<path d="M82 118a10.11 10.11 0 0 0 4-8.22 8.62 8.62 0 0 0-2.94-6.93c-2.12-1.79-5.28-2.61-9.83-2.61H53.69v38.06H73c5.26 0 8.83-1.14 11.09-2.94a10.4 10.4 0 0 0 3.73-8.36 9.33 9.33 0 0 0-5.82-9Zm-16.89-9.2h6.21c1.5 0 2.56.15 3.23.79a2.86 2.86 0 0 1 .74 2.15 3.28 3.28 0 0 1-.65 2.18 4 4 0 0 1-3.14 1h-6.39Zm6.48 20.93h-6.48v-6.52h6.44a6.44 6.44 0 0 1 3.55.65 2.85 2.85 0 0 1 1.11 2.57 3 3 0 0 1-.91 2.37 5.6 5.6 0 0 1-3.71.93Zm-35.8 8.57h14.56l-19-50.06H18.42L0 138.3h14.12l2-6.81h17.56Zm-16.57-17.09 5.54-18.57 5.75 18.57Zm94.54-21.83a16.93 16.93 0 0 0-10.56 3.84l-.13-3H92.13V150h11.43v-14.3a17.5 17.5 0 0 0 10.2 3.3c10.21 0 17.82-9.3 17.82-19.81S124 99.38 113.76 99.38Zm-2.16 28.48a8.67 8.67 0 1 1 8.59-8.67 8.43 8.43 0 0 1-8.59 8.67Zm88.69-28.48a16.93 16.93 0 0 0-10.56 3.84l-.13-3h-10.94V150h11.43v-14.3a17.52 17.52 0 0 0 10.2 3.3c10.22 0 17.82-9.3 17.82-19.81s-7.6-19.81-17.82-19.81Zm-2.16 28.48a8.67 8.67 0 1 1 8.6-8.67 8.43 8.43 0 0 1-8.6 8.67Zm62.96 10.44h-10.95l-.13-3.13a16.93 16.93 0 0 1-10.54 3.83c-10.23 0-17.83-9.3-17.83-19.81s7.6-19.81 17.83-19.81a16.88 16.88 0 0 1 10.53 3.84l.13-3h10.95ZM233 119.19a8.6 8.6 0 1 0 8.61-8.67 8.43 8.43 0 0 0-8.61 8.67ZM155 139a19.81 19.81 0 1 1 19.88-19.81A19.7 19.7 0 0 1 155 139Zm0-11.28a8.53 8.53 0 1 0-8.46-8.53 8.32 8.32 0 0 0 8.46 8.53Zm57-82.89a14.55 14.55 0 1 1 12.3-4.12A24.52 24.52 0 1 0 246.25 34a30.72 30.72 0 0 1-.67 3.91 20.31 20.31 0 0 1 10.57 5.62 20.51 20.51 0 1 1-29 0 18.55 18.55 0 1 0-16.51 5.1 30.81 30.81 0 0 1 1.36-3.8Zm-2.75 11.61a26.46 26.46 0 1 1 23.47-7.31 12.57 12.57 0 1 0 17.77 0 12.43 12.43 0 0 0-7.79-3.62 32.55 32.55 0 0 1-2.51 4 8.6 8.6 0 1 1-4.66 2.4 30.45 30.45 0 1 0-26.23 8.54 32 32 0 0 1-.01-4.01Zm-9.74-40.52a20.51 20.51 0 0 1 29 29 18.55 18.55 0 1 0 16.51-5.1 30.81 30.81 0 0 1-1.4 3.79 14.55 14.55 0 1 1-12.3 4.12 24.48 24.48 0 1 0-34.62 0 24.26 24.26 0 0 0 12.71 6.72 32.6 32.6 0 0 1 .67-3.91 20.31 20.31 0 0 1-10.57-5.62 20.52 20.52 0 0 1 .04-29ZM246.41 32a26.46 26.46 0 1 1-23.48 7.31 12.57 12.57 0 1 0-10 3.63 30.83 30.83 0 0 1 2.51-4 8.6 8.6 0 1 1 4.65-2.4A30.49 30.49 0 1 0 246.36 28a31.88 31.88 0 0 1 .05 4Z" style="fill:#002653" data-name="Слой 2"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 17 KiB |
@@ -0,0 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 798.66 150">
|
||||
<g data-name="Слой 2">
|
||||
<g data-name="图层 1">
|
||||
<path style="fill:#008ed3" d="M210.14 0h-60.1L0 150h150.04l60.1-150z"/>
|
||||
<path d="M139.83 57.76a6.86 6.86 0 1 1 5.91 0v1.94a20.16 20.16 0 0 1 6.26 1.91c.69 0 1.62-.1 2.55-.1 8.67 0 14.76 5.72 14.76 13.62a9.63 9.63 0 0 1-9.31 9.33c-4.93 0-9.38-4.83-8.49-9.69a14.27 14.27 0 0 0-.51 3.72v24.8c-.21 2.82-4 18.43-21.52 18.43s-21.3-15.61-21.48-18.43v-24.8a14.81 14.81 0 0 0-.49-3.72c.93 4.68-3.59 9.69-8.49 9.69a9.62 9.62 0 0 1-9.27-9.33c0-7.9 6.07-13.62 14.76-13.62.92 0 1.83.05 2.52.1a19.86 19.86 0 0 1 6.27-1.91v-2a6.85 6.85 0 1 1 5.94 0v2.59a12.85 12.85 0 0 1 1.75.67 9.59 9.59 0 0 1 5.64-4.89v-2a6.87 6.87 0 1 1 5.89 0v2.09a9.47 9.47 0 0 1 5.58 4.89 12.16 12.16 0 0 1 1.77-.67v-2.62Z" style="fill:#fff;fill-rule:evenodd"/>
|
||||
<path d="M166.58 75.13c0-6.39-4.35-11.6-13.31-11.6-6 0-13 5-13 17.75v18.93c2.58-1.69 6.16-3.24 8.11-3.27V79.28c0-6.76 4.86-8.73 7.13-8.73a5.94 5.94 0 0 0-2.06 4.58 6.62 6.62 0 0 0 6.55 6.56 6.5 6.5 0 0 0 6.58-6.56Zm-74.14 0c0-6.39 4.35-11.6 13.31-11.6 5.94 0 13 5 13 17.75v18.93c-2.59-1.69-6.16-3.24-8.11-3.27V79.28c0-6.76-4.87-8.73-7.15-8.73a5.93 5.93 0 0 1 2.08 4.58A6.63 6.63 0 0 1 99 81.69a6.51 6.51 0 0 1-6.57-6.56Z" style="fill:#e60021"/>
|
||||
<path d="M129.52 119c15 0 18.4-12.6 18.86-15.8v-4.28a20.63 20.63 0 0 0-11.61 7.31 17.43 17.43 0 0 0-7.25-10.38 17.49 17.49 0 0 0-7.29 10.38 20.57 20.57 0 0 0-11.6-7.31v4.25c.46 3.2 3.85 15.8 18.89 15.8Zm1.05-66.43v5.2A7.16 7.16 0 0 1 136.2 62a16.33 16.33 0 0 0-6.71 8.71 16.23 16.23 0 0 0-6.68-8.71 7.45 7.45 0 0 1 5.63-4.26v-5.19a4.82 4.82 0 1 1 2.13 0Z" style="fill:#e60021"/>
|
||||
<path d="M117.31 56.26v5.56c6.54 1.31 11.22 8.26 11.22 14.63v17.77a16.49 16.49 0 0 0-7 8.34 10.59 10.59 0 0 0-.82-.87v-23c0-6.92-3.7-13.85-10.33-16.12a13.41 13.41 0 0 1 4.83-.88v-5.43a4.86 4.86 0 1 1 2.15 0Zm26.53.03v5.43a13.52 13.52 0 0 1 4.85.88c-6.64 2.27-10.32 9.33-10.32 16.12v23a6.69 6.69 0 0 0-.84.87 16.6 16.6 0 0 0-7-8.34v-17.8c0-6.37 4.64-13.32 11.2-14.63v-5.56a4.82 4.82 0 1 1 5.92-4.68 4.86 4.86 0 0 1-3.78 4.71Z" style="fill:#e60021"/>
|
||||
<path d="M286.65 50.76V32.64h19.07v18.12Zm-26.76 11V58H278v24.51h8.83V58h18.94v3.44h8.88V25.12h-27.97V10.68H278v14.44h-26.71v36.67ZM278 32.64v18.12h-18.11V32.64H278m289.44-21.75h9l.05 12.43h29.92v7.67h-41.68l-.23 8.54h33.67c-.43 8.33-1 17.95-1.44 25.8-.41 7.13-1.19 10.45-3.63 12.46-2.14 1.74-7.87 2.25-14.85 3.4a31.07 31.07 0 0 0-3.73-9.32c8.37-.44 12.75.25 13.19-4.42a194.86 194.86 0 0 0 1.09-20.06h-24.95c-1.81 23.29-11.53 28.67-20.3 34.6a47.44 47.44 0 0 0-6.71-6.87c19.22-8.61 19.06-22.18 19.27-44h-18.22v-7.68h29.52V10.89m203.04 26.66 4.43-6.39c8.49 4.52 18.36 9.13 23.78 12.74 0 0-3.42 4.19-5.6 6.9-6.29-4.69-17-10.25-22.61-13.25Zm18.4 13.63v7.49h-19.43v12.56h28v7.68h-64.87v-7.68h27.18V58.67h-18.55v-7.49Zm-52.34.4a82.42 82.42 0 0 0-5-7.14c6.15-2.46 17.33-8 23-13.71l5.68 6c-3.27 3.29-16.38 11.38-23.69 14.87Zm23.68-40.29h9v7.94H796v16.38h-8.6v-9.15h-44.26v9.3l-8.43.1V19.27h25.42l.06-8M390.92 46.65h4.73v-6.38h-12.93V32.5H398v-6.28h-37.44v6.28H375v7.77h-12.82v6.31H375v10.85h-15.79v6.65h39.56v-6.67h-16v-10.8h7.6l-5.08 3.15a83 83 0 0 1 5.89 7.13l5.15-3.38c-1.61-2.31-4.24-5.55-5.36-6.9ZM356 81.44v-5.85h46v5.69h8.38V14.14h-62.65v67.3Zm46-12.59h-46V21.08h46v47.77m81.79-29.63c-2.55 3.9-3.93 6.52-6.35 9.54h-6.93l3.14-1.49a79.18 79.18 0 0 0-5.93-8.13h16.07Zm1.09-.11h12.05v30.51c-.07 2.93-1.2 3.86-5 3.86h-3.33a51.63 51.63 0 0 1 3.82 8.52c6-.82 8.35-1.75 10-2.88s2.83-2.27 2.83-7V32.3H480v-5.55h30.73v-7.3h-30.79v-8.56h-8.64v8.59h-31v7.3h31l-.06 5.59h-25v49.32h8.13V39.08h12.83l-6 2.67c1.62 2 3.39 4.9 4.71 7h-7.57V55h13.26v5.38h-15.43v6.72h15.43v12.64h7.75V67.1h15.46v-6.75h-15.46V55h14.12v-6.24h-8c1.37-1.48 4.57-5.34 5.52-6.57l-6.11-3.08M654.07 30l-6.32 1c1 4.06 1.63 7.48 2.06 10.19l6.19-1.35c-.32-2.23-1.48-7.43-1.91-9.8Zm3.8-2.13v15.26h-11.66V27.91Zm5.79 49.62a63.12 63.12 0 0 1 7.11 4.28c5.29-5.59 9.35-13.73 9.12-36v-2.1h6.58l-.51 29c-.14 5.22.68 7.07 5.75 7.18h6.47c2.41-.11 4-3.47 5.86-10.76a34.78 34.78 0 0 1-6.5-4.07c-.6 3.16-1.07 6.29-1.74 6.92a1.45 1.45 0 0 1-1.4.24c-.61-.07-.66-.43-.63-1.59 0-7.89.7-34 .7-34h-22v15.52c0 11.76-3 20.91-8.78 25.42Zm-9.76-25.18-6.56.85c.89 3.87 1.56 9.7 2 12.4l6.58-1.63c-.34-3.1-1.57-9.27-2-11.62Zm-20.19-9.22v7.26h5.56v2.11c-.22 10.18-1.94 18.2-5.78 23.62A83.69 83.69 0 0 1 640 82c4.34-6.59 6.3-13.65 6.21-31.71h11.66v19.33c0 2.35-1.29 2.44-8.07 2.3a21.67 21.67 0 0 1 2.65 8.16c9.49-.94 12.52-3.17 12.52-6.65V21.57h-9.73c.57-2.4 1.61-6.82 2.15-8.48-1.57-.4-7.1-1.41-7.88-1.58-.31 2.4-.78 6.46-1.56 10.06h-8.65v21.52ZM688 22.84v-11.9h-8.6v11.9h-12.56v7.28h34.83v-7.28H688M287 132.73h-4.83v-32.66H287v14.19h15.44v-14.19h4.86v32.66h-4.86v-15.41H287v15.41zm30.28 0h-4.86v-32.6l4.86-.01v32.61zm8.36 0h-3.12v-32.55h1.26l20.92 23.09v-23.09h2.93v32.55h-1.24l-20.75-22.83v22.83zm-46.86-4.9v3.77a38.25 38.25 0 0 1-10.65 1.56c-21.78 0-23.15-33.44.11-33.44a49.25 49.25 0 0 1 10.54 1v3.52a26.19 26.19 0 0 0-10.21-1.66c-14.84 0-16.36 27.54 1.89 27.54 3.19 0 5.38-.9 8.32-2.33m87.5-5.12h-9.75l-2.95 10.07h-3.88l9.85-32.84h5.16l10 32.84H369Zm-4.94-17-4.13 14h8.23l-4.1-14m221.98 27.13h-3.08v-32.59h1.26l20.97 23.11v-23.11h2.93v32.59h-1.22l-20.86-22.83v22.83zm-77.28 0h-4.87v-32.73h4.87v14.19h15.45v-14.19h4.83v32.73h-4.83v-15.42h-15.45v15.42zm-36.62-32.88h3v21.37c0 4.8-3.51 11.54-12.29 11.54a11.88 11.88 0 0 1-12.21-11.48V99.92h4.86v21.76c0 5 4.42 8.07 8.78 8.07a8.25 8.25 0 0 0 7.9-8.14V99.92m19.84 32.82h-4.88v-29.35h-9.88v-2.96h24.56v2.96h-9.8v29.35zm62.11-3.31v3.08H530.5v-32.26h20.91v3.01h-16.06v10.72h16.07v2.94h-16.07v12.51h16.06zm-160.13 2.36v-4.35c11.09 7.43 17.63-2.46 11.88-6.26-2.34-1.59-6.56-4.35-9-6-6.18-4.18-4.8-19.74 14.2-14.39v3.92c-13-5.37-16.06 3.07-10.22 6.77 2.83 1.78 5.11 3.3 8.24 5.68 8 6.13 2.76 20.81-15.06 14.65m20.49-15.52A16.5 16.5 0 1 1 428.3 133a16.58 16.58 0 0 1-16.49-16.71m5.16 0c0 7.61 5.08 13.82 11.33 13.82s11.33-6.21 11.33-13.82-5.09-13.85-11.33-13.85-11.3 6.24-11.3 13.87m152.5.29 8.29 16.14h-5.21l-8.1-15.67h-4.3v15.67h-4.87v-32.57h11.31c4.47 0 9.81 2 9.81 8.16 0 6-3.32 7.3-6.93 8.27m-4-2.19a5.58 5.58 0 0 0 0-11.16h-5.32v11.15Zm206.82 15.02v3.08h-20.93v-32.26h20.93v3h-16.06v10.71h16.09v2.98h-16.09v12.49h16.06zm-64.22 0v3.08h-20.95v-32.26h4.9l-.03 29.18h16.08zm69.16 2.35v-4.37c11.08 7.46 17.62-2.46 11.87-6.21-2.34-1.61-6.56-4.37-9.07-6-6.15-4.18-4.75-19.74 14.23-14.36v3.89c-13.09-5.36-16.13 3.06-10.25 6.76 2.8 1.79 5.08 3.29 8.2 5.69 8.08 6.1 2.81 20.84-15 14.64m-121.43.92h-4.84V100.1l4.84-.03v32.67zm61.59 0h-4.88V100.1l4.88-.03v32.67zm7.56 0h-3.12v-32.57h1.27l20.92 23.09v-23.09h2.94v32.57h-1.22l-20.79-22.85v22.85zm-86.89-10.07h-9.74l-2.92 10.07h-3.9l9.89-32.88h5.13l10 32.88h-5.71Zm-4.91-17-4.11 14h8.21l-4.1-14m41.29 10.93 8.28 16.14h-5.22l-8.07-15.64h-4.31v15.64h-4.89v-32.59h11.34c4.49 0 9.81 2 9.81 8.17 0 6-3.34 7.28-6.94 8.28m-9.32-2.24h5.31a5.58 5.58 0 0 0 0-11.15h-5.31Z" style="fill:#001d53"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><g id="Слой_2" data-name="Слой 2"><g id="Слой_1-2" data-name="Слой 1"><path d="M75,150A75,75,0,1,0,0,75a75.21,75.21,0,0,0,75,75Z" style="fill:#f1f2f5;fill-rule:evenodd"/><path d="M109.91,81.93l-.42-14.11c0-.48-.49-.54-.61-.06L102.4,82.05c-.24.61-.06,1.16.43,1.09h6.42c.48-.06.72-.48.66-1.21M99.07,131.29a8.47,8.47,0,0,1-11,3.57A175.23,175.23,0,0,1,32.7,93.44H52l1.69-7H41.48a5.78,5.78,0,0,1-1-.07A4.17,4.17,0,0,1,37,84.42a4,4,0,0,1-.67-2.85c.06-.24.67-2.91.67-3.15v-.06l1.88-7.27c.85-3.33,3.69-5.39,7.45-5.51H58.86l1.64-6.9H51.84L41,62.74l1-4.06H40.51c-3.51-.06-5.93.24-7.63,1a5.69,5.69,0,0,0-3.21,3.63l-5,20.53A190.84,190.84,0,0,1,12.54,66.55,8.39,8.39,0,0,1,14.9,55.17,179.9,179.9,0,0,1,111.67,24a8.63,8.63,0,0,1,8.6,7.87,168.4,168.4,0,0,1,.06,26.95H101.92L84.48,93.32H97.19l2.06-4.6c.18-.43.43-.61,1-.61h9.15a.48.48,0,0,1,.54.49l.12,4.72h4.12a173.67,173.67,0,0,1-15.14,38ZM75.33,93.44H54.62l1.64-7H69.58c4.6,0,6.78-3.94,3.63-6.18s-5.26-4-8.47-6.3c-6.42-4.54-3.46-15.08,7.32-15.14H91.5l-1.63,6.9H76.79c-3.58-.06-4.36,3.94-2.06,5.39l8.35,6.24c6.91,5.21,2.85,16.11-7.75,16.11Z" style="fill:#df3132;fill-rule:evenodd"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1165.4 150">
|
||||
<g data-name="Слой 2">
|
||||
<g data-name="Layer 1">
|
||||
<path d="m91.25 93.74 84.55 40.7L91.25 4.21 6.7 134.44ZM0 150h182.49l-91.24-38.55Z" style="fill:#98002e"/>
|
||||
<path d="M91.25 93.74V4.21L6.7 134.44ZM0 150h91.25v-38.55Z" style="fill:#e31b23"/>
|
||||
<path d="M189.88 123.24a6 6 0 1 1-6 6 6 6 0 0 1 6-6Zm0 11.12a5.13 5.13 0 1 0-5.13-5.11 5.11 5.11 0 0 0 5.13 5.11Zm-1.32-1.68h-.87v-6.92h2.67c1.57 0 2.18.67 2.18 1.91a1.88 1.88 0 0 1-1.74 2l2.07 3h-1l-2.07-3h-1.25Zm0-3.81h1.12c.95 0 2-.05 2-1.2 0-.89-.81-1.15-1.55-1.15h-1.56Z" style="fill:#98002e"/>
|
||||
<path d="M1134.67 11.87a1.49 1.49 0 0 0 1.95-.85 1.51 1.51 0 1 0-2.81-1.12 1.5 1.5 0 0 0 .86 1.97Zm.09-.25a1.25 1.25 0 0 1-.69-1.62 1.21 1.21 0 0 1 1.59-.69 1.24 1.24 0 0 1 .69 1.61 1.22 1.22 0 0 1-1.59.7Zm.74-.89a.42.42 0 0 0 .59-.25.5.5 0 0 0 0-.49.89.89 0 0 0-.38-.23l-.75-.3-.58 1.53.29.12.25-.63.29.12.09.76.35.13Zm-.5-.5.14-.43.38.14c.14.06.36.15.28.35s-.21.2-.38.13Zm7.67 21.44-.06.06a64.84 64.84 0 0 1-86.22 96.56l-.06.07a64.83 64.83 0 1 0 86.34-96.69Zm-114.93 73.7c-2.06 1.15-2.54 2.88-1.47 5.56 1 2.42 2.53 3.49 4.17 2.84 1.31-.53 1.54-1.67 1-4.59l-.23-1.13c-.53-2.88-.62-4.13-.29-5.35a3.8 3.8 0 0 1 2.37-2.78c2.92-1.18 5.69.62 7.35 4.75 1.79 4.43.83 7.84-2.65 9.27l-.89-2.18c2.4-1.06 3-3.32 1.75-6.54-1-2.67-2.75-3.83-4.5-3.12-1.44.58-1.78 1.9-1.24 4.9l.21 1.25.18 1.1a10.29 10.29 0 0 1 .22 4 3.6 3.6 0 0 1-2.27 2.55c-2.74 1.05-5.43-.54-6.91-4.24-1.61-4-.76-7 2.34-8.41Zm-1.85-23.39 9.85-8.3.08 3.07-8.36 6.9 2.74 2.96 5.84-.13.06 2.42-16.74.35-.08-2.38 6.58-.16h1.77l-.58-.59-.54-.6-7.41-7.99-.09-3.17 6.88 7.62zm7.45-25.89 6.42 2.21-.79 2.3-6.43-2.3-11.54 3.52.95-2.77 7.2-2 .89-.26a10.68 10.68 0 0 1 1.21-.27c-.54-.65-.69-.83-1.28-1.64l-4.47-6 .93-2.6Zm11.3-30.72-3.54 4.32 10.57 8.63-2.52 3.13-10.57-8.63-3.52 4.25-2.4-1.91 9.6-11.73 2.38 1.94zm22.53-15.84-8.44 4.92 1.82 3.07 7.73-4.51 1.49 2.46-7.78 4.54 2.09 3.56 8.62-5.03 1.55 2.67-12.09 7.03-8.39-14.41 11.86-6.98 1.54 2.68zm32.38 6.47-4.31.28-2.16-3.58-6.78 1.06-1 4.12-4.13 1.12 4.41-18.3 4.14-.68ZM1090 7.4a19.89 19.89 0 0 1-1.79-3.4 31.22 31.22 0 0 1-.71 3.84l-.71 3.18 4.92-.79Zm36.43 13.99-3.51-1.39 1.35-5c.13-.58.35-1.37.62-2.37s.53-1.87.73-2.5.42-1.36.63-2.09l.41-1.18c-1 1.68-1.38 2.3-2.3 3.68-.37.6-.73 1.11-1 1.51l-4.74 6.64-3-.8-1-8c-.06-.42-.12-1-.17-1.79 0-1-.1-1.84-.11-2.37s0-1.12 0-2l-.41 2c-.48 2.22-.71 3.17-1.36 5.83l-1.4 5.36-3.75-.57L1111.58 0l5.65 1.11.8 7.71a38.94 38.94 0 0 1 .15 5.49 29.14 29.14 0 0 1 1.57-2.74c.5-.77.91-1.42 1.3-2l4.39-6.31 5.36 1.82Z" style="fill:#003d79"/>
|
||||
<path d="M1094.51 53.59c-2 1.77-6.08 5.61-10 9.36l-4.39 4.21a59.88 59.88 0 0 0-10.79-1c-8.17 0-15.59 2.24-19 5.71a5.71 5.71 0 0 0-1.9 4.3c.07 3.92 4.58 5.92 6 6.44 7.18 2.69 13.24 1.91 19.66-2.55a107.24 107.24 0 0 0 11.06-9.6c2.57.56 5.51 1.36 8.66 2.28l2.91.85c-3.76 3.69-7.66 7.56-11.23 10.72l-.28.24c-5 4.39-8.55 7.55-13.73 8.69-3.68.82-6.29 0-7.12-.47a.48.48 0 0 0-.22.16 13.47 13.47 0 0 0 10.77 3.44c4.67-.4 10-3.31 15.59-8.45l7.41-7.31 5.16-5.16 10.55 3.09a1.29 1.29 0 0 1 .2.06c-.13 0-6.57 6.33-6.57 6.33l-5.59 5.54c-5.66 5.55-8.77 8.47-12.12 10.83-5.58 3.93-10.28 6-14.48 6.25a14.32 14.32 0 0 1-7.91-1.53c-.12 0-.25.12-.25.12 2.85 2.42 6.3 5.31 12.28 5.14 6.76-.18 12.74-3.41 22-12 4.26-3.94 8.49-8.24 12.22-12.11l6.9-7a53.67 53.67 0 0 0 13.17 1.33c6.54-.12 12.07-3.25 12.13-6.84.08-2.65-2.1-4.06-3.36-4.92a15.08 15.08 0 0 0-8-2.31c-4.94 0-10.07 2.17-15.24 6.45l-3.48 3-1.27-.36-9.68-2.52c2.84-2.68 5.25-5 7.45-6.87 5.26-4.69 11.08-6.63 14.48-6.84 2.48-.16 6.86.06 8.63 1.33.06 0 .18-.22.18-.22a17.22 17.22 0 0 0-12.25-4.57c-3.34 0-8.67 1.05-15.24 6.12a107.3 107.3 0 0 0-9.7 9.19s-4.85-1.51-4.85-1.51l-1.19-.36-5.14-1.56c.11 0 3-2.74 3-2.74 3.42-3.37 6.69-6.6 9.21-8.72 9.18-7.75 15-8.77 19.07-8.82 4.42 0 7.92.91 10.44 2.73.07 0 .2-.16.2-.16-5.19-4.69-8.9-6.2-15.35-6.24-5.72-.1-12.46 3.04-19 8.83Zm-36.35 27.65c-2.94-.19-4.39-1.42-4.39-3.71 0-.3.21-7.63 16.93-8.47a40.9 40.9 0 0 1 7.32.22c-.15 0-1.91 1.63-1.91 1.63l-1 1c-4.11 3.63-10.89 9.74-16.95 9.33Zm67.89-5.93c4.85-3.24 8.86-5 11.34-4.91 1.49.07 3.26.51 3.26 2.35s-1.78 3.44-5.27 4.69c-3.08 1.07-7.81 1.37-12.93.77a44.41 44.41 0 0 1 3.6-2.9Zm-33.23 3.63v4.96m-839.13 50.53h41c42.17 0 67.33-21.82 67.33-58.08s-25.16-58.07-67.33-58.07h-41Zm25.93-96h15.08c27.38 0 41.05 13.49 41.05 37.89s-13.67 37.9-41.05 37.9h-15.08Zm170.55 45.65h49.33V63.92h-49.33V38.46h55.76V18.29h-81.71v116.14h83.53v-20.18h-57.58V84.08zm205.37 30.17h-50.01V18.29h-26.04v116.14h76.05v-20.18zm140.11-95.96H691.4v20.17h39.08v95.97h26.08V38.46h39.09V18.29zM946.4 134.43h-27.17l-11.38-29.1H860.6l-11.35 29.1h-25.37l48.56-116.64h26.2Zm-45.92-48.52-16.22-41.22L868 85.91Z" style="fill:#003d79"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1362.13 150"><g id="Слой_2" data-name="Слой 2"><g id="svg4210"><path id="path4079" d="M199.3,150h42.08c10.39,0,17.64-4.32,21.5-12.37C267.45,128.08,328.83,0,328.83,0H286.75c-10.39,0-17.64,4.32-21.5,12.36C260.68,21.92,199.3,150,199.3,150" style="fill:#0b1560"/><path id="path4081" d="M1006.54,150h42.08c10.39,0,17.63-4.32,21.5-12.37,4.57-9.55,66-137.62,66-137.62H1094c-10.41,0-17.64,4.32-21.49,12.36l-66,137.63" style="fill:#0b1560"/><path id="path4083" d="M146,0c-10.24,0-16.06,1.25-23.53,5.18C120,6.47,93,20.58,73.53,30.92,58.1,39.09,47.35,50.63,40.59,64.75,21.08,105.45,0,150,0,150H42.09c10.39,0,17.64-4.32,21.49-12.37,1.7-3.56,11.18-23.32,20.74-43.24h68.49c9.39,0,13-1.71,16.61-9.25L173,77.59H90.5C98,62,109.15,38.51,109.15,38.51c4.7-9.82,10.24-13.77,22.75-13.77h88.7c10.4,0,17.65-4.32,21.51-12.38l6-12.35H146" style="fill:#0b1560"/><path id="path4085" d="M791.25.07H771.9c-10.39,0-17.64,4.32-21.49,12.37C747.78,18,720,76.16,705.74,106a28,28,0,0,0-4.66-9.83c-26-35.54-56.59-77.56-66.81-91.81-3.48-4.84-9.31-5.42-15-2.42-4.8,2.51-7,3.71-12.06,6.36-14.58,7.73-23,17.6-30.07,32.27C557.62,81.21,525.39,150,525.39,150h19.22c10.39,0,17.64-4.32,21.49-12.37,2.1-4.37,25.7-54,39.41-82.74a15.53,15.53,0,0,0,3,6.89c21.31,28.51,54,72.29,57.29,76.62,5.59,7.42,11.37,11.6,21.76,11.6h31.7L791.25.07" style="fill:#0b1560"/><path id="path4087" d="M557,.07H537.61c-10.38,0-17.64,4.32-21.5,12.37C513.47,18,485.69,76.16,471.45,106a28.22,28.22,0,0,0-4.66-9.83C440.81,60.58,410.2,18.56,400,4.31c-3.47-4.84-9.3-5.42-15-2.42-4.8,2.51-7,3.71-12.05,6.36-14.59,7.73-23.05,17.6-30.08,32.27C323.33,81.21,291.1,150,291.1,150h19.21c10.4,0,17.64-4.32,21.5-12.37,2.1-4.37,25.69-54,39.41-82.74a15.64,15.64,0,0,0,3,6.89c21.31,28.51,54,72.29,57.28,76.62,5.59,7.42,11.37,11.6,21.77,11.6H485L557,.07" style="fill:#0b1560"/><path id="path4089" d="M848.53,77.59c10.94-22.79,18.31-38.28,18.31-38.28,5.15-10.77,10-14.57,23.35-14.57h69c7,0,9.21,3.83,6.74,9-5.92,12.33-13.45,28-21,43.85Zm163-43.13c-2.12-1.53-31.38-23.7-33.16-25-8.3-6.28-18.87-9.42-30-9.42H902.06C891.83,0,886,1.25,878.52,5.18c-2.45,1.29-28.79,15.1-48.28,25.44-16.34,8.65-26.66,19.86-33.81,34.75C776.92,106.07,756.07,150,756.08,150h42.08c10.4,0,17.64-4.32,21.49-12.37l20.8-43.24h96.41c-7.09,14.79-13.73,28.64-18.52,38.66C914.09,141.89,918.7,150,930,150H967.8s44.52-93,46.87-97.76c4.09-8.29,3.59-12.92-3.13-17.78" style="fill:#0b1560"/><path id="path4091" d="M1310.75,33.74c-4.4,9.17-8,17.14-13.57,28.71-4,8.39-11.34,12.06-28.65,12.06H1195C1202.49,58.9,1213,37.19,1213,37.19c4.14-8.66,10.35-12.45,21.22-12.45H1304C1311,24.74,1313.22,28.57,1310.75,33.74Zm45.64.72c-2.13-1.53-29.29-22.31-31.05-23.66A55,55,0,0,0,1292.58,0H1248.9c-10.24,0-16.06,1.25-23.54,5.18-2.45,1.29-26.56,13.91-46.07,24.25-19.28,10.22-28.44,20-36.6,37-19.51,40.71-39.78,83.57-39.78,83.57H1145c10.4,0,17.64-4.32,21.49-12.37,1.71-3.56,12.85-26.4,22.4-46.33h24.5c11.67,0,15.72,3.61,20.41,11.56,8.85,15,18.89,31.91,20.58,34.77,5.55,9.36,10.45,12.37,22.89,12.37h48s-12.48-20.15-26.75-44.36c-2.24-3.8-4.8-6.44-12-7.63-2.19-.35-11.18-1.84-20.57-3.39l.45-3.29h38.9c26.31,0,38-5.75,43.72-16.82,2.7-5.23,9.65-20.76,10.41-22.27,4.09-8.29,3.6-12.92-3.13-17.78" style="fill:#0b1560"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 649.55 150"><defs><linearGradient id="Безымянный_градиент" x1="-1257.18" y1="27.02" x2="-1241.6" y2="21.3" gradientTransform="matrix(1.03, 0.01, 0.01, -1, 1829.43, 153.25)" gradientUnits="userSpaceOnUse"><stop offset="0.07" stop-color="#8b350b"/><stop offset="0.15" stop-color="#913c0e"/><stop offset="0.28" stop-color="#a34e14"/><stop offset="0.3" stop-color="#a65215"/><stop offset="0.46" stop-color="#b76519"/><stop offset="0.89" stop-color="#e8a71f"/></linearGradient><linearGradient id="Безымянный_градиент_2" x1="-1243.29" y1="59.7" x2="-1196.27" y2="38.03" gradientTransform="matrix(1.03, 0.01, 0.01, -1, 1829.43, 153.25)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#e79000"/><stop offset="0.02" stop-color="#e89400"/><stop offset="0.06" stop-color="#eca022"/><stop offset="0.07" stop-color="#eda42c"/><stop offset="0.1" stop-color="#f0b24d"/><stop offset="0.2" stop-color="#fbddaa"/><stop offset="0.22" stop-color="#fadaa3"/><stop offset="0.26" stop-color="#f9d48f"/><stop offset="0.3" stop-color="#f7c96c"/><stop offset="0.35" stop-color="#f4bb35"/><stop offset="0.35" stop-color="#f4ba30"/><stop offset="0.66" stop-color="#eea900"/><stop offset="0.98" stop-color="#e78e00"/></linearGradient></defs><g id="Слой_2" data-name="Слой 2"><g id="Layer_1" data-name="Layer 1"><path d="M646.24,0c-4.46.45-41.06,2.68-41.06,2.68s-1.34-.44-3.57,1.79C599.83,6.74,489.14,131.7,489.14,131.7S474,148.21,452.55,150H603.84L649.36,2.72S650.7-.4,646.24,0Z" style="fill:#00387c"/><path d="M537.79,113.85a5.39,5.39,0,0,0-2.23,2.23c-.45,1.34.89,2.68,2.23,3.57,1.79.89,4,1.34,8,1.34a19.8,19.8,0,0,0,6.7-.89,42.39,42.39,0,0,1,1.78-4.47c.9-1.78,2.23-4.9,3.13-6.69C549,109.39,542.25,111.17,537.79,113.85Z" style="fill:url(#Безымянный_градиент)"/><path d="M619.46,62.53s-3.57,4.46-17,4c-8.92,0-13.39-2.68-24.1-3.12-12,0-20.53,4-23.2,9.37-1.34,2.68-8,17.85-8,17.85a22.38,22.38,0,0,1,9.82-5.8c8.48-2.68,16.51-2.23,24.55-.89,5.8.89,9.37,2.23,14.73,1.78a18.89,18.89,0,0,0,9.37-2.23c2.68-1.34,4.91-3.57,8-8.48C616.34,71.9,619,64.31,619.46,62.53Zm-83,51.77a176.11,176.11,0,0,1,8-17,8,8,0,0,1,3.13-3.57c4.46-4,14.73-7.14,27.22-6.25,8.93.89,12.5,1.78,17.85,2.23,2.24,0,4.91.45,7.15,0,5.8-.89,7.58-2.23,7.58-2.23s-3.57,9.37-8.92,15.17c-6.25,7.14-12.5,7.59-24.55,6.7-17.41-1.79-29.46.44-36.15,4.91a6.48,6.48,0,0,0-2.23,2.67A6.89,6.89,0,0,1,536.45,114.3Z" style="fill:url(#Безымянный_градиент_2)"/><path d="M233.41,67H215.12c0,.44,0,.44.44.89a12,12,0,0,1,2.68,2.23c1.34,1.34,1.34,1.79,1.34,4v34.36h11.16V80.82h0l24.54,27.67h9.82V67H249.48c0,.44,0,.89.45.89a12.23,12.23,0,0,1,2.68,2.23c.89.9,1.33,1.34,1.33,3.57V89.75Zm205.75,41.5-8.93-14.72H420v14.72h-12.5V74.13a5.81,5.81,0,0,0-.89-3.57,5.9,5.9,0,0,0-2.68-2.23c-.45-.45-.89-.45-.89-.9h32.13c9.37,0,16.07,4.47,16.07,12.95,0,6.69-3.13,10.26-8.93,12.49l9.82,15.62Zm-56.24,0V74.13a5.74,5.74,0,0,0-.89-3.57,5.85,5.85,0,0,0-2.68-2.23c-.44-.45-.44-.45-.44-.9h17v41.51H382.92Zm-19.63,0-3.57-8h-21l-3.12,8H324l16.07-35.25c0-.45.45-.9.45-1.79s-.9-1.78-2.68-3.12c-.45-.45-.45-.45-.45-1.34h21l19.19,41.5Zm-63.82,0H277.6V74.13c0-2.23-.45-2.68-1.34-3.57a5.9,5.9,0,0,0-2.68-2.23c-.45-.9-.45-.9-.45-1.34H299c15.17,0,23.21,8,23.21,20.53C322.23,99.57,315.09,108.49,299.47,108.49Zm-175,0V74.13a5.73,5.73,0,0,0-.9-3.57A5.88,5.88,0,0,0,121,68.33c-.45-.45-.45-.45-.45-.9h17V99.12H157.1v9.82H124.52Zm-48.65,0V74.13A5.81,5.81,0,0,0,75,70.56a5.9,5.9,0,0,0-2.68-2.23c-.45-.45-.45-.45-.45-.9h43.3v8.48H88.81v7.15h19.64v8.47H88.81v8h26.34v8.92Zm-25.44,1.34c-14.73,0-27.67-6.25-27.67-21.87,0-12.49,9.37-22.76,27.67-22.76a40.28,40.28,0,0,1,17.41,3.57l-3.13,9.82A25.31,25.31,0,0,0,51.32,75C40.17,75,35.7,81.27,35.7,87.52c0,8.48,6.7,12.94,15.62,12.94a28.41,28.41,0,0,0,13.84-3.57l3.12,8.93A44,44,0,0,1,50.43,109.83ZM4,108.49V65.65a5.73,5.73,0,0,0-.9-3.57A31.1,31.1,0,0,0,.45,59.85C0,59.4,0,59.4,0,59H17v49.53ZM432.46,75H420V85.29h13.39c4,0,6.24-1.79,6.24-5.36C439.6,77.7,438.27,75,432.46,75Zm-83,1.79-7.14,15.62h13.84Zm-51.77-.9h-7.59V99.12h7.59c8.93,0,12.05-4,12.05-11.6C309.73,79.48,305.71,75.91,297.68,75.91Zm-97.29,32.58-3.57-8h-21l-3.57,8h-11.6l16.06-35.25c0-.45.45-.9.45-1.79s-.89-1.78-2.68-3.12c-.44-.45-.44-.45-.44-1.34h21l19.19,41.5ZM186.55,76.81l-7.14,15.62h13.84Z" style="fill:#00387c"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
@@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 605.79 55">
|
||||
<g data-name="Слой 2">
|
||||
<g data-name="图层 1">
|
||||
<path style="fill:#d41b18" d="M19.81 45.05h2.18l-.11-2.6-2.07 2.6z"/>
|
||||
<path d="M39.94 31c-5.63 5.48-14 2-13.17-4.74.66-5.18 7-10.35 11.82-13.14v-.07c-.63-.59-1.93-1.95-2.78-3a5.52 5.52 0 0 0-8.83.16l-13.85 1.3v.08l14.87.86c2.64.15 3.49 2.54 1 4.45-9.41 7.14-11.1 14.7-9 20.68h-.06A12.13 12.13 0 0 1 18 33.32a17.71 17.71 0 1 1 22-2.34m3.4 16.62h-8.51l3-7.87h3.74l-2.37 6.2H44Zm-13.27 0-.06-1.55h-3.39l-1.25 1.55h-3.09l6.28-7.28a1.62 1.62 0 0 1 1.15-.59h3.36l.75 7.87Zm-12.84.26a12.13 12.13 0 0 1-2.6-.26l.64-1.67c1.72.2 3.18 0 3.76-1.45l1.82-4.75h3.75l-2 5.24c-1 2.67-3.56 2.89-5.36 2.89m37.6-17.94a27 27 0 0 0-.13-6.08 16.48 16.48 0 0 1-6 9.27s-.08 0 0-.06a20 20 0 0 0 5.54-12.28 27.32 27.32 0 0 0-2.78-6.92 18.9 18.9 0 0 1-4.77 15.26s-.07 0-.06 0a21.38 21.38 0 0 0 3.11-17.93 27.52 27.52 0 0 0-44.26 0 21.48 21.48 0 0 0 3.1 17.93s0 .07-.05 0a18.85 18.85 0 0 1-4.94-15.24s0 0-.05 0a28.1 28.1 0 0 0-2.79 6.9 20.07 20.07 0 0 0 5.56 12.28v.06a16.48 16.48 0 0 1-6-9.27 27.61 27.61 0 0 0-.13 6.08 16.53 16.53 0 0 0 5 7.24s0 .08 0 .06a14.79 14.79 0 0 1-4.63-4.09 27.51 27.51 0 0 0 53.84 0 14.92 14.92 0 0 1-4.49 4.09s-.07 0 0-.06a16.47 16.47 0 0 0 5-7.24" style="fill:#d41b18"/>
|
||||
<path d="M602 32.93c-2.91 7.57-13 9.92-23.83 9.92s-17.83-2.36-16.2-9.92h13.8c-.36 2 .87 3.3 4.94 3.3s6.72-1.32 7.48-3.31c1.9-5-25.41-.11-21.06-11.44 2.44-6.35 12-9.32 22.83-9.32s16.94 2.33 15.64 9.31h-13.52c.22-1.87-.35-3.29-4.42-3.29s-6.25 1.45-7 3.3c-2 5.06 25.65.13 21.32 11.45m-239.86 9.48h-14.21l11.45-29.8h14.2l-11.44 29.8zm107.5 0H455.4l11.44-29.8h14.21l-11.43 29.8z" style="fill:#2b2119"/>
|
||||
<path style="fill:#2b2119" d="M561.16 42.41h-34.54l11.44-29.8h34.55l-2.2 5.72h-20.34l-2.31 6.02h16.91l-2.18 5.71h-16.93l-2.32 6.04h20.34l-2.42 6.31zm-282.38 0h-11.49l-9.64-17.59-6.76 17.59h-11.48l11.45-29.8h13.35l8.51 15.66 6.01-15.66h11.49l-11.44 29.8zm239.02 0h-11.49l-9.64-17.59-6.77 17.59h-11.47l11.44-29.8h13.36l8.5 15.66 6.02-15.66h11.49l-11.44 29.8zm-411.58-9.98c-3.89 10.14-13.49 11-20.32 11a45.12 45.12 0 0 1-9.88-1l2.43-6.31c6.51.75 12.08.18 14.26-5.5l6.9-18h14.22Zm81.53-10.31c-.83 2.17-3.51 3.76-6.1 3.76h-7.89l2.9-7.55h7.9c2.58 0 4 1.61 3.19 3.79m-1-9.51h-22.1l-11.43 29.8h14.2l4.15-10.82h7.9c13.13 0 20.2-3.5 22.5-9.47s-2.08-9.51-15.22-9.51m218.74 9.51c-.84 2.17-3.52 3.76-6.11 3.76h-7.89l2.9-7.55h7.9c2.59 0 4 1.61 3.2 3.79m-1-9.51h-22.11l-11.44 29.8h14.21l4.14-10.82h4.3l2.81 10.82h15.51l-3.79-11.9c6.29-1.46 10-4.37 11.57-8.39 2.3-6-2.07-9.51-15.22-9.51M435.6 36.1l9.04-23.49h-14.22l-11.44 29.8h32.26l2.43-6.31H435.6zM127 30.82l7.64-9.52.36 9.52Zm19.8-18.21h-12.75a6.15 6.15 0 0 0-4.37 2.22l-23.8 27.58h11.73l4.73-5.86h12.82l.24 5.86h14.21Zm66.36 18.21 7.65-9.52.36 9.52ZM233 12.61h-12.75a6.14 6.14 0 0 0-4.36 2.22l-23.81 27.58h11.74l4.73-5.86h12.82l.24 5.86h14.2Zm88.66 18.21 7.64-9.52.36 9.52Zm19.8-18.21h-12.72a6.14 6.14 0 0 0-4.36 2.22l-23.8 27.58h11.73l4.69-5.86h12.82l.24 5.86h14.21Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,14 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1243.89 150">
|
||||
<g data-name="Слой 2">
|
||||
<g data-name="Слой 1">
|
||||
<path d="M330.35 32.21S278 36.1 249.83 33.5c0 0-3.34-.92-4.26 3a3.63 3.63 0 0 0 1.11 5c3 2 11.5 7.05 11.5 25.6v35.8s1.67 19.67-11.87 27.1c0 0-2.78.92-1.3 4.82 0 0 .19 3.53 4.09 3s25.78-2.22 55.84-.18c0 0 2.6.18 3.34-1.49a9.65 9.65 0 0 1 .93-1.85s2.6-2.6-1.29-5.2-10.39-6.49-10.95-23 0-16.88 0-16.88h2.41s8.34-.75 13.91 11.86c0 0 10.77 26 12.43 29.13s4.83 9.84 16.51 8.73 66.24-5 124.12.18c0 0 6.31.93 8.72-5.19 0 0 10-26.91 12.43-31.17 0 0 21.14-.56 32.65-.37a35 35 0 0 1 4.26 16A10.89 10.89 0 0 1 516.8 129s-3.15 1.3-1.67 5.2c0 0 .56 3.72 4.27 3.34s36.92-3.52 87-.37c0 0 3.34 1.3 4.46-3.15 0 0 2-3.53-1.49-5.2 0 0-13.17-3-13.17-23.94s.17-35.8.17-35.8 10 14.29 21.9 35.62 18.18 30.43 18.18 30.43 5.94 11.5 17.62 5.38 24.31-13.18 31.54-18.19c0 0 2.79-1.29 1.29-4.81l-1.1-2.23s-.19-1.29-4.09-1.67c0 0-8.73 2-8.9-10.38s-.74-30.07 0-48.06c0 0 .36-11.13 10.57-14.28 0 0 3.71-.38 2-4.83l-1.11-2.23s0-1.85-2.6-1.48a177 177 0 0 1-32.46.37 3.82 3.82 0 0 0-3.71 3.71s-.93 3.34 1.67 4.45 11.69 4.45 12.25 18.74.73 34.13.73 34.13-21.15-31.16-34.69-55.1c0 0-2.22-6.49-10.19-5.93s-27.09 1.48-41 .18c0 0-3.89-.56-4.45 3.9 0 0-1.11 3.89 2.22 5.56 0 0 11.13 7.06 11.13 9.47s-.19 51.75-.19 51.75.93 20.23-4.44 17.63c0 0-3.16 2-10.77-11.87S550.37 75.61 534.43 37c0 0-3.35-10.77-10.21-10.77a20.81 20.81 0 0 0-8.35 2.6c-4.26 2.41-17.81 10-31.91 14.1 0 0-3.71 1.11-2.59 4.82 0 0-.56 2.78 3.52 4.27s7.61 3.15 8.72 5.19a168.07 168.07 0 0 1-12.06 27.83c-7.79 14.09-17.8 37.47-46.56 37.47h-11.32s-3 .37-3-3.71V89h7.42s12.06-2.6 17.81 13c0 0 1.11 4.82 5.19 3 0 0 4.64-.55 4.28-5.19a205.61 205.61 0 0 1 .18-28.38 3.82 3.82 0 0 0-3.34-4.09 4.52 4.52 0 0 0-5.2.94c-2.22 2.41-6.86 8.16-17.43 8.16h-8.72V48.53s-.19-1.85 1.11-2 17.44-4.08 26.9 3.53 10 10.76 12.06 13.54c0 0 1.86 4.64 6.68 1.48 0 0 3.71-.55 1.85-6.3s-2.41-7.79-5.56-22.26c0 0-.56-6.12-6.87-5.57s-45.82 5.19-82.92 2.23a3.73 3.73 0 0 0-4.64 3.15s-1.67 2.78 1.48 5.38c0 0 10.94 5 10.94 24.31v32.23s1.86 25.61-7.23 25.61c0 0-3.89 1.67-10.58-11.5s-7.05-13.54-7.05-13.54-5.38-17.26-28.57-18c0 0 32.1-5.38 29.13-29.5 0 0-.55-18.37-24.67-19.1h-2.6Zm-33.58 45.45V59.48s.19-13.55 10.94-13.55 9.4 13.17 9.49 14.85-.58 16.88-20.43 16.88ZM493.06 89.9s6.86-16.13 9.83-20.77c0 0 8.34 11.5 11.32 21a79.06 79.06 0 0 1-21.15-.23Zm358.8 8s.74 24.31-8.35 22.63c0 0-3.16 2-10.77-11.87s-17.43-33.76-33.38-72.35c0 0-3.34-10.76-10.21-10.76a20.63 20.63 0 0 0-8.34 2.59c-4.27 2.42-17.81 10-31.92 14.1 0 0-3.71 1.12-2.59 4.83 0 0-.56 2.78 3.52 4.26s7.61 3.16 8.72 5.19a168.51 168.51 0 0 1-12 27.83c-7.81 14.1-14.66 34.69-33 44 0 0-3.56.75-2.41 5 1.3 4.82 3.71 3.53 3.71 3.53 21.33-2.23 27.83-.37 32.65 0s4.09-3.53 4.09-3.53a3.13 3.13 0 0 0-.36-3.89l-2.06-2.59s-8-2 3.35-24.87c0 0 21.14-.56 32.65-.37a35 35 0 0 1 4.27 16 10.87 10.87 0 0 1-7.61 10.75s-3.15 1.3-1.67 5.2c0 0 .56 3.71 4.27 3.34s65.3-3 115.39.19c0 0 3.53.18 4.45-3 0 0 2.05-3.91-1.47-6.13 0 0-9.84-4.45-10.58-20.23s-.57-45.63-.57-45.63-.74-16.7 9.84-21.9c0 0 2.77-1.29 1.3-5 0 0-.75-3.53-4.1-3.16s-38.39 2.23-54.9.19c0 0-3.71-.19-4.45 3a4 4 0 0 0 1.3 5.38c3.15 2.41 11.31 8 11.31 25.23v32.02Zm-84-30c10 14.28 11.32 21 11.32 21-8 1.29-21.15-.19-21.15-.19a164.3 164.3 0 0 1 9.83-20.77Zm231.67-37.18s-40.82 4.82-78.66 1.11c0 0-4.82-1.29-5.38 3.71 0 0-.37 3.35 1.67 4.64s10.39 6.31 10.94 23.76.93 12.43.56 36.17c0 0 1.49 22.82-11.5 28.38 0 0-3.34.75-1.48 5.58 0 0 1.1 3.69 4.27 2.4 0 0 30.42-2 56.76.19 0 0 3 1.1 3.9-2.78 0 0 2.41-2.6-1.3-5.39s-10.39-7.61-11.13-19.29-.55-21-.55-21h2.59s8.72-1.11 14.66 12.62 10 23.74 10 23.74 3.88 11 10.19 14.47c0 0 2.6 2.42 12.25 1.3a97.22 97.22 0 0 0 31.36-8.17s3.52-.74 2.4-4.81c0 0 .75-3.16-3.7-4.09s-7.8-5.19-11-11.5-8-15.59-8-15.59-6.49-16.13-27.64-16.32c0 0 29.14-5 29.14-26.9s-26-22.26-26-22.26h-4.46Zm-31.91 46.2V58.73S968 45.2 978.2 45.2s10.38 11.47 9.85 15.21-1.5 16.51-20.43 16.51Z" style="fill:#2d509f;fill-rule:evenodd"/>
|
||||
<path d="M244.23 86.32a61.5 61.5 0 1 1-61.5-61.5 61.49 61.49 0 0 1 61.5 61.5Z" style="fill:#fff;fill-rule:evenodd"/>
|
||||
<path d="M209.15 49.25a45.9 45.9 0 0 1 31.51 52.62l-.07.4a52.37 52.37 0 0 1-9.39 21.91l-.08.09a61.53 61.53 0 0 0-88.84-84.36l-.14.12a42.87 42.87 0 0 0-11.27 46.24l.09.21a27.14 27.14 0 0 0 51.85-11.24l-.07-11.68a14.12 14.12 0 0 1 7.4-12.44h.05a24 24 0 0 1 18.94-1.85Z" style="fill:#cc2229;fill-rule:evenodd"/>
|
||||
<path d="M135.62 125.88a61.52 61.52 0 0 0 87.58 6.83l.13-.12a42.78 42.78 0 0 0 11.27-46.22l-.09-.21a27.14 27.14 0 0 0-51.84 11.23l.07 11.68a14.13 14.13 0 0 1-7.41 12.43h-.05a24.24 24.24 0 0 1-18.94 1.84 45.87 45.87 0 0 1-31.51-52.62l.07-.4a52.28 52.28 0 0 1 9.39-21.9l.09-.1a61.61 61.61 0 0 0-6.66 65.47l-.5.38s-2.42 1.86-7.24-3.71-33.23-39.85-33.23-39.85 18-19.29 35.62-27.08c0 0 4.64-1.49 3.52-5.57l-.74-2.41s-.18-2.6-4.27-2a227.42 227.42 0 0 1-42.67.18s-3 0-4.08 2.41c0 0-1.86 3.16 0 5s8.53 6.49 8.53 12.8c0 0 1.49 4.63-8.72 12.06S57.43 78.22 53.17 80.45L53.35 63s-.56-14.66 10-21.52c0 0 2.59-1.11 1.67-3.53l-.75-1.86a3.25 3.25 0 0 0-3.7-2.59s-18.37 2-54.92.37c0 0-2.41-.19-3.33 1.66L1.59 37s-1.29 3.34.75 4.82 10.57 6.49 10.94 21.9c0 0 .93 29.12-.37 40.44S10.69 122 1.59 130a4.09 4.09 0 0 0-1.29 4.61L1.59 137s.93 1.85 4.08 1.48a319.45 319.45 0 0 1 54.92-.37 2.34 2.34 0 0 0 3-1.29l1.31-2.6a3.52 3.52 0 0 0-1.31-4.63 24.09 24.09 0 0 1-10.38-19.49C53 98.63 53 91.4 53 91.4s5 2 31.73 41.55c0 0 9.46 17.07 29.5 6.5 0 0 14.65-8 20.78-13.17l.63-.4Z" style="fill:#2d509f;fill-rule:evenodd"/>
|
||||
<path d="M1220.55 32.59h-.1a66.7 66.7 0 0 1-88.62 99.4v.09a66.64 66.64 0 0 0 112.11-48v-1.25c0-1.38-.05-2.77-.15-4.15a66.33 66.33 0 0 0-23.19-46.09Zm-118.19 75.86c-2.13 1.18-2.57 3-1.48 5.68 1 2.53 2.57 3.61 4.2 2.92 1.39-.49 1.58-1.68 1-4.7l-.2-1.13c-.59-3-.64-4.26-.3-5.54a3.87 3.87 0 0 1 2.43-2.87c3-1.19 5.83.69 7.51 4.94 1.83 4.55.89 8-2.72 9.45l-.8-2.2c2.48-1 3.12-3.36 1.78-6.72-1.08-2.72-2.81-3.91-4.64-3.17-1.44.6-1.78 2-1.24 5l.2 1.28.2 1.14c.39 2.28.44 3.07.19 4.06a3.59 3.59 0 0 1-2.27 2.62c-2.87 1.18-5.59-.55-7.12-4.35-1.63-4.16-.74-7.22 2.42-8.66Zm-1.88-24.14 10.09-8.45.1 3.11-8.56 7.12 2.72 3.07 6.04-.15.05 2.47-17.16.35-.1-2.42 6.77-.15h1.78l-.54-.64-.59-.6-7.57-8.21-.1-3.26 7.07 7.76zm7.62-26.6 6.57 2.32-.79 2.33-6.57-2.36-11.92 3.61 1-2.86 7.37-2.08.93-.2a6.85 6.85 0 0 1 1.24-.35 18 18 0 0 1-1.33-1.68l-4.6-6.15.94-2.72Zm11.62-31.6-3.66 4.45 10.88 8.85-2.57 3.22-10.88-8.9-3.61 4.45-2.48-2.03 9.84-12.07 2.48 2.03zm23.19-16.32-8.65 5.09 1.83 3.17 8.01-4.65 1.43 2.52-7.91 4.65 2.08 3.66 8.9-5.19 1.58 2.77-12.41 7.22-8.66-14.84 12.22-7.17 1.58 2.77zm33.33 6.68-4.5.29-2.27-3.7-6.93 1.13-.94 4.21-4.3 1.08 4.5-18.79 4.25-.64Zm-9.84-8.85a20.65 20.65 0 0 1-1.88-3.52 28.29 28.29 0 0 1-.74 3.91l-.69 3.31 5-.84ZM1203.83 22l-3.61-1.39 1.39-5.14c.1-.6.35-1.39.64-2.47s.55-1.88.74-2.53.45-1.38.65-2.12l.44-1.24c-1 1.73-1.43 2.33-2.37 3.76-.35.59-.74 1.14-1 1.58l-4.9 6.83-3.11-.84-1-8.21a13.43 13.43 0 0 1-.15-1.83c-.1-1-.1-1.88-.15-2.48V3.85l-.39 2.07c-.5 2.28-.74 3.27-1.39 5.94l-1.48 5.54-3.81-.6L1188.6 0l5.74 1.09.84 8a34.3 34.3 0 0 1 .15 5.64 26.66 26.66 0 0 1 1.63-2.87c.5-.79.94-1.44 1.34-2l4.5-6.48 5.53 1.83Z" style="fill:#123480;fill-rule:evenodd"/>
|
||||
<path d="M1171 55.14c-2 1.83-6.18 5.78-10.19 9.64l-4.55 4.35a59.35 59.35 0 0 0-11.07-1c-8.36 0-16 2.28-19.54 5.84a6.25 6.25 0 0 0-2 4.45c.1 4 4.7 6.08 6.14 6.68 7.46 2.72 13.69 1.92 20.27-2.67a106.32 106.32 0 0 0 11.38-9.89c2.67.59 5.63 1.43 8.85 2.37l3 .89c-3.85 3.76-7.81 7.81-11.47 11l-.3.24c-5.09 4.5-8.8 7.72-14.09 9-3.81.8-6.43 0-7.27-.49l-.25.15a13.57 13.57 0 0 0 11 3.56c4.85-.4 10.34-3.41 16-8.75l7.66-7.47 5.34-5.29 10.83 3.16h.2l-6.73 6.48-5.73 5.74c-5.89 5.73-9.05 8.7-12.51 11.12-5.74 4.06-10.59 6.13-14.89 6.43a14.41 14.41 0 0 1-8.11-1.58l-.25.1c2.87 2.52 6.48 5.49 12.61 5.34 6.93-.2 13.06-3.56 22.65-12.31 4.35-4 8.66-8.51 12.51-12.47l7.07-7.22a52.51 52.51 0 0 0 13.49 1.46c6.68-.15 12.47-3.36 12.52-7 0-2.77-2.18-4.26-3.52-5.1a15.17 15.17 0 0 0-8.25-2.37c-5 0-10.34 2.17-15.68 6.63l-3.56 3.16-1.34-.4-9.84-2.76c2.92-2.72 5.39-5 7.62-7.08 5.44-4.84 11.42-6.82 14.88-7.07 2.58-.15 7 .1 8.86 1.39l.19-.2a17.87 17.87 0 0 0-12.56-4.7c-3.41 0-8.9 1-15.67 6.28a124 124 0 0 0-10 9.45l-5-1.54-1.23-.34-5.29-1.63 3-2.82c3.56-3.46 6.93-6.78 9.55-9 9.49-8 15.43-9 19.58-9.05 4.55 0 8.21.94 10.73 2.82l.2-.2c-5.29-4.85-9.15-6.38-15.73-6.43-5.83-.05-12.81 3.21-19.58 9.15Zm-37.29 28.53c-3.06-.25-4.55-1.48-4.55-3.86 0-.29.15-7.86 17.41-8.7a40 40 0 0 1 7.52.2l-1.98 1.69-1.11 1c-4.15 3.81-11.13 10.09-17.36 9.69Zm69.78-6.13c4.94-3.36 9.1-5.14 11.67-5 1.53 0 3.31.49 3.31 2.37s-1.83 3.56-5.39 4.85c-3.16 1.13-8 1.38-13.3.84a33.28 33.28 0 0 1 3.71-3Z" style="fill:#123480;fill-rule:evenodd"/>
|
||||
<path d="M1169.27 81.25Z" style="fill:#283775;fill-rule:evenodd"/>
|
||||
<path d="M1210.91 8.26a2.77 2.77 0 0 1 3.7-1.49 2.83 2.83 0 0 1-2.22 5.2 2.81 2.81 0 0 1-1.48-3.71Zm4.69 2.22a2.33 2.33 0 0 0-1-3.21 2.38 2.38 0 0 0-3.21.94 2.39 2.39 0 0 0 4.2 2.27Zm-1.68.84-.44-.24-.1-1.68-.5-.25-.69 1.23-.34-.19 1.48-2.72 1.19.69c.44.25.89.64.54 1.24s-.79.49-1.24.24Zm-.39-2.32c.39.2.94.59 1.13.15l-.44-.69-.74-.4-.4.69Z" style="fill:#123480;fill-rule:evenodd"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.0 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 552.38 150">
|
||||
<g data-name="Слой 2">
|
||||
<g data-name="Слой 1">
|
||||
<path d="M50 15.42c-.89-.62-2.77-5.31-2.41-8.21C48 3.57 51 0 54.67 0 58.93.08 62.21 2.75 67 2.82c2 0 3.76-1.41 5-2.06-.88 4.2-3.32 9-7.7 10.12-3.52.9-8.1-.62-11.13.61-1.71.69-2.8 3-3.17 3.93ZM84.17 150c-11.63-9.7-25.33-18.93-26.42-38.16-.64-11.36 4.2-17.6 4.64-27.8C63.11 67 59 57.12 49 48c-2.41 2-4.55 3.39-8 3-11.51-1.27-12-15.18-23-16.19-4.66-.45-7 1.89-9.13 4.78L4.62 35.3 9.74 30h-8L0 23.55c4.2.58 6.73-1.81 7-5.19h85.46c-6 1.43-8.78 8.15-14.85 9.11-3.84.37-6.26-.75-9.08-2.75a1.15 1.15 0 0 0-1.06 1c0 2 6.2 3.76 8.27 3.73 10.44-.22 12.43-11.13 24.38-11.13h132.79L214.06 35a8.73 8.73 0 0 1-5.87 2H81.82l3.26 3.54h123L188.4 57.31a10 10 0 0 1-6.4 1.93h-79.24l3.29 3.53h76.39L163 79c-2.07 1.71-5.08 2.07-7.77 2.07H113.3l3.28 3.67h40l-19.3 16.81a9 9 0 0 1-5.86 2.06h-9.62c0 3.4 3.53 3.44 5.57 3.25h5.33L84.17 150ZM479.19 18.64V37.1h26.36v72.48h20.39V37.1h26.39V18.64h-73.14zM433.6 49.49l21.57 60.09h22.39l-33.2-90.94H424.1l-36.11 90.94h22.39l23.22-60.09zm-73.74 60.09h20.4V18.64h-20.4v90.94zm-46.78-90.94L290.6 78.77l-22.7-60.13h-28.5v90.94h20.39V55.21l21.82 54.37h17.5l22.08-54.37v54.37h20.41V18.64h-28.52z" style="fill:#003e7e;fill-rule:evenodd"/>
|
||||
<path style="fill:#e30613;fill-rule:evenodd" d="M415.3 106.84h22.62l7.4-19.64h-22.61l-7.41 19.64z"/>
|
||||
<path d="M261.26 144.34h-4v-19.69l-6 19.69h-2.05l-6.06-19.69v19.69h-3.19v-22.49h6.12l4.56 14.48 4.48-14.48h6.16v22.49Zm12.8.35a7.83 7.83 0 0 1-6.74-3.36 13.89 13.89 0 0 1-2.41-8.31 13 13 0 0 1 2.56-8.21 8.17 8.17 0 0 1 6.77-3.31 7.9 7.9 0 0 1 6.69 3.31 13.39 13.39 0 0 1 2.47 8.26 13.15 13.15 0 0 1-2.56 8.42 8.26 8.26 0 0 1-6.78 3.2Zm0-3.27a4.45 4.45 0 0 0 3.58-1.81c1-1.21 1.47-3.39 1.47-6.57a12.62 12.62 0 0 0-1.22-6.07 4 4 0 0 0-3.75-2.2q-5 0-5 8.39a11.94 11.94 0 0 0 1.29 6.17 4 4 0 0 0 3.67 2.09Zm29.36 2.92h-3.81L291.4 130c-.12-.22-.33-.57-.62-1.06-.13-.22-.32-.57-.58-1v16.47H287v-22.56h4.33L299 135.1l1.38 2.42v-15.67h3.09v22.49Zm21.27-11.5v11.5H323l-1.2-3a6.29 6.29 0 0 1-5.88 3.38 7.31 7.31 0 0 1-6.63-3.5 15 15 0 0 1-2.19-8.08 13.63 13.63 0 0 1 2.45-8.23 8 8 0 0 1 6.84-3.38 7.59 7.59 0 0 1 5.4 2 8.71 8.71 0 0 1 2.67 4.9l-3.41.62c-.63-2.74-2.16-4.11-4.57-4.11a4.48 4.48 0 0 0-3.76 1.94c-1 1.29-1.46 3.29-1.46 6q0 8.52 5.16 8.52a4.3 4.3 0 0 0 3.32-1.44 5.41 5.41 0 0 0 1.31-3.79h-4.49v-3.26Zm12.46 11.85a7.84 7.84 0 0 1-6.75-3.36A14 14 0 0 1 328 133a13 13 0 0 1 2.56-8.21 8.18 8.18 0 0 1 6.77-3.31 7.92 7.92 0 0 1 6.7 3.31 13.45 13.45 0 0 1 2.46 8.26 13.14 13.14 0 0 1-2.55 8.42 8.27 8.27 0 0 1-6.78 3.2Zm0-3.27a4.45 4.45 0 0 0 3.58-1.81c1-1.21 1.47-3.39 1.47-6.57a12.75 12.75 0 0 0-1.21-6.07 4 4 0 0 0-3.76-2.2q-5 0-5 8.39a12 12 0 0 0 1.28 6.17 4.06 4.06 0 0 0 3.67 2.09Zm26.32 2.92h-13.3v-22.49h4.12v18.82h9.25v3.67Zm6.8 0h-3.91v-22.49h3.91v22.49Zm21.84 0H388l-1.75-5.34h-8.36l-1.7 5.35h-3.34l7.21-22.49h4.82l7.3 22.49Zm-7-8.6-3.17-10-3.17 10Zm26 8.6h-3.71L399.15 130l-.62-1.06c-.13-.22-.33-.57-.59-1v16.47h-3.15v-22.56h4.33l7.61 13.25 1.39 2.42v-15.67h3.09v22.49Zm30 0H437l-1.74-5.34h-8.36l-1.7 5.35h-3.34l7.21-22.49h4.82l7.3 22.49Zm-7-8.6-3.17-10-3.17 10Zm13.5 8.6h-3.81v-22.49h3.92v22.49Zm21.72 0h-4.03l-3.37-9.24h-5.52v9.24h-3.91v-22.49h9.43c2.62 0 4.55.62 5.77 1.84a6.37 6.37 0 0 1 1.85 4.75 6 6 0 0 1-3.92 6l3.81 9.93Zm-13-12.49h4.88a4.59 4.59 0 0 0 3.15-.92 3.22 3.22 0 0 0 1-2.54 3 3 0 0 0-1-2.39 4.12 4.12 0 0 0-2.85-.92h-5.2v6.77Zm30.42 12.49h-13.29v-22.49h4.12v18.82h9.25v3.67Zm6.8 0h-3.92v-22.49h3.92v22.49Zm21.2 0H511L502.77 130c-.12-.22-.33-.57-.62-1.06l-.59-1v16.47h-3.15v-22.56h4.33l7.61 13.25c.06.11.53.91 1.39 2.42v-15.67h3.09v22.49Zm18.9 0h-14.04v-22.49h14v3.35h-10.09v6.1h8.09v3.26h-8.09v6.29h10.21v3.49Zm1.1-5.42 3.81-.84q.68 3.34 5.25 3.34a5.22 5.22 0 0 0 3.21-.85 2.58 2.58 0 0 0 1.12-2.13 3.05 3.05 0 0 0-.51-1.7 3.67 3.67 0 0 0-2.18-1.23l-4.15-1.12a9.9 9.9 0 0 1-3.16-1.31 5 5 0 0 1-1.63-2.07 6.67 6.67 0 0 1-.62-2.85 6 6 0 0 1 2.17-4.83 8.3 8.3 0 0 1 5.54-1.83 9.83 9.83 0 0 1 5 1.28 5.65 5.65 0 0 1 2.81 3.59l-3.73 1c-.57-1.71-1.9-2.56-4-2.56a4.28 4.28 0 0 0-2.79.79 2.5 2.5 0 0 0-1 2c0 1.29 1 2.18 3 2.7l3.69 1q3.36.87 4.51 2.57a6.62 6.62 0 0 1 1.15 3.77 6.29 6.29 0 0 1-2.42 5.22 9.78 9.78 0 0 1-6.25 1.9 11.18 11.18 0 0 1-5.66-1.4 6.85 6.85 0 0 1-3.22-4.37Z" style="fill:#0078b7"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.2 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><g id="Слой_2" data-name="Слой 2"><g id="Слой_1-2" data-name="Слой 1"><path d="M75,150A75,75,0,1,0,0,75a75.21,75.21,0,0,0,75,75Z" style="fill:#004fa3;fill-rule:evenodd"/><path d="M56.86,125c-6.54-5.45-14.23-10.66-14.83-21.44-.37-6.36,2.36-9.87,2.6-15.62.42-9.57-1.88-15.08-7.51-20.23-1.39,1.15-2.54,1.88-4.48,1.7-6.48-.73-6.72-8.54-13-9.09-2.6-.24-3.87,1-5.09,2.67l-2.36-2.42,2.85-2.91-4.48-.06L9.63,54a3.18,3.18,0,0,0,3.93-3h48c-3.33.85-4.91,4.6-8.36,5.15a6.89,6.89,0,0,1-5.09-1.58.71.71,0,0,0-.6.61c0,1.15,3.51,2.12,4.66,2.12,5.87-.12,7-6.3,13.69-6.3h74.54l-10.6,9.39a4.88,4.88,0,0,1-3.27,1.09l-71,.06,1.88,2h69l-11.08,9.33A5.23,5.23,0,0,1,111.79,74H67.28l1.88,2H112l-10.9,9.14a7.15,7.15,0,0,1-4.36,1.15H73.21l1.88,2.06H97.5L86.66,97.8A5.23,5.23,0,0,1,83.39,99H78c0,1.88,2,1.94,3.15,1.82h3M37.67,49.41a7.64,7.64,0,0,1-1.34-4.6c.25-2.06,1.94-4.06,4-4.06,2.36.07,4.24,1.58,6.9,1.58,1.16.06,2.12-.79,2.79-1.15-.48,2.36-1.88,5.09-4.3,5.69-2,.49-4.54-.36-6.24.36-1,.37-1.57,1.7-1.81,2.18Z" style="fill:#fff;fill-rule:evenodd"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 839.85 150"><g id="Слой_2" data-name="Слой 2"><g id="Слой_1-2" data-name="Слой 1"><path d="M668.17,84.23a35.81,35.81,0,1,1-35.86-35.76,35.85,35.85,0,0,1,35.86,35.76Z" style="fill:#2d9ed9"/><path d="M754.07,84.23a35.81,35.81,0,1,1-35.86-35.76,35.86,35.86,0,0,1,35.86,35.76Z" style="fill:#5bbdec"/><path d="M839.85,84.23A35.75,35.75,0,1,1,804.1,48.47a35.76,35.76,0,0,1,35.75,35.76Z" style="fill:#aedef5"/><path d="M144.27,30c-26.17,0-45.56,18.76-45.56,45v.31c0,26.27,19.29,44.72,45.24,44.72,26.17,0,45.66-18.76,45.66-45v-.31c0-26.27-19.28-44.72-45.34-44.72Zm21.47,45c0,14.28-9.28,23.35-21.68,23.35s-21.47-8.86-21.47-23.24v-.11c0-14.38,9.27-23.45,21.57-23.45s21.58,9,21.58,23.24Z" style="fill:#2d9ed9"/><path d="M344.41,30c-14,0-25,4.48-32.74,12.09S299.06,61,299.06,74c0,13.55,4.69,25,12.93,33.46,8.13,8,20.22,12.61,35.13,12.61,8.54,0,17.2-.93,25.12-4.17,7.4-2.81,11.05-6.46,11.05-11.57a9.7,9.7,0,0,0-9.49-10c-6.36,0-11.47,5.83-25,5.83-12.5,0-22-6.15-24.39-17.61h50c7.92,0,12.61-5.11,12.61-14.07A37.79,37.79,0,0,0,376,41.38C369,34.5,358.69,30,344.41,30ZM324.29,66.09c1.67-10,10-16.47,20.64-16.47,11.57,0,17.93,6.36,18.76,16.47Z" style="fill:#2d9ed9"/><path d="M536,30c-6.78,0-15.85.21-23.46,3.13-6.77,2.6-10,6.25-10,11.36,0,5.32,3.75,9.8,8.65,9.8,5.84,0,11.67-4.38,24-4.38,13.14,0,18.45,6.15,18.45,17.3-6.77-6.15-18.13-6.56-22-6.56-10.11,0-34.4,4.38-34.4,29.18,0,18.25,15.64,30.23,34.61,30.23,10.84,0,17.72-4.06,22.93-8,2.08,5.1,6.88,6.88,11,6.88a11.3,11.3,0,0,0,11.15-11.47V67.65C576.86,40.34,556.64,30,536,30Zm.1,73.18c-9.8,0-16.89-5.22-16.89-13.14,0-8.86,8.14-13,16.89-13,9.7,0,16.89,5.21,16.89,13S545.8,103.2,536.1,103.2Z" style="fill:#2d9ed9"/><path d="M473.56,0a12.32,12.32,0,0,0-12.3,12.3V39c-4.8-4.8-12.82-9-23.56-9-26.16,0-42.63,18.76-42.63,45h0c0,26.27,16.47,45,42.63,45,11.67,0,19.81-5.31,23.87-10.63a12.31,12.31,0,0,0,24.29-2.81V12.3A12.32,12.32,0,0,0,473.56,0ZM462,75.05v.11c0,14.38-9.18,23.24-21.48,23.24s-21.57-9.07-21.57-23.35,9.17-23.45,21.57-23.45S462,60.56,462,74.84Z" style="fill:#2d9ed9"/><path d="M247.78,30c-10.84,0-18.87,4.17-23.67,9V12.3a12.3,12.3,0,0,0-24.6,0v94.34a12.31,12.31,0,0,0,24.29,2.81c4.17,5.32,12.3,10.63,24,10.63,26.16,0,42.63-18.76,42.63-45h0c0-26.27-16.47-45-42.63-45ZM244.86,98.4c-12.3,0-21.48-8.86-21.48-23.24v-.32c0-14.28,9.18-23.24,21.48-23.24s21.68,9.07,21.68,23.45S257.26,98.4,244.86,98.4Z" style="fill:#2d9ed9"/><path d="M48.26,30c-11.67,0-19.8,5.21-24,10.53A12.32,12.32,0,0,0,0,43.47V137.8A12.23,12.23,0,0,0,12.3,150a12.23,12.23,0,0,0,12.3-12.2V111.12c4.8,4.69,12.82,9,23.66,9,26.17,0,42.64-18.76,42.64-45h0c0-26.27-16.47-45-42.64-45ZM45.34,98.4c-12.3,0-21.47-8.86-21.47-23.24v-.32C23.87,60.56,33,51.6,45.34,51.6S67,60.67,67,75.05,57.75,98.4,45.34,98.4Z" style="fill:#2d9ed9"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000.79 150">
|
||||
<g data-name="Слой 2">
|
||||
<g data-name="Слой 1">
|
||||
<path d="M123.27 80.59c36.05-1.34 57.91-16.52 57.91-34.54 0-19.17-23.88-34.71-64.38-34.71H111L123 0h-17.75L75.93 11.34H29.21c-16.36 0-25.53 4-29.21 11.86h95.93c26.51 0 44.23 4 44.23 22.17 0 19.69-21.39 23.52-44.23 23.52h-43.2L90.9 110c32.37 34 62.57 40 100.28 40ZM432.91 114c-17.66 0-29.84-12.85-29.84-33.36 0-20.35 12.18-33.71 29.84-33.71s29.88 13.36 29.88 33.71S450.78 114 432.91 114m0-75.57c-32.84 0-54.7 17.2-54.7 42.21s21.86 41.85 54.7 41.85 54.75-16.83 54.75-41.85-21.86-42.26-54.75-42.26ZM283.79 48.74a173.11 173.11 0 0 1 20.66-1.35c14.51 0 23.21 5.86 23.21 17.82 0 12.38-8.7 19.22-23.21 19.22h-20.66Zm68.73 16.68c0-19.68-18.54-26.52-45.58-26.52-14 0-26.67 1.66-45.37 2.12v79.25h22.22V92.61h23.67l7.66 9.32c13.06 15.7 23.05 19.84 43.41 19.84h2.8l-29.53-32c13.05-3.68 20.72-11.34 20.72-24.34Z" style="fill:#dd0a2c;fill-rule:evenodd"/>
|
||||
<path style="fill:#dd0a2c" d="M746.89 40.56h22.17v79.92h-22.17z"/>
|
||||
<path style="fill:#dd0a2c;fill-rule:evenodd" d="m882.18 40.56-30.51 41.85-30.04-41.85h-26.21l38.9 52.36v27.35h22.17V92.92l38.54-52.36h-12.85zm39.06 49.2 19.83-38.69 19.69 38.69Zm54.85 30.51h24.7l-41-79.71h-25.55l-40.87 79.71h12.17l10.83-21.34h48.89ZM645 58.89c0-6.32 7.51-12.17 22.69-12.17 25.17 0 38.38 9.69 38.38 9.69l4.66-12a156 156 0 0 0-41.91-5.85c-28.33 0-43.87 8.85-43.87 25.53 0 36.67 70.08 19 70.08 38.69 0 6.53-8.18 10.67-25.53 10.67a97.45 97.45 0 0 1-42-9.68v12.84s18.34 6 43.51 6c28 0 44.08-6.47 44.08-25.33C715 60.91 645 76.55 645 58.89Zm-111.82 0c0-6.32 7.51-12.17 22.69-12.17 25.17 0 38.38 9.69 38.38 9.69l4.66-12a154.33 154.33 0 0 0-41.85-5.85c-28.38 0-43.92 8.85-43.92 25.53 0 36.67 70.08 19 70.08 38.69 0 6.53-8.19 10.67-25.54 10.67a97.37 97.37 0 0 1-42-9.68v12.84s18.33 6 43.51 6c28 0 44.07-6.47 44.07-25.33-.2-36.36-70.08-20.72-70.08-38.38Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,5 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 944.65 150">
|
||||
<g data-name="Слой 2">
|
||||
<path d="M121.84 80.54c35.61-1.27 57.23-16.53 57.23-34.48 0-19.12-23.53-34.66-63.69-34.66h-5.76L121.43 0l-17.54.09-29 11.31H28.8c-16.17 0-25.21 4-28.8 11.86h94.81c26.12 0 43.7 4 43.7 22.21 0 19.67-21.13 23.49-43.7 23.49H52.24l37.66 41C121.84 144 151.82 150 189 150l-67.16-69.46Zm175.98 9.22a75.28 75.28 0 0 1-17.31-1.9V48.33a147.21 147.21 0 0 1 17.31-1c16.49 0 26.12 6.77 26.12 20.76 0 14.26-10.31 21.71-26.12 21.71m2.5-51c-13.9 0-27.35 1.69-41.79 2.23v79.36h22V97.21c6.32.64 13.22 1.05 19.81 1.05 29.53 0 48.2-8.77 48.2-30.21s-18.67-29.26-48.2-29.26m123.47 75.14c-17.45 0-29.53-12.9-29.53-33.39 0-20.3 12.08-33.66 29.53-33.66s29.53 13.36 29.53 33.66-11.95 33.39-29.53 33.39m0-75.54c-32.57 0-54.1 17.17-54.1 42.15s21.53 41.89 54.1 41.89 54.15-16.9 54.15-41.89-21.58-42.15-54.15-42.15m374.57 2.54-48.74 62.83V40.93h-22v79.82h22l48.74-63v63h22V40.93h-9M558.57 47.2c17 0 27.17 9.17 27.17 9.17l4.54-11.81s-12.77-6.17-34.48-6.17c-31.3 0-53.29 17.17-53.29 42.15s20.58 41.89 54.65 41.89c20.9 0 33-6.59 33-6.59v-12.68s-10.17 9.73-30.62 9.73c-20.89 0-32.43-12.13-32.43-32.35 0-20 11.81-33.39 31.44-33.39M902.23 84.4c-14.27 0-22.94-6.86-22.94-19.21 0-12.09 8.67-17.86 22.94-17.86a158.73 158.73 0 0 1 20.48 1.37v35.7Zm-2.46-45.61c-26.66 0-45.06 6.73-45.06 26.53 0 13 7.45 20.76 20.62 24.49L846 121.93h2.77c20 0 29.94-4.27 42.84-20l7.68-9.35h23.39v27.75h21.94V41c-18.53-.55-31-2.19-44.88-2.19M665.55 47.2c17 0 27.21 9.17 27.21 9.17l4.54-11.81s-12.81-6.17-34.47-6.17c-31.35 0-53.34 17.17-53.34 42.15s20.63 41.89 54.7 41.89c20.85 0 32.93-6.59 32.93-6.59v-12.68s-10.13 9.73-30.61 9.73c-20.9 0-32.44-12.13-32.44-32.35 0-20 11.86-33.39 31.48-33.39" style="fill:#e3152d;fill-rule:evenodd" data-name="Слой 1"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 883.53 283.46"><g id="Слой_2" data-name="Слой 2"><g id="Lager_1" data-name="Lager 1"><path d="M447.9,67.79h23.74v21.3H447.9Zm0,33.69h23.74V191H447.9Z" style="fill:#747679"/><path d="M507.78,115.79h.52c5.42-10.12,11.53-15.36,22-15.36a15.39,15.39,0,0,1,5.59.7V121.9h-.53c-15.53-1.57-26.71,6.64-26.71,25.49V191H484.91V101.48h22.87Z" style="fill:#747679"/><path d="M582.15,67.79h23.74v21.3H582.15Zm0,33.69h23.74V191H582.15Z" style="fill:#747679"/><path d="M642.38,113.7h.52C649,104.1,657.22,99,669.44,99c18.5,0,30.9,14,30.9,33.52V191H676.6V136c0-9.6-5.59-16.41-15.54-16.41-10.48,0-18.16,8.38-18.16,20.6V191H619.16V101.48h23.22V113.7Z" style="fill:#747679"/><path d="M710.11,146.17c0-26.54,18-47.14,44.17-47.14,28.81,0,44.17,22,44.17,53.95H733.51c1.74,13.79,9.42,22.34,22.87,22.34,9.25,0,14.66-4.19,17.28-11h23.39c-3.31,15.89-17.46,29.34-40.5,29.34C726.87,193.66,710.11,172.88,710.11,146.17Zm23.74-9.6h39.81c-.7-11.35-8.21-19.21-19-19.21C742.06,117.36,736,124.87,733.85,136.57Z" style="fill:#747679"/><path d="M803.92,162.05h22c1.58,10.31,8.91,14.84,19.56,14.84,10.48,0,16.41-4,16.41-10.29,0-8.56-11.35-9.43-23.57-11.88-16.06-3.14-31.77-7.5-31.77-27.06C806.54,108.29,822.6,99,843,99c23.57,0,36.67,11.7,38.41,29.68H860c-1.05-9.6-7.16-13.09-17.28-13.09-9.26,0-15.37,3.49-15.37,9.95,0,7.68,11.87,8.38,24.62,11,15,3.14,31.6,7.33,31.6,28.28,0,18-15.37,28.81-37.71,28.81C819.8,193.66,805.32,181.09,803.92,162.05Z" style="fill:#747679"/><path d="M391.88,67.79H364.24L314.28,191h28.28l9.25-25.32h51L412.22,191h28.46ZM358.62,145,377,92.57,395.81,145Z" style="fill:#747679"/><rect x="545.14" y="67.79" width="23.75" height="123.25" style="fill:#747679"/><path d="M283.46,141.76A141.73,141.73,0,1,1,141.77,0,141.65,141.65,0,0,1,283.46,141.76" style="fill:#bed600"/><path d="M131.45,67.78c-22.33,0-36.81,1.24-47.29,5.13-17.62,6.86-29.79,21.25-29.79,40.15,0,15.74,7.33,27.15,28.55,40.26,22.63,13.72,27.15,18.26,27.15,26.53,0,9.05-8.87,19.35-31.68,19.35-8,0-20-1.1-27.62-3l-3.66-.92c-2,5.47-6.67,18.41-8.08,23.1l3.62,1.06c6.89,2.2,23.25,3.92,35,3.92,39,0,62.27-23.56,62.27-48.23,0-15.16-6.88-26.68-30.15-41.19-11.66-7.18-17.61-11.83-21.22-15.44A13.68,13.68,0,0,1,85.27,109a13.92,13.92,0,0,1,2.49-8.46c2-3,5.7-4.83,10.7-6.37,5.14-1.71,14.65-1.75,29.47-1.75h13.8l9.86-24.64H131.45Zm104.29,0H166.39l-9.85,24.64h23c15.47,0,18.44-.33,22.33-.33-5.61,12.83-39.4,98.94-39.4,98.94h28.6S233.83,83.83,238.37,72.6C239.62,70.09,239,67.78,235.74,67.78Z" style="fill:#fff"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 150"><g id="Слой_2" data-name="Слой 2"><g id="Слой_1-2" data-name="Слой 1"><path d="M75,0A75,75,0,1,1,0,75,75,75,0,0,1,75,0Z" style="fill:#fff;fill-rule:evenodd"/><path d="M75.33,0C116.51,0,150,33.73,150,74.85,150,116.27,116.51,150,75.33,150,34,150,0,116.27,0,74.85,0,33.73,34,0,75.33,0Zm-30,95.07c-5.88-.72-9.33-1.75-14.23-1.27-5.7.55-13.33,5.45-18.23,10.84A68.3,68.3,0,0,1,6.42,75.09,69.26,69.26,0,0,1,119.66,21.68L45.3,95.07Zm23.43,3.21,64,11.81a69,69,0,0,0,9.87-36,70.07,70.07,0,0,0-22.89-51.47l-51,75.63Zm4.42,10.6,32,26.34L45.6,105.67c-5.45-1.51-10.84-1.75-15.81-2-5.87-.24-11.08.73-17.19,1.76a69.36,69.36,0,0,0,119.66,6.84l-59.11-3.39Z" style="fill:#1f325b;fill-rule:evenodd"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 771 B |
@@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1695.69 150">
|
||||
<g data-name="Слой 2">
|
||||
<path d="M240.28 122.12c-24.59 1.13-46.08-8.2-34.21-31.66s70.68-50.6 89.9-59.08H188c-3.67 0-8.19-.57-11 7.91-2 6.22-11.87 30.53-33.36 37.88C117 86.5 94.7 71.24 60.78 44.38c-12.72-9.89-14.7-11-26.86-9-6.22 1.13-19.79-2.27-23.74-3.11C6.22 31.09 0 31.66 0 31.66c0 .57 24.59 4 72.08 37.88 18.1 13 50.32 38.16 83.68 52.58 36.18 15.83 88.76 24 136.82-9.33l.28-2c-.57.57-28.27 10.46-52.58 11.31" style="fill:#008bce"/>
|
||||
<path d="M454 31.66h9v4.81l2.26 2h18.94v6.79h-21.45c-6.5 0-8.76-4.24-8.76-8.2v-5.4Zm36.75 0h39.85l5.66 1.7a7.81 7.81 0 0 1 3.11 6.78v71c0 5.66-3.68 7.92-8.77 7.92h-12.16l-3.68-7.35h13.29l2.26-2.54V41l-2.26-2.26H491v-7.08ZM454 50h9v69.26h-9Zm176.38-7.32c-1.13-3.39-2.83-6.5-4.24-11.59h9.61c1.13 2.83 2.83 6.79 5.09 11.59h19.5V50h-47.49v-7.32ZM591.65 67a141.37 141.37 0 0 1-3.39-15.27h7.35A120.08 120.08 0 0 0 599.29 67Zm-3.11-28.84a30.23 30.23 0 0 0 2.55-7.07h9.61a35 35 0 0 1-2.55 7.07h4.24a7.57 7.57 0 0 1 7.92 7.92v65.86c0 3.68-2 7.35-7.92 7.35h-8.19l-3.11-7.35h8.2l2.26-2V79.15h-15.27a186.86 186.86 0 0 1-4 40.14h-9.61c4.24-13 4.81-26.85 5.09-40.14h-5.09V71.8h5.09V46.36c0-4.81 3.11-8.2 7.35-8.2Zm-2.26 33.64h15.27V47.49l-1.7-1.7h-11.59l-1.7 1.7V71.8Zm56.26-12.44c6.5 0 8.76 5.09 8.76 8.77V110l2 2h8.48l-3.39 7.63h-7.09c-3.39 0-5.94-.84-7.35-3.11a12.64 12.64 0 0 1-2-7.34V68.41l-1.7-1.7H629l-2 1.7v21.48c0 9.61-2 20.36-6.22 29.12H610c6.22-8.2 7.91-19.22 7.91-33.64V67.56c0-5.09 3.68-8.76 8.2-8.76h16.4Zm-51.17 42.12A87.83 87.83 0 0 1 588 84.24h7.63a74.11 74.11 0 0 0 3.68 17.24Zm-246.5-67.84h73.22v6.78h-71.52l-2 2V91a142.84 142.84 0 0 1-3.11 28.84h-9.61a141.82 141.82 0 0 0 4-34.49V43c-.29-6.22 2.82-9.33 9-9.33M348 43.82h70.39v5.93h-28.57l-2 4.24h17.53a7.88 7.88 0 0 1 7.91 7.92v18.94a7.66 7.66 0 0 1-7.63 7.91h-29.4l-3.39 4h35.9a5.86 5.86 0 0 1 5.93 4l.29 1.41a6.11 6.11 0 0 1-3.68 5.37c-3.39 1.7-12.15 5.09-16.11 6.79 0 0 17 7.35 23.46 9.61h-20.9c-2.26-.57-12.43-5.66-12.43-5.66s-10.75 4.24-13.86 5.66h-24.31c7.92-2.26 28.84-10.18 28.84-10.18-4.24-2.26-8.48-4.24-12.44-6.5l-4 3.39h-12.68c8.2-5.65 16.11-14.7 18.66-17.81h-4a8.09 8.09 0 0 1-7.92-7.91V61.91a7.72 7.72 0 0 1 7.96-7.91h17l2-4.24h-32v-5.94Zm13.85 17.24v2.54H404v-2.26l-2-1.69h-38.75ZM404.23 69h-42.11v4.24h42.11Zm-2 29.69H367.2l-3.11 3.39h13.57l7.64 3.67c5.65-2.26 11-4.52 17-7.06m2-17.53v-2.57h-42.18v2.26l2 1.69h38.45Zm327.85-50.07h10.74a48.59 48.59 0 0 0 3.11 7.07h22.89c8.2 0 11.31 5.66 11.31 10.74v9.9h-8.76V48.62l-2.83-2.83h-17v15.27l2 2.26h23.74L774.27 71H750.8c-2.26 0-5.37-1.13-6.78-3.11l-2-6.22V45.79h-8.48c-2.83 9.9-10.18 20.07-20.07 27.71h-17.22s20.91-10.18 26.85-27.71h-16.68l-2.83 2.83V58.8h-8.76V48.62c0-5.09 2.83-10.74 11.31-10.74h29.4a18.89 18.89 0 0 1-3.39-6.79m41.55 46.65v7.35h-31.94v26.29h39v7.35H693.7v-7.35h39v-26h-31.93V78h72.93ZM434.48 31.09h3.39v88.76h-3.39zm120.42 0h3.39v88.76h-3.39zm120.71 0H679v88.76h-3.39zm222.19 4.25H915v84.23h-17.2Zm399.71 84.23h-10.74l-50.89-58.79v58.79h-17.24V35.34h16.11l45.8 52.86V35.34h17.24v84.23Zm-497 0 32-45.51-27.15-38.72h19.22l17.53 24.87 17.53-24.87h19.22l-27.14 38.72 31.94 45.51h-19.22l-22.33-31.94-22.33 31.94Zm188.27-17h-36.14l-6.79 17.25h-17.24l33.07-84.24h17.25l33.92 84.24h-17.24Zm-31.66-11.3h27.42l-13.81-34.73Zm204.94 17h39v11.3h-56.25V35.34H1198v11.3h-36.19v24h30.81V82h-30.81v26.29Zm-61.9-72.93h18.65l7.92 84.23h-17.24l-5.66-58.51-28.27 58.51h-1.13l-28.83-58.51-5.6 58.51h-17.25l8.2-84.23h18.66l25.16 52.29Zm306.71 0h9.61v84.23h-9.61Zm-35.34 61.05h-40.14l-9.33 23.18h-9.61l33.92-84.23h9.63l34.49 84.23h-9.61Zm-37.31-7.06h34.2l-17.24-42.4Zm135.68-10.18h-19.78v40.42h-9.61V35.34h31.66c13.85 0 23.74 9.89 23.74 21.76 0 9.9-6.78 18.38-17 20.92l24.88 41.27h-9.61Zm-19.78-7.35h21.2c9.33 0 15.83-6.5 15.83-14.42 0-8.19-6.5-14.7-15.83-14.7h-21.2Z" style="fill:#284a7d"/>
|
||||
<path d="M1672.35 32.51a67.9 67.9 0 0 1 19.22 42.4 66.77 66.77 0 0 1-61.91 71.24 67.45 67.45 0 0 1-46.08-14.15 66.69 66.69 0 1 0 88.77-99.5m-118.17 76.05c-2.26 1.13-2.54 2.83-1.41 5.65 1.13 2.55 2.54 3.68 4.24 2.83 1.41-.57 1.7-1.7 1.13-4.81l-.28-1.13c-.57-3.11-.57-4.24-.28-5.65l2.54-2.83c3.11-1.13 5.94.57 7.63 4.81 2 4.52.85 7.91-2.82 9.61l-.85-2.26q3.81-1.69 1.69-6.79c-1.13-2.82-2.82-4-4.52-3.1-1.41.56-1.69 2-1.41 5.08l.28 1.42.28 1.13c.29 2.26.57 3.11.29 3.95l-2.27 2.55c-2.82 1.13-5.65-.57-7.06-4.24-1.7-4.24-.85-7.35 2.54-8.76Zm-1.98-24.03 10.18-8.48v3.11l-8.48 7.07 2.83 3.11 5.93-.28v2.54l-17.24.28v-2.26l6.78-.28h1.7l-.56-.57-.57-.56-7.63-8.2v-3.39l7.06 7.91zm7.64-26.85 6.5 2.54-.85 2.26-6.5-2.26-11.87 3.39 1.13-2.82 7.35-1.98.85-.28 1.13-.29-1.42-1.69-4.52-6.22 1.13-2.55 7.07 9.9zm11.59-31.38-3.68 4.24 11.03 9.05-2.55 3.11-11.02-8.77-3.68 4.24-2.54-1.98 9.89-12.15 2.55 2.26zm23.18-16.4-8.48 5.09 1.69 3.11 7.92-4.8 1.69 2.82-8.19 4.53 2.26 3.67 8.76-5.09 1.7 2.55-12.44 7.35-8.76-14.99 12.43-7.06 1.42 2.82zm23.46-2.26-2-3.39-.85 4-.84 3.39 5.08-.85Zm9.93 8.77-4.52.28-2.3-3.68-7.07 1.13-.85 4.24-4.26 1.14 4.55-18.94 4.24-.57Zm27.67 5.65-3.67-1.41 1.42-5.09.58-2.55.57-2.54.56-2.26.57-1.13-2.26 3.67-1.14 1.7-4.8 6.78-3.11-.85-1.13-8.19-.28-1.7-.29-2.54V4l-.28 2c-.56 2.26-.85 3.39-1.41 5.93l-1.42 5.66-4-.57 4.24-17 5.65 1.13.85 7.92a36.29 36.29 0 0 1 .28 5.65l1.7-2.83 1.41-2 4.52-6.5 5.37 2Z" style="fill:#274877"/>
|
||||
<path d="M1655.38 77.74c4.81-3.39 9-5.09 11.59-5.09l3.4 2.26c0 2-2 3.68-5.37 4.81-3.11 1.13-7.92 1.41-13.29.84l3.67-2.82m-69.82 5.93c-3.11-.28-4.52-1.41-4.52-4 0-.29.28-7.92 17.53-8.77a37 37 0 0 1 7.63.29l-2 1.69-1.13 1.13c-4.52 3.68-11.31 10.18-17.53 9.61m37.32-28.55c-2 2-6.22 5.94-10.18 9.61l-4.5 4.32a73.66 73.66 0 0 0-11-1.13c-8.48 0-16.11 2.27-19.5 5.94l-2 4.52c0 4 4.8 6.22 6.22 6.5 7.35 2.83 13.57 2 20.35-2.54a91.42 91.42 0 0 0 11.31-9.89c2.54.56 5.65 1.41 8.76 2.26l2.83.85c-4 3.67-7.92 7.91-11.59 11l-.29.28c-5.08 4.53-8.76 7.92-14.13 9-3.67.85-6.5 0-7.35-.57l-.28.29a14.19 14.19 0 0 0 11 3.67c4.81-.56 10.18-3.39 16.12-8.76l7.63-7.35 5.37-5.37 10.74 3.11h.28l-6.78 6.5-5.64 5.69c-5.94 5.66-9 8.77-12.44 11-5.66 4-10.46 6.22-15 6.5a13.05 13.05 0 0 1-8.2-1.7h-.28c2.82 2.55 6.5 5.37 12.72 5.37 7.06-.28 13-3.67 22.61-12.43 4.24-4 8.76-8.49 12.44-12.44l7.07-7.07a55.33 55.33 0 0 0 13.56 1.41c6.79-.28 12.44-3.39 12.72-7.06 0-2.83-2.26-4.24-3.67-5.09a17.84 17.84 0 0 0-8.2-2.26c-5.09 0-10.46 2.26-15.55 6.78l-3.67 3.11-1.41-.28-9.9-2.83c2.83-2.83 5.37-5.09 7.64-7.07 5.37-4.8 11.3-6.78 15-7.06 2.54-.29 7.06 0 8.76 1.41l.28-.28a17.43 17.43 0 0 0-12.44-4.81c-3.39 0-9 1.13-15.54 6.22-2.83 2.26-6.22 5.65-10.18 9.61l-5.09-1.41-1.13-.28-5.37-1.7 3.11-2.83c3.67-3.39 6.78-6.78 9.61-9 9.61-7.92 15.55-9 19.51-9 4.52 0 8.19.85 10.74 2.83l.28-.28c-5.37-4.81-9-6.51-15.83-6.51-5.94.29-12.72 3.4-19.5 9.33m-1.98 26.23Zm44.38-72.36 1.13.28-.57-.57-.84-.28-.29.57Zm.56 2.26-.56-.29V9.33l-.57-.28-.56 1.13-.29-.29 1.42-2.82 1.13.56.56 1.13-1.41.29Zm1.7-.85-.85-3.11-3.11.85.85 3.39 3.11-1.13m-4.81-2.26 3.68-1.42 1.41 3.68-3.67 1.41-1.42-3.67" style="fill:#274877"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.8 KiB |