@norwegian/core-components 8.0.0 → 8.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/assets/documentation/select/select.md +0 -1
  2. package/assets/icons/flags/eu.svg +88 -0
  3. package/assets/icons/medium/bank--light.svg +3 -0
  4. package/assets/icons/medium/bank.svg +3 -0
  5. package/assets/icons/small/angle-left--disabled.svg +3 -0
  6. package/assets/icons/small/angle-right--disabled.svg +3 -0
  7. package/assets/icons/small/bank--light.svg +3 -0
  8. package/assets/icons/small/bank.svg +3 -0
  9. package/assets/icons/small/checkmark-outlined.svg +3 -0
  10. package/assets/icons/small/checkmark-solid.svg +3 -0
  11. package/assets/icons/small/click-to-pay--light.svg +8 -0
  12. package/assets/icons/small/click-to-pay.svg +8 -0
  13. package/assets/icons/small/reward-union.svg +7 -0
  14. package/assets/icons/small/swap.svg +6 -0
  15. package/fesm2022/norwegian-core-components.mjs +1125 -1028
  16. package/fesm2022/norwegian-core-components.mjs.map +1 -1
  17. package/index.d.ts +337 -290
  18. package/package.json +1 -1
  19. package/styles/1__settings/_mixins.scss +54 -31
  20. package/styles/2__generic/_fonts.scss +1 -1
  21. package/styles/3__base/_body.scss +4 -4
  22. package/styles/3__base/_form.scss +0 -1
  23. package/styles/3__base/_heading.scss +0 -1
  24. package/styles/3__base/_type.scss +6 -6
  25. package/assets/icons/small/info--light--light.svg +0 -4
  26. package/assets/images/logo--mobile.svg +0 -50
  27. package/assets/images/logo-reward.svg +0 -140
  28. package/assets/images/logo.svg +0 -135
  29. /package/assets/icons/{icon-chevron-left--light.svg → medium/chevron-left--light.svg} +0 -0
  30. /package/assets/icons/{icon-chevron-left.svg → medium/chevron-left.svg} +0 -0
  31. /package/assets/icons/{icon-chevron-right--light.svg → medium/chevron-right--light.svg} +0 -0
  32. /package/assets/icons/{icon-chevron-right.svg → medium/chevron-right.svg} +0 -0
  33. /package/assets/images/{cloud-1.svg → cloud.svg} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norwegian/core-components",
3
- "version": "8.0.0",
3
+ "version": "8.0.2",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -6,31 +6,46 @@
6
6
  @use 'sass:meta';
7
7
 
8
8
  // Font family and weights
9
- @mixin font($font-family: base, $weight: null) {
9
+ @function resolve-font-family($font-family, $weight: null) {
10
10
  $family: map.get($fonts, $font-family);
11
11
 
12
- @if $weight {
13
- @if map.has-key($family, $weight) {
14
- $f-weight: map.get($family, $weight);
15
-
16
- @if (list.length($f-weight) > 1) {
17
- font-family: list.nth($f-weight, 2), map.get($family, fallback);
18
- font-weight: list.nth($f-weight, 1);
19
- }
12
+ @if $weight and map.has-key($family, $weight) {
13
+ $f-weight: map.get($family, $weight);
20
14
 
21
- @else {
22
- font-weight: $f-weight;
23
- font-family: map.get($family, font), map.get($family, fallback);
24
- }
15
+ @if meta.type-of($f-weight)=='list' and list.length($f-weight)>1 {
16
+ @return list.nth($f-weight, 2), map.get($family, fallback);
25
17
  }
18
+ }
26
19
 
27
- @else {
28
- font-family: map.get($family, font), map.get($family, fallback);
20
+ @return map.get($family, font), map.get($family, fallback);
21
+ }
22
+
23
+ @function resolve-font-weight($font-family, $weight: null) {
24
+ $family: map.get($fonts, $font-family);
25
+
26
+ @if ($weight and map.has-key($family, $weight)) {
27
+ $f-weight: map.get($family, $weight);
28
+
29
+ @if (meta.type-of($f-weight)=='list' and list.length($f-weight) > 1) {
30
+ @return list.nth($f-weight, 1);
29
31
  }
32
+
33
+ @return $f-weight;
30
34
  }
31
35
 
32
- @else {
33
- font-family: map.get($family, font), map.get($family, fallback);
36
+ @return null;
37
+ }
38
+
39
+ @mixin font($font-family: base, $weight: null) {
40
+ $resolved-font-family: resolve-font-family($font-family, $weight);
41
+ $resolved-font-weight: resolve-font-weight($font-family, $weight);
42
+
43
+ & {
44
+ font-family: $resolved-font-family;
45
+
46
+ @if ($resolved-font-weight !=null) {
47
+ font-weight: $resolved-font-weight;
48
+ }
34
49
  }
35
50
  }
36
51
 
@@ -38,11 +53,11 @@
38
53
  $fs-map: map.get($font-size, $size);
39
54
 
40
55
  @each $bp, $pair in $fs-map {
41
- @if $bp ==$size-variant {
56
+ @if ($bp ==$size-variant) {
42
57
  @include make-font-size($pair, $skip-line-height); // desktop default
43
58
  }
44
59
 
45
- @else if $bp ==mobile {
60
+ @else if ($bp ==mobile) {
46
61
 
47
62
  // apply on small screens (below md)
48
63
  @media (max-width: calc(map.get($breakpoints, md) - 1px)) {
@@ -50,7 +65,7 @@
50
65
  }
51
66
  }
52
67
 
53
- @else if map.has-key($breakpoints, $bp) {
68
+ @else if (map.has-key($breakpoints, $bp)) {
54
69
  @media (min-width: map.get($breakpoints, $bp)) {
55
70
  @include make-font-size($pair, $skip-line-height);
56
71
  }
@@ -59,19 +74,26 @@
59
74
  }
60
75
 
61
76
  @mixin make-font-size($fs-font-size, $skip-line-height: false) {
62
- @if (meta.type-of($fs-font-size)=="list") {
63
- font-size: list.nth($fs-font-size, 1);
77
+ $resolved-font-size: null;
78
+ $resolved-line-height: null;
79
+
80
+ @if (meta.type-of($fs-font-size)=='list') {
81
+ $resolved-font-size: list.nth($fs-font-size, 1);
64
82
 
65
83
  @if ($skip-line-height !=true and list.length($fs-font-size) > 1) {
66
- line-height: list.nth($fs-font-size, 2);
84
+ $resolved-line-height: list.nth($fs-font-size, 2);
67
85
  }
68
86
  }
69
87
 
70
88
  @else {
71
- font-size: $fs-font-size;
89
+ $resolved-font-size: $fs-font-size;
90
+ }
72
91
 
73
- @if ($skip-line-height !=true) {
74
- line-height: list.nth($fs-font-size, 1);
92
+ & {
93
+ font-size: $resolved-font-size;
94
+
95
+ @if ($resolved-line-height !=null) {
96
+ line-height: $resolved-line-height;
75
97
  }
76
98
  }
77
99
  }
@@ -245,14 +267,15 @@
245
267
 
246
268
  // Text stroke...
247
269
  @mixin text-stroke($width, $color) {
248
- text-shadow: $shadow;
249
270
  $shadow: (
250
271
  );
251
272
 
252
273
  @for $i from -$width through $width {
253
- $shadow: append($shadow, #{$width}px #{$i}px $color, comma);
254
- $shadow: append($shadow, #{-$width}px #{$i}px $color, comma);
255
- $shadow: append($shadow, #{$i}px #{$width}px $color, comma);
256
- $shadow: append($shadow, #{$i}px #{-$width}px $color, comma);
274
+ $shadow: list.append($shadow, #{$width}px #{$i}px $color, comma);
275
+ $shadow: list.append($shadow, #{-$width}px #{$i}px $color, comma);
276
+ $shadow: list.append($shadow, #{$i}px #{$width}px $color, comma);
277
+ $shadow: list.append($shadow, #{$i}px #{-$width}px $color, comma);
257
278
  }
279
+
280
+ text-shadow: $shadow;
258
281
  }
@@ -33,7 +33,7 @@ $value in $import-fonts {
33
33
  font-family: '#{list.nth($value, 1)}';
34
34
  font-style: list.nth($value, 4);
35
35
  font-weight: list.nth($value, 3);
36
- font-display: fallback;
36
+ font-display: swap;
37
37
  src: url('/assets/fonts/#{list.nth($value, 2)}.woff2') format('woff2'),
38
38
  url('/assets/fonts/#{list.nth($value, 2)}.woff') format('woff');
39
39
  }
@@ -3,14 +3,14 @@
3
3
  @use '../1__settings/colors' as *;
4
4
 
5
5
  body {
6
+ background-color: $background-canvas;
6
7
  color: $typography-default;
7
8
  font-style: normal;
8
9
  line-height: 1.4;
10
+ overflow-x: hidden;
11
+ text-rendering: optimizeLegibility;
9
12
  -moz-osx-font-smoothing: grayscale;
10
13
  -webkit-font-smoothing: antialiased;
11
- text-rendering: optimizeLegibility;
12
- overflow-x: hidden;
13
- background-color: $background-canvas;
14
14
  @include font(base, normal);
15
15
  @include font-size(small, true);
16
16
 
@@ -19,8 +19,8 @@ body {
19
19
  overflow: hidden;
20
20
 
21
21
  &__top-position {
22
- @extend .block-scrolling;
23
22
  position: fixed;
23
+ @extend .block-scrolling;
24
24
  }
25
25
  }
26
26
  }
@@ -17,5 +17,4 @@ label,
17
17
  .label {
18
18
  display: block;
19
19
  margin-bottom: $spacing--xxsmall;
20
-
21
20
  }
@@ -50,7 +50,6 @@ h2,
50
50
 
51
51
  h3,
52
52
  .heading3 {
53
- letter-spacing: -0.03em;
54
53
  margin: 0 0 $spacing--xxxsmall;
55
54
  @include font(heading, bold);
56
55
  @include font-size(large, false, mobile);
@@ -43,9 +43,9 @@ em {
43
43
  }
44
44
 
45
45
  blockquote {
46
- line-height: 1.5;
47
- letter-spacing: 0.02em;
48
46
  font-style: italic;
47
+ letter-spacing: 0.02em;
48
+ line-height: 1.5;
49
49
  margin: 0 0 $spacing;
50
50
  @include font(base, bold);
51
51
  @include font-size(regular, true);
@@ -63,11 +63,11 @@ b {
63
63
  }
64
64
 
65
65
  code {
66
- display: inline-block;
66
+ background-color: $background-surface-default;
67
+ border: 1px solid $border-muted;
67
68
  border-radius: 4px;
68
- padding: 1px 4px;
69
+ display: inline-block;
69
70
  margin-bottom: 4px;
70
- border: 1px solid $border-muted;
71
- background-color: $background-surface-default;
71
+ padding: 1px 4px;
72
72
  @include font-size(xsmall);
73
73
  }
@@ -1,4 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
2
- <circle cx="12" cy="12" r="12" fill="white"/>
3
- <path d="M11 7.28C11 8 11.544 8.56 12.28 8.56C13.016 8.56 13.56 8 13.56 7.28C13.56 6.56 13.016 6 12.28 6C11.544 6 11 6.56 11 7.28ZM11.288 9.6V17.664H13.272V9.6H11.288Z" fill="#15273f"/>
4
- </svg>
@@ -1,50 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="36.7px" height="33px" viewBox="-271.6 404.9 36.7 33" enable-background="new -271.6 404.9 36.7 33" xml:space="preserve">
6
- <g>
7
- <g>
8
- <g>
9
- <g>
10
- <path fill="#FFFFFF" d="M-270.9,406.2h11.9v3c5.8-5.2,13.4-5.2,18.2-2.2c5.2,3.2,5.2,8.2,5.2,14v16.7h-11.8v-13.3
11
- c0-3,0.2-6.9-2.8-9c-1.3-1.1-4.1-1.1-5.8,0.2c-3,2.2-2.6,4.8-2.6,9.3v12.5h-12.2v-31.2H-270.9z"/>
12
- </g>
13
- </g>
14
- </g>
15
- </g>
16
- <g>
17
- <g>
18
- <path fill="#15273f" d="M-240,412.2c0.6,0,1.3,0.2,1.9,0.3c0.4,0.1,0.6,0.2,0.9,0.3c0.1,0.1,0.3,0.1,0.4,0.2
19
- c0.2,0.2,0.2,0.3,0.2,0.4c0.1,0.5-0.2,0.9-0.4,1.3c-0.8,1.3-2.1,2.3-3.4,3.3c-1.3,1-2.7,1.9-4,2.8c-0.3,0.1-0.5,0.3-0.8,0.5
20
- c0.2,0.1,0.4,0.2,0.6,0.3l0,0c0.1,0,0.1,0.1,0.2,0.1c0.4-0.2,0.6-0.4,1.1-0.6c0.4-0.2,0.7-0.2,1-0.2c0.3,0.1,0.7,0.5,0.7,0.8
21
- c0.2,0.5,0.1,0.9-0.1,1.4c1.7,0.8,3.3,1.6,5,2.4c0.4,0.2,0.8,0.3,1.2,0.6c0.1,0.3-0.1,0.5-0.3,0.7c-0.6,0.3-1.2,0.7-1.9,0.8
22
- c-0.7-0.2-1.4-0.3-2.1-0.5c-1.1-0.2-2.1-0.5-3.2-0.7c-0.9-0.1-1.8-0.3-2.6-0.5c-0.7-0.1-1.2-0.2-1.9-0.2c-0.8-0.1-1.7-0.1-2.5-0.1
23
- c-1,0-2-0.1-3.1-0.2c-1.6,0.7-3.1,1.5-4.9,2.1c-1.1,0.4-2.3,0.8-3.4,1.1c0.4,0.5,1,0.7,1.2,1.3c0,0.1-0.1,0.2-0.1,0.2
24
- c-0.2,0.1-0.4,0.2-0.7,0.2c-1.1-0.3-2.3-0.6-3.4-0.9l-0.3-0.1c-0.6,0.1-1.4,0.6-1.9,0c-0.1-0.2-0.1-0.3-0.1-0.5
25
- c0-0.1-0.1-0.2-0.3-0.2c-0.2-0.1-0.4-0.2-0.5-0.2c-0.3-0.1-0.7-0.2-1-0.3c-0.8-0.2-1.5-0.4-2.2-0.7c-0.2-0.1-0.2-0.3-0.1-0.5
26
- c0.4-0.3,1.1-0.5,1.6-0.3c0.5,0.1,1.1,0.1,1.6,0.2l0,0c-0.7-0.7-1.3-1.3-1.9-2c-0.1-0.2-0.3-0.3-0.3-0.5c0-0.2,0.1-0.3,0.3-0.4
27
- c0.1-0.1,0.2-0.1,0.4-0.2c0.5-0.2,0.7-0.4,1.1-0.3c1.1,0.5,2.1,0.9,3.4,1.5c0.3,0.1,0.5,0.3,0.8,0.2c0.4-0.1,0.5-0.2,0.8-0.4
28
- c0.1-0.1,0.5-0.3,0.6-0.4c0.4-0.3,0.8-0.5,1-0.7c0.8-0.5,1.2-0.8,1.8-1.3c-1-0.4-1.9-1-2.9-1.4c-1-0.3-1.3-0.4-2.3-0.6
29
- c-0.6-0.1-1.4-0.3-1.4-0.4c-1.3-0.3-1.6-0.4-2.8-0.7c-0.6-0.2-1.2-0.3-1.8-0.6c-0.1-0.1-0.1-0.2,0-0.3c0.2-0.3,0.6-0.5,0.8-0.8
30
- c0.4-0.2,0.7-0.6,1.2-0.6c0.9-0.1,1.6,0.1,2.6,0.2c1.2,0.1,2.3,0.3,3.5,0.5c1.5,0.2,3.1,0.3,4.7,0.6c0.1,0,0.2,0.1,0.4,0.1
31
- c0.1,0.1,0.3,0,0.4,0.1c0.1,0,0.3,0,0.4,0.1c0.7-0.6,1.5-1.3,2.4-1.4c0.5-0.1,1,0.3,1.3,0.7c1.7-1.2,3.4-2.4,5.2-3.3
32
- c1.7-0.9,3.3-1.6,4.6-2c1-0.3,1.9-0.5,2.9-0.5C-240.3,412.2-240.2,412.2-240,412.2"/>
33
- </g>
34
- <g>
35
- <path fill="#FFFFFF" d="M-239,413.3c-0.8,0.2-1.3,0.3-2.2,0.7c-0.8,0.3-2,0.8-3,1.3c-1.5,0.7-2.7,1.4-4.3,2.4
36
- c-0.6,0.4-1.8,1.4-1.8,1.4c-0.9-0.1-1.8-0.1-2.6-0.2l0.2-0.1c1.1-0.9,2.2-1.6,3.4-2.3c1.1-0.7,2.8-1.6,4.2-2.2
37
- c1.2-0.5,2.5-0.9,3.9-1.1C-240.5,413.1-239.8,413-239,413.3"/>
38
- </g>
39
- <g>
40
- <path fill="#FFFFFF" d="M-256.2,419.1c0.2-0.2,0.4-0.3,0.6-0.5c0.2-0.1,0.4-0.2,0.6-0.3c-0.1,0.4-0.1,0.5,0.1,1
41
- c0.1,0.2,0.2,0.4,0.3,0.5c-0.5,0.3-1,0.7-1.5,1c-0.2-0.1-0.2-0.3-0.3-0.5c-0.1-0.4-0.1-0.7,0.1-1L-256.2,419.1z"/>
42
- </g>
43
- <g>
44
- <path fill="#FFFFFF" d="M-257.2,423.6c-0.7,0.4-1.4,0.8-2,1.1c-1.3,0.7-2.8,1.5-4.7,2.4c-0.5,0.2-1,0.4-1.6,0.3
45
- c-0.4-0.1-0.5,0-0.8-0.1c-0.7-0.7-1.5-1.4-2.2-2.1c-0.1-0.1-0.3-0.2-0.3-0.4l0.5-0.3h0.2c1,0.5,1.7,0.8,2.7,1.3
46
- c0.4,0.2,0.8,0.4,1.2,0.5c0.5,0,0.7-0.2,1.2-0.3l0.3-0.2c0.6-0.4,0.8-0.5,1.1-0.7c1.1-0.7,1.9-1.2,3-1.9l0.2-0.1
47
- C-257.9,423.3-257.7,423.4-257.2,423.6"/>
48
- </g>
49
- </g>
50
- </svg>
@@ -1,140 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- viewBox="-386 259.3 186.3 42.7" style="enable-background:new -386 259.3 186.3 42.7;" xml:space="preserve">
6
- <style type="text/css">
7
- .st0{fill:#FFFFFF;}
8
- .st1{fill:#15273f;}
9
- </style>
10
- <g id="Layer_2">
11
- </g>
12
- <g id="Layer_1">
13
- <g>
14
- <g>
15
- <g>
16
- <path class="st0" d="M-376.9,295.6l-0.1-0.1c-0.3-0.6-0.3-1.5-0.3-2c-0.1-1.9-0.3-3.2-2-3.2l-0.2,0h-4.2v5.3h-1.6v-12.4h5.8
17
- c2.4,0,3.9,1.3,3.9,3.3c0,1.4-0.6,2.4-1.7,3c1.1,0.5,1.4,1.6,1.5,2.7c0,0.2,0,0.4,0.1,0.7c0.1,0.8,0.1,1.9,0.5,2.3l0.3,0.4
18
- H-376.9z M-379.6,289c1.2,0,2.4-0.7,2.4-2.1c0-1.4-0.8-2.1-2.4-2.1h-4v4.2H-379.6z"/>
19
- <path class="st0" d="M-379.5,283.5c2,0,3.6,1,3.6,3.1c0,1.5-0.8,2.7-2.3,3c1.6,0.2,2,1.3,2.1,2.7c0.1,0.8,0.1,2.5,0.6,3.1h-1.3
20
- c-0.3-0.5-0.3-1.4-0.3-1.9c-0.1-1.7-0.2-3.4-2.2-3.4c-0.1,0-0.1,0-0.2,0h-4.4v5.3h-1.1v-11.9H-379.5 M-383.9,289.2h4.3
21
- c1.4,0,2.6-0.9,2.6-2.3c0-1.5-0.9-2.4-2.6-2.4h-4.3V289.2 M-379.5,283h-5.5h-0.5v0.5v11.9v0.5h0.5h1.1h0.5v-0.5v-4.8h3.9
22
- c0.1,0,0.1,0,0.2,0c1.4,0,1.6,0.9,1.7,2.9c0,0.7,0,1.6,0.4,2.1l0.1,0.2h0.3h1.3h1.1l-0.7-0.8c-0.3-0.3-0.4-1.5-0.4-2.2
23
- c0-0.3,0-0.5-0.1-0.7c-0.1-1-0.3-2.1-1.2-2.7c0.9-0.6,1.4-1.7,1.4-3C-375.4,284.4-377,283-379.5,283L-379.5,283z M-383.4,285
24
- h3.8c1.4,0,2.1,0.6,2.1,1.9c0,1.2-1.1,1.8-2.1,1.8h-3.8V285L-383.4,285z"/>
25
- </g>
26
- <g>
27
- <polygon class="st0" points="-368.9,295.8 -368.9,283.3 -360.1,283.3 -360.1,284.8 -367.3,284.8 -367.3,288.5 -360.5,288.5
28
- -360.5,290 -367.3,290 -367.3,294.3 -360,294.3 -360,295.8 "/>
29
- <path class="st0" d="M-360.4,283.5v1h-7.1v4.3h6.7v1h-6.7v4.7h7.2v1h-8.3v-12H-360.4 M-368.6,283.5L-368.6,283.5 M-368.6,283.5
30
- h-0.1H-368.6 M-359.9,283h-0.5h-8.2h0h-0.1h-0.4v0.5v12v0.5h0.5h8.3h0.5v-0.5v-1V294h-0.5h-6.7v-3.7h6.2h0.5v-0.5v-1v-0.5h-0.5
31
- h-6.2V285h6.6h0.5v-0.5v-1V283L-359.9,283z"/>
32
- </g>
33
- <g>
34
- <polygon class="st0" points="-344.6,295.8 -347.4,285.7 -350.2,295.8 -351.8,295.8 -355.2,283.3 -353.5,283.3 -351,293
35
- -348.2,283.3 -346.4,283.3 -343.7,293 -341.2,283.3 -339.6,283.3 -343,295.8 "/>
36
- <path class="st0" d="M-339.9,283.5L-339.9,283.5 M-339.9,283.5l-3.3,12h-1.2l-3-10.7l-3,10.7h-1.2l-3.3-12h1.2l2.7,10.5l3-10.5
37
- h1.4l2.9,10.5l2.7-10.5H-339.9 M-339.2,283h-0.7h-1.1h-0.4l-0.1,0.4l-2.2,8.7l-2.4-8.7l-0.1-0.4h-0.4h-1.4h-0.4l-0.1,0.4
38
- l-2.5,8.7l-2.2-8.7l-0.1-0.4h-0.4h-1.2h-0.7l0.2,0.6l3.3,12l0.1,0.4h0.4h1.2h0.4l0.1-0.4l2.5-9l2.5,9l0.1,0.4h0.4h1.2h0.4
39
- l0.1-0.4l3.3-12L-339.2,283L-339.2,283z"/>
40
- </g>
41
- <g>
42
- <path class="st0" d="M-325.6,295.8l-1.5-3.7h-5.1l-1.4,3.7h-1.8l5-12.5h1.6l4.9,12.5H-325.6z M-327.7,290.5l-1.9-5.2l-2,5.2
43
- H-327.7z"/>
44
- <path class="st0" d="M-328.9,283.5l4.7,12h-1.2l-1.5-3.7h-5.4l-1.4,3.7h-1.3l4.8-12H-328.9 M-332,290.8h4.7l-2.3-6.1L-332,290.8
45
- M-328.6,283h-0.3h-1.3h-0.3l-0.1,0.3l-4.8,12l-0.3,0.7h0.7h1.3h0.3l0.1-0.3l1.3-3.4h4.7l1.4,3.4l0.1,0.3h0.3h1.2h0.7l-0.3-0.7
46
- l-4.7-12L-328.6,283L-328.6,283z M-331.3,290.3l1.7-4.2l1.6,4.2H-331.3L-331.3,290.3z"/>
47
- </g>
48
- <g>
49
- <path class="st0" d="M-310,295.6l-0.1-0.1c-0.3-0.6-0.3-1.5-0.3-2c-0.1-1.9-0.3-3.2-2-3.2l-0.2,0h-4.1v5.3h-1.6v-12.4h5.6
50
- c2.4,0,3.9,1.3,3.9,3.3c0,1.4-0.6,2.4-1.7,3c1.1,0.5,1.4,1.6,1.5,2.7c0,0.2,0,0.4,0.1,0.7c0.1,0.8,0.1,1.9,0.5,2.3l0.3,0.4H-310
51
- z M-312.6,289c1.2,0,2.4-0.7,2.4-2.1c0-1.4-0.8-2.1-2.4-2.1h-4v4.2H-312.6z"/>
52
- <path class="st0" d="M-312.6,283.5c2,0,3.6,1,3.6,3.1c0,1.5-0.8,2.7-2.3,3c1.6,0.2,2,1.3,2.1,2.7c0.1,0.8,0.1,2.5,0.6,3.1h-1.3
53
- c-0.3-0.5-0.3-1.4-0.3-1.9c-0.1-1.7-0.2-3.4-2.2-3.4c-0.1,0-0.1,0-0.2,0h-4.3v5.3h-1.1v-11.9H-312.6 M-316.9,289.2h4.3
54
- c1.4,0,2.6-0.9,2.6-2.3c0-1.5-0.9-2.4-2.6-2.4h-4.3V289.2 M-318,283.5L-318,283.5 M-318,283.5h-0.1H-318 M-312.6,283h-5.4h0
55
- h-0.1h-0.4v0.5v11.9v0.5h0.5h1.1h0.5v-0.5v-4.8h3.8c0.1,0,0.1,0,0.2,0c1.4,0,1.6,0.9,1.7,2.9c0,0.7,0,1.6,0.4,2.1l0.1,0.2h0.3
56
- h1.3h1.1l-0.7-0.8c-0.3-0.3-0.4-1.5-0.4-2.2c0-0.3,0-0.5-0.1-0.7c-0.1-1-0.3-2.1-1.2-2.7c0.9-0.6,1.4-1.7,1.4-3
57
- C-308.5,284.4-310.1,283-312.6,283L-312.6,283z M-316.4,285h3.8c1.4,0,2.1,0.6,2.1,1.9c0,1.2-1.1,1.8-2.1,1.8h-3.8V285
58
- L-316.4,285z"/>
59
- </g>
60
- <g>
61
- <path class="st0" d="M-302,295.8v-12.5h4.3c3.8,0.1,5.8,2.3,5.8,6.3c0,4-2,6.1-5.7,6.3h0H-302z M-298.3,294.3
62
- c3.3,0,4.6-1.3,4.6-4.8s-1.3-4.8-4.6-4.8h-2.2v9.5H-298.3z"/>
63
- <path class="st0" d="M-297.7,283.5c3.6,0.1,5.5,2.1,5.5,6c0,3.9-1.9,5.9-5.5,6h-4.1v-12H-297.7 M-300.7,294.5h2.4
64
- c3.4,0,4.9-1.4,4.9-5c0-3.6-1.5-5-4.9-5h-2.4V294.5 M-297.7,283L-297.7,283h-4.1h-0.5v0.5v12v0.5h0.5h4.1c3.9-0.1,6-2.4,6-6.5
65
- S-293.8,283.1-297.7,283L-297.7,283L-297.7,283z M-300.2,285h1.9c3.2,0,4.4,1.2,4.4,4.5c0,3.3-1.2,4.5-4.4,4.5h-1.9V285
66
- L-300.2,285z"/>
67
- </g>
68
- </g>
69
- </g>
70
- <g>
71
- <g>
72
- <g>
73
- <g>
74
- <g>
75
- <path class="st0" d="M-386,264.4h5.2v1.4c2.5-2.2,5.8-2.3,7.9-1c2.3,1.4,2.3,3.6,2.3,6v7.2h-5.2v-5.8c0-1.3,0.1-3-1.2-3.9
76
- c-0.6-0.3-1.9-0.3-2.6,0.2c-1.3,1-1.2,2.1-1.2,4v5.5h-5.2V264.4z"/>
77
- <path class="st0" d="M-360.1,267.6c0.8-0.2,2.1,0,2.9,0.9c0.8,0.9,1.1,2.1,0.9,3.1c-0.1,1-0.7,2-1.7,2.6
78
- c-0.9,0.5-2.2,0.5-3.2-0.2c-0.8-0.6-1.3-1.6-1.4-2.6c0-0.9,0.1-2.1,1.1-3.1C-360.9,267.9-360.5,267.7-360.1,267.6z
79
- M-364.2,265c-2.2,1.2-3.3,3-3.5,5.3c-0.2,1.8,0.2,4,1.7,5.6c2.7,2.8,7.5,2.9,10.2,2c2.2-0.8,4.1-2,4.9-4.9
80
- c0.5-1.9,0.3-3.9-1-5.7c-2.2-3.3-6.8-3.6-8.7-3.3C-361.7,264.1-363.1,264.4-364.2,265z"/>
81
- <path class="st0" d="M-324,270.7c0,0.3-0.1,0.5-0.4,1.4l-1.9,6h-5.3l-5.2-13.7h5.7l1.8,5.7c0.3,1,0.4,1.3,0.4,1.6
82
- c0-0.3,0.1-0.5,0.4-1.6l1.8-5.7h5.6l1.8,5.7c0.3,1,0.3,1.3,0.3,1.6c0-0.3,0.1-0.5,0.4-1.6l1.8-5.7h5.7l-5.2,13.6h-5.3
83
- l-1.9-5.9C-323.9,271.1-323.9,271-324,270.7z"/>
84
- <path class="st0" d="M-298.3,269.5h-6.1c0.4-1.5,1.3-2,2.3-2.2C-301,267.1-299.1,267.4-298.3,269.5z M-294.7,266.5
85
- c-2.5-2.9-7.5-3-9.9-2.2c-2.3,0.7-4.2,1.9-5,4.9c-0.6,2.2-0.3,4.2,0.9,6.1c2.4,3.5,7.2,3.3,9.4,3c1.7-0.3,4.8-1.2,5.9-4.2
86
- l0.1-0.1l-5.1-0.6c-0.2,0.2-0.3,0.4-0.8,0.8c-0.9,0.6-2.7,0.5-3.5,0.3c-0.9-0.4-1.6-1.4-1.7-2.1h11.5v-0.2
87
- C-292.8,270.3-293.3,268-294.7,266.5z"/>
88
- <path class="st0" d="M-283.7,268.4c0.7-0.2,2.2-0.1,2.9,0.8c0.5,0.5,0.7,1.1,0.7,1.8c-0.1,0.6-0.4,1.3-1,1.7
89
- c-0.9,0.6-2.3,0.5-3.2,0.1c-0.6-0.4-1.1-0.8-1.2-1.6c-0.1-0.5,0-1.3,0.5-1.9C-284.6,268.8-284.2,268.5-283.7,268.4z
90
- M-290.2,278.6c0.1,1,0.4,1.7,0.5,2c1.3,2.3,3.7,2.8,6.6,2.8s5.2-0.2,6.9-2.1c1.5-1.8,1.3-4,1.3-6v-10.9h-5.2v1.2
91
- c-1.2-1.1-2.4-1.5-3.3-1.6c-1.9-0.3-4.5,0.4-6.1,2.4c-1.3,1.7-1.5,4.1-1.3,5.8c0.3,2.1,1.4,3.6,3.3,4.6
92
- c2.1,1.1,5.4,0.9,7.3-0.7c0,0.6,0,1.8-0.2,2.3c-0.4,0.8-1.1,1.1-1.7,1.2c-0.5,0.1-2.1,0.4-2.6-0.7c-0.1-0.2-0.1-0.3-0.2-0.4
93
- L-290.2,278.6L-290.2,278.6z"/>
94
- <path class="st0" d="M-271,259.3h5.2v3.5h-5.2V259.3z M-271,264.4h5.2V278h-5.2V264.4z"/>
95
- <path class="st0" d="M-251.9,272c-0.5,1.7-1.5,2.3-2.8,2.5c-0.7,0.1-2,0.2-2.6-0.8c-0.1-0.2-0.2-0.8-0.1-1
96
- c0.4-0.8,1.1-0.7,2.7-0.7H-251.9z M-257.2,268.2c0.1-0.3,0.2-0.6,0.5-0.8c0.7-0.5,3.2-0.4,3.8,0c0.8,0.4,0.9,1,1,1.9
97
- c0,0-1.6-0.1-2.7,0c-1.3,0.1-1.8,0.1-3,0.3c-2.3,0.3-4.5,0.7-5.1,3.4c-0.4,1.9,0.1,3.6,1.9,4.7l0.1,0.1c2.6,1.1,5.9,0.7,8.8-1
98
- c0,0,0,0.8,0.2,1.2h6c-0.6-0.6-0.9-1.5-0.9-2.8v-5.9c0-1.1,0.1-2.6-0.6-3.5c-1.2-1.6-3.5-2-7.4-2c-3.2,0-5.4,0.1-6.6,1.8
99
- c-0.6,0.8-0.7,1.5-0.8,2.6H-257.2z"/>
100
- <path class="st0" d="M-242.7,264.4h5.2v1.4c2.5-2.2,5.8-2.3,7.9-1c2.3,1.4,2.3,3.6,2.3,6v7.2h-5.2v-5.8c0-1.3,0.1-3-1.2-3.8
101
- c-0.6-0.4-1.9-0.4-2.7,0.2c-1.3,1-1.2,2.1-1.2,4v5.5h-5.2L-242.7,264.4L-242.7,264.4z"/>
102
- </g>
103
- </g>
104
- </g>
105
- <path class="st0" d="M-338.6,264.2v5.3c-1.6,0-2.7,0.2-3.7,0.9v7.6h-5.2v-13.6h5.2v1.6c0.3-0.5,0.9-1,1.8-1.4
106
- C-340.2,264.4-339.2,264.2-338.6,264.2z"/>
107
- </g>
108
- </g>
109
- <g>
110
- <path class="st1" d="M-220,289.7c-16.4,8.5-32.6,13.7-40.4,12.1c-6.8-1.4-3.5-10.8,6.3-18.5h2c-7.7,6.5-8.3,14.6-3.4,15.2
111
- c5.6,0.7,19.8-2.4,34.4-9.1L-220,289.7z"/>
112
- <g>
113
- <path class="st1" d="M-203,278c0.4,0,0.9,0.1,1.3,0.2c0.3,0.1,0.4,0.1,0.6,0.2c0.1,0,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.2,0.3
114
- c0.1,0.4-0.1,0.7-0.3,0.9c-0.6,0.9-1.5,1.6-2.4,2.3c-0.9,0.7-1.9,1.3-2.8,2c-0.2,0.1-0.4,0.2-0.6,0.3c0.2,0.1,0.3,0.1,0.5,0.2
115
- l0,0c0,0,0.1,0.1,0.2,0.1c0.3-0.1,0.4-0.3,0.8-0.4c0.3-0.2,0.5-0.2,0.7-0.1s0.5,0.3,0.5,0.6c0.1,0.3,0.1,0.6-0.1,1
116
- c1.2,0.6,2.3,1.1,3.5,1.7c0.3,0.1,0.5,0.2,0.8,0.4c0.1,0.2-0.1,0.4-0.2,0.5c-0.4,0.2-0.8,0.5-1.3,0.6c-0.5-0.1-1-0.2-1.5-0.3
117
- c-0.8-0.2-1.5-0.3-2.3-0.5c-0.6-0.1-1.2-0.2-1.8-0.3c-0.5-0.1-0.9-0.2-1.4-0.2c-0.6-0.1-1.2-0.1-1.8-0.1c-0.7,0-1.4,0-2.2-0.1
118
- c-1.1,0.5-2.2,1-3.5,1.5c-0.8,0.3-1.6,0.6-2.4,0.8c0.3,0.3,0.7,0.5,0.8,0.9c0,0.1-0.1,0.1-0.1,0.1c-0.2,0.1-0.3,0.1-0.5,0.2
119
- c-0.8-0.2-1.6-0.4-2.4-0.6h-0.2c-0.4,0.1-1,0.5-1.3,0c0-0.1-0.1-0.2-0.1-0.3c0-0.1-0.1-0.1-0.2-0.2c-0.2-0.1-0.3-0.1-0.4-0.1
120
- c-0.3-0.1-0.5-0.2-0.7-0.2c-0.6-0.2-1.1-0.3-1.6-0.5c-0.1-0.1-0.1-0.2,0-0.4c0.3-0.2,0.7-0.3,1.1-0.2c0.4,0,0.8,0.1,1.1,0.1l0,0
121
- c-0.5-0.5-0.9-0.9-1.3-1.4c-0.1-0.1-0.2-0.2-0.2-0.4c0-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.1,0.3-0.1c0.3-0.2,0.5-0.3,0.8-0.2
122
- c0.8,0.4,1.5,0.7,2.4,1.1c0.2,0.1,0.4,0.2,0.6,0.2c0.3-0.1,0.3-0.2,0.6-0.3c0.1,0,0.3-0.2,0.4-0.3c0.3-0.2,0.5-0.3,0.7-0.5
123
- c0.5-0.4,0.9-0.6,1.3-0.9c-0.7-0.3-1.4-0.7-2.1-1c-0.7-0.2-0.9-0.3-1.6-0.4c-0.4-0.1-1-0.2-1-0.3c-0.9-0.2-1.2-0.3-2-0.5
124
- c-0.4-0.2-0.9-0.2-1.3-0.4c0-0.1,0-0.1,0-0.2c0.1-0.2,0.4-0.4,0.6-0.5c0.3-0.1,0.5-0.4,0.8-0.5c0.7,0,1.2,0.1,1.9,0.2
125
- c0.8,0.1,1.7,0.2,2.5,0.3c1.1,0.1,2.2,0.2,3.3,0.4c0.1,0,0.2,0.1,0.3,0c0.1,0,0.2,0,0.3,0.1c0.1,0,0.2,0,0.3,0
126
- c0.5-0.4,1.1-0.9,1.7-1c0.4,0,0.7,0.2,0.9,0.5c1.2-0.9,2.4-1.7,3.7-2.3c1.2-0.6,2.3-1.1,3.3-1.4c0.7-0.2,1.4-0.3,2.1-0.4
127
- C-203.2,278-203.1,278-203,278z"/>
128
- <path class="st0" d="M-202.2,278.7c-0.6,0.1-0.9,0.2-1.6,0.5c-0.5,0.2-1.4,0.6-2.1,0.9c-1,0.5-1.9,1-3,1.7
129
- c-0.4,0.3-1.2,0.9-1.3,1c-0.6-0.1-1.2-0.1-1.8-0.2l0.1-0.1c0.8-0.7,1.5-1.1,2.4-1.6c0.8-0.5,2-1.1,3-1.5c0.9-0.3,1.8-0.6,2.7-0.8
130
- C-203.3,278.6-202.8,278.6-202.2,278.7z"/>
131
- <path class="st0" d="M-214.4,282.9c0.2-0.1,0.3-0.2,0.5-0.3c0.2-0.1,0.3-0.2,0.4-0.2c-0.1,0.3-0.1,0.4,0,0.7
132
- c0,0.2,0.2,0.3,0.2,0.3c-0.4,0.2-0.7,0.5-1.1,0.7c-0.1-0.1-0.2-0.2-0.2-0.4c0-0.3,0-0.5,0-0.7L-214.4,282.9z"/>
133
- <path class="st0" d="M-215.1,286c-0.5,0.3-1,0.5-1.4,0.8c-0.9,0.5-2,1.1-3.3,1.7c-0.4,0.2-0.7,0.3-1.1,0.2c-0.3,0-0.3,0-0.6-0.1
134
- c-0.5-0.5-1-1-1.5-1.5c-0.1-0.1-0.2-0.2-0.2-0.3l0.3-0.2h0.1c0.7,0.3,1.2,0.6,1.9,0.9c0.3,0.1,0.6,0.3,0.8,0.4
135
- c0.3,0,0.5-0.1,0.8-0.2l0.2-0.1c0.4-0.3,0.6-0.3,0.8-0.5c0.8-0.5,1.4-0.9,2.1-1.3l0.2-0.1C-215.6,285.8-215.4,285.9-215.1,286z"
136
- />
137
- </g>
138
- </g>
139
- </g>
140
- </svg>
@@ -1,135 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="197px" height="45.5px" viewBox="0 0 197 45.5" enable-background="new 0 0 197 45.5" xml:space="preserve">
6
- <g>
7
- <g>
8
- <g>
9
- <path fill="#15273f" d="M175.4,32.3c-17.5,9-34.7,14.5-43,12.8c-7.3-1.5-3.7-11.5,6.7-19.7l2.2,0c-8.2,6.9-8.8,15.5-3.6,16.2
10
- c5.9,0.7,21.1-2.5,36.6-9.7L175.4,32.3z"/>
11
- </g>
12
- </g>
13
- <g>
14
- <g>
15
- <path fill="#15273f" d="M193.6,19.9c0.5,0,1,0.1,1.4,0.2c0.3,0.1,0.4,0.1,0.7,0.3c0.1,0,0.2,0.1,0.3,0.2c0.2,0.1,0.1,0.2,0.2,0.3
16
- c0.1,0.4-0.1,0.7-0.3,1c-0.6,1-1.6,1.7-2.5,2.4c-1,0.8-2,1.4-3,2.1c-0.2,0.1-0.4,0.3-0.6,0.4c0.2,0.1,0.3,0.1,0.5,0.2l0,0
17
- c0,0,0.1,0.1,0.2,0.1c0.3-0.1,0.5-0.3,0.8-0.4c0.3-0.2,0.5-0.2,0.8-0.1c0.2,0.1,0.5,0.4,0.6,0.6c0.1,0.4,0.1,0.7-0.1,1.1
18
- c1.3,0.6,2.5,1.2,3.7,1.8c0.3,0.2,0.6,0.3,0.9,0.5c0.1,0.2-0.1,0.4-0.3,0.5c-0.5,0.2-0.9,0.6-1.4,0.6c-0.5-0.1-1-0.2-1.6-0.4
19
- c-0.8-0.2-1.6-0.4-2.4-0.5c-0.6-0.1-1.3-0.2-1.9-0.4c-0.5-0.1-0.9-0.2-1.4-0.2c-0.6-0.1-1.2-0.1-1.9-0.1c-0.8,0-1.5,0-2.3-0.1
20
- c-1.2,0.5-2.3,1.1-3.7,1.6c-0.9,0.3-1.7,0.6-2.6,0.9c0.3,0.4,0.7,0.5,0.9,1c0,0.1-0.1,0.1-0.1,0.1c-0.2,0.1-0.3,0.1-0.5,0.2
21
- c-0.9-0.2-1.7-0.4-2.6-0.7l-0.2,0c-0.4,0.1-1,0.5-1.4,0c0-0.1-0.1-0.2-0.1-0.4c0-0.1-0.1-0.1-0.2-0.2c-0.2-0.1-0.3-0.1-0.4-0.2
22
- c-0.3-0.1-0.5-0.2-0.8-0.3c-0.6-0.2-1.1-0.3-1.6-0.6c-0.1-0.1-0.2-0.2,0-0.4c0.3-0.2,0.8-0.4,1.2-0.2c0.4,0,0.9,0.1,1.2,0.1l0,0
23
- c-0.5-0.5-0.9-1-1.4-1.5c-0.1-0.1-0.2-0.2-0.2-0.4c0-0.1,0.1-0.2,0.2-0.3c0.1-0.1,0.2-0.1,0.3-0.1c0.4-0.2,0.5-0.3,0.8-0.2
24
- c0.9,0.4,1.6,0.7,2.6,1.1c0.2,0.1,0.4,0.2,0.6,0.2c0.3-0.1,0.4-0.2,0.6-0.3c0.1,0,0.4-0.2,0.5-0.3c0.3-0.2,0.6-0.4,0.8-0.5
25
- c0.6-0.4,0.9-0.6,1.4-0.9c-0.7-0.3-1.5-0.7-2.2-1c-0.8-0.2-1-0.3-1.7-0.5c-0.5-0.1-1.1-0.3-1.1-0.3c-1-0.2-1.2-0.3-2.1-0.5
26
- c-0.4-0.2-0.9-0.2-1.4-0.4c0-0.1,0-0.1,0-0.2c0.1-0.2,0.4-0.4,0.6-0.6c0.3-0.2,0.5-0.4,0.9-0.5c0.7,0,1.2,0.1,2,0.2
27
- c0.9,0.1,1.8,0.2,2.6,0.3c1.1,0.1,2.4,0.2,3.5,0.4c0.1,0,0.2,0.1,0.3,0c0.1,0.1,0.2,0,0.3,0.1c0.1,0,0.2,0,0.3,0
28
- c0.5-0.4,1.1-0.9,1.8-1.1c0.4,0,0.8,0.2,1,0.5c1.3-0.9,2.5-1.8,3.9-2.5c1.3-0.7,2.5-1.2,3.5-1.5c0.7-0.2,1.5-0.3,2.2-0.4
29
- C193.3,19.9,193.4,19.9,193.6,19.9"/>
30
- </g>
31
- </g>
32
- <g>
33
- <g>
34
- <path fill="#FFFFFF" d="M194.3,20.7c-0.6,0.1-1,0.2-1.7,0.5c-0.6,0.2-1.5,0.6-2.3,1c-1.1,0.5-2,1.1-3.2,1.8
35
- c-0.4,0.3-1.3,1-1.4,1.1c-0.7-0.1-1.3-0.1-2-0.2l0.1-0.1c0.9-0.7,1.6-1.2,2.6-1.7c0.8-0.5,2.1-1.2,3.1-1.6
36
- c0.9-0.4,1.9-0.7,2.9-0.8C193.2,20.5,193.8,20.5,194.3,20.7"/>
37
- </g>
38
- </g>
39
- <g>
40
- <g>
41
- <path fill="#FFFFFF" d="M181.4,25.1c0.2-0.1,0.3-0.2,0.5-0.3c0.2-0.1,0.3-0.2,0.4-0.2c-0.1,0.3-0.1,0.4,0,0.7
42
- c0,0.2,0.2,0.3,0.2,0.4c-0.4,0.3-0.8,0.5-1.2,0.8c-0.1-0.1-0.2-0.2-0.2-0.4c-0.1-0.3,0-0.5,0.1-0.8L181.4,25.1z"/>
43
- </g>
44
- </g>
45
- <g>
46
- <g>
47
- <path fill="#FFFFFF" d="M180.7,28.4c-0.5,0.3-1,0.6-1.5,0.8c-1,0.5-2.1,1.1-3.6,1.8c-0.4,0.2-0.8,0.3-1.2,0.2
48
- c-0.3,0-0.3,0-0.6-0.1c-0.5-0.5-1.1-1.1-1.6-1.6c-0.1-0.1-0.2-0.2-0.2-0.3l0.3-0.2h0.1c0.8,0.3,1.3,0.6,2.1,1
49
- c0.3,0.1,0.6,0.3,0.9,0.4c0.3,0,0.6-0.1,0.9-0.2l0.2-0.1c0.4-0.3,0.6-0.4,0.8-0.5c0.8-0.5,1.5-0.9,2.3-1.4l0.2-0.1
50
- C180.1,28.2,180.3,28.3,180.7,28.4"/>
51
- </g>
52
- </g>
53
- <g>
54
- <g>
55
- <g>
56
- <path fill="#FFFFFF" d="M0,5.4h5.5v1.4c2.7-2.4,6.2-2.4,8.4-1c2.4,1.5,2.4,3.8,2.4,6.4v7.7h-5.5v-6.1c0-1.4,0.1-3.2-1.3-4.1
57
- C8.9,9.2,7.6,9.2,6.8,9.8c-1.4,1-1.2,2.2-1.2,4.3v5.8H0V5.4z"/>
58
- </g>
59
- </g>
60
- </g>
61
- <g>
62
- <g>
63
- <g>
64
- <path fill="#FFFFFF" d="M22.8,6.1c-2.3,1.3-3.5,3.2-3.8,5.6c-0.2,1.9,0.2,4.2,1.8,5.9c2.9,3,8,3.1,10.9,2.1
65
- c2.4-0.8,4.4-2.2,5.2-5.3c0.5-2,0.3-4.1-1-6.1c-2.4-3.5-7.3-3.8-9.3-3.5C25.4,5.1,24,5.4,22.8,6.1 M27.2,8.8
66
- c0.9-0.2,2.3,0,3.1,1c0.8,0.9,1.1,2.3,1,3.3c-0.1,1-0.7,2.1-1.8,2.7c-1,0.5-2.4,0.5-3.4-0.2c-0.9-0.6-1.4-1.7-1.5-2.8
67
- c0-1,0.2-2.2,1.2-3.2C26.4,9.1,26.8,9,27.2,8.8"/>
68
- </g>
69
- </g>
70
- </g>
71
- <g>
72
- <g>
73
- <g>
74
- <path fill="#FFFFFF" d="M65.6,12.1c0,0.3-0.1,0.5-0.5,1.4l-2.1,6.4h-5.7L51.9,5.4H58l1.9,6.1c0.3,1.1,0.4,1.3,0.4,1.7
75
- c0-0.3,0.1-0.6,0.4-1.7l1.9-6.1h6l1.9,6.1c0.3,1.1,0.4,1.3,0.4,1.7c0-0.3,0.1-0.6,0.4-1.7l1.9-6.1h6.1l-5.5,14.5h-5.7l-2-6.3
76
- C65.7,12.6,65.7,12.4,65.6,12.1"/>
77
- </g>
78
- </g>
79
- </g>
80
- <g>
81
- <g>
82
- <g>
83
- <path fill="#FFFFFF" d="M96.4,7.6c-2.6-3-8-3.1-10.5-2.4c-2.4,0.7-4.4,2.1-5.3,5.2c-0.6,2.3-0.4,4.5,1,6.5
84
- c2.6,3.7,7.6,3.5,10,3.2c1.8-0.3,5.1-1.3,6.3-4.5l0.1-0.1l-5.5-0.6c-0.2,0.2-0.3,0.4-0.9,0.9c-0.9,0.7-2.9,0.6-3.7,0.3
85
- c-0.9-0.4-1.7-1.5-1.8-2.2h12.3v-0.3C98.4,11.7,97.8,9.3,96.4,7.6 M92.6,10.8H86c0.5-1.6,1.4-2.1,2.5-2.3
86
- C89.7,8.3,91.7,8.6,92.6,10.8"/>
87
- </g>
88
- </g>
89
- </g>
90
- <g>
91
- <g>
92
- <g>
93
- <path fill="#FFFFFF" d="M101.5,20.7c0.1,1.1,0.4,1.8,0.5,2.1c1.4,2.5,3.9,3,7,3c3.1,0,5.5-0.2,7.3-2.3c1.6-1.9,1.4-4.2,1.4-6.4
94
- V5.6h-5.5v1.3c-1.2-1.2-2.5-1.6-3.5-1.7c-2-0.3-4.8,0.4-6.5,2.6c-1.4,1.8-1.6,4.4-1.4,6.2c0.3,2.2,1.5,3.8,3.5,4.9
95
- c2.2,1.2,5.8,0.9,7.8-0.8c0,0.6,0,1.9-0.2,2.5c-0.4,0.9-1.2,1.2-1.8,1.3c-0.6,0.1-2.2,0.4-2.8-0.7c-0.1-0.2-0.2-0.3-0.2-0.5
96
- H101.5z M108.5,9.8c0.7-0.2,2.3-0.1,3.1,0.8c0.5,0.5,0.8,1.2,0.7,1.9c-0.1,0.6-0.4,1.4-1,1.8c-0.9,0.6-2.5,0.6-3.4,0.1
97
- c-0.7-0.4-1.2-0.9-1.3-1.7c-0.1-0.5,0-1.4,0.5-2C107.5,10.2,107.9,10,108.5,9.8"/>
98
- </g>
99
- </g>
100
- </g>
101
- <g>
102
- <g>
103
- <g>
104
- <path fill="#FFFFFF" d="M120.8,5.4h5.5v14.5h-5.5V5.4z M120.8,0h5.5v3.7h-5.5V0z"/>
105
- </g>
106
- </g>
107
- </g>
108
- <g>
109
- <g>
110
- <g>
111
- <path fill="#FFFFFF" d="M135.2,9.5c0.1-0.4,0.3-0.6,0.6-0.9c0.7-0.6,3.4-0.4,4.1-0.1c0.8,0.4,1,1,1.1,2c0,0-1.7-0.1-2.9-0.1
112
- c-1.4,0.1-2,0.1-3.2,0.3c-2.4,0.3-4.8,0.7-5.4,3.6c-0.4,2,0.2,3.8,2.1,5l0.2,0.1c2.8,1.2,6.3,0.8,9.4-1c0,0,0,0.9,0.2,1.3l6.4,0
113
- c-0.7-0.6-1-1.6-1-3v-6.2c0-1.2,0.1-2.8-0.7-3.7c-1.3-1.7-3.7-2.1-7.9-2.1c-3.4,0-5.7,0.2-7,1.9c-0.6,0.9-0.8,1.6-0.8,2.7H135.2
114
- z M140.8,13.5c-0.5,1.9-1.6,2.5-3,2.7c-0.8,0.1-2.1,0.2-2.7-0.9c-0.1-0.2-0.2-0.8-0.1-1c0.4-0.8,1.1-0.7,2.9-0.8L140.8,13.5z"/>
115
- </g>
116
- </g>
117
- </g>
118
- <g>
119
- <g>
120
- <g>
121
- <path fill="#FFFFFF" d="M150.5,5.4h5.5v1.4c2.7-2.4,6.2-2.4,8.4-1c2.4,1.5,2.4,3.8,2.4,6.4v7.7h-5.5v-6.1c0-1.4,0.1-3.2-1.3-4.1
122
- c-0.7-0.4-2.1-0.4-2.8,0.2c-1.4,1-1.2,2.2-1.2,4.3v5.8h-5.5V5.4z"/>
123
- </g>
124
- </g>
125
- </g>
126
- <g>
127
- <g>
128
- <g>
129
- <path fill="#FFFFFF" d="M49.2,5.2v5.6c-1.7,0-2.8,0.2-3.9,1v8.1h-5.5V5.4h5.5v1.7c0.3-0.5,1-1.1,1.9-1.5
130
- C47.5,5.4,48.5,5.2,49.2,5.2"/>
131
- </g>
132
- </g>
133
- </g>
134
- </g>
135
- </svg>
File without changes