@ons/design-system 69.0.0 → 70.0.1

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.
@@ -11,6 +11,15 @@ const EXAMPLE_DURATION_INPUT_BASE = {
11
11
  description: 'Enter “0” into the years field if you have lived at this address for less than a year',
12
12
  };
13
13
 
14
+ const EXAMPLE_DURATION_INPUT_BASE_WITH_ERROR = {
15
+ id: 'duration',
16
+ legendOrLabel: 'How long have you lived at this address?',
17
+ description: 'Enter “0” into the years field if you have lived at this address for less than a year',
18
+ error: {
19
+ text: 'Enter how long you have lived at this address',
20
+ },
21
+ };
22
+
14
23
  const EXAMPLE_FIELD_1 = {
15
24
  field1: {
16
25
  id: 'address-duration-years',
@@ -35,6 +44,45 @@ const EXAMPLE_FIELD_2 = {
35
44
  },
36
45
  };
37
46
 
47
+ const EXAMPLE_FIELD_1_WITH_ERROR = {
48
+ field1: {
49
+ id: 'address-duration-years',
50
+ name: 'address-duration-years',
51
+ value: '0',
52
+ error: true,
53
+ suffix: {
54
+ text: 'Years',
55
+ id: 'address-duration-years-suffix',
56
+ },
57
+ },
58
+ };
59
+
60
+ const EXAMPLE_FIELD_2_WITH_ERROR = {
61
+ field2: {
62
+ id: 'address-duration-months',
63
+ name: 'address-duration-months',
64
+ value: '0',
65
+ error: true,
66
+ suffix: {
67
+ text: 'Months',
68
+ id: 'address-duration-months-suffix',
69
+ },
70
+ },
71
+ };
72
+
73
+ const EXAMPLE_FIELD_1_WITH_ERROR_FALSE = {
74
+ field1: {
75
+ id: 'address-duration-years',
76
+ name: 'address-duration-years',
77
+ value: '0',
78
+ error: false,
79
+ suffix: {
80
+ text: 'Years',
81
+ id: 'address-duration-years-suffix',
82
+ },
83
+ },
84
+ };
85
+
38
86
  const EXAMPLE_DURATION_SINGLE_FIELD = {
39
87
  ...EXAMPLE_DURATION_INPUT_BASE,
40
88
  ...EXAMPLE_FIELD_1,
@@ -46,6 +94,23 @@ const EXAMPLE_DURATION_MULTIPLE_FIELDS = {
46
94
  ...EXAMPLE_FIELD_2,
47
95
  };
48
96
 
97
+ const EXAMPLE_DURATION_MULTIPLE_FIELDS_WITH_SINGLE_ERROR = {
98
+ ...EXAMPLE_DURATION_INPUT_BASE_WITH_ERROR,
99
+ ...EXAMPLE_FIELD_1,
100
+ ...EXAMPLE_FIELD_2_WITH_ERROR,
101
+ };
102
+
103
+ const EXAMPLE_DURATION_MULTIPLE_FIELDS_WITH_ERROR = {
104
+ ...EXAMPLE_DURATION_INPUT_BASE_WITH_ERROR,
105
+ ...EXAMPLE_FIELD_1_WITH_ERROR,
106
+ ...EXAMPLE_FIELD_2_WITH_ERROR,
107
+ };
108
+
109
+ const EXAMPLE_DURATION_MULTIPLE_FIELDS_WITH_ERROR_FALSE = {
110
+ ...EXAMPLE_DURATION_INPUT_BASE,
111
+ ...EXAMPLE_FIELD_1_WITH_ERROR_FALSE,
112
+ };
113
+
49
114
  describe('macro: duration', () => {
50
115
  describe('mode: multiple fields', () => {
51
116
  it('passes jest-axe checks', async () => {
@@ -109,6 +174,12 @@ describe('macro: duration', () => {
109
174
  expect($(div).hasClass('ons-field-group')).toBe(true);
110
175
  });
111
176
 
177
+ it('has the correct number of inputs', () => {
178
+ const $ = cheerio.load(renderComponent('duration', EXAMPLE_DURATION_MULTIPLE_FIELDS));
179
+ const $inputs = $('.ons-input');
180
+ expect($inputs.length).toBe(2);
181
+ });
182
+
112
183
  it('has the expected `fieldset` output', () => {
113
184
  const faker = templateFaker();
114
185
  const fieldsetSpy = faker.spy('fieldset');
@@ -141,10 +212,11 @@ describe('macro: duration', () => {
141
212
  mutuallyExclusive: {
142
213
  legendClasses: 'custom-legend-class',
143
214
  dontWrap: true,
215
+ classes: undefined,
144
216
  legendIsQuestionTitle: true,
145
217
  error: false,
146
218
  mutuallyExclusive: {
147
- checkbox: {},
219
+ exclusiveOptions: {},
148
220
  or: 'Or',
149
221
  deselectMessage: 'Deselect message',
150
222
  deselectGroupAdjective: 'Deselect group adjective',
@@ -166,10 +238,10 @@ describe('macro: duration', () => {
166
238
  ...EXAMPLE_DURATION_MULTIPLE_FIELDS,
167
239
  legendClasses: 'custom-legend-class',
168
240
  dontWrap: true,
241
+ classes: undefined,
169
242
  legendIsQuestionTitle: true,
170
243
  error: false,
171
244
  mutuallyExclusive: {
172
- checkbox: {},
173
245
  or: 'Or',
174
246
  deselectMessage: 'Deselect message',
175
247
  deselectGroupAdjective: 'Deselect group adjective',
@@ -183,9 +255,9 @@ describe('macro: duration', () => {
183
255
  description: 'Enter “0” into the years field if you have lived at this address for less than a year',
184
256
  legendClasses: 'custom-legend-class',
185
257
  dontWrap: true,
258
+ classes: undefined,
186
259
  legendIsQuestionTitle: true,
187
260
  error: false,
188
- checkbox: {},
189
261
  or: 'Or',
190
262
  deselectMessage: 'Deselect message',
191
263
  deselectGroupAdjective: 'Deselect group adjective',
@@ -215,7 +287,6 @@ describe('macro: duration', () => {
215
287
  classes: '',
216
288
  value: '0',
217
289
  attributes: undefined,
218
- classes: '',
219
290
  error: undefined,
220
291
  fieldId: 'duration',
221
292
  label: {
@@ -226,10 +297,17 @@ describe('macro: duration', () => {
226
297
  suffix: {
227
298
  id: 'address-duration-years-suffix',
228
299
  text: 'Years',
300
+ title: undefined,
229
301
  },
230
302
  });
231
303
  });
232
304
 
305
+ it('has the correct number of inputs', () => {
306
+ const $ = cheerio.load(renderComponent('duration', EXAMPLE_DURATION_SINGLE_FIELD));
307
+ const $inputs = $('.ons-input');
308
+ expect($inputs.length).toBe(1);
309
+ });
310
+
233
311
  it('has the expected `error` output', () => {
234
312
  const faker = templateFaker();
235
313
  const errorSpy = faker.spy('error');
@@ -244,4 +322,34 @@ describe('macro: duration', () => {
244
322
  });
245
323
  });
246
324
  });
325
+
326
+ describe('mode: multiple fields with errors', () => {
327
+ it('passes jest-axe checks', async () => {
328
+ const $ = cheerio.load(renderComponent('duration', EXAMPLE_DURATION_MULTIPLE_FIELDS_WITH_SINGLE_ERROR));
329
+
330
+ const results = await axe($.html());
331
+ expect(results).toHaveNoViolations();
332
+ });
333
+
334
+ it('has the provided error class on one input', async () => {
335
+ const $ = cheerio.load(renderComponent('duration', EXAMPLE_DURATION_MULTIPLE_FIELDS_WITH_SINGLE_ERROR));
336
+ const $errorContent = $('.ons-input--error');
337
+
338
+ expect($errorContent.length).toBe(1);
339
+ });
340
+
341
+ it('has the provided error class on multiple inputs', async () => {
342
+ const $ = cheerio.load(renderComponent('duration', EXAMPLE_DURATION_MULTIPLE_FIELDS_WITH_ERROR));
343
+ const $errorContent = $('.ons-input--error');
344
+
345
+ expect($errorContent.length).toBe(2);
346
+ });
347
+
348
+ it('does not provide error class when error parameter set to false', async () => {
349
+ const $ = cheerio.load(renderComponent('duration', EXAMPLE_DURATION_MULTIPLE_FIELDS_WITH_ERROR_FALSE));
350
+ const $errorContent = $('.ons-input--error');
351
+
352
+ expect($errorContent.length).toBe(0);
353
+ });
354
+ });
247
355
  });
@@ -6,7 +6,7 @@
6
6
  "legendOrLabel": 'How long do you spend travelling to and from work each day?',
7
7
  "legendClasses": 'ons-u-vh',
8
8
  "error": {
9
- "text": "Enter a number that is less than 60",
9
+ "text": "Enter a number of minutes that is less than 60",
10
10
  "id": "duration-error"
11
11
  },
12
12
  "field1": {
@@ -0,0 +1,24 @@
1
+ {% from "components/question/_macro.njk" import onsQuestion %}
2
+ {% from "components/duration/_macro.njk" import onsDuration %}
3
+
4
+ {% call onsQuestion({
5
+ "title": "How many years have you lived at this address?",
6
+ "description": "<p>Enter “0” into the years field if you have lived at this address for less than a year</p>",
7
+ "legendIsQuestionTitle": true
8
+ }) %}
9
+ {{ onsDuration({
10
+ "id": "address-duration-example-single",
11
+ "dontWrap": true,
12
+ "field1": {
13
+ "id": "address-duration-years-example",
14
+ "name": "address-duration-years",
15
+ "suffix": {
16
+ "text": "Years",
17
+ "id": "address-duration-years-suffix-example"
18
+ },
19
+ "attributes": {
20
+ "autocomplete": "off"
21
+ }
22
+ }
23
+ }) }}
24
+ {% endcall %}
@@ -1,5 +1,5 @@
1
1
  {% macro onsFeedback(params) %}
2
- {% set headingLevel = params.headingLevel | default("2") %}
2
+ {% set headingLevel = params.headingLevel | default(2) %}
3
3
  <div {% if params.id %} id="{{ params.id }}"{% endif %} class="ons-feedback{% if params.classes %} {{ params.classes }}{% endif %}">
4
4
  <h{{ headingLevel }} class="ons-feedback__heading{{ ' ' + params.headingClasses if params.headingClasses }}">
5
5
  {{ params.heading }}
@@ -45,7 +45,7 @@
45
45
  {{-
46
46
  onsIcon({
47
47
  "iconType": 'ons-logo-' + currentLanguageISOCode,
48
- "altText": 'Office for National Statistics logo'
48
+ "altText": 'Office for National Statistics homepage'
49
49
  })
50
50
  -}}
51
51
  {% endif %}
@@ -275,7 +275,7 @@ describe('macro: header', () => {
275
275
 
276
276
  faker.renderComponent('header', EXAMPLE_HEADER_BASIC);
277
277
 
278
- expect(iconsSpy.occurrences[0].altText).toBe('Office for National Statistics logo');
278
+ expect(iconsSpy.occurrences[0].altText).toBe('Office for National Statistics homepage');
279
279
  });
280
280
 
281
281
  it('has the default masthead mobile logo icon alt text', () => {
@@ -130,8 +130,8 @@
130
130
  </rect>
131
131
  </svg>
132
132
  {%- elif params.iconType == "ons-logo-en" -%}
133
- <svg class="ons-icon--logo{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="197" height="19" viewBox="33 2 552 60" aria-labelledby="{{ params.altTextId | default ('ons-logo-en-alt') }}">
134
- <title id="{{ params.altTextId | default ('ons-logo-en-alt') }}">{{ params.altText | default ('Office for National Statistics logo') }}</title>
133
+ <svg class="ons-icon--logo{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="197" height="19" viewBox="33 2 552 60" aria-labelledby="{{ params.altTextId | default ('ons-logo-en-alt') }}" role="img">
134
+ <title id="{{ params.altTextId | default ('ons-logo-en-alt') }}">{{ params.altText | default ('Office for National Statistics homepage') }}</title>
135
135
  <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
136
136
  <path d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z"/>
137
137
  </g>
@@ -169,8 +169,8 @@
169
169
  </g>
170
170
  </svg>
171
171
  {%- elif params.iconType == "ons-logo-cy" -%}
172
- <svg class="ons-icon--logo{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="207" height="19" viewBox="15 2 620 60" aria-labelledby="{{ params.altTextId | default ('ons-logo-cy-alt') }}">
173
- <title id="{{ params.altTextId | default ('ons-logo-cy-alt') }}">{{ params.altText | default ('Logo Swyddfa Ystadegau Gwladol') }}</title>
172
+ <svg class="ons-icon--logo{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="207" height="19" viewBox="15 2 620 60" aria-labelledby="{{ params.altTextId | default ('ons-logo-cy-alt') }}" role="img">
173
+ <title id="{{ params.altTextId | default ('ons-logo-cy-alt') }}">{{ params.altText | default ('Hafan Swyddfa Ystadegau Gwladol') }}</title>
174
174
  <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
175
175
  <path d="M0,34.6c.8-1.69,1.39-3,2.32-4.6A38.28,38.28,0,0,1,0,23.4V34.6M5,3S0,3,0,9.25v1A62.12,62.12,0,0,0,4.2,27a43.77,43.77,0,0,1,9.42-10.79C21.69,9.21,31.16,5.13,45.9,3Z"/>
176
176
  </g>
@@ -204,8 +204,8 @@
204
204
  </g>
205
205
  </svg>
206
206
  {%- elif params.iconType == "ons-logo-stacked-en" -%}
207
- <svg class="ons-icon--logo{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="120" height="27" viewBox="0 5 595 116" aria-labelledby="{{ params.altTextId | default ('ons-logo-stacked-en-alt') }}">
208
- <title id="{{ params.altTextId | default ('ons-logo-stacked-en-alt') }}">{{ params.altText | default ('Office for National Statistics logo') }}</title>
207
+ <svg class="ons-icon--logo{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="120" height="27" viewBox="0 5 595 116" aria-labelledby="{{ params.altTextId | default ('ons-logo-stacked-en-alt') }}" role="img">
208
+ <title id="{{ params.altTextId | default ('ons-logo-stacked-en-alt') }}">{{ params.altText | default ('Office for National Statistics homepage') }}</title>
209
209
  <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
210
210
  <path d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z"/>
211
211
  </g>
@@ -217,8 +217,8 @@
217
217
  </g>
218
218
  </svg>
219
219
  {%- elif params.iconType == "ons-logo-stacked-cy" -%}
220
- <svg class="ons-icon--logo{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="130" height="27" viewBox="0 5 645 116" aria-labelledby="{{ params.altTextId | default ('ons-logo-stacked-cy-alt') }}">
221
- <title id="{{ params.altTextId | default ('ons-logo-stacked-en-alt') }}">{{ params.altText | default ('Logo Swyddfa Ystadegau Gwladol') }}</title>
220
+ <svg class="ons-icon--logo{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="130" height="27" viewBox="0 5 645 116" aria-labelledby="{{ params.altTextId | default ('ons-logo-stacked-cy-alt') }}" role="img">
221
+ <title id="{{ params.altTextId | default ('ons-logo-stacked-en-alt') }}">{{ params.altText | default ('Hafan Swyddfa Ystadegau Gwladol') }}</title>
222
222
  <g class="ons-icon--logo__group ons-icon--logo__group--secondary" fill="#a8bd3a">
223
223
  <path d="M0,70.5c1.8-3.7,3.6-7.2,5.6-10.7A127.94,127.94,0,0,1,0,42.6V70.5M10.9,0S0,0,0,13.5v7.2A128.06,128.06,0,0,0,7.9,56.2a114.75,114.75,0,0,1,22.3-26C47.8,15.1,71.5,4.7,103.7.1Z"/>
224
224
  </g>
@@ -251,12 +251,12 @@
251
251
  </g>
252
252
  </svg>
253
253
  {%- elif params.iconType == "crest" -%}
254
- <svg class="ons-icon--logo{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="115px" height="96px" viewBox="0 0 115 96" focusable="false" aria-labelledby="{{ params.altTextId | default ('crest-alt') }}">
254
+ <svg class="ons-icon--logo{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="115px" height="96px" viewBox="0 0 115 96" focusable="false" aria-labelledby="{{ params.altTextId | default ('crest-alt') }}" role="img">
255
255
  <title id="{{ params.altTextId | default ('crest-alt') }}">{{ params.altText | default ('Royal coat of arms of the United Kingdom') }}</title>
256
256
  <path fill="#222222" d="M57.6,1c-0.7,0.8-1.1,1.5-1.2,2.3C57.1,3.2,58,2.6,58.5,2v3.2C58,4.5,57.1,4,56.4,3.8c0.1,0.8,0.6,1.6,1.3,2.1 h-3.2c0.7-0.5,1.2-1.3,1.3-2.1c-0.8,0.1-1.6,0.7-2.1,1.4V2c0.5,0.7,1.4,1.2,2.1,1.4c-0.1-0.8-0.6-1.5-1.2-2.3H57.6z M23.9,5.9 c0.3-0.3,0.7-0.3,1,0c0.3,0.3,0.3,0.7,0,1c-0.3,0.3-0.7,0.3-1,0C23.6,6.6,23.6,6.1,23.9,5.9z M25.7,6.2c0.3-0.3,0.7-0.3,0.9,0 c0.3,0.3,0.3,0.7,0,1c-0.3,0.3-0.7,0.3-0.9,0C25.4,6.8,25.4,6.4,25.7,6.2z M22.4,7c0.3-0.3,0.7-0.3,1,0c0.3,0.3,0.3,0.7,0,0.9 c-0.3,0.3-0.7,0.3-1,0C22.1,7.7,22.1,7.3,22.4,7z M56.7,6.3c1.2,0.3,2.1,1.2,2.3,2.4h-2.3V6.3z M55.4,6.3v2.4h-2.3 C53.3,7.5,54.3,6.5,55.4,6.3z M26.8,7.6c0.3-0.3,0.7-0.3,1,0c0.3,0.3,0.3,0.7,0,1c-0.3,0.3-0.7,0.3-1,0C26.5,8.3,26.5,7.9,26.8,7.6z M20.5,5.5l0.1,1.3c0,0,0,0,0,0L21.5,6l0.5,1.2l-1.1-0.1c0,0,0,0.1,0,0.1c0.2,0.3,0.6,0.6,0.9,0.9c0.3,0.1,0.5,0.4,0.5,0.8 c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9c0-0.4,0-1.1-0.1-1.5c0,0-0.1,0-0.1,0l-0.7,0.8L19,7l1-0.1c0,0,0-0.1,0-0.1l-0.8-0.9 L20.5,5.5z M19.1,8.4c0.4,0,0.7,0.3,0.7,0.7c0,0.4-0.3,0.7-0.7,0.7c-0.4,0-0.7-0.3-0.7-0.7C18.5,8.7,18.8,8.4,19.1,8.4z M17.3,8.6 c0.4,0,0.7,0.3,0.7,0.7c0,0.4-0.3,0.7-0.7,0.7c-0.4,0-0.7-0.3-0.7-0.7C16.7,8.9,17,8.6,17.3,8.6z M16.3,10c0.4,0,0.7,0.3,0.7,0.7 c0,0.4-0.3,0.7-0.7,0.7c-0.4,0-0.7-0.3-0.7-0.7C15.6,10.3,15.9,10,16.3,10z M65.7,9.5c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C64.8,9.9,65.2,9.5,65.7,9.5z M46.3,9.5c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C45.4,9.9,45.8,9.5,46.3,9.5z M63.3,9.7c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C62.4,10.2,62.8,9.7,63.3,9.7z M48.8,9.7c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C47.8,10.2,48.3,9.7,48.8,9.7z M44,10.2c0.5,0,0.9,0.4,0.9,0.9s-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 S43.5,10.2,44,10.2z M68.1,10.2c0.5,0,0.9,0.4,0.9,0.9s-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9S67.6,10.2,68.1,10.2z M58.9,9.8 c-0.3,1.3-1.5,2.3-2.9,2.3c-1.4,0-2.6-1-2.9-2.3H58.9z M51.1,10.4c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C50.2,10.8,50.6,10.4,51.1,10.4z M61,10.4c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9 c-0.5,0-0.9-0.4-0.9-0.9C60,10.8,60.5,10.4,61,10.4z M16.5,11.8c0.4,0,0.7,0.3,0.7,0.7c0,0.4-0.3,0.7-0.7,0.7 c-0.4,0-0.7-0.3-0.7-0.7C15.8,12.1,16.1,11.8,16.5,11.8z M58.8,11.4c0.5,0,0.9,0.4,0.9,0.9s-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 S58.3,11.4,58.8,11.4z M53.3,11.4c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C52.4,11.9,52.8,11.4,53.3,11.4z M69.9,11.8c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C69,12.3,69.4,11.8,69.9,11.8z M42.2,11.8c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C41.2,12.3,41.7,11.8,42.2,11.8z M70.9,14c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C70,14.4,70.4,14,70.9,14z M41.2,14c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9C40.2,14.4,40.6,14,41.2,14 z M24.7,8.5c0.8,0.5,1,1.1,0.6,2c0.3-0.4,1.1-0.4,1,0.5c-0.4-0.4-0.8-0.1-0.7,0.3c0.1,0.3,0.4,0.6,0.8,0.5c0.3-0.1,0.8-0.5,0.8-1.5 c-0.2,0.1-0.4,0.3-0.6,0.6l-0.1-1.6c0.3,0.4,0.5,0.6,0.7,0.6c0-0.3-0.1-0.5-0.4-0.9l1,0c-0.2,0.8-0.3,1.9-0.1,3.6 c-1.2,0.3-3.2,0.9-4.4,1.4c-1.2,0.5-3.1,1.4-4.1,2.1c-1-1.4-1.8-2.1-2.5-2.5l0.8-0.7c0.1,0.5,0.2,0.7,0.4,0.9 c0.1-0.2,0.1-0.5,0.1-0.9l1,1.2c-0.3-0.1-0.6-0.1-0.8,0c0.8,0.7,1.3,0.7,1.6,0.5c0.4-0.2,0.4-0.7,0.2-0.9c-0.3-0.4-0.7-0.3-0.7,0.3 c-0.7-0.6-0.2-1.1,0.4-1.1c-0.9-0.4-1.2-0.9-1-1.8c1,0.3,1.2,0.8,1.2,1.7c0.2-0.7,1-0.7,1.1,0.2c-0.5-0.4-0.8,0.1-0.5,0.5 c0.2,0.4,0.9,0.5,1.5,0.2c0.9-0.5,0.7-1.1,0.5-1.7c-0.2,0.1-0.6,0.4-0.7,1.1l-0.7-1.4c0.5,0.2,0.9,0.2,1.3,0 c-0.3-0.3-1.1-0.8-1.1-0.8l1.9-0.8c0,0-0.3,0.9-0.3,1.4c0.4-0.2,0.7-0.4,0.9-0.9l0.5,1.5c-0.6-0.4-1.1-0.4-1.3-0.3 c0.2,0.5,0.5,1.1,1.5,0.8c0.7-0.2,1.1-0.7,1-1.2c-0.1-0.5-0.6-0.6-0.8,0c-0.6-0.7,0-1.2,0.6-0.9C24.4,10,24.2,9.4,24.7,8.5z M57.6,13.1v4.3h-1v-4C57,13.4,57.3,13.3,57.6,13.1z M54.4,13.1c0.3,0.2,0.7,0.3,1,0.3v4h-1V13.1z M71.2,16.3c0.5,0,0.9,0.4,0.9,0.9 c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9C70.3,16.7,70.7,16.3,71.2,16.3z M40.8,16.3c0.5,0,0.9,0.4,0.9,0.9 c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9C39.9,16.7,40.3,16.3,40.8,16.3z M30,15.4c-1,0.6-2.5,1.2-3.8,1.8 c0.6,1,1.8,1.6,2.8,0.9C29.7,17.5,29.1,16.8,30,15.4z M88.3,18.1c-0.9,0-1.1,0.5-1.2,1l0,0.2c0,0.2-0.1,0.5-0.2,0.7 c1-0.6,2.2-0.9,3.6-1C89.6,18.8,89,18.1,88.3,18.1z M41.3,18.5c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C40.4,19,40.8,18.5,41.3,18.5z M70.8,18.5c0.5,0,0.9,0.4,0.9,0.9c0,0.5-0.4,0.9-0.9,0.9c-0.5,0-0.9-0.4-0.9-0.9 C69.8,19,70.3,18.5,70.8,18.5z M23.5,18.2c-1.3,0.5-2.8,1.1-4,1.3c1.7,0.4,1.6,1.3,2.6,1.2C23.3,20.7,23.7,19.3,23.5,18.2z M63,16.5 c0.5,1,1,1.6,0.9,2.4c-0.1,0.8-0.9,1.4-1.3,2.2c-0.4-0.9-1-1.6-0.9-2.4C61.8,18,62.8,17,63,16.5z M49.1,16.5 c0.2,0.5,1.2,1.5,1.3,2.2c0.1,0.7-0.5,1.4-0.9,2.4c-0.4-0.8-1.2-1.4-1.3-2.2C48.1,18.1,48.6,17.5,49.1,16.5z M28.6,20 c-0.3-0.3-0.6-0.2-1.1-0.1L24,21.2c-0.4,0.2-0.7,0.4-0.7,0.8c0,0.1,0,0.2,0,0.3l0,0.2c0,0.3,0,0.5,0.2,0.6c0.4,0.1,0.4-0.9,1-1 c0.5-0.1,0.5,0.4,0.1,1.2c0.8-0.2,1.6-0.6,2,0.2c0.3,0.6,0.2,1-0.4,1.6c-0.3,0.3-0.1,0.9,0.1,1.6c0.2,0.7,1.2,1.8,2.4,1.3 c1.3-0.6,1.2-1.8,0.8-2.5c-0.3-0.7-0.6-1.3-1-1.3c-0.7,0-1.1-0.2-1.4-0.9c-0.3-0.8,0.6-1.1,1.3-1.5c-0.8-0.2-1.2-0.6-0.7-0.9 c0.5-0.4,1.2,0.3,1.4,0C29.4,20.5,28.8,20.2,28.6,20z M56.3,27.1h-0.4c-3.6,0-10.4,0.3-10.4,2.7c0,0.7,0.4,1.3,1.5,1.9 c1.8-1.2,4.8-2.5,9.2-2.5c4.4,0,7.4,1.3,9.2,2.5c1-0.6,1.5-1.2,1.5-1.9c0-2.5-7.1-2.7-10.6-2.7L56.3,27.1z M81.9,30.6 c-0.4,0-0.8,0.1-1.1,0.3c-0.4,0.3-0.6,0.7-0.6,1.1c0,0.2,0,0.3,0.2,0.5c0.3,0.4,1.1,0.4,1.6,0c0.3-0.3,0.6-0.6,0.6-1 c0-0.2,0-0.4-0.1-0.6C82.3,30.7,82,30.6,81.9,30.6z M81.8,29.8l0.2,0c0.4,0.1,0.8,0.3,1,0.6c0.2,0.3,0.3,0.7,0.3,1.2 c-0.1,0.6-0.4,1.1-0.9,1.5c-0.9,0.7-2.1,0.7-2.7-0.1c-0.6-0.7-0.3-1.9,0.6-2.6c0.5-0.4,1.1-0.6,1.7-0.5L81.8,29.8z M51,32.1 c0.3-0.1,0.5-0.1,0.8,0c0.2,0.1,0.4,0.3,0.5,0.6c0,0.1,0.1,0.2,0.1,0.3c0,0.1,0,0.3-0.1,0.4c-0.1,0.2-0.3,0.4-0.6,0.5 c-0.9,0.3-1.2-0.3-1.3-0.6c-0.1-0.2-0.1-0.5,0-0.8C50.5,32.3,50.7,32.2,51,32.1z M56.7,30.4l0,2.4c0,0.4,0,0.5-0.1,0.5 c-0.1,0.1-0.3,0.2-0.6,0.2c-0.2,0-0.4,0-0.5-0.2c-0.1-0.1-0.1-0.1-0.1-0.5v-2.5l-1.3,0l0,2.6c0,1.2,1,1.8,1.9,1.7 c0.6,0,1.1-0.2,1.5-0.6c0.3-0.3,0.5-0.8,0.5-1.3v-2.6L56.7,30.4z M59.3,30.5l-0.9,4.4l1.2,0.2l0.9-4.4L59.3,30.5z M53.4,32.2 c-0.4-1.2-1.7-1.7-2.9-1.3c-0.6,0.2-1.1,0.7-1.4,1.2c-0.2,0.5-0.2,1.1,0,1.7c0.3,1,1.3,1.5,2.3,1.4c0.2,0.1,1.2,0.3,2.2,0.1l0.5-1.2 c-0.4,0.1-0.8,0-1,0c0.2-0.4,0.4-0.8,0.4-1.2C53.6,32.7,53.5,32.4,53.4,32.2z M78.4,34.5c-0.3,0-0.4,0.1-0.6,0.2 c-0.3,0.2-0.4,0.6-0.4,1c0,0,0,0.1,0,0.1c0,0.7,0.4,1.2,0.9,1.2c0.2,0,0.4-0.1,0.6-0.2c0.3-0.2,0.4-0.6,0.5-1c0-0.4-0.1-0.8-0.3-1.1 C78.8,34.7,78.6,34.5,78.4,34.5z M63.8,31.8l-2.5,3.6l1.1,0.6l1.2-1.8l0.2,1.4l1.3-0.3L63.8,37l1,0.7l2.6-3.5l-0.8-0.6l-1.7,0.4 l-0.3-1.8L63.8,31.8z M45.8,33.5l-2.6,2.4l0.8,0.9l0.9-0.8l2,2.2l0.9-0.8c0,0-1.9-2-2-2.2l0.9-0.8L45.8,33.5z M85.7,27.9L85.7,27.9 c0,0.1-0.8,2.6-1.2,3.9l0,0.1l12.2,7l0-0.1c0.3-0.3,0.6-0.7,0.9-1l0.3-0.3c0.7-0.8,1.4-1.6,1.5-1.6l0.1-0.1l-1.4-1.1l0,0.2 c0,0.1,0,0.2,0,0.3c0,0.3,0,0.7-0.1,1.1c-0.2-0.2-0.4-0.5-0.4-0.9c0,0,0,0,0-0.1l0-0.3l-1.2,1.5h0.2c0.2,0,0.7,0.1,1,0.3 c-0.7,0.6-1.3,0.3-1.7,0c-0.7-0.5-1-0.9-0.8-1.2c0.1-0.2,0.3-0.2,0.5-0.2c0.2,0,0.5,0.2,0.5,0.6l0,0.1l0.1,0 c0.4-0.2,0.6-0.5,0.6-0.7c0-0.1,0-0.2,0-0.2c0-0.1,0-0.3-0.1-0.4c-0.1-0.2-0.4-0.4-0.7-0.4c0.6-0.5,1-1.1,1-1.8c0-0.2,0-0.3-0.1-0.5 l0-0.1l-0.1,0c-1,0.2-1.5,0.7-1.9,1.7c-0.1-0.3-0.4-0.6-0.7-0.7c-0.2,0-0.5,0.1-0.6,0.2c-0.1,0.1-0.3,0.4-0.3,0.9l0,0.1l0.1,0 c0.3-0.1,0.6,0,0.7,0.2c0.1,0.2,0.2,0.4,0.1,0.6c-0.2,0.4-0.7,0.3-1.5-0.1c-0.5-0.3-0.7-0.7-0.7-1.1c0-0.2,0.1-0.5,0.2-0.7 c0.2,0.2,0.3,0.5,0.3,1v0.1l0,0.3l1.3-2.1l-0.2,0.1c-0.1,0-0.5,0.2-0.9,0c0.4-0.4,0.8-0.7,1.2-0.7l0.3,0l-2.4-1.4l0.1,0.3 C92,31,92,31.2,92,31.4c0,0.3-0.1,0.6-0.1,0.8c-0.3-0.3-0.4-0.7-0.4-0.8l0-0.3l-1.2,2.2l0.3-0.2c0.4-0.2,0.8-0.3,1-0.3 c-0.3,0.5-0.9,0.9-1.8,0.4c-0.7-0.4-1-0.8-0.8-1.2c0.1-0.2,0.3-0.3,0.5-0.2c0.3,0,0.5,0.2,0.5,0.5l0,0.1l0.1-0.1 c0.4-0.2,0.6-0.5,0.6-0.7c0.1-0.2,0-0.5-0.1-0.7c-0.2-0.2-0.5-0.3-0.9-0.3c0.5-0.5,0.7-1,0.7-1.6c0-0.3-0.1-0.6-0.2-0.9l0-0.1 l-0.1,0c-0.9,0.3-1.5,1-1.6,2c-0.2-0.3-0.4-0.4-0.7-0.4c-0.2,0-0.5,0.1-0.6,0.3c-0.1,0.1-0.3,0.4-0.2,0.9l0,0.1l0.1,0 c0.3-0.1,0.6,0,0.8,0.1c0.1,0.1,0.1,0.2,0.1,0.3c0,0.1,0,0.1-0.1,0.2c-0.2,0.3-0.7,0.3-1.4-0.1c-0.4-0.2-0.9-0.5-0.9-1.2 c0-0.1,0-0.2,0-0.3c0.3,0.1,0.6,0.5,0.7,0.7l0.1,0.2l0.7-1.8l-0.2,0.2c-0.3,0.2-0.7,0.2-1,0.1c0.4-0.4,0.8-0.7,1.1-0.8l0.2-0.1 L85.7,27.9z M50.9,39.2L50.9,39.2C50.8,39.3,50.8,39.3,50.9,39.2C50.8,39.4,50.9,39.3,50.9,39.2c0.1,0.1,0,0.2,0,0.2 c0.1,0,0.1,0.1,0.1,0.1c0,0.1-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1c0,0.1,0,0.2,0.1,0.2c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.1 c0,0-0.1-0.1,0-0.1c0-0.1,0.1,0,0.2,0c0-0.1,0-0.1,0-0.1c0.1,0,0,0.1,0.1,0.1c0,0,0-0.1,0-0.1c0,0,0-0.1-0.1-0.1L50.9,39.2 C50.9,39.2,50.9,39.2,50.9,39.2L50.9,39.2z M42.7,36.6l-0.8,1l3.2,2.6l0.8-1L42.7,36.6z M69.6,36.4l-4.7,1.4l1,1l0.7-0.2l0.8,1.1 L67,40.4l0.8,1.1l2.3-4.4L69.6,36.4z M41.2,40.8c0.3-0.5,0.8-0.7,1.3-0.4c0.3,0.1,0.5,0.5,0.5,0.8c0,0.1,0,0.3-0.1,0.5 c-0.1,0.2-0.3,0.4-0.6,0.5c-0.2,0.1-0.5,0-0.7-0.1c-0.2-0.1-0.4-0.3-0.5-0.5C41.1,41.3,41.1,41.1,41.2,40.8z M55,37l0.2,0 c-1,0.2-1.1,1.2-2.6,1.3l-0.1,0.1c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.7,2.9,0,2.9,1.2c0,0.3-0.5,0.7-1.6,0.7c-0.1,0,0,0,0,0 c0.5,0,0.6,0.2,0.9,0.2c0.2,0,0.2,0.1,0.2,0.1c0,0.2,0.2,0.1,0.2,0c0,0.1,0,0.2-0.1,0.2c0,0,0,0,0,0c0,0.1,0,0.2,0.1,0.2 c0,0.1-0.1,0.1-0.2,0.1c0,0,0,0,0,0c0.1,0,0.1,0.1,0.1,0.1c0,0.2-0.2,0.1-0.2,0.3c0,0.1,0.2,0.1,0.1,0.3c0,0,0,0.1-0.1,0.1 c0,0,0.1,0.1,0.1,0.1c-0.1,0.1-0.2,0-0.2-0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.2,0-0.3c0,0,0,0,0,0c-0.1,0.1-0.1,0.2-0.1,0.2 c0,0,0,0-0.1,0c0,0.1,0,0.1,0,0.2c-0.1,0-0.1-0.1-0.1-0.2c0,0-0.1,0-0.1,0c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0 c-0.1,0.1-0.2,0-0.3-0.1c0,0,0,0,0,0c-0.1,0-0.1,0.1-0.2,0.1c0-0.1,0.1-0.2,0.2-0.2c0,0,0.1-0.1,0.1-0.1c0.1,0,0.3,0.1,0.3,0 c0-0.1,0-0.1,0-0.3c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.3-0.1-0.5,0.1c-0.2,0.1,0.2,0.2-0.2,0.2c-0.2,0-0.4-0.1-0.6-0.1 c0.1,0.1,0,0.3,0.1,0.3c0.2,0.1,0.2,0.4,0.1,0.4c0,0.1-0.3,0.1-0.4,0c0,0-0.1,0-0.1,0c-0.1,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1 c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.1,0.1c-0.2,0.1-0.3,0-0.3-0.1 c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0L52,42c0,0,0,0.1,0.1,0.1c-0.2,0-0.2,0-0.2-0.1 c0,0,0-0.1,0-0.1c-0.1-0.3,0.3-0.1,0.3-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1 c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.2-0.2c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3c0,0,0.1,0,0.2-0.1c0,0,0,0,0,0 c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.2-0.4-0.1-0.5C52.3,40.9,52.1,41,52,41c-1.1-0.1-0.2,0.3-0.8,0.4c-0.1,0-0.4,0.3-0.6,0.3 c0.1,0,0-0.1,0-0.2c-0.1,0.1-0.2,0.1-0.3,0.1c-0.1,0.1-0.2,0.1-0.2,0.1c0,0.1-0.2,0.2-0.3,0.2c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0 c-0.2,0.2-0.5,0-0.5,0.4c-0.1-0.1,0-0.2-0.1-0.2c0,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.2c0,0,0,0,0,0c-0.2,0-0.3,0-0.3,0c0,0,0,0,0,0 c0,0,0-0.1-0.1-0.1c0,0.2-0.2,0.2-0.3,0.3c0.1-0.1,0.1-0.2,0.1-0.3c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0 c0,0.1-0.1,0.2-0.2,0.2c-0.2,0-0.2-0.1-0.2-0.2c0,0,0,0,0,0c-0.1,0.1,0,0.2-0.1,0.3c0,0,0,0-0.1,0c0,0.1,0,0.2,0.1,0.2 c-0.1,0-0.3-0.1-0.2-0.3c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.3,0.1-0.4-0.1l0,0 c0,0,0,0,0-0.1c-0.1,0-0.1,0.1-0.1,0.1c-0.1-0.1,0.1-0.3,0.2-0.3c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.1,0,0.2,0.1 c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c-0.3-0.1-0.3-0.2-0.2-0.2c0,0,0-0.1,0-0.1C47.7,41,47.6,41,47.6,41c0.1,0,0.2,0,0.3,0 c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0.1c0.1,0.1,0,0.1,0.1,0.2c0.1,0.2,0.5,0,0.7-0.1c0.1-0.1,0.5,0,0.5,0c0,0,0.4-0.1,0.7-0.2 c-0.2-0.2-0.2-0.4-0.3-0.4c0,0-0.1,0,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0 c-0.3,0.1-0.6-0.1-0.4-0.3c-0.1,0.2,0.3,0.3,0.3,0c0,0,0,0,0,0c-0.2,0-0.2-0.2,0-0.3c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0 c-0.1,0-0.1,0-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0C49,39.9,49,40,49,40c-0.1-0.1-0.1-0.2,0-0.2c0,0,0-0.1,0-0.1 c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c0,0,0-0.1,0-0.1c0,0-0.1,0-0.1,0 c0.2-0.1,0.3,0,0.3,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.1,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0 c0-0.1,0-0.1,0-0.1c0,0,0,0,0.1-0.1c0-0.1,0-0.1-0.1-0.2c0.1,0,0.2,0.1,0.2,0.2c0,0,0,0.1,0,0.1c0,0.1-0.1,0.3-0.1,0.4 c0,0.2,0,0.3,0.1,0.4c0.1,0.1,0.2,0.1,0.2,0.2c0-0.1,0.1-0.4,0.2-0.7c0,0-0.1,0-0.1-0.1c0.1,0,0.1-0.2,0.2-0.4c0,0-0.1,0-0.1-0.1 c0.1,0,0.2-0.2,0.3-0.3c0-0.1,0-0.2,0-0.3c0.1,0,0.2,0,0.2,0.1c0-0.1,0.1-0.1,0.1-0.1c0,0,0.1,0,0.2,0c0,0,0.1,0,0.3,0.1 c0.1,0.1,0.2,0.1,0.3,0.2c0,0,0,0.1,0.1,0.2c0,0,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1c0,0.1-0.1,0.2-0.2,0.2 c0.1,0.2-0.2,0.5-0.2,0.7c1.1-0.3,1.6,0.1,2.2,0.1c0.8,0,1.3-0.2,1.3-0.5c0-0.8-2.9,0-2.9-1.2c0-0.2,0.1-0.3,0.3-0.4 c0-0.1,0-0.1,0.1-0.2c0.3-0.4,0.9-0.4,1.1-0.8c0,0.1-0.1,0.5-0.4,0.6c0.5,0,0.7-1,2-0.9L55,37z M43.1,39.3C42.6,39,42,39,41.5,39.1 c-0.5,0.2-1,0.6-1.3,1.1c-0.3,0.5-0.4,1.1-0.2,1.7c0.2,0.5,0.5,1,1,1.2c0.5,0.3,1.1,0.3,1.6,0.2c0.5-0.2,1-0.6,1.3-1.1 c0.2-0.4,0.3-0.7,0.3-1.1c0-0.2,0-0.4-0.1-0.6C43.9,40,43.6,39.6,43.1,39.3z M48.6,43.3C48.5,43.3,48.5,43.2,48.6,43.3 c-0.1,0-0.2,0-0.2,0.1C48.4,43.4,48.5,43.3,48.6,43.3c0,0.1,0,0.2-0.1,0.2c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.1-0.1,0.1 c0,0-0.1,0.1-0.1,0.1c0,0.1-0.1,0.2,0.1,0.2c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.2c0-0.1-0.1-0.1,0-0.2c0-0.1,0.1,0,0.2,0 c0-0.1,0-0.1,0-0.1c0.1,0,0.1,0.1,0.1,0.1c0,0,0-0.1,0-0.1c0,0,0-0.1-0.1-0.1L48.6,43.3z M80.2,43.6c-0.4-0.2-0.9-0.3-1.3-0.1 c-0.2,0.1-0.4,0.2-0.6,0.5c-0.3,0.6,0.1,1.3,0.9,1.7c0.4,0.2,0.9,0.3,1.3,0.1c0.2-0.1,0.4-0.2,0.5-0.5c0.1-0.3,0.1-0.5,0-0.7 C81,44.2,80.7,43.9,80.2,43.6z M46.6,42.4c0.1,0,0.2,0.1,0.3,0.2c0,0,0,0.1,0,0.1c0,0.2-0.1,0.3-0.1,0.5c0,0.2,0,0.3,0.2,0.4 c0.2,0.1,0.3,0.3,0.4,0.4l0.2,0.1l0.2,0.1c0-0.1,0-0.2,0-0.4c0,0-0.1-0.1-0.2-0.1c0.1,0,0.2-0.2,0.2-0.4c0,0-0.1,0-0.1-0.1 c0.1,0,0.2-0.3,0.3-0.3c0-0.2,0-0.2,0-0.4c0.1,0,0.2,0,0.2,0.1c0-0.1,0.1-0.1,0.2-0.1c0,0,0.1,0,0.2,0c0.1,0,0.2,0,0.3,0.1 c0.1,0.1,0.2,0.2,0.3,0.2c0,0,0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1c0,0.1-0.1,0.2-0.2,0.3 c0.1,0.2-0.1,0.4-0.2,0.6c1.3-0.3,3.5,0.1,4.2,0.1c0.5,0,1.3-0.1,1.3-0.3c0-0.2-0.2-0.2-1-0.2c-0.8,0-3.5,0.6-3.5-0.4 c0-0.5,0.6-0.5,1.3-0.4c0,0,0,0,0.1-0.1c0.5-0.3,1.3,0.1,1.8-0.2c0,0.2-0.2,0.3-0.8,0.3c1,0.2,1.7-0.5,2.6,0.2 c-0.8-0.2-2.3,0.4-3.5,0.1c-0.1,0-0.2-0.1-0.2-0.1c-0.5,0-1-0.1-1,0.2c0,0.6,2.2,0.2,3.2,0.2c1,0,1.3,0.2,1.3,0.5 c0,0.4-0.9,0.5-1.6,0.5c0.6,0.1,0.8,0.1,1.1,0.1c0.2,0,0.2,0.1,0.2,0.1c0,0.2,0.2,0.1,0.3,0c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0 c0,0.1,0,0.2,0.1,0.2c0,0.1-0.1,0.1-0.2,0.1c0,0,0,0,0,0c0.1,0,0.1,0.1,0.1,0.1c0,0.2-0.2,0.2-0.2,0.3c0,0.1,0.2,0.1,0.1,0.3 c0,0,0,0.1-0.1,0.1c0,0,0.1,0.1,0.1,0.1c-0.1,0.1-0.2,0-0.3-0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.2,0-0.3c0,0,0,0,0,0 c-0.1,0.1-0.1,0.3-0.2,0.3l0,0l0,0c0,0.1,0,0.1,0,0.2c-0.1,0-0.2-0.1-0.1-0.2c0,0-0.1,0-0.1,0c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0 c-0.1,0.1-0.3,0.1-0.3-0.1l0,0l0,0c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.2,0.2-0.3c0,0,0.1-0.1,0.1-0.1c0.1,0,0.3,0.1,0.4,0 c0.1-0.1,0-0.1,0-0.4c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.3-0.1-0.5,0.1c-0.2,0.1-0.3,0.2-0.8,0.2c-0.3,0-0.4-0.1-0.6-0.1 c0.1,0.1,0,0.3,0.1,0.3c0.2,0.1,0.2,0.4,0.2,0.5c0,0.1-0.3,0.1-0.4,0c0,0-0.1,0-0.1,0c-0.2,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1 c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.3,0-0.3-0.1 c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0,0,0.1,0.1,0.1c-0.2,0.1-0.2,0-0.2-0.1 c0,0-0.1-0.1-0.1-0.1c-0.1-0.3,0.3-0.1,0.3-0.3c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1 c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3c0,0,0.2,0,0.3-0.1c0,0,0,0,0,0 c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.2-0.4-0.1-0.6c-0.1,0.1-0.2,0.2-0.3,0.2c-1.4-0.2-0.8,0.6-1.6,0.5c-0.1,0-0.2,0-0.3,0 c-0.1,0.2-0.5,0.7-0.8,0.6c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c-0.3,0.2-0.5,0-0.5,0.4c-0.1-0.1,0-0.3-0.1-0.3c0,0-0.1,0.1-0.1,0.1 c0,0,0-0.1,0-0.2c0,0,0,0,0,0c-0.2,0-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0.2-0.2,0.3-0.3,0.3c0.1-0.1,0.1-0.2,0.1-0.3 c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.2c-0.2,0-0.2-0.1-0.2-0.2c0,0,0,0,0,0 c-0.1,0.1,0,0.2-0.2,0.3c0,0-0.1,0-0.1,0c0,0.1,0.1,0.2,0.1,0.3c-0.1,0-0.3-0.1-0.3-0.3c0,0,0,0,0,0c0,0-0.1-0.1-0.1-0.1 c-0.2-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.4,0.1-0.4-0.1c0,0,0-0.1,0-0.1c-0.1,0-0.1,0.1-0.2,0.1l0,0l0,0 c0-0.1,0.1-0.2,0.2-0.2l0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.2,0.1,0.3,0.1c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0 c-0.3-0.1-0.3-0.2-0.3-0.3c0,0,0-0.1,0.1-0.1c-0.1-0.1-0.1-0.1-0.2-0.1c0.1-0.1,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0.1,0.1,0.1 c0.1,0.1,0,0.2,0.1,0.2c0.1,0.2,0.6,0,0.8-0.1c0.1-0.1,0.6,0,0.7,0c0,0-0.1-0.2-0.1-0.4c-0.1,0.1-0.2-0.1-0.4-0.2 c-0.2-0.1-0.3-0.3-0.4-0.3c0,0,0,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0 c-0.3,0.2-0.6-0.1-0.4-0.4c0,0.3,0.3,0.3,0.4,0.1c0,0,0,0,0,0c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0 c-0.1,0-0.1,0.1-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c-0.1,0-0.1,0.1-0.1,0.1c-0.1-0.1-0.1-0.2,0-0.3c0,0,0-0.1,0-0.1 c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1,0-0.2,0-0.2-0.2c0,0,0-0.1,0-0.1c0,0-0.1-0.1-0.1-0.1 c0.2-0.1,0.3,0,0.3,0.1c0,0,0,0,0,0c0,0,0,0,0,0l0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0 c-0.1-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1C46.7,42.5,46.7,42.5,46.6,42.4z M78.7,42.8c0.6-0.2,1.3-0.1,1.9,0.2 c0.6,0.3,1.1,0.8,1.3,1.4c0.2,0.4,0.1,0.9,0,1.3c-0.2,0.4-0.5,0.7-1,0.8c-0.6,0.2-1.3,0.2-1.9-0.1c-1.1-0.5-1.7-1.7-1.2-2.7 C77.9,43.3,78.2,43,78.7,42.8z M73.4,46l0.4,0.8c-0.2-0.1-0.3-0.1-0.5-0.2c-0.1,0-0.2-0.1-0.3-0.1c0-0.1,0.1-0.1,0.1-0.2 C73.3,46.3,73.3,46.1,73.4,46L73.4,46z M47.4,47.4C47.3,47.4,47.3,47.4,47.4,47.4c-0.1,0-0.2,0-0.2,0.1 C47.2,47.5,47.3,47.4,47.4,47.4c0,0.1,0,0.2-0.1,0.2c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1 c0,0.1,0,0.2,0.1,0.3c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.2c0-0.1-0.1-0.1,0-0.2c0-0.1,0.1,0,0.2,0c0-0.1,0-0.1,0-0.1 c0.1,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0l0-0.1c0,0,0-0.1-0.1-0.1L47.4,47.4z M99.8,47.1c-0.2,0-0.5,0-0.7,0.2c-0.2,0.2-0.3,0.5-0.3,0.7 c0,0.4,0.2,0.9,0.5,1.2c0.3,0.4,0.8,0.6,1.2,0.6c0.2,0,0.5,0,0.7-0.2c0.2-0.2,0.3-0.5,0.3-0.7c0-0.4-0.2-0.9-0.5-1.2 C100.6,47.3,100.2,47.1,99.8,47.1z M45.1,46.4c0.1,0,0.2,0.1,0.3,0.2c0,0,0,0.1,0,0.1c0,0.2-0.1,0.3-0.1,0.5c0,0.2,0,0.3,0.2,0.4 c0.3,0.2,0.4,0.4,0.5,0.4c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.2,0l0.1,0c0-0.1,0-0.2,0-0.3c0,0-0.1-0.1-0.1-0.1c0.1,0,0.2-0.2,0.2-0.4 c0,0-0.1,0-0.1-0.1c0.1,0,0.2-0.3,0.3-0.3c0-0.2,0-0.2,0-0.4c0.1,0,0.2,0,0.2,0.1c0-0.1,0.1-0.1,0.2-0.1c0,0,0.1,0,0.2,0 c0.1,0,0.1,0,0.3,0.1c0.1,0.1,0.2,0.2,0.3,0.2c0,0,0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1 c0,0.1-0.1,0.2-0.2,0.3c0.1,0.2-0.2,0.5-0.2,0.7c1.3-0.4,4.5,0,5.3,0c0.5,0,1.3-0.1,1.3-0.3c0-0.2-0.2-0.2-1-0.2 c-0.8,0-4.3,0.6-4.3-0.4c0-0.5,0.8-0.5,1.6-0.4l0.3,0l0.1,0c0,0,0.1-0.1,0.1-0.1c0.5-0.3,1.7,0.2,2.2-0.1c0,0.2-0.6,0.3-1.2,0.3 c1,0.2,1.9-0.5,2.6,0.1c-0.9-0.3-2.2,0.5-3.5,0.2c-0.1,0-0.2-0.1-0.2-0.1c-0.1,0-0.2,0-0.3,0l-0.3,0c-0.6,0-1.2-0.1-1.2,0.2 c0,0.6,3,0.2,4,0.2c1,0,1.3,0.2,1.3,0.5c0,0.4-1,0.5-1.6,0.5c0.6,0.1,0.8,0.1,1.1,0.1c0.2,0,0.2,0.1,0.2,0.1c0,0.2,0.2,0.1,0.3,0 c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0c0,0,0,0,0,0l0,0.1c0,0.1,0,0.1,0.1,0.1c0,0.1-0.1,0.1-0.2,0.1l0,0l0,0c0.1,0,0.1,0.1,0.1,0.1 c0,0.2-0.2,0.2-0.2,0.3c0,0.1,0.2,0.1,0.1,0.3c0,0,0,0.1-0.1,0.1c0,0,0.1,0.1,0.1,0.1c-0.1,0.1-0.2,0-0.3-0.1c0,0-0.1,0-0.1,0 c-0.1,0-0.1-0.2,0-0.3c0,0,0,0,0,0c-0.1,0.1-0.1,0.3-0.2,0.3c0,0,0,0-0.1,0c0,0.1,0,0.1,0,0.2c-0.1,0-0.2-0.1-0.1-0.2 c0,0-0.1,0-0.1,0c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.1,0.1-0.3,0.1-0.3-0.1c0,0,0,0,0-0.1c-0.1,0-0.2,0.1-0.2,0.1 c0-0.1,0.1-0.2,0.2-0.3c0,0,0.1-0.1,0.1-0.1c0.1,0,0.3,0.1,0.4,0c0-0.1,0-0.1,0-0.4c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.3-0.1-0.5,0.1 c-0.2,0.1-0.3,0.2-0.8,0.2c-0.2,0-0.4-0.1-0.6-0.2c0.1,0.2,0,0.3,0.1,0.3c0.2,0.1,0.2,0.4,0.2,0.5c0,0.1-0.3,0.1-0.5,0 c0,0-0.1,0-0.1,0c-0.2,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1 c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.4,0-0.3-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0 c0,0,0,0.1,0,0l0,0c0,0,0,0-0.1,0c0,0.1,0,0.1,0.1,0.1c-0.2,0.1-0.3,0-0.2-0.1c0,0-0.1-0.1-0.1-0.1c-0.1-0.3,0.3-0.1,0.3-0.3 c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3 c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3c0,0,0.2-0.1,0.3-0.1c0,0,0,0,0,0c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.2-0.3-0.1-0.5 C51.2,49,51.2,49,51.1,49c-0.9-0.1-1.1,0.1-1.3,0.2l-0.1,0.1c-0.2,0.2-0.4,0.3-1.1,0.2c-0.1,0-0.1,0.3-0.4,0.2c0,0,0-0.1,0-0.1 c0,0-0.1,0-0.2,0c0,0.1-0.3,0.3-0.5,0.3c-0.1,0.1-0.2,0.1-0.3,0.1c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c-0.3,0.2-0.8,0-0.8,0.4 c-0.1-0.1,0-0.3-0.1-0.3c0,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.2c0,0,0,0,0,0c-0.2,0-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1 c0,0.2-0.2,0.3-0.3,0.3c0.1-0.1,0.1-0.2,0.1-0.3c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.2 c-0.2,0-0.2-0.1-0.2-0.2c0,0,0,0,0,0c-0.1,0.1,0,0.2-0.2,0.3c0,0,0,0-0.1,0c0,0.1,0,0.2,0.1,0.3c-0.1,0-0.3-0.1-0.2-0.3c0,0,0,0,0,0 c0,0-0.1,0-0.1-0.1c-0.2-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.4,0.1-0.4-0.1c0,0,0-0.1,0-0.1c-0.1,0-0.1,0.1-0.2,0.1 c-0.1-0.2,0.1-0.3,0.2-0.3c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.2,0,0.3,0.1c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0 c-0.3-0.1-0.3-0.2-0.3-0.3c0,0,0-0.1,0-0.1C44.5,49,44.5,49,44.4,49c0.1-0.1,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0.1 c0.1,0.1,0,0.2,0.1,0.2c0.1,0.2,0.6,0,0.8-0.1c0.1-0.1,0.8,0,0.8,0c0,0-0.1-0.2-0.1-0.4c0,0-0.1-0.1-0.1-0.1c0,0.1-0.2,0.1-0.2,0.1 c-0.4-0.2-0.6-0.6-0.7-0.6c0,0-0.1,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0 c-0.3,0.2-0.6-0.1-0.4-0.4c0,0.3,0.4,0.3,0.4,0.1c0,0,0,0,0,0c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0 c-0.1,0.1-0.1,0.1-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c-0.1,0,0,0.1,0,0.1c-0.1-0.1-0.1-0.2,0-0.3c0,0,0-0.1,0-0.1 c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c0,0,0-0.1,0-0.1c0,0-0.1,0-0.1-0.1 c0.2-0.1,0.3,0,0.3,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0 c-0.1-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1C45.2,46.5,45.2,46.5,45.1,46.4z M56.6,35.7v15.5h12.9c0-2-0.4-4-1.1-5.8 c-0.7-1.9-1.7-3.6-2.9-5c-1.2-1.4-2.7-2.6-4.3-3.4C59.8,36.2,58.2,35.7,56.6,35.7z M55.8,35.7c-1.7,0-3.4,0.4-5,1.2 c-1.6,0.8-3,1.9-4.3,3.4c-1.2,1.5-2.2,3.2-2.9,5c-0.7,1.8-1,3.8-1.1,5.8h13.2V35.7z M73.3,51.9c0.1,0,0.3,0,0.4,0c0,0.1,0,0.2,0,0.2 c0,0.2-0.1,0.2-0.2,0.2c-0.1,0-0.1,0-0.1,0c0,0-0.1-0.1-0.1-0.2L73.3,51.9z M70.6,50.6l0,1.3c0,0,0.3,0,0.6,0l0.3,0 c0.3,0,0.5,0,0.6,0v0.2c0,0.5,0.1,0.9,0.4,1.2c0.2,0.2,0.6,0.4,0.9,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-1.1l0-1.5 L70.6,50.6z M60,53.3L60,53.3C59.9,53.3,59.9,53.4,60,53.3c-0.1,0.1,0,0.1,0,0.1c0,0,0,0.1-0.1,0.1c0.1,0,0.1,0.1,0.1,0.2 c0,0.1-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1c0,0.1-0.1,0.2,0.1,0.2c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.2c0-0.1-0.1-0.1,0-0.2 c0-0.1,0.1,0,0.2,0c0-0.1,0-0.1,0-0.1c0.1,0,0.1,0.1,0.1,0.1c0,0,0,0,0,0l0-0.1c0,0,0-0.1-0.1-0.1L60,53.3C60,53.3,60,53.3,60,53.3 L60,53.3z M57.9,52.4c0.1,0,0.2,0.1,0.3,0.2c0,0,0,0.1,0.1,0.2c0,0.2-0.1,0.3-0.1,0.5c0,0.2,0,0.3,0.2,0.4c0.3,0.2,0.4,0.4,0.5,0.4 c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.2,0l0.2,0.1c0-0.1,0-0.2,0-0.3c0,0-0.1-0.1-0.2-0.1c0.1,0,0.2-0.2,0.2-0.4c0,0-0.1,0-0.1-0.1 c0.1,0,0.2-0.3,0.3-0.3c0-0.2,0-0.2,0-0.4c0.1,0,0.2,0,0.2,0.1c0-0.1,0.1-0.1,0.2-0.1c0,0,0.1,0,0.2,0c0.1,0,0.1,0,0.3,0.1 c0.1,0.1,0.2,0.2,0.3,0.2c0,0,0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1c0,0.1-0.1,0.2-0.2,0.3 c0.1,0.2-0.2,0.5-0.2,0.7c1.3-0.4,4.5,0,5.3,0c0.5,0,1.3-0.1,1.3-0.3c0-0.2-0.2-0.2-1-0.2c-0.8,0-4.3,0.6-4.3-0.4 c0-0.6,1.1-0.4,2.1-0.4c0,0,0-0.1,0.1-0.1c0.5-0.3,1.7,0.2,2.2-0.1c0,0.1-0.6,0.3-1.2,0.3c1,0.2,1.6-0.4,2.6-0.1 c-0.8-0.2-2.2,0.7-3.5,0.4c-0.1,0-0.2-0.1-0.2-0.1c-0.1,0-0.2,0-0.3,0l-0.3,0c-0.6,0-1.2-0.1-1.2,0.2c0,0.3,1,0.3,2,0.3l0.4,0 c0.6,0,1.3-0.1,1.6-0.1c1,0,1.3,0.2,1.3,0.5c0,0.4-0.9,0.5-1.6,0.5c-0.1,0,0,0,0,0c0.6,0.1,0.8,0.1,1.1,0.1c0.2,0,0.2,0.1,0.2,0.1 c0,0.2,0.2,0.1,0.3,0c0,0.1,0,0.2-0.1,0.3c0,0,0,0,0,0c0,0.1-0.1,0.2,0.1,0.2c0,0.1-0.1,0.1-0.2,0.1c0,0,0,0,0,0 c0.1,0,0.1,0.1,0.1,0.1c0,0.2-0.2,0.2-0.3,0.3c0,0.1,0.2,0.1,0.1,0.3c0,0,0,0.1-0.1,0.1c0,0,0.1,0.1,0.1,0.1c-0.1,0.1-0.2,0-0.3-0.1 c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.2,0-0.3c0,0,0,0,0,0C67,56,67,56.2,66.9,56.2h-0.1c-0.1,0.1,0,0.1,0,0.2c-0.1,0-0.1-0.1-0.1-0.2 c0,0-0.1,0-0.1,0c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.1,0.1-0.3,0.1-0.3-0.1v0c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.2,0.3-0.3 c0,0,0.1-0.1,0.1-0.1c0.1,0,0.3,0.1,0.4,0c0.1-0.1,0-0.1,0.1-0.4c0-0.1,0-0.1-0.1-0.1c-0.1,0-0.3-0.1-0.6,0.1 c-0.2,0.1-0.4,0.2-0.8,0.2c-0.2,0-0.4-0.1-0.6-0.2c0.1,0.2,0,0.3,0.1,0.3c0.2,0.1,0.2,0.4,0.2,0.5c0,0.1-0.3,0.1-0.5,0 c0,0-0.1,0-0.1,0c-0.2,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1 c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.4,0-0.3-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0 c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0.1,0,0.1,0.1,0.1c-0.2,0.1-0.3,0-0.2-0.1c0,0-0.1-0.1-0.1-0.1c-0.1-0.3,0.3-0.1,0.3-0.3 c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.1l0,0c0,0,0,0,0-0.1c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3 c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3c0,0,0.2-0.1,0.3-0.1c0,0,0,0,0,0c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.2-0.4-0.1-0.6 C64,54.9,63.9,55,63.8,55c-1.9-0.2-1,0.7-2.6,0.5c-0.1,0-0.1,0.2-0.4,0.2c-0.1,0-0.3,0-0.3,0.1c0,0.2-0.4,0.4-0.5,0.3 c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c-0.3,0.2-0.5,0-0.5,0.4c-0.1-0.1-0.1-0.3-0.1-0.3c0,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.2 c0,0,0,0,0,0c-0.2,0-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0.2-0.2,0.3-0.3,0.3c0.1-0.1,0.1-0.2,0.1-0.3 c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.2c-0.2,0-0.2-0.1-0.2-0.2c0,0,0,0,0,0 c-0.1,0.1,0,0.2-0.2,0.3c0,0,0,0-0.1,0c0,0.1,0.1,0.2,0.1,0.3c-0.1,0-0.3-0.1-0.2-0.3c0,0,0,0,0,0c0,0-0.1,0-0.1-0.1 c-0.2-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.4,0.1-0.4-0.1c0,0,0-0.1,0-0.1c-0.1,0-0.1,0.1-0.2,0.1c-0.1-0.1,0.1-0.3,0.2-0.3 c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.1,0,0.3,0.1c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c-0.3-0.1-0.3-0.2-0.3-0.3c0,0,0-0.1,0-0.1 C57.7,55,57.6,55,57.5,55c0.1-0.1,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0,0.2,0.1,0.2c0.1,0.2,0.6,0,0.8-0.1 c0.1-0.1,0.5,0,0.6,0c0,0-0.2-0.2-0.2-0.4l-0.1,0c-0.1,0-0.1-0.1-0.1-0.2c-0.1,0-0.3,0.1-0.2,0.1c-0.4-0.2-0.6-0.6-0.6-0.6 c0,0-0.1,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0 c-0.3,0.2-0.6-0.1-0.4-0.4c0,0.3,0.4,0.3,0.4,0.1c0,0,0,0,0,0c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0 c-0.1,0.1-0.1,0.1-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c-0.1,0,0,0.1,0,0.1c-0.1-0.1-0.1-0.2-0.1-0.3c0,0,0,0,0,0l0-0.1 c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c0,0,0-0.1,0-0.1c0,0-0.1-0.1-0.1-0.1 c0.2-0.1,0.3,0,0.3,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0 c-0.1-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1C58,52.5,57.9,52.4,57.9,52.4z M99.7,54.2c-0.5-0.4-1.3-0.1-1.8,0.5 c-0.5,0.7-0.4,1.5,0.1,1.9c0.5,0.4,1.3,0.1,1.8-0.5C100.2,55.4,100.2,54.6,99.7,54.2z M52.8,53.5c-0.4,0-1.2,0.4-2.2,0.8l2.1,3 l0.3-2.1l-0.1,0c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.3-0.4,0.5-0.4l0.2,0C53.2,53.6,53.1,53.5,52.8,53.5z M70.4,53.8l-0.5,2.8l1.2,0.2 l0.3-1.5l0.3,0.1l-0.3,1.4l1.2,0.2l0.3-1.4l0.3,0.1L73,57.1l1.2,0.2l0.5-2.7L70.4,53.8z M59.9,57.2L59.9,57.2 C59.9,57.3,59.8,57.3,59.9,57.2c-0.1,0.1,0,0.1,0,0.1c0,0,0,0.1-0.1,0.1c0.1,0,0.1,0.1,0.1,0.2c0,0.1-0.1,0.1-0.1,0.1 c0,0-0.1,0.1-0.1,0.1c0,0.1,0,0.2,0.1,0.2c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.1c0-0.1-0.1-0.1,0-0.1c0-0.1,0.1,0,0.2,0 c0-0.1,0-0.1,0-0.1c0.1,0,0,0.1,0.1,0.1c0,0,0-0.1,0-0.1c0,0,0-0.1-0.1-0.1L59.9,57.2C60,57.2,59.9,57.2,59.9,57.2L59.9,57.2z M50.1,54.5c-0.3,0.1-0.7,0.2-1.1,0.3l3.3,4.8c0.1-0.5,0.2-1,0.2-1.5L50.1,54.5z M40.5,58.2c0.5-0.2,1.1,0,1.3,0.6 c0.1,0.1,0.1,0.3,0.1,0.4v0c0,0.4-0.2,0.7-0.6,0.9c-0.3,0.1-0.5,0.1-0.7,0c-0.2-0.1-0.4-0.3-0.5-0.6C39.7,58.9,40,58.4,40.5,58.2z M60.2,56.5c0.1,0,0.1,0,0.3,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0,0,0.1,0.2,0.1,0.2c0,0.1,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1 c0,0.1-0.1,0.2-0.2,0.2c0.1,0.1-0.1,0.4-0.2,0.6c1.2-0.2,3.3,0.1,4,0.1c0.4,0,1.3-0.1,1.3-0.3c0-0.2-0.1-0.2-0.7-0.2 c-0.8,0-3.3,0.5-3.3-0.4c0-0.5,0.7-0.4,1.2-0.4c0,0,0,0,0.1-0.1c0.5-0.3,1.7,0.1,2.1-0.1c0,0.1-0.6,0.2-1.1,0.3 c0.9,0.2,1.5-0.4,2.5,0c-0.7-0.2-2.1,0.7-3.3,0.3c-0.1,0-0.2-0.1-0.2-0.2c-0.3,0-0.9-0.1-0.9,0.2c0,0.5,2.1,0.2,3,0.2 c0.9,0,1,0.2,1,0.4c0,0.4-1.1,0.5-1.6,0.5c-0.1,0,0,0,0,0c0.5,0,0.9,0.1,1.2,0.1c0.2,0,0.2,0.1,0.2,0.1c0,0.2,0.2,0.1,0.3,0 c0,0.1-0.1,0.2-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0l0,0.1c0,0.1,0,0.1,0.1,0.1c-0.1,0.1-0.1,0.1-0.2,0.1c0,0,0,0,0,0 c0.1,0,0.1,0.1,0.1,0.1c-0.1,0.2-0.3,0.2-0.3,0.3c0,0.1,0.2,0.1,0,0.3c0,0-0.1,0.1-0.1,0.1c0,0,0.1,0.1,0.1,0.1 c-0.1,0.1-0.2,0-0.2-0.1c0,0-0.1,0-0.1,0c-0.1,0,0-0.2,0-0.3c0,0,0,0,0,0c-0.1,0.1-0.1,0.3-0.2,0.2c0,0,0,0-0.1,0 c-0.1,0.1-0.1,0.1-0.1,0.2c-0.1,0-0.1-0.1-0.1-0.2c0,0-0.1,0-0.1,0c-0.1-0.1,0.1-0.2,0.2-0.3c0,0,0,0,0,0c-0.1,0.1-0.3,0.1-0.2-0.1 c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.2-0.2,0.3-0.2c0,0,0.1-0.1,0.1-0.1c0.1,0,0.3,0.1,0.4,0c0.1-0.1,0-0.1,0.1-0.4 c0-0.1,0-0.1,0-0.1c-0.1,0-0.3-0.1-0.5,0.1c-0.2,0.1-0.4,0.2-0.8,0.2c-0.2,0-0.4-0.1-0.6-0.1c0.1,0.1,0,0.3,0.1,0.3 c0.2,0.1,0.2,0.4,0.1,0.5c0,0.1-0.3,0.1-0.4,0c0,0-0.1,0-0.1,0c-0.2,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1c0,0,0,0-0.1,0 c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.3,0-0.3-0.1c0,0,0-0.1,0-0.1 c0,0,0,0,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0c0,0,0,0.1,0.1,0.1c-0.2,0.1-0.2,0-0.2-0.1 c0,0-0.1-0.1-0.1-0.1c-0.1-0.3,0.3-0.1,0.3-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1,0-0.1-0.1c0,0,0,0,0-0.1 c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3c0,0,0.2-0.1,0.3-0.1c0,0,0,0,0,0 c-0.1-0.1-0.2-0.1-0.3-0.1c-0.2,0-0.2-0.4-0.1-0.6c-0.1,0.1-0.2,0.2-0.3,0.1c-1.3-0.2-0.7,0.5-1.5,0.5c-0.1,0-0.1,0.2-0.3,0.2 c0.1,0,0.1-0.1,0-0.1c0,0,0,0.1-0.1,0.1c-0.1,0.2-0.4,0.6-0.6,0.4c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c-0.3,0.2-0.6,0.1-0.6,0.5 c-0.1-0.1,0-0.3-0.1-0.3c0,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.2c0,0,0,0,0,0c-0.2,0-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1 c0,0.2-0.2,0.3-0.3,0.3c0.1-0.1,0.1-0.2,0.1-0.3c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.2 c-0.2,0-0.2-0.1-0.2-0.2c0,0,0,0,0,0c-0.1,0.1,0,0.2-0.1,0.3c0,0-0.1,0-0.1,0c0,0.1,0,0.2,0.1,0.2c-0.1,0-0.3-0.1-0.2-0.3 c0,0,0,0,0,0c0,0-0.1,0-0.1-0.1c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.3,0.1-0.4-0.1c0,0,0,0,0,0l0-0.1 c-0.1,0-0.1,0.1-0.2,0.1c-0.1-0.1,0.1-0.3,0.2-0.3c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.1,0,0.3,0.1c0.1,0,0.1,0,0.2,0 c0,0,0,0,0,0c-0.3-0.1-0.3-0.2-0.3-0.2c0,0,0-0.1,0-0.1c0-0.1-0.1-0.1-0.2-0.1c0.1-0.1,0.2,0,0.3,0c0,0,0.1,0,0.1,0 c0,0,0.1,0,0.1,0.1c0.1,0.1,0,0.2,0.1,0.2c0.1,0.2,0.6,0,0.7-0.1c0.1-0.1,0.5,0,0.5,0c0,0,0-0.3,0-0.5l-0.2,0 c-0.1,0-0.1-0.1-0.1-0.1c-0.3-0.2-0.3-0.1-0.4-0.1c0,0,0,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1 c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0c-0.3,0.2-0.6-0.1-0.4-0.4c0,0.3,0.3,0.3,0.3,0.1c0,0,0,0,0,0c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0 c0,0,0,0-0.1,0c0,0,0,0-0.1,0c-0.1,0-0.1,0.1-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c-0.1-0.1-0.1-0.2,0-0.3 c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c0,0,0-0.1,0-0.1 c0,0-0.1,0-0.1,0c0.1-0.1,0.3-0.1,0.3,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1 c0,0,0,0,0,0c-0.1-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1c0-0.1-0.1-0.1-0.1-0.2c0.1,0,0.2,0.1,0.3,0.2c0,0,0,0.1,0,0.1 c0,0.2-0.1,0.3-0.1,0.5c0,0.2,0,0.3,0.2,0.4C58.8,58,58.9,58,59,58c0,0,0,0,0.1,0l0.1,0c0-0.1,0-0.2,0.1-0.4c0,0-0.1-0.1-0.1-0.1 c0.1,0,0.1-0.2,0.2-0.4c0,0-0.1,0-0.1-0.1c0.1,0,0.2-0.3,0.3-0.3c0-0.1,0-0.2,0-0.3c0.1,0,0.2,0,0.2,0.1c0-0.1,0.1-0.1,0.2-0.1 C60,56.5,60.2,56.5,60.2,56.5z M41.7,57c-0.5-0.2-1.1-0.2-1.7,0c-0.6,0.2-1,0.6-1.2,1.1c-0.2,0.5-0.2,1.2,0,1.8 c0.2,0.6,0.7,1.1,1.2,1.3c0.5,0.2,1.1,0.2,1.7,0c0.6-0.2,1-0.6,1.2-1.2c0.1-0.3,0.2-0.6,0.2-0.9c0-0.3-0.1-0.6-0.2-0.9 C42.7,57.7,42.3,57.3,41.7,57z M48.4,54.9c-0.2,0-0.5,0.1-0.7,0.1c-0.1,0-0.3,0-0.4,0l4.8,6.8c0.1-0.4,0.1-0.9,0.2-1.4L48.4,54.9z M59.7,61.2C59.6,61.2,59.6,61.2,59.7,61.2c-0.1,0-0.2,0-0.1,0.1C59.5,61.3,59.6,61.2,59.7,61.2c0,0.1,0,0.1-0.1,0.2 c0.1,0,0.1,0.1,0.1,0.1c0,0.1-0.1,0.1-0.1,0.1c0,0-0.1,0-0.1,0.1c0,0.1,0,0.2,0.1,0.2c0.1,0.1,0.2,0,0.2-0.1c0-0.1,0-0.1,0-0.1 c0,0-0.1-0.1,0-0.1c0-0.1,0.1,0,0.2,0c0-0.1,0-0.1,0-0.1c0.1,0,0,0.1,0.1,0.1c0,0,0-0.1,0-0.1c0,0,0-0.1-0.1-0.1L59.7,61.2z M96.2,59.6c-0.5-0.4-1.3-0.1-1.8,0.5c-0.5,0.7-0.4,1.5,0.1,1.9c0.5,0.4,1.3,0.1,1.8-0.5C96.8,60.8,96.8,60,96.2,59.6z M69.8,56.9 l-0.5,1.1l2,0.8l-2.6,0.9l-0.4,0.9l4,1.6l0.5-1.1l-2-0.8l2.7-0.9l0.4-0.9L69.8,56.9z M46.6,55c-0.3,3.9,2.4,6.5,5.2,7.5L46.6,55z M59.8,60.5c0.1,0,0.1,0,0.3,0.1c0.1,0.1,0.2,0.1,0.3,0.2c0,0,0.1,0.2,0.1,0.2c0,0,0.1,0.1,0.1,0.2c0.1,0,0.2,0,0.2,0.1 c0,0.1-0.1,0.2-0.2,0.2c0.1,0.2-0.2,0.5-0.3,0.7v0c1.3-0.3,2.4,0.1,3,0.1c0.8,0,1.4-0.2,1.4-0.4c0-0.1-0.6-0.1-1.3,0l-0.3,0l-0.2,0 c-0.9,0-1.3-0.1-1.3-0.4c0-0.3,0.3-0.5,0.7-0.6c0,0,0.1-0.1,0.1-0.1c0.5-0.3,1.7,0.1,2.1-0.1c0,0.1-0.6,0.3-1.1,0.3 c0.9,0.2,1.5-0.4,2.5-0.1c-0.7-0.2-2.1,0.7-3.3,0.4c-0.1,0-0.2-0.1-0.2-0.2c-0.2,0.1-0.4,0.2-0.4,0.4c0,0.2,0.7,0.2,1.5,0.2l0.3,0 c0.1,0,0.2,0,0.3,0c0.7-0.1,1,0,1,0.3c0,0.3-0.6,0.6-1.7,0.6c0,0-0.2,0-0.3,0c0,0.2,0.4,0.3,0.5,0.5c0.1,0.1,0.1,0.2-0.2,0.3 c-0.1,0.1,0.1,0.2,0.2,0.2c-0.1,0.1-0.2,0.1-0.2,0.1c0,0,0,0,0,0c0,0.1-0.2,0.1-0.1,0.2c-0.1,0-0.1,0-0.1,0l0,0c0,0,0,0,0,0 c0,0.1,0,0.1,0,0.2c-0.2,0.1-0.3-0.1-0.3,0c-0.1,0.1,0.1,0.2-0.1,0.3c0,0-0.1,0-0.1,0c0,0,0,0.1,0,0.1c-0.1,0-0.2-0.2-0.1-0.2 c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.2-0.2c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.3,0.1c0,0,0,0,0-0.1c-0.1,0-0.1,0.1-0.1,0.1 c0-0.1,0-0.2,0-0.2c0,0,0-0.1,0-0.1c0-0.1,0.2-0.1,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1-0.1,0-0.1c0,0,0,0,0,0 c-0.1,0-0.2,0-0.2,0c0-0.1,0.2-0.1,0.3-0.1c0,0,0.1,0,0.1,0c0.1,0,0.1,0.1,0.2,0.2l0,0c0.1,0,0.1-0.1,0.3-0.2c0.1,0,0-0.1,0-0.1 c0,0-0.3-0.2-0.5-0.2c-0.1,0.2-0.8,0.1-1,0c0.5,0.3,0.2,0.9,0.3,0.9c0.2,0.1,0.2,0.4,0.1,0.4c0,0.1-0.2,0-0.3,0c0,0-0.1,0-0.1,0 c-0.2,0,0,0.2-0.2,0.3c-0.1,0-0.2,0-0.2-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0-0.1,0 c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.3,0-0.3-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0 c0,0,0,0.1,0.1,0.1c-0.1,0-0.2,0-0.2-0.1c0,0,0-0.1,0-0.1c-0.1-0.3,0.3-0.1,0.3-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0 c-0.1,0-0.1,0-0.1-0.1c0,0,0,0,0-0.1c-0.1,0-0.1,0.1-0.2,0.1c0-0.1,0.1-0.3,0.2-0.3c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.3,0.5,0.6,0.3 c0,0,0.1,0,0.2-0.1c0,0,0,0,0,0c-0.1-0.1-0.3-0.3-0.3-0.4c0-0.1,0-0.4,0.1-0.5c-0.3,0-0.5,0.3-0.8,0.3c0,0-0.1,0-0.1,0 c-0.1,0.5-0.2,0.6-0.2,0.7c0,0.1-0.3,0.3-0.4,0.3c0.1,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0c-0.2,0.2-0.5,0-0.5,0.4c-0.1-0.1,0-0.2-0.1-0.2 c0,0-0.1,0.1-0.1,0.1c0,0,0-0.1,0-0.2c0,0,0,0,0,0c-0.1,0-0.3,0-0.3,0c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0.2-0.2,0.2-0.3,0.3 c0.1-0.1,0.1-0.2,0.1-0.3c0,0.1-0.1,0.1-0.1,0.1c0-0.1,0-0.1-0.1-0.2c0,0,0,0,0,0c0,0.1-0.1,0.2-0.2,0.2c-0.2,0-0.2-0.1-0.2-0.2 c0,0,0,0,0,0c-0.1,0.1,0,0.2-0.1,0.3c0,0,0,0-0.1,0c0,0.1,0,0.2,0.1,0.2c-0.1,0-0.3-0.1-0.2-0.3c0,0,0,0,0,0c0,0-0.1,0-0.1,0 c-0.1-0.1,0-0.2,0.1-0.3c0,0,0,0,0,0c-0.3,0.2-0.3,0.1-0.4-0.1c0,0,0,0,0-0.1c-0.1,0-0.1,0.1-0.1,0.1c-0.1-0.1,0.1-0.3,0.2-0.3 c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1-0.1,0.1,0,0.2,0.1c0.1,0,0.1,0,0.1,0c0,0,0,0,0,0c-0.3-0.1-0.3-0.2-0.2-0.2c0,0,0-0.1,0-0.1 c0-0.1-0.1-0.1-0.2-0.1c0.1-0.1,0.2,0,0.3,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0.1c0.1,0.1,0,0.1,0.1,0.2c0.1,0.1,0.2,0.1,0.3,0.1 c0,0,0.1,0,0.1,0c0.2,0,0.3-0.1,0.3-0.1c0.1-0.1,0.5,0,0.6,0c0,0-0.1-0.1-0.1-0.3c-0.2,0-0.4-0.1-0.4-0.3c-0.4-0.2-0.3-0.6-0.4-0.6 c0,0,0,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1,0-0.1-0.1c0,0,0,0,0,0c-0.2,0.1-0.6-0.1-0.4-0.4 c0,0.3,0.3,0.3,0.3,0c0,0,0,0,0,0c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c-0.1,0-0.1,0.1-0.1,0 c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0.1,0,0.1c-0.1-0.1-0.1-0.2,0-0.2c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0 c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1,0-0.2,0-0.2-0.2l0,0c0,0,0-0.1,0-0.1c0,0-0.1,0-0.1,0c0.1-0.1,0.3,0,0.3,0.1c0,0,0,0,0,0 c0,0,0.1,0,0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1 c0-0.1-0.1-0.1-0.1-0.2c0.1,0,0.2,0.1,0.2,0.2c0,0,0,0.1,0,0.1c0,0.1-0.1,0.3-0.1,0.4c0,0.2,0,0.3,0.2,0.4c0.2,0.1,0.5,0.6,0.7,0.8 c0-0.2,0-0.5,0.1-0.8c0,0-0.1-0.1-0.1-0.1c0.1,0,0.1-0.2,0.2-0.4c0,0-0.1,0-0.1-0.1c0.1,0,0.2-0.2,0.3-0.2c0-0.1,0-0.2,0-0.3 c0.1,0,0.1,0,0.2,0.1c0-0.1,0.1-0.1,0.2-0.1C59.7,60.5,59.8,60.5,59.8,60.5z M52.8,52.7c0.9,0,1.4,0.6,1.4,1.5l0,0.2l0.2,0 c0.2,0,0.5,0.2,0.4,0.5c0,0.3-0.3,0.4-0.5,0.4l-0.2,0l-0.2,7.5l0.2,0l-0.1,0.7c-0.1,0.2-0.3,0.3-0.5,0.3c0.1,1.2-0.9,1.4-1.3,1.4 c-0.5,0-1-0.3-1-0.9c0-0.5,0.4-0.7,0.7-0.7c0.3,0,0.5,0.1,0.4,0.4c-0.1,0.2-0.6,0-0.6,0.3c0,0.2,0.2,0.3,0.4,0.3 c0.4,0,0.6-0.2,0.6-0.6c0-0.7-0.7-0.8-1.4-0.6c-4.3-1.3-6.6-5.5-6.3-8.7c-0.1,0-0.2-0.1-0.3-0.1l0.3-0.7C45.1,54,44.9,54,44.8,54 c-0.3,0-0.5-0.2-0.5-0.5c0-0.3,0.2-0.5,0.5-0.5c0.3,0,0.5,0.2,0.5,0.5c0,0,0,0,0,0.1l0.3-0.6c0.7,0.4,1.8,0.8,2.7,0.8 C50.4,53.8,52,52.7,52.8,52.7z M68.5,61.2c-0.5,0.2-1,0.5-1.2,0.8c-0.2,0.3-0.3,0.7-0.2,1c0.1,0.3,0.3,0.6,0.6,0.8 c0.7,0.5,1.4,0.1,1.8-0.1c0.2-0.1,0.4-0.2,0.5-0.2c0.1,0.1,0,0.4-1.3,0.8l1.2,0.8c0.3-0.1,0.8-0.4,1-0.7c0.2-0.3,0.3-0.6,0.3-0.9 c0-0.1,0-0.2,0-0.2c-0.1-0.3-0.3-0.6-0.6-0.8c-0.6-0.4-1.2-0.1-1.7,0.1c-0.2,0.1-0.6,0.3-0.7,0.2c0,0,0,0,0,0c0,0,0-0.1,0.1-0.2 c0.1-0.2,0.6-0.5,1.2-0.6l0.2,0L68.5,61.2z M43.7,60.6L40.2,63l0.7,1c0,0,1.1-0.8,1.3-0.9c0,0,0.1,0.2,0.3,0.4l0.2,0.3 c0.1,0.2,0.2,0.3,0.3,0.4c-0.1,0-0.3,0.2-0.5,0.4l-0.2,0.2c-0.3,0.2-0.5,0.4-0.5,0.4l0.7,1l3.5-2.5l-0.7-1c0,0-0.2,0.2-0.5,0.4 l-0.2,0.2c-0.2,0.2-0.5,0.3-0.5,0.4c0,0-0.1-0.2-0.3-0.4l-0.2-0.3c-0.1-0.2-0.2-0.3-0.3-0.4c0.1-0.1,1.3-0.9,1.3-0.9L43.7,60.6z M66.3,63.5l-2,2l0.9,0.8l1.1-1.1l0.3,0.2l-1,1l0.9,0.8l1-1l0.2,0.2l-1.1,1.1l0.9,0.9l1.9-2L66.3,63.5z M94.1,66.6 c-0.3,0-0.5,0.2-0.7,0.3c-0.3,0.3-0.5,0.7-0.5,1.2c0,0.5,0.2,1,0.4,1.2c0.1,0.1,0.4,0.3,0.7,0.3l0.1,0c0.2,0,0.4-0.2,0.5-0.3 c0.3-0.3,0.5-0.7,0.5-1.2C95.2,67.3,94.7,66.6,94.1,66.6z M58.5,18.3c-0.9,0.6-1.7,1.6-1.9,2.5c0.7-0.1,1.7-0.6,2.3-1.4 c-0.2,1.4-0.2,2.3,0,3.6c-0.5-0.7-1.6-1.3-2.4-1.4c0.2,2.2,2.2,2.5,3.3,2.5c1.2,0,2.2-0.4,2.3-1.2c0.1-0.7-0.4-1-0.7-1 c-0.4,0-0.8,0.4-0.9,1.2c-0.4-0.6-0.8-2.8,0.4-2.9c0.9-0.1,1.4,1.1,1.6,2.3c0.3-1,1.2-2.3,2.1-2c1.2,0.3,0.4,2.6-0.4,3 c0.2-0.4,0.1-1.3-0.4-1.3c-0.6-0.1-0.9,0.5-0.9,0.9c0,0.7,0.9,1.2,1.8,1.5c1.7,0.4,2.9-0.5,3.3-1.1c-0.8-0.3-1.4-0.2-2.2,0.2 c0.4-0.8,0.8-2.1,1-2.9c0.2,0.9,0.8,1.5,1.5,2c0.2-0.7,0.1-1.9-0.6-3l2.7,1.1c-1.3,1.4-2.7,4.6-3.6,7.2c0.5,0.5,0.8,1,0.8,1.8 c0,1.2-0.8,2-1.6,2.5c1.5,1,2.8,2.1,4,3.5c1,1.1,1.9,2.3,2.6,3.6c-0.1,0.1-0.2,0.3-0.4,0.5c-0.1,0.2-0.2,0.3-0.3,0.4l-0.2-0.3 L68,41.8l1.3,2.6l1.1-0.5c0,0-0.6-1.3-0.7-1.4l1.6-0.8c0,0.4,0.1,0.8,0.4,1.2c0.3,0.5,0.7,1.2,1.1,2c-0.2,0.3-0.7,0.9-1,1.2 c-0.1,0.1-0.1,0.2-0.2,0.2l-1.8,0.5l0.3,1.2l1.8-0.5c0,0,0.3,0.1,0.3,0.1c0.5,0.2,1.8,0.6,2.3,0.8c0.3,0.7,0.8,1.1,1.2,1.4 c0,0.5,0,1.1,0,1.6c0,3-0.5,5.9-1.5,8.7c-1,2.7-2.4,5.1-4.2,7.1c-0.9,1-1.8,1.9-2.8,2.7c-0.3,0.2-1.4,0.4-6-0.7 c-0.6-0.1-0.7-0.3-1.3-0.4c0.1-0.6,0.2-1,0.4-1.4c0.2-0.5,0.5-1.1,0.9-1.3c1.6-0.8,3-1.9,4.3-3.4c1.2-1.4,2.2-3.1,2.9-5 c0.7-1.8,1-3.8,1.1-5.8H56.6v14.4c0.3,0,0.6,0,1,0.1l0.4,0c0.9,0.1,1.7,0.2,1.7,0.2c-0.5,0.6-0.7,1-0.9,2c-1.5-0.5-3-1-4.5-1.6 c0.5-0.5,1-0.6,1.6-0.6V51.9H42.6c0,0.4,0,0.9,0.1,1.3c-0.8-1.5,0.1-1.4-0.8-2.6c-0.6-0.8-0.9-1.3-0.9-2.5c0-0.6-0.4-1.4-1-2.2 c0.3-0.1,0.7-0.3,0.9-0.5c0.2-0.2,0.5-0.4,0.6-0.3c0,0,0,0.1,0,0.2c-0.1,0.2-0.6,0.7-1.1,1l1.2,0.5c0.4-0.3,0.8-0.7,1-1.1 c0.1-0.4,0.1-0.7,0-1.1c-0.1-0.3-0.4-0.6-0.7-0.7c-0.8-0.3-1.4,0.2-1.8,0.5c-0.1,0.1-0.4,0.3-0.5,0.3c-0.1-0.1,0.5-0.7,1.1-1.1 l-1.3-0.5c-0.3,0.2-0.7,0.6-0.8,0.9c0,0,0,0.1,0,0.1c-0.3-0.3-0.6-0.6-0.9-0.9c0-0.1,0.1-0.3,0.1-0.4c1-2.7,2.4-5,4.2-7.1 c1.2-1.4,2.5-2.5,4-3.5c-0.8-0.5-1.6-1.2-1.6-2.5c0-0.7,0.3-1.3,0.8-1.7c-0.8-2.7-2.3-5.9-3.6-7.3l2.6-1.1c-0.7,1.1-0.7,2.3-0.6,3 c0.7-0.5,1.3-1.1,1.5-2c0.1,0.8,0.6,2.1,1,2.9c-0.8-0.4-1.4-0.5-2.2-0.2c0.5,0.6,1.6,1.5,3.3,1.1c0.9-0.2,1.9-0.7,1.8-1.5 c0-0.4-0.3-1-0.9-0.9c-0.6,0.1-0.6,0.9-0.4,1.3c-0.8-0.4-1.5-2.7-0.4-3c0.9-0.3,1.8,1,2.1,2c0.2-1.2,0.7-2.3,1.6-2.3 c1.2,0.1,0.8,2.3,0.4,2.9c-0.1-0.8-0.5-1.2-0.9-1.2c-0.3,0-0.8,0.3-0.7,1c0.1,0.7,1.1,1.2,2.3,1.2c1.1,0,3.1-0.4,3.3-2.5 c-0.7,0.1-1.8,0.7-2.3,1.4c0.2-1.3,0.2-2.2,0-3.6c0.6,0.8,1.6,1.3,2.3,1.4c-0.2-0.9-1-1.9-1.9-2.5H58.5z M94.1,65.9 c0.5,0,1,0.3,1.3,0.7c0.3,0.4,0.5,1,0.5,1.6c0,0.7-0.3,1.3-0.7,1.7c-0.3,0.3-0.8,0.5-1.2,0.5c-0.4,0-0.9-0.2-1.2-0.5 c-0.4-0.4-0.6-1.1-0.6-1.7v-0.1c0-0.7,0.3-1.3,0.7-1.7C93.2,66,93.7,65.9,94.1,65.9z M110.1,66.4c-1.2,0-2.2,1-2.2,2.2 c0,1.2,1,2.2,2.2,2.2c1.2,0,2.2-1,2.2-2.2C112.2,67.3,111.3,66.4,110.1,66.4z M110.1,65.6c1.6,0,2.9,1.3,2.9,2.9 c0,1.6-1.3,2.9-2.9,2.9c-1.6,0-2.9-1.3-2.9-2.9C107.2,66.9,108.5,65.6,110.1,65.6z M52.2,69c-0.7,0-1.3,0.6-1.3,1.3 c0,0.7,0.6,1.3,1.3,1.3c0.7,0,1.3-0.6,1.3-1.3C53.5,69.6,52.9,69,52.2,69z M48.8,64.5c-1.1,0-2.4,1.3-2.7,1.6L46,66.2l-0.2,0 c-0.3-0.1-0.6-0.1-0.9-0.2c0.1,0.3,0.2,0.5,0.4,0.8l0.1,0.1l-0.1,0.1c-0.6,0.9-0.9,1.8-0.9,2.5c0,0.5,0.5,1.4,1.3,1.8 c0.5,0.3,1.1,0.2,1.6-0.1c-0.3-0.2-0.7-0.4-0.9-0.6l-0.1-0.1c-0.2-0.1-0.5-0.3-0.6-0.6c0-0.1,0-0.1,0-0.2c0-0.3,0.1-0.6,0.4-1.1 c0.1-0.1,0.1-0.2,0.2-0.2c0-0.1,0.1-0.1,0.1-0.2l0.1-0.2l0.2,0.1c0.4,0.3,0.9,0.4,1.2,0.3c0.1,0,0.2-0.1,0.3-0.2 c0.2-0.3,0.1-0.8-0.5-1.3l-0.2-0.2l0.3-0.4c0.2-0.2,0.4-0.5,0.7-0.7c0.5-0.4,1-0.4,1.6,0l0.3,0.2c0.2,0.1,0.4,0.3,0.5,0.4 c-0.1-0.4-0.2-0.8-0.5-1.1C49.9,64.7,49.4,64.5,48.8,64.5z M106.1,70.7c-0.4-0.1-0.9,0-1.3,0.3c-0.4,0.3-0.7,0.7-0.8,1.1 c0,0.2,0,0.5,0.1,0.7c0.3,0.5,1.2,0.6,1.9,0.1c0.4-0.3,0.7-0.7,0.8-1.1c0-0.2,0-0.5-0.1-0.7C106.5,70.8,106.3,70.7,106.1,70.7z M57.7,71c-0.6,0-1.2,0.5-1.2,1.2c0,0.6,0.5,1.2,1.2,1.2c0.6,0,1.1-0.5,1.1-1.2C58.9,71.5,58.4,71,57.7,71z M98,71.6 c-0.5-0.1-0.9,0-1.3,0.2c-0.2,0.1-0.4,0.3-0.4,0.6c-0.1,0.6,0.5,1.2,1.3,1.4c0.8,0.1,1.6-0.2,1.7-0.8c0,0,0-0.1,0-0.1 C99.3,72.3,98.8,71.7,98,71.6z M96.3,71.2c0.5-0.3,1.2-0.5,1.8-0.4c1.2,0.2,2.1,1.2,1.9,2.2c-0.1,0.5-0.4,0.9-0.9,1.2 c-0.5,0.3-1.1,0.3-1.6,0.2c-0.6-0.1-1.1-0.4-1.5-0.8c-0.4-0.4-0.5-0.9-0.4-1.5C95.7,71.9,95.9,71.5,96.3,71.2z M42.9,54.3 c0.2,1.1,0.5,2.3,0.8,3.3c0.7,1.9,1.7,3.6,2.9,5c0.4,0.5,0.9,1,1.4,1.4c0.3-0.1,0.6-0.2,0.9-0.2c0.7,0,1.4,0.3,1.9,0.9 c0.5,0.6,0.8,1.3,0.7,2l0,0c3.3,1.5,6.8,2.8,9.7,3.5c1.8,0.5,4,0.9,5.5,0.7c-0.1,0.1-0.1,0.1-0.2,0.2c-0.5,0.5-1.2,1-2,1.5 c-1.9,1.2-3.8,1.9-5.2,1.9c-1.7,0-3.8-0.3-6-1c-2-0.5-3.8-1.3-5.2-2c-0.8,0.6-1.6,0.7-2.4,0.3c-1-0.5-1.6-1.6-1.6-2.3 c0-0.1,0-0.3,0-0.4c-0.7-0.6-1.3-1.2-1.9-1.9c-1.8-2.1-3.2-4.5-4.2-7.1c-0.5-1.2-0.8-2.5-1.1-3.8c1.7,0.6,2.3,0.1,2.8-0.5 c0.2,0,0.2,0.3,0.2,0.5C41.6,56.4,42.7,55.3,42.9,54.3z M75.5,73.8c0.3,0.1,0.3,0.1,0.3,0.1c1,0.3,1.2,0.8,0.9,1.4 c-0.3,0.8-0.9,1-1.7,0.7c0,0-0.2,0-0.3-0.1C74.8,75.9,75.4,74,75.5,73.8z M80.4,75.9c0,0,0.3,0.2,0.4,0.2c0.1,0.1,0.2,0.2,0.2,0.3 c0,0,0,0.1,0,0.1c0,0.1-0.1,0.1-0.2,0.1c-0.1,0-0.2,0-0.3-0.1c0,0-0.2-0.1-0.3-0.2c0-0.1,0.1-0.2,0.2-0.3L80.4,75.9 C80.4,75.9,80.4,75.9,80.4,75.9z M74.6,72.3L73,76.8l1.6,0.4c1.3,0.3,2.7,0.2,3.4-1.6c0.6-1.6-0.4-2.6-1.6-2.9L74.6,72.3z M35.4,72.9L34,73.3l1.2,2.7c0.2,0.5,0.2,0.7-0.4,1c-0.5,0.2-0.8,0.1-1-0.5c0,0-1.1-2.6-1.1-2.6l-1.2,0.6l1.1,2.5 c0.5,1,1.3,1.6,2.7,1c1.5-0.6,1.6-1.6,1.1-2.7L35.4,72.9z M79.8,74.1l-2.4,4.1l1.2,0.6c0,0,0.7-1.3,0.9-1.5c0.2,0.1,0.2,0.3,0.2,0.8 l0.1,1.4c0.1,0.1,1.2,0.8,1.5,0.9c0,0-0.1-1.1-0.2-2.1c0-0.3,0-0.5-0.1-0.7c0.1,0,0.2,0,0.4,0c0.3-0.1,0.6-0.3,0.7-0.6 c0.3-0.5,0.3-0.9,0-1.3c-0.2-0.3-0.5-0.6-0.7-0.7L81.3,75C80.9,74.7,80.1,74.3,79.8,74.1z M83.9,78.7c0.3-0.1,0.6,0,0.9,0.2 c0.3,0.2,0.5,0.4,0.6,0.7c0.1,0.3,0,0.6-0.1,0.8c-0.2,0.3-0.4,0.5-0.7,0.5c-0.3,0.1-0.6,0-0.9-0.1c-0.3-0.2-0.5-0.4-0.6-0.7 c-0.1-0.3,0-0.6,0.1-0.8C83.4,78.9,83.6,78.7,83.9,78.7z M32.5,12.4c0.5,1.1,0.6,2.1,0.1,3.6c1.3,0.1,2,1.2,3.3,0.9 c-0.8,1-1.6,1-2.5,0.9l-0.3-0.1c-0.2,0-0.5-0.1-0.7-0.1c3.5,1.1,4.2,4.6,6.1,4.8c-2.1,1.6-3.5-1.3-5.3-1.2c4.7,2.4,4.7,5.2,6,5.3 c-1.5,1.3-2.6-0.4-4.5-0.9c3.7,2.5,4,4.5,3.7,6.1c0.8,0.8,1.1,1.9,1.1,3.1c0.8-0.5,1.6-0.9,2.5-1.1c-0.4,0.3-0.7,0.7-1,1.1 c-1.9,2.1-3.4,4.6-4.4,7.3c-0.8-0.8-2-1.9-2.4-2.4c-0.8-0.7-1.1-0.8-1.4-0.7c0.5,0.6,1.6,1.8,2.7,3l0.6,0.6c1.2,1.4,2.4,2.7,3,3.3 c1.2,1.4,1.1,2.4,1.2,3.4c0.2,1,1.2,1.8,1.1,2.5c-0.1,0.9,0.6,1.4,0.6,2.1c0,0.9-0.8,1.3-1.6,1.5c0.6-1.2,0.1-1.9-0.9-2.1 c0.2,2.3-1.6,2.7-2.3,2.3c0.7-0.1,1-1.2,0.6-2.2c-0.3,0.8-1.1,1.4-1.9,1.4c-0.7,0-1.3-0.5-1.5-1.1c0.8,0.6,1.5-0.1,1.5-0.5 c0-0.4-0.8-0.7-0.8-1.3c0-1.6,1.7-1.2,1.7-2.6c0-0.6-0.3-0.8-0.7-0.8c-0.4,0-0.9,0.2-1.1,1.1c-0.9-0.8,0-2.5-0.4-3.6 c0.1,1.8-1.2,1.7-1.6,2.4c-0.6-0.6,0.2-1.8-0.4-3.3c-0.2,1.7-0.8,1.4-1,2.4c-1.7-0.8-4.7-0.6-5.7,0.6c2.9,2.2,6.3,3.4,6.3,6.9 c0,2.7-4.1,3.7-4.1,5.4c0,1.7,4.3,5.7,6.5,5.7c0.7,0,1-0.9,1.6-0.9c0.6,0,1.1,0,1.6,0c0.5,0,1,0.5,0.9,1c1,0.1,2.3,1.7,1,2.9 c-0.2-0.7-0.9-1.7-2.2-1c0.5,1.2,0.1,2.3-1.4,2.7c0.5-0.7,0.5-1.7-0.3-1.7c-0.9,0-0.1,0.6-1.8,0.6c-1.6,0-1.5,0.1-2.1-0.9 c-0.7-0.9-1.1-1.3-1.5-1.2c-0.4,0.1-0.5,1.1,0.1,1.4c-3.5,0-2-3.6-3.8-4.5c0.1,1.1,0.1,2,0,2.5c-1.3-1-2.1-2.4-2.3-3.3 c-0.2-0.9-0.1-1.7-0.9-2.1c-0.3-0.1-0.6-0.4-0.5-0.9c0.1-0.4,0.3-0.3,0.9-0.5c0.7-0.3,1.7-1.1,1.7-2.9c0-1.4-0.3-3.3-2.6-4.7 c0.2,3,0.1,5.5-1.2,7.8c-1.7,2.9-4.6,4.7-6.3,5.4c-0.3,0.1-0.7,0.3-1,0.4l-0.3,0.1c-1.3,0.6-2.6,1.3-2.6,2.9c0,4.1,1.8,6.5,3.6,6.5 c1.2,0,0.9-1.3,2.6-1.3c0.7,0,1.6,0.3,1.7,0.8c0.9-0.2,1.9,0.4,1.9,1.2c0,0.9-0.4,1.4-1.1,1.5c0.6-1.1-0.8-1.4-1.3-1.2 c-0.4,0.3,0.1,0.7,0.1,1.4c0,0.7-0.2,1.3-1.4,1.7c0.3-0.4,0.3-1-0.5-1c-0.7,0-1,1.2-1.9,1.2c-1.5,0-1.9-0.7-3.4-0.4 c-1,0.2-1,0.8-0.6,1.1c-2.1,0.1-1.7-2.1-1.2-2.6c0.5-0.5,0.7-0.8,0.1-1.2c-0.6-0.4-1.6,0-1.8,1c-1.6-3,0.6-2.9-0.1-6.3 c-0.4,1.4-1.2,2.5-1.9,2.9c0.3-0.8-0.4-2.2-0.4-3.4c0-2.6,1.6-3.4,1.6-4.3c0-0.6-0.6-1.1,0-1.7c0.4-0.3,1.1,0.3,1.6,0.3 c2.1,0,3.6-2.7,3.9-5.6c0.4-3.5,1.8-6,3.2-8.6c0.1-0.4,0.1-0.8,0.2-1.3c-1.4,1.8-2.7,4.6-4.7,6.2c0.2,2.3-4.2,4.9-6.7,2.9 c0.8,0.1,2.4-0.3,2.9-1.6c-0.4,0-0.7-0.1-1.1-0.2c-1.5,0.9-4-0.2-3.9-1.9c0.6,0.7,1.4,0.9,2.1,0.6C4.3,55.4,4,54.4,4,53.3 c0-6.6,10.3-11.2,10.3-16.6c0-1.7-1.1-2.6-2.2-2.6c-0.6,0-1.3,0.2-2.1,0.6c0.5,0.5,0.8,1,0.8,1.7C10.8,42.6,1,42,0.2,46 c-0.2-2.7,1.3-3.6,2.9-4.6l0.4-0.2c1.4-0.8,2.7-1.6,2.9-3.5c-1.3,1.8-3.5,3.2-4.7,2.5c3.2,0.1,2.2-6.5,5.9-6.5 c0.4,0,0.8,0.1,1.2,0.3c1-0.8,2.2-1.3,3.2-1.3c1.5,0,3.8,1.1,3.8,4c0,6.4-10.3,10.6-10.3,16.6c0,2,1.2,3,2.8,3 c3.6,0,5.9-6.5,9.8-11.8c2.1-3.1,3.7-9.6,5.1-13.4c-1.4,1.6-1.8,4.5-3.8,4.7c1.2-1,0.4-4.2,1.1-6.6c0.3-0.9,0.4-1.7,0.2-2.6 c-0.6,0.6-0.8,1.8-1,3l-0.1,0.5c-0.3,1.7-0.7,3.3-1.9,3.6c0.8-1-0.1-2.7-0.1-4.2c0-2.9,1.5-3.3,1.6-6c-1.4,0.5-0.9,4.3-3.6,4.2 c1.9-1.9-0.1-3.9,2.1-6.1c-1.3-0.6-2.2-1.6-2.2-2.6c0.8-0.7,1.8-0.9,2.7-1c-0.4-0.6,0.1-1.3,0.7-1.8c0.2,0.2,0.5,0.8,0.8,0.6 c0.5-0.4,2.4-1.5,4-2.2c1.6-0.6,3.7-1.2,4.4-1.3c0.4-0.1,0.2-0.6,0.2-1c0.8-0.1,1.7,0,1.8,0.8C30.7,12.8,31.6,12.5,32.5,12.4z M79.2,3.4c0.1-0.1,0.3,0,0.6,0.3l11.4,11.2c0.3-0.8,0.5-1.7,0.2-2.7c1.4,0.7,2.6,2,2.8,3.3c3.5-0.1,4.4,2.1,5.5,1.4 c0.2,0.5-0.4,1.1-1.4,1.3c4,1,3,4,5.3,4.3c-0.4,0.4-0.9,0.6-1.7,0.3c2.5,3.7,0,6.1,1.9,7.8c-0.7,0.2-1.8-0.4-2.5-1.6 c0.8,3.1-0.4,4.7,0.2,6c-0.9,0.2-1.5-0.5-1.8-1.7c-0.2,0.7-0.4,1.3-0.6,1.8l0.9,0.8l-0.4,0.4l0,0l-0.1,0.1c-1.5,1.6-2.2,2.4-2.6,2.8 l-0.3,0.3c0,0-0.3-0.2-0.3-0.2c-1,1.2-1.8,2.3-1.8,3.4c0,1.3,1.7,3.7,3.6,6.2c-0.1-0.3-0.1-0.5-0.1-0.8c0,0,0,0,0-0.1 c0-0.5,0.2-0.9,0.5-1.2c0.3-0.3,0.7-0.5,1.2-0.4c0.6,0,1.2,0.3,1.7,0.8c0.5,0.5,0.7,1.1,0.7,1.7c0,0,0,0,0,0.1 c0,0.5-0.2,0.9-0.5,1.2c-0.3,0.3-0.7,0.5-1.2,0.4c-0.4,0-0.9-0.2-1.3-0.5c1.3,1.8,2.6,3.4,3.2,4.7c1.2,2.6,2.4,4.2,3.9,4.2 c1.6,0,3.1-1.2,3.1-3.1c0-6.6-8.7-7.3-8.7-14.8c0-3.5,3-5.2,4.8-5.2c1.2,0,2,0.3,2.7,1.1c0.2-0.1,0.4-0.1,0.7-0.1 c4.1,0,1.5,5.5,4.7,5.9c-1.4,0.7-3.3-0.3-4.3-2.9l0,0l0,0.3c0.4,4.6,6.2,3.7,5.6,7.1l0,0.2c-0.1-2.5-8.5-2.2-8.7-7.4 c0-1.1,0.3-1.9,0.8-2.5c-0.4-0.3-0.8-0.4-1.3-0.4c-1.5,0-3.6,1.6-3.6,4c0,3.2,2.1,5,4.2,6.9l0.5,0.4c2,1.8,4,3.8,4,7.2 c0,1.5-0.6,2.8-1.6,3.7c0.7,0.1,1.8-0.3,2.3-0.9c-0.7,2.8-3.6,2.8-4.5,1.7c-0.1,0-0.3,0-0.4,0c-0.2,0-0.5,0-0.7-0.1 c0.6,1.1,1.4,2.2,2.7,2.1c-2.5,2-5.6-0.7-5.2-3.5c-0.8-0.8-1.3-1.9-1.6-2.7c-0.3-0.6-0.7-0.3-0.7,0.4c0.1,2.2-1.7,4.4-1.7,6 c0,1.6,1.7,3.2,2.2,3.2c0.6,0,1-0.6,1.4-0.5c0.3,0.2,0.3,0.6,0.3,1.4l0,0.4c-0.1,0.8,0.1,2.7,0.2,4.8c0.2-0.5,0.5-1.1,1.1-1.4 c0.6-0.4,1.2-0.5,1.8-0.4c0.5,0.1,0.8,0.3,1.1,0.7c0.2,0.3,0.3,0.6,0.3,0.9c0,0.1,0,0.2,0,0.4c-0.1,0.6-0.5,1.2-1.1,1.5 c-0.5,0.3-1.1,0.5-1.6,0.4c-0.6,0-1-0.3-1.3-0.7c0-0.1-0.1-0.2-0.1-0.2c0,0.6,0.1,1.3,0.1,1.8c0,1.5-0.4,2.2-1,2.5 c0-0.2-0.5-0.7-1.1-0.7c-0.4,0-0.8,0.3-0.8,0.7c0,0.7,0.8,0.6,0.8,1.6c0,1-2.4,2.4-3.8,2.1c0.2-0.5,0.5-2.2,1-3.3 c-0.4,0.3-0.9,1-1.2,2c-0.4,1.3-1,1.2-1.5,0.9c0.5-0.5,1.6-3.1,2.8-3.9c1.2-0.8,1.7-1.1,2-3.1c0.3-1.9,0-3.1-0.1-4.8 c-0.1-2.3-1-1.8-1.7-1.8c-1.5,0-7.3-3.7-7.3-7.5c0-0.4,0-0.8,0.1-1.2c-2.6-0.1-4.1,0.7-4.1,3.1c0,0.8,0.1,1.6,0.7,2.1 c0.5,0.5,0.8,0.9-0.1,1.3c-0.5,0.2-2.4,1-4.4,1.8l-0.5,0.2c-2.1,0.9-4.1,1.7-4.1,1.7c-1,0.4-1.2,0-1.6-0.5c-0.4-0.5-0.9-0.7-1.4-0.4 c-0.5,0.4,0.4,0.7,0.4,1.3c0,0.6-0.2,1.9-3.9,1.7l0.9-1.5c0.2-0.5,0.4-0.8,0.2-0.9c-0.2,0-0.3,0.2-0.5,0.5L73,69l-0.1,0.1l-1.1,1.4 c-0.5,0-1-0.1-1.1-0.1l0,0c1.4-1.4,2.2-2.1,2.9-2.9c0.8-0.8,1.7-1.1,3.3-1.4c1.9-0.3,8.2-1.1,8.2-3.2c0-2.3-2.6-2.2-2.6-5.3 c0-2.7,1.2-5.7,8.6-5.5c-0.6-1.8-2.5-3.1-4.3-3.5c-3.7-0.9-4.8-3.5-5.1-6.2c-1-0.1-2.1-0.1-2.9-0.2c-2.3-0.1-3.5-0.8-4-0.4 c-0.2,0.2-0.4,0.5-0.1,1.1c0.3,0.6,1.1,1.9,1.7,2.9c0.5,0.1,1.2,0.1,1.3,0.7c0.1,0.6-0.4,0.7-0.5,1c-0.1,0.3,0.1,0.5,0.4,0.5 c0.3,0,0.5-0.3,0.4-0.5c0.3-0.2,1.1-0.2,1.9,0c0.6,0.6,1.5,1.7,1.8,2.7c-0.9-0.4-2.2-0.8-2.6-0.8c-0.5,0-0.4,0.2,0,0.3 c0.4,0.1,1.4,0.5,1.7,0.8l-0.1,1c-0.2-0.2-2-1.3-3.1-1.7c-1.1-0.4-1.7-0.6-2.3-2c-0.6-1.3-2.2-4.3-2.9-5.5c-0.5-0.8-0.3-1.1-0.1-1.4 c0.2-0.3,0.4-0.6,0.6-0.8c0.4-0.7,0.6-0.5,1.2-0.5c0.7,0.1,2.1,0.1,2.8-0.2c0.1-0.1,0.3-0.1,0.5-0.2c-1.5-1.7-3.4-4.1-3.6-4.4 c-0.3-0.4-0.7-0.6-1-0.6s-0.6,0-0.8,0.2c-0.2,0.1-0.4,0.3-0.7,0.6c-0.1-0.1-0.2-0.2-0.3-0.3c-0.3-0.4-0.7-0.7-1-1.1 c0.7-0.6,1.4-1.1,1.7-1.3c0.4-0.3,0.6-0.6,0.9-0.6c0.3,0,0.8,0,1,0c0.5,0,0.7,0.1,1,0.4c0.6,0.6,1.5,1.3,2.2,1.9 c0.1,0.1,0.2,0.1,0.2,0.2c0.1-0.1,0.1-0.1,0.2-0.2c0.3-0.3,0.7-0.4,1.1-0.4c0.4,0,0.8,0.2,1,0.5c0.4,0.4,0.6,1,0.5,1.6 c0,0.2-0.1,0.4-0.1,0.6c0.6,0.5,1.1,1,1.6,1.5c0.2-2.1,1.3-4.1,2.7-5.9L84,32.1c0,0,0.1-0.4,0.1-0.4c0.3-0.9,0.8-2.6,1-3.3 c0.1-0.3,0.1-0.4,0.1-0.4l0.2-0.5l2.3,0.9c0.1-0.1,0.1-0.1,0.2-0.2c2-1.9,6.8-3.2,6.8-5.9c0-0.7-0.2-1.5-0.9-2.1 c0.3,0.4,0.4,1,0.3,1.6C94,22.4,92.9,24,91,24c-1,0-1.8-1-2.2-1c-0.2,0-0.5,0.2-0.8,0.4c0.1,1.4-0.5,2.2-1.1,2.3 c0.2-0.6,0-1.6-0.1-1.5c-0.2,0.1-0.4,0.3-0.4,1.1c0,0.8-0.7,1.9-1.8,2c0.2-0.3,0.6-1.7,0.3-1.9c-0.2-0.2-0.6,0.4-0.9,0.4 s-0.5-0.3-0.6-0.6c0-0.3-0.6,0-0.7-0.3c-0.1-0.3,0.7-0.8,1.4-1.1c0.7-0.3,1.8-0.8,1.6-1.1c-0.3-0.7-2.4,0.4-3.3,1 c-1.4,0.8-0.8-0.3-1-0.8c-0.5-1.2-0.1-1.4,0.5-1.9c0.8-0.7,2.4-1.8,4.2-2.7c0-0.6,0.4-1.1,0.8-1.3c0.8-0.3,1.5-0.6,2.2-0.8L79.4,4 C79.2,3.7,79.1,3.5,79.2,3.4z M30,75.5l-2.6,1.7l2.5,4l2.7-1.7l-0.7-1.1l-1.6,1c-0.1-0.1-0.2-0.3-0.3-0.4l1.5-1L30.9,77l-1.5,1 c-0.1-0.1-0.2-0.3-0.2-0.4l1.5-1L30,75.5z M85.5,77.7c-0.6-0.3-1.3-0.5-1.9-0.3c-0.7,0.1-1.2,0.5-1.5,1.1c-0.4,0.6-0.4,1.2-0.3,1.8 c0.2,0.6,0.6,1.1,1.2,1.5c0.6,0.4,1.3,0.5,1.9,0.3c0.7-0.1,1.2-0.5,1.6-1.1c0.2-0.4,0.4-0.8,0.4-1.2c0-0.2,0-0.4-0.1-0.6 C86.5,78.6,86.1,78.1,85.5,77.7z M25.9,78.2L24.8,79l2.5,4l1.1-0.7L25.9,78.2z M21.9,82.2c0.6-0.3,1.2-0.5,1.7,0.3 c0.3,0.4,0.4,1-0.6,1.5c0,0-0.2,0.1-0.3,0.2c-0.1-0.2-1-1.7-1.1-1.8C21.8,82.3,21.9,82.2,21.9,82.2z M88.2,79.5l-2.5,4.1l1.2,0.7 l2.5-4.1L88.2,79.5z M56.1,76.9c-0.9,0.7-1.7,1.5-1.7,2.4c0,0.9,1.1,1.5,1.1,2.1c0,0.3-0.2,0.5-0.6,0.5c-0.8,0-0.4-2.2-2-2.2 c-0.9,0-1.4,0.8-1.4,1.4c0,0.3,0.1,0.8,0.4,1.2c0.2-0.4,0.5-0.6,0.8-0.6c1.2,0,0.7,3.2,2.2,3.2c0.6,0,1-0.4,1-0.9 c0-0.4-0.3-0.6-0.3-0.9c0-0.4,0.3-0.5,0.6-0.5c0.3,0,0.6,0.1,0.6,0.5c0,0.4-0.3,0.5-0.3,0.9c0,0.5,0.3,0.9,1,0.9 c1.4,0,1-3.2,2.2-3.2c0.3,0,0.6,0.2,0.8,0.6c0.2-0.5,0.4-0.9,0.4-1.2c0-0.6-0.4-1.4-1.4-1.4c-1.6,0-1.2,2.2-2,2.2 c-0.3,0-0.6-0.2-0.6-0.5c0-0.6,1.1-1.2,1.1-2.1C57.8,78.4,57,77.6,56.1,76.9z M70.8,77.8c-1.7,0.3-4,1.1-4,2.6 c0,1.8,5.8,2.5,5.2,4.9c1.8-0.9,2.9-2.1,2.9-3.2c0-1.1-1-1.9-2-2.6l-0.4-0.3C71.9,78.7,71.2,78.3,70.8,77.8z M41.3,77.8 c-0.4,0.5-1,1-1.7,1.5l-0.4,0.3c-1,0.8-2,1.6-2,2.6c0,1.1,1,2.3,2.9,3.2c-0.5-2.4,5.3-3.2,5.3-4.9C45.4,78.9,43.1,78.1,41.3,77.8z M89.8,80.5l-0.6,1.1c0.3,0.2,0.8,0.5,1.2,0.7c-0.5,0.7-1.8,2.9-1.8,2.9l1.2,0.5c0,0,0,0,0-0.1l0.1-0.2c0.2-0.4,0.6-1,0.9-1.5 l0.2-0.4c0.2-0.2,0.3-0.5,0.4-0.6c0.5,0.2,1.1,0.5,1.4,0.7l0.6-1.1C92.8,82.2,90.8,81.2,89.8,80.5z M22.7,80.7 c-0.4,0-0.9,0.1-1.4,0.4l-1.5,0.8l2.4,4l1.4-0.8c1.7-0.9,1.7-2.3,1.1-3.3c-0.2-0.4-0.5-0.7-0.9-0.9C23.5,80.8,23.1,80.7,22.7,80.7z M56.1,85.3c-0.4,0-0.8,0.4-0.8,0.8c0,0.4,0.4,0.8,0.8,0.8c0.4,0,0.8-0.4,0.8-0.8C56.9,85.6,56.5,85.3,56.1,85.3z M53.5,74.9 c1.8,0.5,3.6,0.8,5.2,0.8v3.4c0.2-0.1,0.4-0.1,0.6-0.1c1.2,0,2,1,2,2c0,0.9-0.5,1.8-1,2.3c-0.3-0.6-0.5-1-0.8-1 c-0.6,0-0.3,3.1-2.1,3.2c0.1,0.2,0.1,0.3,0.1,0.5c0,0.8-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4c0-0.2,0-0.3,0.1-0.5 c-1.8-0.1-1.5-3.2-2.1-3.2c-0.3,0-0.5,0.4-0.7,1c-0.5-0.5-1-1.4-1-2.3c0-1,0.8-2,2-2c0.2,0,0.4,0,0.6,0.1V74.9z M61.4,90.3 c0.4,0,0.6,0.1,0.9,0.3c0.2,0.2,0.4,0.5,0.4,0.8c0,0.3-0.1,0.6-0.4,0.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.4,0-0.7-0.1-0.9-0.3 c-0.2-0.2-0.3-0.5-0.3-0.8c0-0.4,0.1-0.6,0.3-0.9C60.7,90.4,61,90.3,61.4,90.3z M42.9,87.5l0.3,4.9c0.8,0.3,2,0.7,3.1,1l-0.1-1.3 c-0.6-0.1-1.3-0.3-1.8-0.5c0-0.1,0-0.5,0-0.5c0.3,0.1,1.6,0.4,1.6,0.4l0-1.3l-0.1,0c-0.3-0.1-1.4-0.4-1.6-0.4c0-0.1,0-0.4,0-0.4 c0.6,0.2,1.4,0.3,1.8,0.4l0-1.3C45.2,88.1,43.6,87.7,42.9,87.5z M69.3,87.5l-1.3,0.4c0,0-0.1,2.1-0.1,2.6l-2.1-2.1l-1,0.2l-0.3,5.1 l1.3-0.3c0,0,0-0.6,0.1-1.2l0-0.3c0-0.5,0.1-0.9,0.1-1.1c0.4,0.4,2,2.1,2,2.1l1-0.4L69.3,87.5z M46.5,88.3v1.3 c0.4,0.1,1,0.2,1.4,0.2v3.7l1.4,0.2v-3.7c0.4,0,1,0.1,1.4,0.2v-1.3C49.3,88.8,47.7,88.5,46.5,88.3z M61.6,88.9l-0.2,0 c-0.8,0-1.4,0.3-1.9,0.8c-0.5,0.5-0.8,1.1-0.8,1.8c0,0.7,0.3,1.3,0.8,1.8c0.5,0.5,1.1,0.7,1.9,0.7c0.8,0,1.4-0.3,1.9-0.8 c0.5-0.5,0.8-1.1,0.8-1.8c0-0.7-0.3-1.3-0.8-1.8c-0.5-0.5-1.2-0.7-1.9-0.7L61.6,88.9z M53.3,89.1V94l1.4,0v-2.6 c0.3,0.4,1.1,1.4,1.1,1.4s0.8-1,1.1-1.4v2.6l1.4,0v-4.9l-1.2,0c0,0-1.1,1.4-1.3,1.7c-0.2-0.2-1.4-1.7-1.4-1.7L53.3,89.1z M74.5,71.7 c3.2,0,7,2.5,10.9,5.1l0.8,0.5c4.9,3.3,9.9,6.5,14.1,5.3c-3.1,1.4-5.3,4.5-7.7,4.5c-3.1,0-6.4-2.3-9.8-4.6l-0.9-0.6 c-3.3-2.2-6.6-4.3-9.8-4.3c-0.1,0-0.2,0-0.3,0c1.6,2,3.8,2.4,3.8,4.4c0,1.4-1.2,2.2-2,4.1c-0.5,1.2-0.6,2-1.1,3.7 c-0.4,1.5-1.4,5.2-16.5,5.2c-13.6,0-15.8-3-16.3-4.7l0-0.1c0-0.1-0.1-0.3-0.1-0.4c-0.4-1.7-0.5-2.5-1.1-3.7c-0.8-1.9-2-2.7-2-4.1 c0-2,2.2-2.4,3.8-4.4c-0.1,0-0.2,0-0.3,0c-3.3,0-6.8,2.3-10.2,4.6l-0.9,0.6c-3.2,2.2-6.4,4.3-9.3,4.3c-2.5,0-4.6-3.1-7.7-4.5 c4.1,1.2,8.9-1.8,13.7-5l0.8-0.5c4.1-2.7,8.1-5.4,11.3-5.4c2,0,4.4,0.8,5.6,3.6c0.5,1.1,1,2,1.4,2.7l0.2,0.4c0.6,0.9,1,1.6,1,2.3 c0,1.2-1.1,2.1-2.8,3c-1.1,0.6-2.3,0.9-2.3,2c3.3,1.5,8.8,2.6,15.4,2.6c6.5,0,12-1.1,15.4-2.6c0.1-1.1-1.1-1.4-2.3-2 c-1.8-0.9-2.8-1.8-2.8-3c0-1.3,1.4-2.3,2.6-5.3C70.1,72.5,72.5,71.7,74.5,71.7z M61.7,40c0,0.1,0,0.2,0.2,0.2c0.1,0,0.2,0.1,0.2,0.2 c0.1,0,0.2,0,0.3,0c0.1,0.3,0,0.5,0,0.5c0.3,0.2,0.9,1.2,0.5,1.6c-0.1,0.5-0.3,1.1,0.2,1.7c0.3,0.3,0.6,0.9,1.1,1.3 c0,0,0.1,0.1,0.1,0.1c0.2,0.2,0.5,0.3,0.7,0.3c0.2,0,0.3-0.1,0.3-0.2c0-0.5-1-1-1.5-1.5c-0.6-0.6-0.5-1.4-0.3-1.8 c0.1,0.2,0.1,0.4,0.1,0.5c0.4,0.6,0.3,0.9,0.5,1.2c0.1,0.1,0.3,0.3,0.5,0.5c0.5,0.4,0.9,0.6,0.9,1.1c0,0.5-0.6,0.7-1.1,0.3 c-0.1-0.1-0.3-0.2-0.4-0.3c0,0,0,0,0,0c0,0.9,1.2,1.1,1.3,0.9c0.2-0.2,0.3-0.2,0.5,0.1c0.2,0.3,0,0.2-0.2,0.3c0.1,0,0.2,0.1,0.4,0 c-0.1,0.1-0.2,0.3-0.4,0.4v0c0,0,0.2,0.1,0.3,0.1c0,0.1-0.1,0.2-0.3,0.3c0,0,0,0,0,0c0,0.3-0.3,0.2-0.3,0.3c0,0.1,0.2,0.1,0.2,0.4 c0,0-0.1,0.1-0.1,0.1c0,0,0.1,0.1,0.1,0.1c-0.2,0.1-0.3,0-0.3-0.1c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.2-0.1-0.3c0,0,0,0,0,0 c-0.1,0.1-0.1,0.3-0.2,0.3c0,0-0.1,0-0.1,0c-0.1,0.1,0,0.2,0,0.2c-0.1,0-0.2-0.1-0.2-0.2c0,0-0.1,0-0.1,0c-0.2-0.1,0-0.2,0.1-0.3 c0,0,0,0,0,0c-0.1,0.1-0.3,0.1-0.3-0.1c0,0,0,0,0-0.1c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3c0,0,0.1-0.1,0.2-0.1 c0.1,0,0.4,0.1,0.4,0c0.1-0.1,0-0.3,0-0.5c0-0.1,0-0.1-0.1-0.1c-0.1-0.1-0.3,0.4-0.7,0.2c-0.7-0.2-1.1-1-1.1-1.3 c-0.4-0.1-1,0.2-0.9,0.6c0.1,0.3,0.1,0.2,0.2,0.5c0,0.1,0.1,0.1-0.1,0.3c-0.1,0.1-0.4,0-0.4,0l-0.2,0.2c-0.3-0.2-0.4-0.1-0.3,0 c0,0-0.1-0.1-0.1-0.1c0,0,0,0.1-0.1,0.1c-0.1,0-0.2,0-0.3-0.1c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0.1,0,0.1,0,0.1 c0,0,0,0-0.1,0c0,0.1,0.1,0.1,0.2,0.1c-0.2,0.1-0.4,0-0.3-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0c0,0,0,0,0,0 c0,0,0,0.1,0,0.1c0,0-0.1,0-0.1,0c0,0.1,0.1,0.1,0.1,0.1c-0.2,0.1-0.3,0-0.3-0.2c0,0-0.1-0.1-0.1-0.1c-0.1-0.3,0.3-0.2,0.3-0.3 c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.1,0-0.1-0.1-0.1-0.1c0,0,0,0,0-0.1c-0.1,0-0.2,0.1-0.2,0.1c0-0.1,0.1-0.3,0.3-0.3 c0,0,0.1-0.1,0.1-0.1c0.3-0.1,0.4,0.4,0.6,0.3c0,0,0,0,0,0c0.3-0.1,0.4,0,0.8,0c-0.3-0.2-0.6-0.7-0.5-1c0.1-0.3,0.6-0.6,0.9-0.7 c0.2,0,0.6,0,1,0.2c-0.3-0.5-1.5-0.5-1.5-1.4c-0.1,0.1-0.2,0.3-0.2,0.4c-0.1-0.1-0.2-0.1-0.4-0.1c-0.2,0.1-0.4,0.2-0.3,0.3 c-0.2-0.1-0.3,0-0.6,0.1c0,0.1,0,0.2-0.1,0.2c-0.2,0.1-0.3-0.1-0.3-0.1c0,0,0,0,0,0c-0.1,0.1,0.1,0.2,0,0.3c0,0,0,0-0.1,0 c0,0.1,0.1,0.2,0.2,0.2c-0.1,0-0.3,0-0.4-0.2c0,0,0,0,0,0c0,0-0.1,0-0.1,0c-0.2,0-0.1-0.2,0-0.4c0,0,0,0,0,0 c-0.2,0.3-0.3,0.2-0.4,0.1c0,0,0,0-0.1-0.1c-0.1,0.1-0.1,0.1-0.1,0.2c-0.1-0.1,0-0.3,0.1-0.4c0,0,0,0,0,0c0,0,0.1-0.1,0.1-0.1 c0.1-0.1,0.2,0,0.3,0c0.1,0,0.1,0,0.2-0.1c0,0,0,0,0,0c-0.3,0-0.4-0.1-0.4-0.1c0,0,0-0.1,0-0.1c-0.1-0.1-0.2,0-0.2,0 c0-0.1,0.2-0.2,0.3-0.1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.2,0.1c0.1,0.1,0.1,0.1,0.2,0.2c0.2,0.1,0.4-0.1,0.6-0.2 c0.2-0.2,0.4-0.5,0.7-0.7c-0.6-0.3-0.9-0.9-1-1.1c0-0.1-0.1-0.2-0.1-0.2c0,0,0,0.1,0,0.1c-0.1,0-0.1-0.1-0.1-0.2c0,0,0,0,0,0 c0,0-0.1,0-0.1,0.1c0,0,0-0.2,0-0.3c-0.3,0.1-0.6-0.1-0.4-0.4c0,0.2,0.3,0.3,0.4,0.2c-0.2,0-0.2-0.2-0.1-0.3c0,0,0,0,0,0 c0,0,0,0-0.1,0c0,0,0,0-0.1,0c-0.1,0.1-0.1,0.1-0.1,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c-0.1,0,0,0.1,0,0.1c-0.2-0.1-0.1-0.2-0.1-0.3 c0,0,0-0.1,0-0.1c0-0.1,0.1-0.2,0.3-0.1c0,0,0,0,0,0c0,0,0,0,0-0.1c0,0,0,0,0,0c-0.1,0-0.2-0.1-0.2-0.2c0,0,0-0.1,0-0.1 c0,0-0.1,0-0.1-0.1c0.2-0.2,0.3,0,0.3,0.1c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0.1,0,0.2,0.2,0.2,0.3c0,0,0,0,0,0c0,0,0-0.1,0-0.1 c0,0,0,0,0,0c-0.1-0.1,0-0.1,0-0.2c0,0,0-0.1,0.1-0.1c0-0.1-0.1-0.1-0.1-0.2c0.1,0,0.2,0.1,0.3,0.2c0,0,0,0.1,0,0.2 c0,0.2-0.1,0.3-0.1,0.5c0,0.2,0,0.3,0.2,0.4c0.2,0.1,0.3,0.2,0.4,0.4c0.2,0.2,0.4,0.4,0.4,0.5c0.1,0.1,0.2,0.2,0.3,0.3 c0.1-0.6,0.7-0.6,0.7-1.1c0-0.2-0.4-0.2-0.6-0.1c-0.2,0.1-0.4,0-0.4-0.1c0-0.1,0-0.2,0.1-0.2c0.2,0,0.2,0,0.4,0 c0.2,0,0.1-0.1,0.1-0.2c0-0.2-0.3-0.2-0.4-0.1l-0.1,0.2l-0.2-0.2c0,0,0,0-0.1,0c-0.1-0.1-0.1-0.2-0.1-0.3c0-0.1,0-0.3,0.2-0.2 c0.2,0,0.2,0,0.4-0.1c0.1-0.1,0.1-0.1,0.3-0.1C61.5,40.2,61.6,40.1,61.7,40z M58.7,37.9c0.1,0.1,0.1,0.3,0.1,0.5 c-0.2,0-0.3-0.1-0.4-0.2v4c0.2,0,0.4,0.1,0.4,0.2c0,0.1,0,0.3-0.2,0.5c0.2,0,0.4,0.1,0.6,0.3c-0.2,0.2-0.4,0.3-0.6,0.3 c0.2,0.2,0.2,0.3,0.2,0.5c0,0.1-0.2,0.2-0.4,0.2v4.7c0.1-0.1,0.3-0.2,0.5-0.2c0,0.2-0.1,0.4-0.2,0.5h2.9c0-0.2,0.1-0.3,0.2-0.4 c0.1-0.1,0.3,0,0.5,0.2c0-0.2,0.1-0.4,0.3-0.6c0.2,0.2,0.3,0.4,0.3,0.6c0.2-0.2,0.3-0.2,0.5-0.2c0.1,0,0.2,0.2,0.2,0.4h3.4 c-0.1-0.1-0.2-0.3-0.2-0.5c0.2,0,0.3,0,0.5,0.1c-0.3-2-1-3.9-2-5.6c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.2-0.2-0.2-0.5 c-0.2,0.1-0.4,0.2-0.6,0.1c0-0.3,0.2-0.4,0.3-0.6c-0.2,0-0.4-0.1-0.4-0.3c0-0.1,0-0.2,0.1-0.3C62.6,39.9,60.7,38.6,58.7,37.9z M58,37.4l0.2,0.1c1.2,0.3,2.3,0.8,3.3,1.5c1.1,0.7,2,1.6,2.9,2.7c1.7,2.2,2.8,4.9,3.1,7.7l0,0.2H58V37.4z M57.8,37.2v12.6h10 c-0.2-3-1.4-5.9-3.2-8.2C62.8,39.2,60.4,37.7,57.8,37.2z M58.2,36.6c0.2-0.1,0.5,0.1,0.6,0.5c2.3,0.7,4.4,2.2,6.1,4.3 c0.1,0.1,0.2,0.2,0.3,0.4c0.2-0.1,0.4-0.2,0.7-0.2c-0.1,0.3-0.2,0.5-0.4,0.6c1.4,2,2.3,4.3,2.6,6.7c0.4,0,0.5,0.4,0.4,0.6 c-0.1,0.1-0.2,0.2-0.3,0.2c0,0.1,0,0.1,0,0.1c0.1,0.1,0.1,0.3,0.1,0.5c-0.2,0-0.4-0.1-0.5-0.2h-0.1c0,0.2-0.1,0.3-0.2,0.4 c-0.2,0.1-0.5,0-0.6-0.4h-4c0,0.2-0.1,0.4-0.3,0.6c-0.2-0.2-0.3-0.4-0.3-0.6h-3.5c-0.1,0.3-0.4,0.4-0.6,0.3 c-0.1-0.1-0.2-0.2-0.2-0.3h-0.1c-0.1,0.1-0.3,0.1-0.5,0.1c0-0.2,0.1-0.4,0.1-0.5v-0.1c-0.2,0-0.3-0.1-0.4-0.2 c-0.1-0.2,0-0.5,0.4-0.6v-5.3c-0.2,0-0.4-0.1-0.6-0.3c0.2-0.2,0.4-0.3,0.6-0.3v-4.9c-0.3-0.1-0.4-0.4-0.3-0.6 c0.1-0.1,0.2-0.2,0.3-0.2v0c-0.1-0.2-0.2-0.4-0.2-0.6c0.2,0,0.4,0.1,0.5,0.2c0,0,0.1,0,0.1,0C58,36.7,58.1,36.6,58.2,36.6z"></path>
257
257
  </svg>
258
258
  {%- elif params.iconType == "ogl" -%}
259
- <svg class="ons-footer__ogl-img{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="50px" height="20px" viewBox="0 0 60 24" focusable="false" aria-hidden="true">
259
+ <svg class="ons-footer__ogl-img{{ iconClasses }}" xmlns="http://www.w3.org/2000/svg" width="50px" height="20px" viewBox="0 0 60 24" focusable="false" aria-hidden="true" role="img">
260
260
  <title>{{ params.altText | default ('Open Government License logo') }}</title>
261
261
  <path d="M51.7,17.5V0l-6.2,4v19.8h13.8v-6.2H51.7z M36.7,16.3c-1,0.9-2.4,1.4-3.8,1.4c-3.2,0-5.8-2.6-5.8-5.8s2.6-5.8,5.8-5.8c2,0,3.9,1.1,4.9,2.7L43,5.6C40.9,2.2,37.1,0,32.9,0c-4.5,0-8.4,2.5-10.4,6.1C20.4,2.5,16.5,0,12,0C5.4,0,0,5.4,0,12s5.4,12,12,12c4.5,0,8.4-2.5,10.4-6.1c2.1,3.6,6,6.1,10.4,6.1c3,0,5.8-1.1,7.9-3l2.4,2.7h0.4V13h-9.8L36.7,16.3zM12,17.8c-3.2,0-5.8-2.6-5.8-5.8S8.8,6.2,12,6.2s5.8,2.6,5.8,5.8S15.2,17.8,12,17.8" fill="#595959"></path>
262
262
  </svg>
@@ -91,10 +91,10 @@ describe('macro: icon', () => {
91
91
  });
92
92
 
93
93
  describe.each([
94
- ['ons-logo-en', 'Office for National Statistics logo'],
95
- ['ons-logo-cy', 'Logo Swyddfa Ystadegau Gwladol'],
96
- ['ons-logo-stacked-en', 'Office for National Statistics logo'],
97
- ['ons-logo-stacked-cy', 'Logo Swyddfa Ystadegau Gwladol'],
94
+ ['ons-logo-en', 'Office for National Statistics homepage'],
95
+ ['ons-logo-cy', 'Hafan Swyddfa Ystadegau Gwladol'],
96
+ ['ons-logo-stacked-en', 'Office for National Statistics homepage'],
97
+ ['ons-logo-stacked-cy', 'Hafan Swyddfa Ystadegau Gwladol'],
98
98
  ['crest', 'Royal coat of arms of the United Kingdom'],
99
99
  ['ogl', 'Open Government License logo'],
100
100
  ])('icon type: %s', (iconType, expectedAltText) => {
@@ -1,14 +1,14 @@
1
1
  {% from "components/description-list/_macro.njk" import onsDescriptionList %}
2
2
 
3
3
  {% macro onsMetadata(params) %}
4
- {{
5
- onsDescriptionList({
6
- "id": params.id,
7
- "classes": params.classes,
8
- "descriptionListLabel": params.metadataLabel,
9
- "termCol": params.termCol,
10
- "descriptionCol": params.descriptionCol,
11
- "itemsList": params.itemsList
12
- })
13
- }}
4
+ {{
5
+ onsDescriptionList({
6
+ "id": params.id,
7
+ "classes": params.classes,
8
+ "descriptionListLabel": params.metadataLabel,
9
+ "termCol": params.termCol,
10
+ "descriptionCol": params.descriptionCol,
11
+ "itemsList": params.itemsList
12
+ })
13
+ }}
14
14
  {% endmacro %}
@@ -0,0 +1,49 @@
1
+ {% from "components/mutually-exclusive/_macro.njk" import onsMutuallyExclusive %}
2
+ {% from "components/fieldset/_macro.njk" import onsFieldset %}
3
+
4
+ {% macro onsMultipleInputFields(params) %}
5
+ {% set fields %}
6
+ {% if params.numberOfFields > 1 %}
7
+ <div class="ons-field-group">
8
+ {{ params.fields | safe }}
9
+ </div>
10
+ {% else %}
11
+ {{ params.fields | safe }}
12
+ {% endif %}
13
+ {% endset %}
14
+
15
+ {% if params.mutuallyExclusive %}
16
+ {% call onsMutuallyExclusive({
17
+ "id": params.id,
18
+ "legend": params.legendOrLabel,
19
+ "legendClasses": params.legendClasses,
20
+ "description": params.description,
21
+ "classes": params.classes,
22
+ "dontWrap": params.dontWrap if params.numberOfFields > 1 else true,
23
+ "legendIsQuestionTitle": params.legendIsQuestionTitle,
24
+ "exclusiveOptions": params.mutuallyExclusive.exclusiveOptions,
25
+ "or": params.mutuallyExclusive.or,
26
+ "deselectMessage": params.mutuallyExclusive.deselectMessage,
27
+ "deselectGroupAdjective": params.mutuallyExclusive.deselectGroupAdjective,
28
+ "deselectExclusiveOptionAdjective": params.mutuallyExclusive.deselectExclusiveOptionAdjective,
29
+ "error": params.error
30
+ }) %}
31
+ {{ fields | safe }}
32
+ {% endcall %}
33
+ {% elif params.numberOfFields > 1 %}
34
+ {% call onsFieldset({
35
+ "id": params.id,
36
+ "legend": params.legendOrLabel,
37
+ "legendClasses": params.legendClasses,
38
+ "description": params.description,
39
+ "classes": params.classes,
40
+ "dontWrap": params.dontWrap,
41
+ "legendIsQuestionTitle": params.legendIsQuestionTitle,
42
+ "error": params.error
43
+ }) %}
44
+ {{ fields | safe }}
45
+ {% endcall %}
46
+ {% else %}
47
+ {{ fields | safe }}
48
+ {% endif %}
49
+ {% endmacro %}