@eeacms/volto-globalsearch 1.0.3 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ ### [1.0.5](https://github.com/eea/volto-globalsearch/compare/1.0.4...1.0.5) - 17 January 2023
8
+
9
+ #### :hammer_and_wrench: Others
10
+
11
+ - Merge [Tiberiu Ichim - [`0bac812`](https://github.com/eea/volto-globalsearch/commit/0bac81246d3909cd30b214cf1be6e736220fa0ef)]
12
+ ### [1.0.4](https://github.com/eea/volto-globalsearch/compare/1.0.3...1.0.4) - 16 January 2023
13
+
14
+ #### :hammer_and_wrench: Others
15
+
16
+ - update JenkinsFile [kreafox - [`cdf93f8`](https://github.com/eea/volto-globalsearch/commit/cdf93f8826b1f973ad71af3e3a9603a1b59bdd9f)]
17
+ - Add landing page URL [kreafox - [`ff613b6`](https://github.com/eea/volto-globalsearch/commit/ff613b675b0f0fcc64fb6b34006800fc7e7ceb99)]
18
+ - updated logo and label for Datahub [Zoltan Szabo - [`e6531c0`](https://github.com/eea/volto-globalsearch/commit/e6531c065b9461ed4d2973231a93fda58d4107c7)]
19
+ - Add special getActiveFilters method [Tiberiu Ichim - [`3ce32b9`](https://github.com/eea/volto-globalsearch/commit/3ce32b959cd169264efd628970c8133dd3554ca5)]
20
+ - Replace EEA logo in sources [kreafox - [`bfbce6f`](https://github.com/eea/volto-globalsearch/commit/bfbce6f6532c2e90a60a0220f9db7ec26b4d0018)]
21
+ - 'External data reference' are now displayed under the 'Others' cluster [Zoltan Szabo - [`fdefa68`](https://github.com/eea/volto-globalsearch/commit/fdefa68a3a4d3ff9afc0109267b26ea34c30686a)]
7
22
  ### [1.0.3](https://github.com/eea/volto-globalsearch/compare/1.0.2...1.0.3) - 12 January 2023
8
23
 
9
24
  #### :hammer_and_wrench: Others
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-globalsearch",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "@eeacms/volto-globalsearch: Volto add-on",
5
5
  "main": "src/index.js",
6
6
  "author": "European Environment Agency: IDM2 A-Team",
@@ -37,7 +37,7 @@ export const clusters = {
37
37
  {
38
38
  name: 'Data',
39
39
  icon: { name: 'database' },
40
- values: ['External data reference', 'Data set'],
40
+ values: ['Data set'],
41
41
  defaultResultView: 'horizontalCard',
42
42
  },
43
43
  {
@@ -58,6 +58,7 @@ export const clusters = {
58
58
  'Information portal',
59
59
  'Tool',
60
60
  'Case study',
61
+ 'External data reference',
61
62
  ], // this will be transformed in "single type clusters".
62
63
  defaultResultView: 'horizontalCard',
63
64
  },
@@ -76,7 +77,7 @@ export default {
76
77
  url: require('../static/website-logo.png'),
77
78
  },
78
79
  eea: {
79
- url: require('../static/eea-logo.png'),
80
+ url: require('../static/eea-logo.svg'),
80
81
  },
81
82
  ias: {
82
83
  url: require('../static/ias-logo.png'),
@@ -132,6 +133,9 @@ export default {
132
133
  'etc-wmge': {
133
134
  url: require('../static/etc-wmge.png'),
134
135
  },
136
+ sdi: {
137
+ url: require('../static/eea-logo.svg'),
138
+ },
135
139
  },
136
140
  Countries: {
137
141
  fallback: {
@@ -22,6 +22,8 @@ const globalSearchConfig = {
22
22
  runtime_mappings: build_runtime_mappings(clusters),
23
23
  useSearchPhrases: false,
24
24
  searchAsYouType: false,
25
+ landingPageURL: '/en/advanced-search',
26
+ getActiveFilters: 'getGlobalSearchActiveFilters',
25
27
 
26
28
  ...vocabs,
27
29
  ...facets,
@@ -1,4 +1,8 @@
1
- import { suiFacet, mergeConfig } from '@eeacms/search';
1
+ import {
2
+ suiFacet,
3
+ mergeConfig,
4
+ isFilterValueDefaultValue,
5
+ } from '@eeacms/search';
2
6
  import { getGlobalsearchThumbUrl, getGlobalsearchIconUrl } from './../utils';
3
7
  import { typesForClustersOptionsFilter } from './clusters';
4
8
 
@@ -16,6 +20,37 @@ const getClientProxyAddress = () => {
16
20
  return url.toString();
17
21
  };
18
22
 
23
+ const isActivePublishFilter = (f) => {
24
+ if (f.values?.[0] === 'All time') {
25
+ return false;
26
+ }
27
+
28
+ return true;
29
+ };
30
+
31
+ const getActiveFilters = (filters, appConfig) => {
32
+ const { facets = [] } = appConfig;
33
+ const filterableFacets = facets.filter(
34
+ (f) =>
35
+ f.isFilter ||
36
+ (typeof f.showInFacetsList !== 'undefined' ? f.showInFacetsList : true),
37
+ );
38
+ const facetNames = filterableFacets.map((f) => f.field);
39
+ const filterNames = filters
40
+ .filter((f) => facetNames.includes(f.field))
41
+ .map((f) => f.field);
42
+
43
+ const activeFilters = filters
44
+ .filter((f) => filterNames.includes(f.field))
45
+ .filter((f) =>
46
+ f.field === 'issued.date'
47
+ ? isActivePublishFilter(f)
48
+ : !isFilterValueDefaultValue(f, appConfig),
49
+ );
50
+
51
+ return activeFilters;
52
+ };
53
+
19
54
  export default function install(config) {
20
55
  // console.log(process.env.RAZZLE_ENV_CONFIG);
21
56
  const envConfig = process.env.RAZZLE_ENV_CONFIG
@@ -76,6 +111,8 @@ export default function install(config) {
76
111
  component: UniversalCard,
77
112
  };
78
113
 
114
+ config.resolve.getGlobalSearchActiveFilters = getActiveFilters;
115
+
79
116
  // config.resolve.WebsiteFilterListComponent = {
80
117
  // component: WebsiteFilterListComponent,
81
118
  // };
@@ -53,6 +53,7 @@ const vocab = {
53
53
  'etc-icm': 'ETC on Inland, Coastal and Marine Waters',
54
54
  'etc-uls': 'ETC on Urban, Land and Soil Systems',
55
55
  'etc-wmge': 'ETC on Waste and Materials in Green Economy',
56
+ sdi: 'Datahub',
56
57
  },
57
58
  };
58
59
 
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.2" viewBox="0 0 350 129" width="350" height="129"><style>.a{fill:#004b7f}.b{fill:#007b6c}</style><path class="a" d="m62.4 95.3c-4.1 0-7.9-0.9-11.5-2.5l4.1-7.5c2.3 1 4.8 1.5 7.4 1.5 11.1 0 20-9.5 20-21.2 0-6.7-3.3-12.4-7.9-16.3l4.4-7.8c1.2 0.9 2.3 1.9 3.4 3 5.3 5.6 8.2 13.1 8.2 21.1 0 16.4-12.6 29.7-28.1 29.7z"/><path class="b" d="m69.9 46.5l-0.2 0.2-0.3-0.1c-0.5-0.3-1-0.5-1.6-0.7q-0.7-0.2-1.5-0.4l-0.2-0.1-0.1-0.3c-2.5-9.5 1.8-24.7 10.1-36 1.6-2.2 3.3-4.1 5-5.8l0.6-0.5 0.1 0.8q0.7 3.6 0.8 7.7c0.1 14.2-5.2 29-12.7 35.2z"/><path class="b" d="m58.6 7.5c6.1 12.6 7.5 28.4 3.3 37.5l-0.1 0.2h-0.3c-0.5 0.1-1.1 0.1-1.7 0.2q-0.7 0.1-1.5 0.4h-0.3l-0.1-0.2c-6.3-7.4-8.8-23-6.1-37 0.6-2.7 1.3-5.3 2.1-7.6l0.3-0.8 0.5 0.7c1.4 1.9 2.7 4.2 3.9 6.6z"/><path class="b" d="m53.3 47.4v0.3l-0.2 0.1q-0.8 0.5-1.5 1-0.7 0.4-1.2 1l-0.2 0.2-0.3-0.1c-8.7-3.8-17.5-16.6-20.9-30.4q-1-4.1-1.3-7.8l-0.1-0.8 0.7 0.3c2.1 1.1 4.2 2.5 6.3 4.1 10.7 8.5 18.6 22 18.7 32.1z"/><path class="b" d="m8.7 33.5l-0.4-0.7h0.8c2.2 0 4.7 0.3 7.3 0.8 13.2 2.5 25.9 11 30.1 20l0.1 0.2-0.1 0.2c-0.4 0.5-0.7 1.1-0.9 1.6q-0.4 0.7-0.7 1.5l-0.1 0.2-0.3 0.1c-9.4 0.7-22.6-6.7-31.5-17.5-1.7-2.1-3.2-4.2-4.3-6.4z"/><path class="b" d="m7.2 65.6c-2.4-1-4.6-2.3-6.6-3.6l-0.6-0.5 0.7-0.3c2-1.1 4.4-2 6.8-2.8 13-3.8 27.9-2.2 35.5 3.9l0.2 0.2v0.3c-0.1 0.6-0.2 1.2-0.2 1.8q0 0.8 0 1.6l0.1 0.3-0.3 0.1c-8.1 5-23 4.6-35.6-1z"/><path class="b" d="m12.7 91.6q-3.9 0.3-7.4-0.1l-0.8-0.1 0.5-0.7c1.4-2 3.1-3.9 5-5.7 10-9.4 24-15 33.4-13.1l0.2 0.1 0.1 0.3q0.3 0.8 0.6 1.7c0.2 0.5 0.4 0.9 0.7 1.4l0.1 0.3-0.1 0.2c-5.2 8.3-18.7 14.9-32.3 15.7z"/><path class="b" d="m50.8 82.6l0.2 0.2v0.3c-1.2 9.8-10.6 22.1-22.4 29.2-2.3 1.3-4.6 2.5-6.8 3.3l-0.7 0.3 0.1-0.9c0.5-2.4 1.2-4.9 2.2-7.4 4.9-13.2 15.2-24.7 24.4-27.4h0.3l0.2 0.2q0.6 0.7 1.2 1.3c0.4 0.3 0.8 0.6 1.3 0.9z"/><path class="a" d="m102.5 75.8c-0.7 3.2-0.2 1.5-1.2 4.5 3.2 2.1 7.7 5.3 10.5 8.3 1.5 1.6 2.9 3.3 4 4.9q-1.8 4-4.2 7.6c-1.9-0.1-4.1-0.6-6.2-1.1-3.9-1-8.8-3.5-12.1-5.3-2 2.4-0.9 1.2-3.1 3.4 1.9 3.4 4.4 8.5 5.6 12.5 0.6 2.1 1.1 4.2 1.4 6.1-2.3 1.7-4.7 3.3-7.2 4.7-1.6-1-3.4-2.4-4.9-3.9-3-2.8-6.2-7.5-8.4-10.8-2.9 1.2-1.3 0.8-4.2 1.6 0.1 3.9 0.1 9.7-0.7 13.8-0.3 2-0.8 4.3-1.4 6-2.7 0.4-8.5 0.6-8.7 0.6-0.8-1.6-1.6-3.8-2.3-5.8-1.4-4-2.2-9.7-2.6-13.7-3.1-0.4-1.5 0-4.4-0.8-1.7 3.6-4.2 8.7-6.7 11.9-1.3 1.6-2.6 3-3.9 4.3q-3.1-1.2-6.1-2.8l13-23.7c4.2 1.9 8.9 3 13.6 3 9 0 17.5-3.7 23.8-10.4 6.4-6.7 9.9-15.7 9.9-25.2 0-9.5-3.5-18.4-9.9-25.1q-1.8-2-3.9-3.6l12.9-23.5c1.9 1.3 3.7 2.7 5.5 4.3-0.4 2-0.8 3.8-1.6 6-1.3 4-4.2 8.9-6.3 12.2 2.2 2.4 1.2 1.1 2.9 3.6 3.5-1.6 8.5-3.8 12.4-4.5 2.1-0.5 4.1-0.7 6-0.7q2.1 3.8 3.6 7.9c-1.2 1.6-2.6 3.2-4.2 4.8-2.9 2.8-7.7 5.7-11 7.6 0.9 3.2 0.5 1.5 1 4.6 3.7 0.3 9.1 0.9 12.9 2.1 2 0.7 4 1.6 5.7 2.5 0 0.7 0 6.4-0.2 8.7-1.8 0.8-3.9 1.5-6.1 2.1-3.8 1.1-9.3 1.2-13.2 1.3z"/><path d="m171.9 29.4h-9.7v6.5h11.4v4.1h-16.5v-24.5h16.5v4.1h-11.4v5.8h9.7z"/><path d="m186.9 38.1q-1.8 2.2-5 2.2-2.9 0-4.5-1.6-1.5-1.7-1.5-5v-11.9h4.8v11.8q0 2.8 2.6 2.8 2.4 0 3.4-1.7v-12.9h4.9v18.2h-4.6z"/><path d="m205.5 26.4q-1-0.2-1.7-0.2-2.8 0-3.7 1.9v11.9h-4.8v-18.2h4.6l0.1 2.2c1-1.7 2.4-2.5 4.1-2.5q0.8 0 1.5 0.2z"/><path fill-rule="evenodd" d="m206.5 30.7q0-2.7 1-4.8 1.1-2.1 3-3.3c1.3-0.7 2.8-1.1 4.6-1.1 2.4 0 4.5 0.7 6 2.2 1.6 1.5 2.4 3.6 2.6 6.1v1.2q0 4.2-2.3 6.7c-1.6 1.7-3.7 2.6-6.3 2.6q-4 0-6.3-2.6c-1.6-1.6-2.4-3.9-2.4-6.8v-0.2zm4.9 0.4q0 2.6 1 3.9c0.6 1 1.6 1.4 2.8 1.4q1.7 0 2.8-1.3 1-1.4 1-4.3 0-2.6-1-4-1-1.4-2.8-1.4-1.8 0-2.8 1.4-1 1.4-1 4.3z"/><path fill-rule="evenodd" d="m243.2 31.1q0 4.2-2 6.7c-1.3 1.7-3 2.5-5.1 2.5q-2.8 0-4.5-1.9v8.6h-4.9v-25.2h4.5l0.2 1.8q1.8-2.1 4.6-2.1 3.4 0 5.3 2.5 1.8 2.4 1.9 6.8zm-4.9-0.4c0-1.7-0.3-2.9-0.9-3.9-0.6-0.9-1.5-1.3-2.6-1.3-1.6 0-2.6 0.5-3.2 1.7v7.4q0.9 1.8 3.2 1.8c2.3 0 3.5-1.9 3.5-5.7z"/><path fill-rule="evenodd" d="m254.6 40.3q-4 0-6.6-2.4c-1.6-1.6-2.5-3.8-2.5-6.5v-0.5q0-2.7 1.1-4.9 1-2.2 3-3.3 1.9-1.2 4.4-1.2 3.8 0 5.9 2.4 2.2 2.3 2.2 6.6v2h-11.6c0.1 1.2 0.6 2.1 1.4 2.9q1.2 1 3 1 2.8 0 4.4-2l2.4 2.7c-0.7 1-1.7 1.8-2.9 2.4-1.4 0.5-2.7 0.8-4.2 0.8zm-0.6-14.9q-1.4 0-2.3 1-1 1-1.2 2.8h6.8v-0.4q-0.1-1.6-0.9-2.5-0.9-0.9-2.4-0.9z"/><path fill-rule="evenodd" d="m275.4 40c-0.2-0.4-0.4-1-0.5-1.7q-1.8 2-4.6 2-2.7 0-4.5-1.6-1.7-1.5-1.7-3.9 0-2.8 2.1-4.4 2.2-1.5 6.3-1.6h2.2v-1q0-1.3-0.6-2-0.7-0.7-2.1-0.7-1.2 0-1.9 0.6-0.7 0.5-0.7 1.6h-4.9q0-1.6 1-3 0.9-1.3 2.7-2c1.2-0.5 2.6-0.8 4-0.8q3.4 0 5.4 1.7c1.3 1.1 2 2.7 2 4.7v7.9c0 1.7 0.2 3 0.7 3.9v0.3zm-4-3.4c0.7 0 1.4-0.1 2-0.5q0.9-0.5 1.3-1.3v-3.1h-1.8q-3.7 0-3.9 2.5v0.3q0 0.9 0.7 1.5 0.5 0.6 1.7 0.6z"/><path d="m287.8 21.8l0.1 2.1q2-2.4 5.3-2.4c1.9 0 3.3 0.5 4.3 1.7 0.9 1.1 1.4 2.8 1.4 5v11.8h-4.9v-11.6q0.1-1.6-0.6-2.3-0.7-0.7-2.3-0.7c-1.4 0-2.3 0.6-3.1 1.7v12.8h-4.8v-18.1h4.6z"/><path d="m171.9 66.9h-9.7v6.6h11.4v4h-16.5v-24.4h16.5v4.1h-11.4v5.8h9.7z"/><path d="m180.7 59.4l0.2 2.1q1.9-2.5 5.2-2.5c1.9 0 3.4 0.6 4.3 1.7 1 1.2 1.4 2.9 1.5 5.1v11.7h-4.9v-11.6q0-1.5-0.7-2.2-0.7-0.7-2.2-0.7c-1.4 0-2.4 0.5-3.1 1.7v12.8h-4.9v-18.1h4.6z"/><path d="m202.4 71.6l3.4-12.2h5.1l-6.2 18.1h-4.7l-6.1-18.1h5.1z"/><path d="m213 54.7c0-0.8 0.2-1.3 0.7-1.8 0.5-0.5 1.1-0.7 2-0.7q1.2 0 2 0.7 0.7 0.7 0.7 1.8 0 1.1-0.7 1.8-0.8 0.7-2 0.7-1.2 0-2-0.7-0.7-0.7-0.7-1.8zm0.3 4.7h4.8v18.1h-4.8z"/><path d="m232.4 63.9q-1-0.1-1.8-0.1-2.7 0-3.6 1.9v11.8h-4.9v-18.1h4.6l0.2 2.2c0.9-1.7 2.3-2.6 4-2.6q0.8 0 1.5 0.3z"/><path fill-rule="evenodd" d="m233.4 68.3q0-2.7 1-4.8 1.1-2.2 3-3.3c1.3-0.8 2.8-1.2 4.6-1.2 2.4 0 4.5 0.8 6 2.3 1.6 1.5 2.4 3.5 2.6 6.1v1.2q0 4.2-2.3 6.7c-1.6 1.7-3.7 2.5-6.3 2.5q-4 0-6.3-2.5c-1.6-1.7-2.4-4-2.4-6.8v-0.2zm4.9 0.3q0 2.6 1 4c0.6 0.9 1.6 1.4 2.8 1.4q1.7 0 2.8-1.3 1-1.4 0.9-4.4 0.1-2.5-0.9-3.9-1.1-1.4-2.9-1.4-1.7 0-2.7 1.4-1 1.3-1 4.2z"/><path d="m258.1 59.4l0.2 2.1q1.9-2.5 5.2-2.5c1.9 0 3.4 0.6 4.3 1.7 1 1.2 1.4 2.9 1.5 5.1v11.7h-4.9v-11.6q0-1.5-0.7-2.2-0.7-0.7-2.2-0.7c-1.4 0-2.4 0.5-3.1 1.7v12.8h-4.9v-18.1h4.6z"/><path d="m277.5 59.4l0.2 2q1.9-2.4 5.2-2.4 3.5 0 4.8 2.8 1.9-2.8 5.5-2.8 3 0 4.4 1.8 1.5 1.7 1.5 5.2v11.5h-4.9v-11.5q0-1.6-0.6-2.3-0.6-0.7-2.1-0.7-2.2 0-3.1 2.1v12.4h-4.8v-11.5q0-1.6-0.7-2.3-0.6-0.7-2.1-0.7-2.1 0-3 1.7v12.8h-4.9v-18.1z"/><path fill-rule="evenodd" d="m311.2 77.9q-4 0-6.5-2.4c-1.7-1.7-2.5-3.9-2.5-6.6v-0.4q0-2.7 1-4.9 1.1-2.2 3.1-3.4 1.9-1.1 4.4-1.1 3.7 0 5.9 2.3 2.1 2.4 2.1 6.7v2h-11.6c0.2 1.1 0.7 2.1 1.5 2.8q1.1 1.1 3 1.1 2.8 0 4.4-2l2.4 2.6c-0.8 1.1-1.7 1.9-3 2.4-1.2 0.6-2.7 0.9-4.2 0.9zm-0.5-14.9q-1.5 0-2.4 1c-0.6 0.6-1 1.6-1.1 2.8h6.7v-0.4q0-1.6-0.9-2.5-0.8-0.9-2.3-0.9z"/><path d="m326 59.4l0.1 2.1q2-2.5 5.2-2.5c1.9 0 3.4 0.6 4.3 1.7 1 1.2 1.5 2.9 1.5 5.1v11.7h-4.9v-11.6q0-1.5-0.7-2.2-0.7-0.7-2.2-0.7c-1.4 0-2.4 0.5-3.1 1.7v12.8h-4.9v-18.1h4.7z"/><path d="m346.6 54.9v4.5h3.2v3.5h-3.2v9.1q0 1 0.4 1.5 0.4 0.4 1.5 0.4c0.5 0 1 0 1.4-0.1v3.7c-0.9 0.3-1.9 0.4-2.9 0.4q-5.1 0-5.3-5.1v-9.8h-2.6v-3.6h2.6v-4.5z"/><path fill-rule="evenodd" d="m171 110.1h-8.8l-1.7 5h-5.4l9.1-24.4h4.7l9.2 24.4h-5.4zm-7.5-4.1h6.1l-3.1-9.1z"/><path fill-rule="evenodd" d="m179.3 105.9q0-4.2 2-6.7c1.3-1.7 3.2-2.6 5.4-2.6q3 0 4.7 2.1l0.2-1.7h4.4v17.5q0 2.4-1.1 4.2-1.1 1.7-3.1 2.6c-1.3 0.7-2.8 1-4.6 1-1.4 0-2.6-0.3-3.9-0.8q-1.9-0.8-2.9-2.1l2.2-2.9q1.8 2 4.4 2c1.3 0 2.3-0.3 3-1q1.1-1 1.1-3v-0.9c-1.2 1.3-2.6 1.9-4.5 1.9-2.2 0-3.9-0.9-5.3-2.6q-2-2.5-2-6.8v-0.2zm4.9 0.3c0 1.7 0.3 3 1 3.9 0.6 0.9 1.5 1.4 2.7 1.4q2.3 0 3.2-1.6v-7.7q-1-1.6-3.2-1.7-1.7 0-2.7 1.5c-0.7 1-1 2.4-1 4.2z"/><path fill-rule="evenodd" d="m208.1 115.5q-4 0-6.5-2.5c-1.7-1.6-2.6-3.8-2.6-6.5v-0.5q0-2.7 1.1-4.9 1.1-2.1 3-3.3 2-1.2 4.5-1.2 3.7 0 5.9 2.4 2.1 2.3 2.1 6.6v2h-11.6c0.2 1.2 0.7 2.2 1.4 2.9q1.2 1.1 3.1 1.1 2.8 0 4.4-2.1l2.4 2.7c-0.8 1-1.7 1.8-3 2.4-1.2 0.6-2.7 0.9-4.2 0.9zm-0.5-15q-1.5 0-2.4 1-0.9 1-1.1 2.8h6.8v-0.4q-0.1-1.6-0.9-2.5-0.9-0.9-2.4-0.9z"/><path d="m222.9 97l0.1 2.1q2-2.5 5.2-2.5c2 0 3.4 0.6 4.4 1.7 0.9 1.1 1.4 2.8 1.4 5.1v11.7h-4.9v-11.6q0-1.6-0.6-2.2-0.7-0.7-2.3-0.8c-1.4 0-2.4 0.6-3.1 1.8v12.8h-4.8v-18.2h4.6z"/><path d="m245.3 111.5q1.3 0 2.2-0.7 0.8-0.8 0.9-2h4.5c0 1.3-0.3 2.4-1 3.4q-1 1.5-2.7 2.4-1.7 0.8-3.8 0.8-3.9 0-6.1-2.5-2.3-2.4-2.3-6.8v-0.3q0-4.2 2.3-6.7 2.2-2.5 6.1-2.5 3.4 0 5.5 1.9c1.4 1.3 2.1 3 2.1 5.2h-4.5c-0.1-1-0.4-1.7-0.9-2.3q-0.9-0.9-2.3-0.9-1.7 0-2.5 1.2-0.9 1.3-0.9 4.1v0.4q0 2.9 0.9 4.1c0.5 0.8 1.3 1.2 2.5 1.2z"/><path d="m262.5 108.2l3.4-11.3h5.2l-7.3 21-0.4 1c-1.1 2.3-2.9 3.5-5.4 3.5q-1.1 0-2.2-0.3v-3.7h0.8q1.3 0 2-0.4 0.7-0.4 1.1-1.4l0.6-1.5-6.4-18.2h5.2z"/></svg>
Binary file